Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am kanet77 on github.
  • I am tomkane (https://keybase.io/tomkane) on keybase.
  • I have a public key whose fingerprint is F650 644E 17E0 09F3 6F09 295B 053F D4A6 4651 994E

To claim this, I am signing this object:

Idiot-Proof Git Aliases

@kanet77
kanet77 / .bashrc
Last active August 29, 2015 14:11
shared VM files
alias ll="ls -lAGF --color"
alias l="less"
export LESS="-RiMSx4 -FX"
alias red="RACK_ENV=development"
alias ret="RACK_ENV=test"
alias rei="RACK_ENV=integration" # TODO: drop support for integration environment?
alias aui="api && date && foreman start -e .env_integration"
alias ab="api && bundle"
@kanet77
kanet77 / roman.rb
Last active October 22, 2018 13:48
Convert from Decimal to Roman Numerals in Ruby
class RomanNumerals
RN = {
1000 => 'M',
500 => 'D',
100 => 'C',
50 => 'L',
10 => 'X',
5 => 'V',
1 => 'I'
}