Created
March 19, 2013 22:50
-
-
Save ashrewdmint/5200883 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# andrew.rb | |
nouns = %{ | |
hamstring flexibility | |
bitcoins | |
circadian rhythms | |
blue wavelengths of light | |
capitalism | |
cold-thermogenesis | |
paleo | |
espresso | |
Kerrygold butter | |
coconut milk | |
stoicism | |
organ meats | |
magnesium | |
gut flora | |
}.strip.split("\n") | |
connectors = %w(for with) | |
verbs = %{ | |
3D-printing | |
hacking | |
programming | |
eating | |
drinking | |
}.strip.split("\n") | |
virtual_andrew = lambda do | |
v = verbs.sample | |
n1 = nouns.sample | |
nouns2 = Array.new(nouns) | |
nouns2.delete(n1) | |
n2 = nouns2.sample | |
c = connectors.sample | |
puts "So, right now I'm thinking about #{[v.upcase, n1.upcase, c, n2.upcase].join(' ')}! How about you?" | |
end | |
30.times { virtual_andrew.call } |
Author
ashrewdmint
commented
Mar 19, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment