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
/* Fast and easy way of taking a param from the query string */ | |
// From what I gathered, 2 space indentation is prefered in JS | |
// If this is a script included in a page, wrap it in a closure to avoid global | |
// name creation and clashes | |
!function() { | |
/* Named functions on the `root` scope, so that they can be loaded before the |
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
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2337706/hack.sh | sh | |
# |