Created
December 15, 2015 18:07
-
-
Save mgreensmith/c427ad924a7291faf35c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Originally posted to hangops.slack.com by [email protected] | |
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