Web developer Mathias Bynens shared a list of Terminal commands on Github to customize OS X. There are a bunch of great tweaks to be found, like disabling auto-correct, removing the green checkmark icon in your Dropbox folder, and enabling a 2D dock. Here are some of the ones I used:
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
# Disable auto-correct
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
# Allow text selection in Quick Look
defaults write com.apple.finder QLEnableTextSelection -bool true
# Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true