Skip to content

Instantly share code, notes, and snippets.

View malte-j's full-sized avatar
❤️
🍍🍕

Malte Janßen malte-j

❤️
🍍🍕
View GitHub Profile
@pesterhazy
pesterhazy / building-sync-systems.md
Last active January 9, 2025 11:01
Building an offline realtime sync engine

So you want to write a sync system for a web app with offline and realtime support? Good luck. You might find the following resources useful.

Overview articles

@sunsided
sunsided / etc-docker-daemon.json
Created February 29, 2020 13:48
WIFIonICE vs Docker: Fixing DB (Deutsche Bahn) WIFI by moving Docker away from 172.18.x.x in /etc/docker/daemon.json
{
"bip": "172.39.1.5/24",
"fixed-cidr": "172.39.1.0/25",
"runtimes": {
"nvidia": {
"path": "nvidia-container-runtime",
"runtimeArgs": []
}
}
}
@malte-j
malte-j / autorefresh.sh
Created March 4, 2019 13:52
Autorefresh and Compile LaTeX
mupdf Prüfung.pdf &
ls Prüfung.tex | entr /bin/sh -c "pdflatex Prüfung.tex && pkill -HUP mupdf"