Brew - brew.sh
Sublime Text - https://www.sublimetext.com
iTerm 2 - http://iterm2.com
iTerm 2 Color Schemes - http://iterm2colorschemes.com
Xcode - App Store
// backgroundImage takes a filename and uses the correct resolution version of it for a css background-image | |
// the base (1x) file should not have any extra ending on its name | |
// files should end in the following pattern: _1.5x, _2x, _3x, etc... (where "_" is the delimiter) | |
// $img takes the images path and name up until the file extention (not including the ".") | |
// $ext takes the images extention type, defaults to png | |
// $state is used to declare img states (active, hover, etc...) | |
// $max takes a numeric value at which to stop (default: 2) | |
// $inc takes a numeric value to increment the dppx at (default: 1) | |
// $min takes a numeric value at which to start (default: 1) | |
// $delim takes the delimiter style used (default "_") |
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$E: 2.718281828459045; | |
$PI: 3.141592653589793; | |
$LN2: 0.6931471805599453; | |
$SQRT2: 1.4142135623730951; |
syntax on | |
set tabstop=2 | |
set number | |
set ruler | |
set ignorecase | |
set smartcase | |
set laststatus=2 | |
set autoread | |
set mouse=a | |
execute pathogen#infect() |
function message() { | |
osascript - "$2" "$1" << EOF | |
on run {messageText, buddyName} | |
tell application "Messages" to send messageText to buddy buddyName | |
end run | |
EOF | |
} | |
alias replyto="message" |
set [email protected] | |
set imap_pass=password | |
set folder=imap://mail.server.com | |
set spoolfile=+INBOX | |
set imap_check_subscribed | |
set mail_check=60 | |
set sort=reverse-threads | |
set sort_aux=date-received | |
set realname="Name" | |
set editor=vim |
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/usr/local/bin:/opt/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/nathan/.oh-my-zsh | |
# Set default editor | |
export EDITOR="/Applications/TextEdit.app/Contents/MacOS/TextEdit" | |
# Set name of the theme to load. Optionally, if you set this to "random" |
Brew - brew.sh
Sublime Text - https://www.sublimetext.com
iTerm 2 - http://iterm2.com
iTerm 2 Color Schemes - http://iterm2colorschemes.com
Xcode - App Store
sudo find /private/var/folders/ -name com.apple.iconservices -exec rm -rf {} \; | |
sudo rm -rf /Library/Caches/com.apple.iconservices.store | |
killall Dock | |
killall Finder |
// Disable | |
launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist | |
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist | |
// Enable | |
launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist | |
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist |
tmutil listlocalsnapshotdates / |grep 20|while read f; do tmutil deletelocalsnapshots $f; done |