Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
| <?php | |
| /** | |
| * get_columns_array | |
| * | |
| * Columns for the loop, single function interface (limited) | |
| * | |
| * Copyright (c) 2011 hakre <http://hakre.wordpress.com/>, some rights reserved | |
| * | |
| * USAGE: |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| /* Scott Kellum improved img replacement technique (via Zeldman) */ | |
| .hide-text { | |
| text-indent: 100%; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| } |
These commands are good as of 08/12/2012.
The command line tools are approximately 171mb and everything you need w/ Free Apple ID. Or you can download the entire Xcode app.
Really the nicest choice for a terminal on OSX right now, especially with Lion style full screen support.
#Covert Data URI to Blob
| // declarations | |
| var positions = []; | |
| // Returns a random integer between min (included) and max (excluded) | |
| // Using Math.round() will give you a non-uniform distribution! | |
| function getRandomInt(min, max) { | |
| return Math.floor(Math.random() * (max - min)) + min; | |
| } | |
| // generate random positions |
This has been moved to a blog post.