Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am sinthetix on github.
  • I am sinthetix (https://keybase.io/sinthetix) on keybase.
  • I have a public key whose fingerprint is EEE8 E851 D88C 15FF F2E3 3E96 BA73 1DA3 E272 B679

To claim this, I am signing this object:

@sinthetix
sinthetix / keybase.md
Created February 17, 2015 22:40
keybase.md

Keybase proof

I hereby claim:

  • I am sinthetix on github.
  • I am sinthetix (https://keybase.io/sinthetix) on keybase.
  • I have a public key whose fingerprint is A71D A538 B25D 7391 2796 19BA 11AE FE21 44C2 F3B5

To claim this, I am signing this object:

@sinthetix
sinthetix / personal_chef.rb
Created November 7, 2013 16:51
Just a silly little personal chef program I made with the help of this tutorial: http://tutorials.jumpstartlab.com/projects/ruby_in_100_minutes.html
class PersonalChef
def make_toast(color)
if color.nil?
puts "Guess you're getting burnt toast!"
else
puts "Making your toast #{color}!"
end
return self
end