Skip to content

Instantly share code, notes, and snippets.

View jamestomasino's full-sized avatar
🎯
Focusing

James Tomasino jamestomasino

🎯
Focusing
View GitHub Profile
@jamestomasino
jamestomasino / org.tomasino.offlineimap.plist
Created June 18, 2016 17:08
launchd offlineimap cron
<?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>
@jamestomasino
jamestomasino / bomb
Last active June 18, 2016 22:03
Bomb the command line
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)
{
"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": [
#!/usr/bin/env bash
set -e
ROOT="/home/tomasino/movies"
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
# First loop to rename files
@jamestomasino
jamestomasino / SMBDIS.ASM
Created October 17, 2017 00:23 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;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
@jamestomasino
jamestomasino / stream.sh
Created March 10, 2018 06:02
Create stream to anonradio openmic (or local test) from any directory of mp3s
#!/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 {
@jamestomasino
jamestomasino / vcard-to-contact.awk
Created March 21, 2018 00:19
Generate contact files from vcard download
# to run: awk -f vcard-to-contact.awk vcard-file.vcf
BEGIN {
FS = ";"
}
/BEGIN:VCARD/ {
# new contact, reset variables
c_n = ""
c_fn = ""
@jamestomasino
jamestomasino / center.awk
Last active May 13, 2022 23:54
center a file of text visually in the terminal (for ascii art)
#!/usr/bin/awk -f
BEGIN {
"tput cols" | getline c
while(getline < ARGV[1])
{
if(length>l){l=length}
}
w=(c-l)/2
}
@jamestomasino
jamestomasino / sdf-update-gopher
Created April 29, 2018 18:29
Update script to mirror my gopher repo on SDF, updating relative links
#!/usr/bin/env bash
# Config
GOPHER_DIR="/ftp/pub/users/tomasino/"
GOPHERMAP="${GOPHER_DIR}/gophermap"
# Overrides
pushd () {
command pushd "$@" > /dev/null
}
@jamestomasino
jamestomasino / history-commands.txt
Created May 7, 2018 13:55
Commands in history file with at least 2 uses
1777 git
1511 ls
908 cd
863 vim
612 fe
322 z
289 make
287 gs
193 rm
176 cdroot