This strips all the commit info out of the blame lines except the
author name, which makes it easier for me to see what students have
changed when I'm reviewing homework submissions.
# Alias useful one-liners & common commands
alias findex='find . -perm -u+x ! -type d'
+alias git-blame-author='git blame sudoku.c | sed "s/^[^(]*//" | sed "s/ [0-9]\{4\}-[^)]*//" | less'
alias sortdat='find . -printf "%TY-%Tm-%Td+%TH:%TM:%TS %h/%f\n" | sort -n'
alias sortdirdat='find . -type d -printf "%TY-%Tm-%Td+%TH:%TM:%TS %h/%f\n" | sort -n'
alias pythonhttp='python -m SimpleHTTPServer 8000'