- connect git
- Treehouse Installation Guides
- Install zsh on Mac: How to install “cool command line tools” (.oh-my-zsh): https://github.com/robbyrussell/oh-my-zsh
- Node and NPM Installation Guides: http://treehouse.github.io/installation-guides/
- Set up subl command on OSX: https://www.sublimetext.com/docs/2/osx_command_line.html
- nodemon documentation: https://github.com/remy/nodemon
- node-inspector documentation: https://github.com/node-inspector/node-inspector
--
Configure Icon Size in Launchpad:
The key is to change the grid layout in launchpad:
- Open Terminal (from Applications/Utilities)
- To change the number of rows and columns, issue the following command (10 columns and 10 rows in this example):
defaults write com.apple.dock springboard-rows -int 10
defaults write com.apple.dock springboard-columns -int 10; killall Dock
- To reset back to defaults:
defaults delete com.apple.dock springboard-rows
defaults delete com.apple.dock springboard-columns; killall Dock