zsh/misc.zsh @ c3c04b36fd0b

Moar.
author Steve Losh <steve@stevelosh.com>
date Thu, 26 Jan 2012 12:03:14 -0500
parents 4d81abc7063e
children 1287b23ee8c3
alias h=hg
alias g=git

alias ghcm='ghc --make -optl"-Wl,-read_only_relocs,suppress"'
alias pbc='pbcopy'
alias pbp='pbpaste'

alias m='mvim .'

alias f='fab'
alias fd='fab dev'

alias weechat='weechat-curses'

alias spotlight-off='sudo mdutil -a -i off && sudo mv /System/Library/CoreServices/Search.bundle/ /System/Library/CoreServices/SearchOff.bundle/ && killall SystemUIServer'
alias spotlight-on='sudo mdutil -a -i on && sudo mv /System/Library/CoreServices/SearchOff.bundle/ /System/Library/CoreServices/Search.bundle/ && killall SystemUIServer'

alias mutt='cd ~/Desktop; mutt'
alias hi='pygmentize'

function gimmeurjson() { curl "$*" | python -mjson.tool | pygmentize -l javascript; }

function mdown () {
    (echo '
        <head>
            <style>
                body {
                    font-family: Georgia;
                    font-size: 17px;
                    line-height: 24px;
                    color: #222;
                    text-rendering: optimizeLegibility;
                    width: 670px;
                    margin: 20px auto;
                    padding-bottom: 80px;
                }
                h1, h2, h3, h4, h5, h6 {
                    font-weight: normal;
                    margin-top: 48px;
                }
                h1 { font-size: 48px; }
                h2 {
                    font-size: 36px;
                    border-bottom: 6px solid #ddd;
                    padding: 0 0 6px 0;
                }
                h3 {
                    font-size: 24px;
                    border-bottom: 6px solid #eee;
                    padding: 0 0 2px 0;
                }
                h4 { font-size: 20px; }
                pre {
                    background-color: #f5f5f5;
                    font: normal 15px Menlo;
                    line-height: 24px;
                    padding: 8px 10px;
                    overflow-x: scroll;
                }
            </style>
        </head>
    '; markdown $@) | bcat
}

# Updated verison of SVN.
export DYLD_LIBRARY_PATH="/opt/subversion/lib:$DYLD_LIBRARY_PATH"
export PYTHONPATH="/opt/subversion/lib/svn-python:$PYTHONPATH"
export PATH="/opt/subversion/bin:$PATH"


# What the hell did I do the other day?
function whatthehelldididoon() {
    for repo in `find . -name '.hg'`
    do
        echo $repo
        h .. -R $repo/.. -d "$1" -u 'Steve Losh'
    done
}

alias dv='dvtm -m "^f"'
alias dvt='dtach -A /tmp/dvtm-session.sock -r winch dvtm -m "^f"'
alias swank='dtach -A /tmp/dtach-swank.sock -r winch lein swank'
alias us-solr='wo unisubs && dtach -A /tmp/dtach-unisubs-solr.sock -r winch python manage.py run_solr --settings=dev_settings'

alias goawayswapfilesyouareswapfilesidontevenneedyou='rm ~/.vim/tmp/swap/*'

function fack () {
    find . $@ | grep -v '/\.hg\|/\.git'
}

alias collapse="sed -e 's/  */ /g'"
alias cuts="cut -d' '"
alias clc="./get-last-commit-url.py | pbc"
alias count="sort | uniq -c | sort -n"

function psg() {
    ps auxww | grep --color=always $* | grep -v grep | collapse | cuts -f 2,11-
}

# sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.atrun.plist
function gn() {
    MINS=$1; shift

    if [[ "x$MINS" == "x1" ]]; then
        echo "one"
        UNITS="minute"
    else
        echo "two"
        UNITS="minutes"
    fi

    echo growlnotify -sm "'$*'" | at now + $MINS $UNITS
}

alias lc='longcat | lolcat'