A new way to release code
base64 encode the file and make it into a qr code.
Recently clobbered this together to send over IRC really quick. The power of pipes! Best for April fools.
git-update-simple.sh

git-update-worker.sh

# encode
base64 -w0 file.sh | qrencode -t ansiutf8 # better aliased to qr...
# decode
zbarimg file.webp | base64 -d >file.sh