This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NVM | |
if [[ -s $HOME/.nvm ]] ; then | |
setopt nullglob | |
NVM_DIR=$HOME/.nvm | |
source $NVM_DIR/nvm.sh | |
nvm use | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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'... |
NewerOlder