This re-styles your sublime text 2 sidebar to be darker, so it doesn't blind you when using a dark theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
| <?php | |
| /** | |
| * @Author Anonymous | |
| * @link http://www.redrokk.com | |
| * @Package Wordpress | |
| * @SubPackage RedRokk Library | |
| * @copyright Copyright (C) 2011+ Redrokk Interactive Media | |
| * | |
| * @version 2.0 | |
| */ |
| <?php | |
| //EST is 3 hours foward of LA time | |
| date_default_timezone_set('America/Los_Angeles'); | |
| $date = date("Y-m-d", time() + 3600 * 3); | |
| brew update && brew upgrade && brew cleanup |
| 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 |