Skip to content

Instantly share code, notes, and snippets.

@jbiason
Created April 28, 2010 14:11
Show Gist options
  • Save jbiason/382183 to your computer and use it in GitHub Desktop.
Save jbiason/382183 to your computer and use it in GitHub Desktop.
When discussing about the silliness of the name "Meego", @hisham_hm came with this silly name generator
#!/usr/bin/python
# created by @hisham_hm
import random
silly_consonants=["p", "t", "fl", "g", "gl", "l", 'j', "b", "n", "m", "bl", "z"]
silly_vowels=["a", "e", "ee", "ii", "o", "oo", "u"]
print (random.choice(silly_consonants) +
random.choice(silly_vowels) +
random.choice(silly_consonants) +
random.choice(silly_vowels))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment