Skip to content

Instantly share code, notes, and snippets.

View mogox's full-sized avatar
🇲🇽
🤖

Enrique Carlos Mogollan mogox

🇲🇽
🤖
View GitHub Profile
@mogox
mogox / keybase.md
Created September 7, 2016 07:56
keybase.md

Keybase proof

I hereby claim:

  • I am mogox on github.
  • I am mogox (https://keybase.io/mogox) on keybase.
  • I have a public key whose fingerprint is 3832 45AA D315 9633 007D 711C C16E 8BD6 5087 4582

To claim this, I am signing this object:

@mogox
mogox / bottles.rb
Last active March 21, 2018 23:56
Initial version of the 99 Bottles exercise
class Bottles
def verse(number)
return zero_down if number == 0
<<-VERSE
#{bottles_current(number)}
#{bottles_down(number)}
VERSE
end