- Install Mavericks via the App Store.
- Open System Preferences and choose Security & Privacy.
- In the General tab, ensure that a password is required after sleep or screen saver, and disable automatic login.
- In the FileVault tab, click "Turn On FileVault..." and follow the instructions to secure your entire disk.
- Enable full keyboard access for all controls (e.g. enable Tab in modal dialogs)
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
- Show remaining battery time; hide percentage
defaults write com.apple.menuextra.battery ShowPercent -string "NO"
defaults write com.apple.menuextra.battery ShowTime -string "YES"
- Show all filename extensions in Finder
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
- Use current directory as default search scope in Finder
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
- Show Path bar in Finder
defaults write com.apple.finder ShowPathbar -bool true
- Show Status bar in Finder
defaults write com.apple.finder ShowStatusBar -bool true
- Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
- Expand print panel by default
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true
- Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
- Disable shadow in screenshots
defaults write com.apple.screencapture disable-shadow -bool true
- Enable highlight hover effect for the grid view of a stack (Dock)
defaults write com.apple.dock mouse-over-hilte-stack -bool true
- Enable spring loading for all Dock items
defaults write enable-spring-load-actions-on-all-items -bool true
- Show indicator lights for open applications in the Dock
defaults write com.apple.dock show-process-indicators -bool true
- Disable auto-correct
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
- Enable AirDrop over Ethernet and on unsupported Macs running Lion
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true
- Automatically open a new Finder window when a volume is mounted
defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true
defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true
defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true
- Display full POSIX path as Finder window title
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
- Avoid creating .DS_Store files on network volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
- Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
- Show item info below desktop icons
/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist
- Enable snap-to-grid for desktop icons
/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist
- Enable tap to click (Trackpad)
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
- Disable Safari’s thumbnail cache for History and Top Sites
defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
- Enable Safari’s debug menu
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true
- Make Safari’s search banners default to Contains instead of Starts With
defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false
- Add a context menu item for showing the Web Inspector in web views
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true
- Only use UTF-8 in Terminal.app
defaults write com.apple.terminal StringEncodings -array 4
- Disable the Ping sidebar in iTunes
defaults write com.apple.iTunes disablePingSidebar -bool true
- Disable all the other Ping stuff in iTunes
defaults write com.apple.iTunes disablePing -bool true
- Show the ~/Library folder
chflags nohidden ~/Library
- Configure Spotlight searching
defaults write com.apple.spotlight orderedItems -array \
'{"enabled" = 1;"name" = "APPLICATIONS";}' \
'{"enabled" = 1;"name" = "SYSTEM_PREFS";}' \
'{"enabled" = 1;"name" = "DIRECTORIES";}' \
'{"enabled" = 1;"name" = "PDF";}' \
'{"enabled" = 1;"name" = "FONTS";}' \
'{"enabled" = 0;"name" = "DOCUMENTS";}' \
'{"enabled" = 0;"name" = "MESSAGES";}' \
'{"enabled" = 0;"name" = "CONTACT";}' \
'{"enabled" = 0;"name" = "EVENT_TODO";}' \
'{"enabled" = 0;"name" = "IMAGES";}' \
'{"enabled" = 0;"name" = "BOOKMARKS";}' \
'{"enabled" = 0;"name" = "MUSIC";}' \
'{"enabled" = 0;"name" = "MOVIES";}' \
'{"enabled" = 0;"name" = "PRESENTATIONS";}' \
'{"enabled" = 0;"name" = "SPREADSHEETS";}' \
'{"enabled" = 0;"name" = "SOURCE";}'
- In a new terminal window, type
ssh-keygen -b 2048 -t rsa
to create a new, RSA secured SSH key. Accept the default naming conventions and do enter a password when prompted. - Distribute key as needed to GitHub, Servers, etc.
- Install XCode
xcode-select --install
- Click Install on the popup
git clone https://github.com/revans/bash-it.git ~/.bash_it
~/.bash_it/install.sh
- Install MacPorts
- Add to ~/.bash_profile:
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
sudo port install autossh
sudo port install git-core +svn +doc +bash_completion +gitweb
- Setup globals:
git config --global user.name "Andrew Vaughan"
git config --global user.email [email protected]
sudo port install mysql5-server mysql5 +server
sudo /opt/local/lib/mysql5/bin/mysql_install_db --user=mysql
sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql5.plist
-
Occasionally, our PHP services require various versions of PHP. To make this easier to switch between, we make use of binary packages, as provided by Liip. Follow their instructions for installation on their installation page.
-
Update the path by this terminal command:
export PATH=/usr/local/php5/bin:/usr/local/mysql/bin:$PATH
sudo port install nginx
- Configure PHP-FPM
sudo mv /usr/local/php5/etc/php-fpm.conf.default /usr/local/php5/etc/php-fpm.conf
- Enable APC
sudo vi /usr/local/php5/php.d/50-extension-apc.ini
Should Look Like:
extension=/usr/local/php5/lib/php/extensions/no-debug-non-zts-20100525/apc.so
[APC]
apc.enabled = on
apc.enable_cli = on
- Enable XDebug on Port 9100
sudo vi /usr/local/php5/php.d/50-extension-xdebug.ini
Should Look Like:
zend_extension=/usr/local/php5/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so
[xdebug]
xdebug.remote_enable=on
xdebug.default_enable=on
xdebug.remote_autostart=off
xdebug.remote_port=9100
xdebug.remote_host=localhost
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_name=xdebug-profile-cachegrind.out-%H-%R
xdebug.var_display_max_children = 128
xdebug.var_display_max_data = 2048
xdebug.var_display_max_depth = 128
xdebug.max_nesting_level = 500
- Move Nginx Configuration
sudo mv /opt/local/etc/nginx/nginx.conf.default /opt/local/etc/nginx/nginx.conf
sudo mv /opt/local/etc/nginx/fastcgi_params.default /opt/local/etc/nginx/fastcgi_params
sudo mv /opt/local/etc/nginx/mime.types.default /opt/local/etc/nginx/mime.types
cd ~
curl -skS https://getcomposer.org/installer | php
chmod ug+x composer.phar
sudo mv composer.phar /usr/bin/
sudo gem install capistrano
sudo port install nodejs npm
npm adduser avaughan
- TextMate
- PHPStorm
- Adobe CS
- VirtualBox
- Dropbox
- FileZilla
- Spotify
- Adium
- Skype
- Steam
- RescueTime
- Ableton Live
- Jaksta
sudo port install gnutar wget ntop watch nmap unrar
- UTC Now Timestamps
alias utcnow='(TZ=UTC date '\''+%Y.%m.%d_%H.%M'\'')'
alias utcnowpb='(TZ=UTC date '\''+%Y.%m.%d_%H.%M'\'') | pbcopy'
- CLI XDebug Flags
alias xdoff='unset XDEBUG_CONFIG'
alias xdon='export XDEBUG_CONFIG='\''idekey=default'\'''
- IE8 (WinXP)
curl -O "https://az412801.vo.msecnd.net/vhd/IEKitV1_Final/VirtualBox/OSX/IE8_XP/IE8.XP.For.MacVirtualBox.ova"
- IE9 (Win7)
curl -O "https://az412801.vo.msecnd.net/vhd/IEKitV1_Final/VirtualBox/OSX/IE9_Win7/IE9.Win7.For.MacVirtualBox.part{1.sfx,2.rar,3.rar,4.rar,5.rar}"
- IE10 (Win8)
curl -O "https://az412801.vo.msecnd.net/vhd/IEKitV1_Final/VirtualBox/OSX/IE10_Win8/IE10.Win8.For.MacVirtualBox.part{1.sfx,2.rar,3.rar}"