Skip to content

Instantly share code, notes, and snippets.

View mr-m0nst3r's full-sized avatar

m0nst3r mr-m0nst3r

View GitHub Profile
# XCode Command Line Tools
>xcode-select --install
# Install Homebrew
>ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
>echo PATH=/usr/local/bin:/usr/local/sbin:$PATH >> ~/.bash_profile
>source ~/.bash_profile
>brew tap homebrew/versions
@tmbritton
tmbritton / urldecode.js
Created January 21, 2013 20:59
Javascript url decode
/**
* Decodes url encoded strings
*
* @param: string - url or email address we want to decode
*/
function urldecode(url) {
return decodeURIComponent(url.replace(/\+/g, ' '));
}