I know at least a couple others might be running Linux out there.
I've been tinkering with my aliases and wanted to share.
# Navigation
alias ~='cd ~'
alias h='clear ; cal -3 ; date ; cd ~ ; ls'
alias home='nautilus'
alias docs='nautilus ~/Documents'
alias pics='nautilus ~/Pictures'
alias music='nautilus ~/Music'
alias vids='nautilus ~/Videos'
alias desk='nautilus ~/Desktop'
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
alias open='gnome-open'
alias browse='nautilus ./'
# Fun
alias dump='cp /tmp/Flash* ~/Desktop' # Dumps flash videos from the web.
alias save='cp /tmp/Flash*' # Save flash videos. Designate location to save.
alias calc='gcalctool'
alias solve='gcalctool -s'
alias web='firefox'
# Administrative
alias q='exit'
alias OFF='sudo shutdown -P now'
alias REB='sudo shutdown -r now'
alias rm='rm -i'
alias df='df -h'
# Music
alias play='banshee --play'
alias p='banshee --toggle-playing'
alias pause='banshee --pause'
alias end='banshee --stop-when-finished'
alias stop='banshee --stop'
alias playing='banshee --query-position --query-title --query-artist'
Let me know what you think, or if you have any suggestions. Also, feel free you use any of these if they are useful to you.