Prepare a Mac

  • 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

  • Mongo Installation Guide for Mac

--
Configure Icon Size in Launchpad:
The key is to change the grid layout in launchpad:

  1. Open Terminal (from Applications/Utilities)
  2. 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

  1. To reset back to defaults:

defaults delete com.apple.dock springboard-rows
defaults delete com.apple.dock springboard-columns; killall Dock

你可能感兴趣的:(Prepare a Mac)