Skip to content

Instantly share code, notes, and snippets.

@mgreensmith
Created December 15, 2015 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgreensmith/c427ad924a7291faf35c to your computer and use it in GitHub Desktop.
Save mgreensmith/c427ad924a7291faf35c to your computer and use it in GitHub Desktop.
# Originally posted to hangops.slack.com by gabe@abinante.com
import random
Prefixlist = ['Viceroy','Commandant', 'Grand Poo-Bah', 'Archon', 'Duke', 'Chancellor', 'President', 'Marquis', 'Earl', 'Director', 'Chair', 'Head', 'Senior Director']
Prefixlist2 = ['Principal','Chief','Head','Lead', 'Senior', 'Master']
Joblist = ['Solutions', 'Systems', 'Network', 'Security', 'Compliance', 'Information', 'Scalability']
Postfixlist = ['Engineer', 'Architect', 'Designer', 'Consultant', 'Manager', 'Officer']
Postfixlist2 = ['Engineering', 'Management', 'Development', 'Deployment', 'Technical Training', 'Operations', 'Architecture', 'Infrastructure', 'Technology', 'Administration', 'Management', 'Computational Analytics', 'Database Administration']
RandomDecider = random.randint(0, 1)
RandomPre = random.choice(Prefixlist)
RandomPre2 = random.choice(Prefixlist2)
RandomJob = random.choice(Joblist)
RandomPost = random.choice(Postfixlist)
RandomPost2 = random.choice(Postfixlist2)
if RandomDecider == 1:
print RandomPre + ' of ' + RandomJob + ' ' + RandomPost2
else:
print RandomPre2 + ' ' + RandomJob + ' ' + RandomPost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment