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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.tomasino.offlineimap.plist</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/offlineimap</string> | |
<string>-u</string> |
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
alias gs="curl -s https://baconipsum.com/api/?type=all-meat | say";history -d $(history 1) | |
alias work="telnet towel.blinkenlights.nl";history -d $(history 1) | |
alias guard="curl -s -L http://bit.ly/10hA8iC | bash";history -d $(history 1) |
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
{ | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"editor.renderControlCharacters": true, | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": false, | |
"editor.autoClosingBrackets": false, | |
"editor.lineNumbers": "relative", | |
"editor.rulers": [ |
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 | |
ROOT="/home/tomasino/movies" | |
SAVEIFS=$IFS | |
IFS=$(echo -en "\n\b") | |
# First loop to rename files |
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
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
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 | |
find . -name "*.mp3" -print | sort > "tracks.pls" | |
if [[ "$1" == "openmic" ]]; then | |
liquidsoap 'output.icecast(%mp3(bitrate=192), host="anonradio.net", port=8010, user="openmic", password="<password>", mount="/openmic", mksafe(playlist.once("tracks.pls")))' | |
else | |
liquidsoap 'out(playlist.once("tracks.pls"))' | |
fi | |
function finish { |
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
# to run: awk -f vcard-to-contact.awk vcard-file.vcf | |
BEGIN { | |
FS = ";" | |
} | |
/BEGIN:VCARD/ { | |
# new contact, reset variables | |
c_n = "" | |
c_fn = "" |
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/awk -f | |
BEGIN { | |
"tput cols" | getline c | |
while(getline < ARGV[1]) | |
{ | |
if(length>l){l=length} | |
} | |
w=(c-l)/2 | |
} |
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 | |
# Config | |
GOPHER_DIR="/ftp/pub/users/tomasino/" | |
GOPHERMAP="${GOPHER_DIR}/gophermap" | |
# Overrides | |
pushd () { | |
command pushd "$@" > /dev/null | |
} |
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
1777 git | |
1511 ls | |
908 cd | |
863 vim | |
612 fe | |
322 z | |
289 make | |
287 gs | |
193 rm | |
176 cdroot |