This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
## Using line feed as a delimeter when cycling through tags | |
IFS=$'\n' | |
## Starting an index page here | |
echo -e "## Zettelkasten Index\n\n" > zettelkasten.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"host": "127.0.0.1", | |
"port": 8001, | |
"userlists": [ | |
"/etc/nginx/httpauth_kibana_ro", | |
"/etc/nginx/httpauth_kibana_rw" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import serial | |
import time | |
import urllib2 | |
turn_on = '$KE,REL,1,1\r\n' | |
turn_off = '$KE,REL,1,0\r\n' | |
state = False | |
url = 'http://wasteland.dev.it-the-drote.tk/tmp/led.state' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dpkg-buildpackage -rfakeroot -D -us -uc | |
dpkg-buildpackage: warning: using a gain-root-command while being root | |
dpkg-buildpackage: source package leicht | |
dpkg-buildpackage: source version 0.2-4+jessie | |
dpkg-buildpackage: source distribution jessie | |
dpkg-buildpackage: source changed by Azer Abdullaev (Like All) <[email protected]> | |
dpkg-source --before-build leicht | |
dpkg-buildpackage: host architecture i386 | |
fakeroot debian/rules clean | |
dh clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#set -x | |
source /etc/chrootci.sh | |
repo=`basename $PWD | cut -f 1 -d '.'` | |
commitmessage=`git log -1 HEAD --pretty=format:%s` | |
echo $repo > /tmp/buildinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo '{ "version": 1 }' | |
echo '[' | |
echo '[]' | |
curler="curl -m 5" | |
ltccourseprev="" | |
while [ true ]; do | |
timeticker=`date +\◔\ %H\:%M\ \ %a\ %d\ %B\ %y` |