Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am natanio on github.
* I am nataroo (https://keybase.io/nataroo) on keybase.
* I have a public key ASDIbs8TPGSTRUkFdmPLsMcftJqaJDCpw2utFoAiya1pfQo
To claim this, I am signing this object:
@natanio
natanio / 0_reuse_code.js
Created July 22, 2016 04:44
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
def mix(syllable1, syllable2)
arr = [syllable1, syllable2]
t = 3
until t == 13 do
t.times do
index = rand(2)
print arr[index] +', '
end
puts