This file contains hidden or 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
| // Original shader collected from: https://www.shadertoy.com/view/WsVSzV | |
| // Licensed under Shadertoy's default since the original creator didn't provide any license. (CC BY NC SA 3.0) | |
| // Slight modifications were made to give a green-ish effect. | |
| float warp = 0.0; // simulate curvature of CRT monitor | |
| float scan = 0.50; // simulate darkness between scanlines | |
| void mainImage(out vec4 fragColor, in vec2 fragCoord) | |
| { | |
| // squared distance from center |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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) <like-all@yandex.com> | |
| dpkg-source --before-build leicht | |
| dpkg-buildpackage: host architecture i386 | |
| fakeroot debian/rules clean | |
| dh clean |
This file contains hidden or 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 hidden or 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` |