This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------- | |
# .bash_alias | |
# --------------- | |
alias lock='/System/Library/CoreServices/"Menu extras"/User.menu/Contents/Resources/CGSession -suspend' # Lock Computer screen | |
alias rpass='touch tmp/restart.txt; echo "Passenger Server Restarted"' # Restart ModRails Passenger | |
alias coffee="say COFFEE TIME" | |
alias cf='cd ~/Code' # Code folder | |
alias cwd='pwd | pbcopy' # Copy folder directory to ClipBoard | |
alias memory='top -o vsize' # System Memory Stats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%- flash.each do |name, msg| -%> | |
<%= content_tag :div, msg , :id => "flash", :class => "flash_#{name}" %> | |
<%- end -%> |
NewerOlder