Skip to content

Instantly share code, notes, and snippets.

@garbados
Created October 10, 2013 19:32
Show Gist options
  • Save garbados/6924140 to your computer and use it in GitHub Desktop.
Save garbados/6924140 to your computer and use it in GitHub Desktop.
A Python script to generate pithy witticisms, Brad Noble's hallmark.
import random
prefix = [
'do',
'grow',
'edge',
'next',
'build',
'sleep',
'play',
'bike',
'dash',
'cloud'
]
suffix = [
'ant',
' more',
'wise',
'board'
]
def getNoble():
return random.choice(prefix) + random.choice(suffix)
if __name__ == '__main__':
print getNoble()
@garbados
Copy link
Author

Some examples:

  • buildant
  • bike more
  • dashwise

<3 Brad :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment