Skip to content

Instantly share code, notes, and snippets.

View toastynerd's full-sized avatar

Tyler Morgan toastynerd

View GitHub Profile
alias rmorphans='git branch --merged| egrep -v "(^\*|main)" | xargs git branch -d'
alias gitbranchups='git branch --set-upstream-to=origin/$(git branch --show-current) $(git branch --show-current)'
java -jar ~/programming/utils/airplay.jar -h 10.97.111.231 -d
@toastynerd
toastynerd / easy_airplay.sh
Created September 28, 2015 14:58
easy airplay
java -jar ~/programming/utils/airplay.jar -h 10.97.111.225 -d

Keybase proof

I hereby claim:

  • I am toastynerd on github.
  • I am toasty (https://keybase.io/toasty) on keybase.
  • I have a public key whose fingerprint is 97B8 31B7 A103 83F7 8840 17DA 5816 8A8E C079 A87F

To claim this, I am signing this object:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
</body>
</html>
@toastynerd
toastynerd / gist:e1c9df76cb71a0a007d3
Last active August 29, 2015 14:01
Installing Node from source
#goto the node website
#click download
#click the source download
#go to the director you downloaded the source to
tar -xzvf <the node tar.gz you downloaded>
cd <node directory>
./configure --prefix=~/.node
make && make install
#add the following to your .bashrc or .profile