Skip to content

Instantly share code, notes, and snippets.

@gleicon
Forked from friggeri/haiku
Last active August 29, 2015 14:11
Show Gist options
  • Save gleicon/467622e639858a019de3 to your computer and use it in GitHub Desktop.
Save gleicon/467622e639858a019de3 to your computer and use it in GitHub Desktop.
haiku name generator in python
import math
import random
adjs=["autumn", "hidden", "bitter", "misty", "silent", "empty", "dry", "dark",
"summer", "icy", "delicate", "quiet", "white", "cool", "spring", "winter",
"patient", "twilight", "dawn", "crimson", "wispy", "weathered", "blue",
"billowing", "broken", "cold", "damp", "falling", "frosty", "green",
"long", "late", "lingering", "bold", "little", "morning", "muddy", "old",
"red", "rough", "still", "small", "sparkling", "throbbing", "shy",
"wandering", "withered", "wild", "black", "young", "holy", "solitary",
"fragrant", "aged", "snowy", "proud", "floral", "restless", "divine",
"polished", "ancient", "purple", "lively", "nameless"]
nouns=["waterfall", "river", "breeze", "moon", "rain", "wind", "sea", "morning",
"snow", "lake", "sunset", "pine", "shadow", "leaf", "dawn", "glitter",
"forest", "hill", "cloud", "meadow", "sun", "glade", "bird", "brook",
"butterfly", "bush", "dew", "dust", "field", "fire", "flower", "firefly",
"feather", "grass", "haze", "mountain", "night", "pond", "darkness",
"snowflake", "silence", "sound", "sky", "shape", "surf", "thunder",
"violet", "water", "wildflower", "wave", "water", "resonance", "sun",
"wood", "dream", "cherry", "tree", "fog", "frost", "voice", "paper",
"frog", "smoke", "star"]
def haiku():
rnd = int(math.floor(random.random() * math.pow(2,12)))
a = (rnd >> 6) % 64
n = rnd % 64
return adjs[a]+"_"+nouns[n]
if __name__ == "__main__":
print haiku()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment