Skip to content

Instantly share code, notes, and snippets.

View ernierasta's full-sized avatar

Leszek Cimała ernierasta

  • zori.[cz|pl|sk]
  • Czech Republic
View GitHub Profile
@ernierasta
ernierasta / main.go
Last active April 25, 2023 09:21
golang github.com/tdewolff/canvas example of text overflowing TextBox
package main
import (
"log"
"github.com/tdewolff/canvas"
"github.com/tdewolff/canvas/renderers"
)
func main() {
@ernierasta
ernierasta / gencsv-from-items.sh
Created March 17, 2021 06:47
Generata csv file for countersheet Inkscape extension based on image files in specified directory.
#!/bin/bash
# generates csv for all given asset files
ipath="$1"
back="$2"
file="out"
out=""
@ernierasta
ernierasta / voidlinux-openssl.md
Last active December 1, 2020 12:24
How to install OpenSSL no Void Linux
curl -O https://www.openssl.org/source/openssl-1.1.0f.tar.gz
tar xf openssl-1.1.0f.tar.gz
cd openssl-1.1.0f

# solve glob problem
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/recipes/90-test_fuzz.t
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/recipes/80-test_ssl_new.t
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/recipes/40-test_rehash.t
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/build.info
@ernierasta
ernierasta / libvirt-win10.xml
Created November 24, 2020 14:29
libvirt Windows 10 optimal settings, no microphone cracking
<!-- IMPORTANT: before you try this, change in system:
/etc/pulse/daemon.conf:
default-sample-rate = 44100
alternate-sample-rate = 48000
/etc/libvirt/qemu.conf:
user = "ernie"
Then restart pulseaudio & libvirt or reboot.
table inet nat {
chain postrouting {
type nat hook postrouting priority 0; policy accept;
masquerade
}
}
table inet filter {
chain input {
type filter hook input priority 0;
iifname $LXC_BR accept \
comment "Accept any LXC (bridge interface) traffic"
# common services on host
tcp dport { 22, 443 } accept;
}
###############################################################################
# The MIT License
#
# Copyright 2012-2014 Jakub Jirutka <jakub@jirutka.cz>.
#
# Adjusted: 2019 Leszek Cimała
# It is best to use Jakubs template, this is for my needs.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@ernierasta
ernierasta / wlstream-strace.txt
Created March 15, 2019 09:43
strace of wlstream on Void Linux
execve("/usr/local/bin/wlstream", ["wlstream", "28", "vaapi", "/dev/dri/renderD128", "libx264", "nv12", "12", "output.mkv"], 0x7ffeebf64d48 /* 51 vars */) = 0
brk(NULL) = 0x72e000
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/local/lib64/tls/x86_64/x86_64/libwayland-client.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/tls/x86_64/x86_64", 0x7ffcbe4888e0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/local/lib64/tls/x86_64/libwayland-client.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/tls/x86_64", 0x7ffcbe4888e0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/local/lib64/tls/x86_64/libwayland-client.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/tls/x86_64", 0x7ffcbe4888e0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/local/lib64/tls/libwayland-c
@ernierasta
ernierasta / sway-record
Last active August 18, 2022 19:36
Swaywm screen and audio recording
#!/bin/bash
# Sway WM screen + audio recorder
# original author: Aaron D. Fields
# blog post: https://blog.spirotot.com/2017/08/21/a-dirty-hack-to-enable-acceptable-sway-wm-screen-recording/
# currently error 503 :-(
#
# Updated version: ernierasta
# Repo: https://gist.github.com/ernierasta
#
# Changelog:

Sulis scripting helpers

https://github.com/Grokmoo/sulis

Shell oneliners to get usefull info about current engine scripting abilities.

Show currently implemented AI hooks:

grep -oP 'ai::FuncKind::\K\w+' sulis_state/src/entity_state.rs