Skip to content

Instantly share code, notes, and snippets.

View captainpete's full-sized avatar

Peter Hollows captainpete

View GitHub Profile
# NVM
if [[ -s $HOME/.nvm ]] ; then
setopt nullglob
NVM_DIR=$HOME/.nvm
source $NVM_DIR/nvm.sh
nvm use
fi
// Needs to be run from a separate host that
// does not consider itself the server it's proxying to.
// So ghost the host to a VM running this (as root, for port 80).
var sys = require('sys'),
http = require('http'),
url = require('url');
var port = 80;
# At first glance, this doesn't seem so useful.
def a
def b
'you called b'
end
'b is now defined'
end
# > b
# NameError: undefined local variable or method `b'...