Skip to content

Instantly share code, notes, and snippets.

@AggroBoy
AggroBoy / keybase.md
Created June 11, 2019 08:59
keybase.md

Keybase proof

I hereby claim:

  • I am aggroboy on github.
  • I am willgoring (https://keybase.io/willgoring) on keybase.
  • I have a public key ASAmJoDu5UTu6GbNUmqSE17mW5hbXO_q8OZ5VE1-N4wotQo

To claim this, I am signing this object:

@AggroBoy
AggroBoy / token.txt
Last active August 20, 2020 20:34
Sizzle token
Will
Jen
Bryn
(Top pays then goes to bottom)
@AggroBoy
AggroBoy / hide-dropbox-ticks.sh
Created November 4, 2013 12:08
A quick shell script to automate removing DropBox's green tick icons from the finder (they come back whenever DropBox updates itself, so automating removal is handy).
#! env zsh
# This script turns off the annoying green tick-marks dropbox overlays on all
# files in it's directory in the finder. It involves making changes to the app
# package contents, so could cause problems for you (although I use it without
# trouble). You have been warned.
cd /Applications/Dropbox.app/Contents/Resources/
if [[ -f emblem-dropbox-uptodate.icns ]]; then
#!/usr/bin/env zsh
# Set up RVM
if [[ -f $HOME/.rvm/scripts/rvm ]]; then
source "$HOME/.rvm/scripts/rvm"
elif [[ -f /etc/profile.d/rvm.sh ]]; then
source /etc/profile.d/rvm.sh
else
echo RVM not found
exit
@AggroBoy
AggroBoy / gist:1242257
Created September 26, 2011 13:44
XML escaping SED script
sed -e 's~&~\&amp;~g' -e 's~<~\&lt;~g' -e 's~>~\&gt;~g' -e 's~\"~\&quot;~g' -e "s~\'~\&apos;~g"