Skip to content

Instantly share code, notes, and snippets.

@ggreer
Created August 3, 2012 21:55
Show Gist options
  • Save ggreer/3251885 to your computer and use it in GitHub Desktop.
Save ggreer/3251885 to your computer and use it in GitHub Desktop.
Toolsmithing

Xcode hardware IO tools (including network link conditioner): http://adcdownload.apple.com/Developer_Tools/hardware_io_tools_for_xcode_4.4__late_july_2012/xcode44hwiotools6938115a.dmg

Divvy: http://mizage.com/divvy/ Bettertouchtool: http://blog.boastr.net/

Visor: http://visor.binaryage.com/

The basics enable keyboard navigation Add keyboard shortcuts search menu items for an application: cmd + shift + / customize trackpad gestures customize terminal fonts solarized visor or iterm equivalent taking screenshots

# Faster exposé animations
defaults write com.apple.dock expose-animation-duration -float 0.13; killall Dock
defaults write com.apple.TextEdit NSQuitAlwaysKeepsWindows -bool false
defaults write com.apple.Preview NSQuitAlwaysKeepsWindows -bool false

alias lock='/System/Library/CoreServices/"Menu Extras"/User.menu/Contents/Resources/CGSession -suspend'

# Show full path in finder title bars
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES

# Faster resize animations (default is 0.2)
defaults write NSGlobalDomain NSWindowResizeTime 0.08

# Show ~/Library in Finder
chflags nohidden ~/Library

quicksilver: http://qsapp.com/ alfred: http://www.alfredapp.com/

ack: https://github.com/petdance/ack ag: https://github.com/ggreer/the_silver_searcher

oh-my-zsh: https://github.com/robbyrussell/oh-my-zsh/ z: https://github.com/rupa/z/

function git_current_branch() {
    git symbolic-ref HEAD 2> /dev/null | sed -e 's/refs\/heads\///'
}

function git_current_origin() {
    git config --get remote.origin.url | sed -e 's/^.*\://' | sed -e 's/\.git.*//'
}

# create a github pull request from the current branch
alias gpr='open "https://github.com/$(git_current_origin)/pull/new/$(git_current_branch)"'

IRC bouncer znc

Vundle: https://github.com/gmarik/vundle/

Syntastic: https://github.com/scrooloose/syntastic/

Phil's dotfiles: https://github.com/philk/dotfiles

Jordan Evans's sweet zsh config: https://github.com/jordane/Config/tree/zsh

Exhuberant Ctags: http://ctags.sourceforge.net/ Cscope: http://cscope.sourceforge.net/

command-t: http://www.vim.org/scripts/script.php?script_id=3025 nerdtree: http://www.vim.org/scripts/script.php?script_id=1658

Cloud.io: http://getcloudapp.com/

nvALT: http://brettterpstra.com/project/nvalt/ notational velocity: http://notational.net/

caffeine: http://lightheadsw.com/caffeine/ caffeinate: http://apple.blogoverflow.com/2012/07/interesting-new-unix-commandsbinaries-in-os-x-mountain-lion/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment