Skip to content

Instantly share code, notes, and snippets.

View unoexperto's full-sized avatar

unoexperto

View GitHub Profile
@unoexperto
unoexperto / build.sh
Created May 9, 2024 07:15 — forked from zorn-v/build.sh
xkb switch on release deb build
#!/bin/bash
rm -rf build
mkdir -p build
cd build
sudo apt install devscripts -y
sudo mk-build-deps -t'apt-get -y' -ir xserver-xorg-core
apt source xserver-xorg-core
@unoexperto
unoexperto / run.tpl
Created September 2, 2023 09:49 — forked from efrecon/run.tpl
`docker inspect` template to regenerate the `docker run` command that created a container
docker run \
--name {{printf "%q" .Name}} \
{{- with .HostConfig}}
{{- if .Privileged}}
--privileged \
{{- end}}
{{- if .AutoRemove}}
--rm \
{{- end}}
{{- if .Runtime}}
@unoexperto
unoexperto / things-i-believe.md
Created June 20, 2022 15:07 — forked from stettix/things-i-believe.md
Things I believe

Things I believe

This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.

Agree? Disagree? Feel free to let me know at @JanStette. See also my blog at www.janvsmachine.net.

Fundamentals

Keep it simple, stupid. You ain't gonna need it.