Last active
August 29, 2015 14:17
Revisions
-
palewire revised this gist
Mar 18, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -15,7 +15,8 @@ "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) -
palewire created this gist
Mar 17, 2015 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ 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 ] print random.choice(nominee_list)