Skip to content

Instantly share code, notes, and snippets.

@palewire
Last active August 29, 2015 14:17
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 palewire/4df427fef6f88c6508ae to your computer and use it in GitHub Desktop.
Save palewire/4df427fef6f88c6508ae to your computer and use it in GitHub Desktop.
Datadesk server name picker
import random
nominee_list = [
"Eric Malnik", # http://articles.latimes.com/print/2010/jul/29/local/la-me-eric-malnic-20100729
"Charles Hillenger", # http://articles.latimes.com/print/2008/apr/30/local/me-hillinger30
"Jim Murray", # http://articles.latimes.com/print/1998/aug/18/news/mn-14252
"George Ramos", # http://articles.latimes.com/print/2011/jul/25/local/la-me-george-ramos-20110725
"Frank del Olmo", # http://www.latimes.com/local/obituaries/la-me-delolmo20feb20-story.html#page=1
"Laurie Becklund", # http://www.latimes.com/opinion/op-ed/la-oe-becklund-breast-cancer-komen-20150222-story.html#page=1
"Bill Billiter", # http://articles.latimes.com/print/1997-04-20/local/me-50644_1_orange-county
"Art Berman", # http://articles.latimes.com/print/1996-11-29/news/mn-4104_1_times-reporters
"Bela Stumbo", # http://articles.latimes.com/print/2002/dec/07/local/me-stumbo7
"Ruth Ryon", # http://articles.latimes.com/print/2014/mar/29/local/la-me-ruth-ryon-20140329
"Dave Barton", # http://herex0.tripod.com/barton.pdf
"Nick Williams", # http://articles.latimes.com/print/2012/aug/09/local/la-me-nick-williams-20120809
"Smokey Hale", # http://latimesblogs.latimes.com/thedailymirror/2007/10/tribute-to-jack.html
"Art Sidenbaum", # http://articles.latimes.com/print/1990-07-26/news/mn-986_1_art-seidenbaum
#"Burt Folkart", # http://articles.latimes.com/print/2000/dec/09/local/me-63291
"Bill Thomas",
]
print random.choice(nominee_list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment