Skip to content

Instantly share code, notes, and snippets.

View numeraltwo's full-sized avatar

Ramsay Stirling II numeraltwo

View GitHub Profile
@numeraltwo
numeraltwo / tugofstore-cheats.js
Created April 13, 2012 23:23
Cheatin' bookmarklets for tugofstore.com ;-p
//SAVE THIS BOOKMARK AS COOL
javascript:var COOL = Tug.utils.registerMousePosition(window.width); for (i=0;i<=100;i++){socket.emit('click', { click: true, vote: COOL});}
//SAVE THIS BOOKMARK AS CRAP
javascript:var CRAP = Tug.utils.registerMousePosition(0); for (i=0;i<=100;i++){socket.emit('click', { click: true, vote: CRAP});}
@numeraltwo
numeraltwo / git_aliases
Created January 31, 2014 17:00
useful git and git-flow aliases
# GIT / GIT FLOW ALIASES
alias gs="git stash"
alias gsa="git stash apply"
alias gsl="git stash list"
alias gsc="git stash clear"
alias gft="git fetch --tags"
alias gpt="git push --tags"
alias gcm="git checkout master"