Skip to content

Instantly share code, notes, and snippets.

View oneKelvinSmith's full-sized avatar

Kelvin Smith oneKelvinSmith

View GitHub Profile

Keybase proof

I hereby claim:

  • I am onekelvinsmith on github.
  • I am onekelvinsmith (https://keybase.io/onekelvinsmith) on keybase.
  • I have a public key ASCsMl46FW_nspYPCETlIJFntR1GbnEHChLl7q2AXrZgeQo

To claim this, I am signing this object:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.18556660413742065</real>
<key>Green Component</key>
<real>0.21965453028678894</real>
@oneKelvinSmith
oneKelvinSmith / guard_emacs_color
Created June 4, 2013 13:57
Red-Green Colorization of emacs with Guard. Add the following to beginning of Rails Guardfile.
# emacs colour customization
DARK_GREEN = '#67930F'
DARK_YELLOW = '#968B26'
DARK_RED = '#A20C41'
LIGHT_GREEN = '#C1F161'
LIGHT_YELLOW = '#F3EA98'
LIGHT_RED = '#FC5C94'
DEFAULT = '#49483E'
@oneKelvinSmith
oneKelvinSmith / .bash_aliases
Created February 21, 2013 21:40
A collection of aliases I use with bash [http://en.wikipedia.org/wiki/Bash_(Unix_shell)].
# general aliases
alias c='clear'
alias h='history 25'
# git aliases
alias ga='git add'
alias gb='git branch'
alias gc='git commit'
alias gca='git commit -a'
alias gcam='git commit -a -m'