Skip to content

Instantly share code, notes, and snippets.

@evrardjp
Last active May 15, 2018 16:41
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 evrardjp/cc8cb51a38e72204041b5cea3411ec5f to your computer and use it in GitHub Desktop.
Save evrardjp/cc8cb51a38e72204041b5cea3411ec5f to your computer and use it in GitHub Desktop.
OSA meeting chair selection -- random core
#!/usr/bin/env python3
import random
cores = [
"spotz",
"andymccr",
"d34dh0r53",
"evrardjp",
"odyssey4me",
"jmccrory",
"logan-",
"cloudnull",
"mgariepy",
"hwoarang",
"mnaser",
"rromans",
]
print("Our next meeting chair will be %s" % random.choice(cores))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment