Skip to content

Instantly share code, notes, and snippets.

@ryanguill
Last active November 4, 2016 21:04
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 ryanguill/036a35ad8cc07bf600b25212eacc3ced to your computer and use it in GitHub Desktop.
Save ryanguill/036a35ad8cc07bf600b25212eacc3ced to your computer and use it in GitHub Desktop.

Challenge:

Create a function that takes an array of objects that contain a name and a date counts instances of the name for a score. Output a leaderboard of the top 10 scores. Combine the same scores together so that if, for example, first place is 20 points and two people have 20 points, show them both in first place. The order of the names in the same place are not important. Next would still be second place. For this challenge, the dates do not matter.

Expectations:

  • The function should be of the form f(data) => string
  • The input will be an array of objects that contain the key "user" which is a string and a key "ts" which is a whole number in unix time in milliseconds.
  • The actual data is in karma.json as a different file in this gist.
  • Output the top 10 places (which remember that each place might include multiple users if they share the same score)

Example:

Given the following example data (again, the data you should use for the actual challenge is in a different file at the bottom of this gist):

var data = [
	{
	"user": "watney",
	"ts": 1436310620972
	},
	{
	"user": "watney",
	"ts": 1436358918822
	},
	{
	"user": "watney",
	"ts": 1436363926303
	},
	{
	"user": "watney",
	"ts": 1436363981442
	},
	{
	"user": "mjhagen",
	"ts": 1436364513629
	},
	{
	"user": "mjhagen",
	"ts": 1436371930576
	},
	{
	"user": "mjhagen",
	"ts": 1436372686483
	},
	{
	"user": "mjhagen",
	"ts": 1436372882457
	},
	{
	"user": "adam_cameron",
	"ts": 1436372898623
	},
	{
	"user": "adam_cameron",
	"ts": 1436375428838
	},
	{
	"user": "adam_cameron",
	"ts": 1436376033686
	},
	{
	"user": "adam_cameron",
	"ts": 1436376834266
	},
	{
	"user": "ryanguill",
	"ts": 1436424381782
	},
	{
	"user": "ryanguill",
	"ts": 1436424670410
	},
	{
	"user": "ryanguill",
	"ts": 1436451749816
	},
	{
	"user": "bdw429s",
	"ts": 1436453032635
	},
	{
	"user": "bdw429s",
	"ts": 1436455704816
	},
	{
	"user": "bdw429s",
	"ts": 1436460072067
	},
	{
	"user": "aliaspooryorik",
	"ts": 1436460076928
	},
	{
	"user": "aliaspooryorik",
	"ts": 1436469597879
	},
	{
	"user": "rodel30",
	"ts": 1436523483555
	}
];

you would get three people in first, two people in second, one in third and one in fourth and you would output like this:

[ #1 @ 4k ]: watney, mjhagen, adam_cameron
[ #2 @ 3k ]: bdw429s, ryanguill
[ #3 @ 2k ]: aliaspooryorik
[ #4 @ 1k ]: rodel30

(This is just example data, please do not be offended of your presense (or lack thereof) or placement in this example)

Judging

  • Correctness of the result. The solution must address the problem as specified.
  • Readability. This is not code golf - conciseness is good, but readable/understandable/maintainable is the goal.
  • Bonus points for including unit tests.
  • Further bonus points for sharing unit tests in the comments on the gist.

Rules

  • Original work only.
  • Submissions should be licensed under a permissive license (MIT/BSD/Apache 2.0/etc.)
  • You can use any language. You can use libraries, but you should explain their usage if its not apparent.
  • This is for fun and learning. There are no prizes except pride, knowledge and maybe karma.
  • Submit answers in the comments of the gist as a link Gist/PasteBin/Online REPL, not in slack.
  • Feel free to discuss the problem and solutions in cfml-slack in #friday-puzzle.
  • If you need to clarify something about the problem or rules, do it here in the comments on the gist, or at least copy the clarification here for posterity
[
{
"user": "watney",
"ts": 1436310620972
},
{
"user": "ryanguill",
"ts": 1436358918822
},
{
"user": "danwilson",
"ts": 1436363926303
},
{
"user": "danwilson",
"ts": 1436363981442
},
{
"user": "watney",
"ts": 1436364513629
},
{
"user": "byron70",
"ts": 1436371930576
},
{
"user": "fmdano",
"ts": 1436372686483
},
{
"user": "foundeo",
"ts": 1436372882457
},
{
"user": "fmdano",
"ts": 1436372898623
},
{
"user": "abram",
"ts": 1436375428838
},
{
"user": "abram",
"ts": 1436376033686
},
{
"user": "fmdano",
"ts": 1436376834266
},
{
"user": "bdw429s",
"ts": 1436424381782
},
{
"user": "bdw429s",
"ts": 1436424670410
},
{
"user": "jimcumming",
"ts": 1436451749816
},
{
"user": "fmdano",
"ts": 1436453032635
},
{
"user": "ryanguill",
"ts": 1436455704816
},
{
"user": "fmdano",
"ts": 1436460072067
},
{
"user": "awayken",
"ts": 1436460076928
},
{
"user": "abram",
"ts": 1436469597879
},
{
"user": "joerg_w",
"ts": 1436523483555
},
{
"user": "joerg_wilcke",
"ts": 1436523512232
},
{
"user": "joerg_wilcke",
"ts": 1436523609596
},
{
"user": "fmdano",
"ts": 1436552529513
},
{
"user": "abram",
"ts": 1436554409588
},
{
"user": "foundeo",
"ts": 1436554645083
},
{
"user": "foundeo",
"ts": 1436554651675
},
{
"user": "foundeo",
"ts": 1436554654029
},
{
"user": "foundeo",
"ts": 1436554658141
},
{
"user": "ryanguill",
"ts": 1436555038607
},
{
"user": "ryanguill",
"ts": 1436555151645
},
{
"user": "seancorfield",
"ts": 1436555183755
},
{
"user": "fyroc",
"ts": 1436555318164
},
{
"user": "ryanguill",
"ts": 1436559104849
},
{
"user": "ryanguill",
"ts": 1436560063199
},
{
"user": "bdw429s",
"ts": 1436650052510
},
{
"user": "peter",
"ts": 1436650057359
},
{
"user": "atuttle",
"ts": 1436798413003
},
{
"user": "atuttle",
"ts": 1436798495198
},
{
"user": "mjhagen",
"ts": 1436799149755
},
{
"user": "nolanerck",
"ts": 1436822182214
},
{
"user": "shawnoden",
"ts": 1436851404315
},
{
"user": "atuttle",
"ts": 1436851667664
},
{
"user": "atuttle",
"ts": 1436873238312
},
{
"user": "aliaspooryorik",
"ts": 1436890201284
},
{
"user": "atuttle",
"ts": 1436902760810
},
{
"user": "gpickin",
"ts": 1436928167889
},
{
"user": "salted",
"ts": 1436950285161
},
{
"user": "abram",
"ts": 1436984559856
},
{
"user": "fmdano",
"ts": 1437001593572
},
{
"user": "seancorfield",
"ts": 1437010465611
},
{
"user": "foundeo",
"ts": 1437065481935
},
{
"user": "abram",
"ts": 1437065485074
},
{
"user": "abram",
"ts": 1437065494346
},
{
"user": "abram",
"ts": 1437065527064
},
{
"user": "abram",
"ts": 1437065593060
},
{
"user": "foundeo",
"ts": 1437065610795
},
{
"user": "abram",
"ts": 1437065693940
},
{
"user": "abram",
"ts": 1437069056691
},
{
"user": "foundeo",
"ts": 1437069060026
},
{
"user": "tomchiverton",
"ts": 1437145776542
},
{
"user": "ryanguill",
"ts": 1437146614117
},
{
"user": "peter",
"ts": 1437159776019
},
{
"user": "peter",
"ts": 1437165671362
},
{
"user": "simonhooker",
"ts": 1437386131668
},
{
"user": "tharding",
"ts": 1437395030741
},
{
"user": "aliaspooryorik",
"ts": 1437395032508
},
{
"user": "mjhagen",
"ts": 1437407363087
},
{
"user": "wellercs",
"ts": 1437453385543
},
{
"user": "wellercs",
"ts": 1437458853650
},
{
"user": "chris-schmitz",
"ts": 1437486996558
},
{
"user": "atuttle",
"ts": 1437507152464
},
{
"user": "foundeo",
"ts": 1437507172749
},
{
"user": "bdw429s",
"ts": 1437518522846
},
{
"user": "gpickin",
"ts": 1437518528852
},
{
"user": "bdw429s",
"ts": 1437518550241
},
{
"user": "colbylitnak",
"ts": 1437528680034
},
{
"user": "agentk",
"ts": 1437530557335
},
{
"user": "fmdano",
"ts": 1437589478803
},
{
"user": "ryanmueller",
"ts": 1437599144034
},
{
"user": "jim_partin",
"ts": 1437669015453
},
{
"user": "mjhagen",
"ts": 1437675576568
},
{
"user": "bdw429s",
"ts": 1437700436638
},
{
"user": "atuttle",
"ts": 1437751242789
},
{
"user": "freudsfeud",
"ts": 1437751252118
},
{
"user": "ryanguill",
"ts": 1437751452002
},
{
"user": "gpickin",
"ts": 1438012909271
},
{
"user": "tigeryan",
"ts": 1438025600917
},
{
"user": "brianklaas",
"ts": 1438025607577
},
{
"user": "gpickin",
"ts": 1438093247469
},
{
"user": "chris-schmitz",
"ts": 1438093265514
},
{
"user": "wellercs",
"ts": 1438093314018
},
{
"user": "gpickin",
"ts": 1438112838583
},
{
"user": "anitkumar85",
"ts": 1438117025679
},
{
"user": "anitkumar85",
"ts": 1438117053185
},
{
"user": "anitkumar85",
"ts": 1438117098860
},
{
"user": "anitkumar85",
"ts": 1438118117820
},
{
"user": "anitkumar85",
"ts": 1438136071493
},
{
"user": "modius",
"ts": 1438140502147
},
{
"user": "anitkumar85",
"ts": 1438182600404
},
{
"user": "nicholasc",
"ts": 1438192527935
},
{
"user": "foundeo",
"ts": 1438194358057
},
{
"user": "foundeo",
"ts": 1438194980715
},
{
"user": "jaredce",
"ts": 1438271679512
},
{
"user": "bdw429s",
"ts": 1438288730929
},
{
"user": "gpickin",
"ts": 1438298028957
},
{
"user": "atuttle",
"ts": 1438301018892
},
{
"user": "adam_cameron",
"ts": 1438332392112
},
{
"user": "atuttle",
"ts": 1438355249228
},
{
"user": "gpickin",
"ts": 1438355815761
},
{
"user": "jaeming",
"ts": 1438357873294
},
{
"user": "bdw429s",
"ts": 1438371802347
},
{
"user": "gpickin",
"ts": 1438371810362
},
{
"user": "bdw429s",
"ts": 1438382515235
},
{
"user": "bdw429s",
"ts": 1438460086984
},
{
"user": "adam_cameron",
"ts": 1438515417681
},
{
"user": "chris-schmitz",
"ts": 1438688468872
},
{
"user": "salted",
"ts": 1438688853054
},
{
"user": "salted",
"ts": 1438688889631
},
{
"user": "chris-schmitz",
"ts": 1438693650442
},
{
"user": "chris-schmitz",
"ts": 1438700566880
},
{
"user": "gpickin",
"ts": 1438702389926
},
{
"user": "brianghidinelli",
"ts": 1438702434713
},
{
"user": "brianghidinelli",
"ts": 1438702463540
},
{
"user": "adam_cameron",
"ts": 1438717108997
},
{
"user": "da_didi",
"ts": 1438750393730
},
{
"user": "adam_cameron",
"ts": 1438765055776
},
{
"user": "himansu",
"ts": 1438775918015
},
{
"user": "salted",
"ts": 1438781311540
},
{
"user": "iknowkungfoo",
"ts": 1438783956163
},
{
"user": "bdw429s",
"ts": 1438802130891
},
{
"user": "adam_cameron",
"ts": 1438802175574
},
{
"user": "bdw429s",
"ts": 1438805569226
},
{
"user": "abram",
"ts": 1438810898614
},
{
"user": "jcberquist",
"ts": 1438874157108
},
{
"user": "salted",
"ts": 1438875251061
},
{
"user": "websolete",
"ts": 1438884986627
},
{
"user": "adam_cameron",
"ts": 1438884991668
},
{
"user": "chris-schmitz",
"ts": 1438937393104
},
{
"user": "da_didi",
"ts": 1438937395359
},
{
"user": "aliaspooryorik",
"ts": 1438949274767
},
{
"user": "nicholasc",
"ts": 1438955915571
},
{
"user": "salted",
"ts": 1439218662240
},
{
"user": "mentoc",
"ts": 1439233127872
},
{
"user": "bdw429s",
"ts": 1439242658669
},
{
"user": "adam_cameron",
"ts": 1439246560373
},
{
"user": "markmandel",
"ts": 1439246913621
},
{
"user": "andrew",
"ts": 1439296923521
},
{
"user": "simonhooker",
"ts": 1439374402266
},
{
"user": "abram",
"ts": 1439430015968
},
{
"user": "abram",
"ts": 1439433304577
},
{
"user": "adam_cameron",
"ts": 1439466293406
},
{
"user": "mjhagen",
"ts": 1439471606284
},
{
"user": "foundeo",
"ts": 1439500235590
},
{
"user": "cwigginton",
"ts": 1439745889827
},
{
"user": "cwigginton",
"ts": 1439745904652
},
{
"user": "cwigginton",
"ts": 1439793275653
},
{
"user": "simonhooker",
"ts": 1439801741701
},
{
"user": "jtreher",
"ts": 1439825036517
},
{
"user": "bdw429s",
"ts": 1439844837282
},
{
"user": "chris-schmitz",
"ts": 1439902176421
},
{
"user": "simonhooker",
"ts": 1439909841746
},
{
"user": "brianghidinelli",
"ts": 1439924907950
},
{
"user": "brianghidinelli",
"ts": 1439925148184
},
{
"user": "iknowkungfoo",
"ts": 1439928407846
},
{
"user": "jeff.martin42",
"ts": 1439929293720
},
{
"user": "brianghidinelli",
"ts": 1439933143314
},
{
"user": "abram",
"ts": 1439964971793
},
{
"user": "mjhagen",
"ts": 1439984773358
},
{
"user": "simonhooker",
"ts": 1439992764029
},
{
"user": "simonhooker",
"ts": 1439993476139
},
{
"user": "yogidevbear",
"ts": 1440065044507
},
{
"user": "yogidevbear",
"ts": 1440065988702
},
{
"user": "chris-hopkins",
"ts": 1440066373026
},
{
"user": "nicholasc",
"ts": 1440075069707
},
{
"user": "nicholasc",
"ts": 1440075243692
},
{
"user": "nicholas",
"ts": 1440075253905
},
{
"user": "nicholasc",
"ts": 1440075270512
},
{
"user": "nicholasc",
"ts": 1440076666355
},
{
"user": "bdw429s",
"ts": 1440094707118
},
{
"user": "ryanguill",
"ts": 1440095982709
},
{
"user": "fergusonbs",
"ts": 1440104060952
},
{
"user": "fyroc",
"ts": 1440179658543
},
{
"user": "chris-schmitz",
"ts": 1440417672735
},
{
"user": "madmike_de",
"ts": 1440432962273
},
{
"user": "chris-hopkins",
"ts": 1440432974416
},
{
"user": "bdw429s",
"ts": 1440454612703
},
{
"user": "chris-schmitz",
"ts": 1440454648174
},
{
"user": "bdw429s",
"ts": 1440456413434
},
{
"user": "guustnieuwenhuis",
"ts": 1440509652665
},
{
"user": "fergusonbs",
"ts": 1440533246284
},
{
"user": "bdw429s",
"ts": 1440536833280
},
{
"user": "dalefraser",
"ts": 1440581979138
},
{
"user": "nathanstrutz",
"ts": 1440601745381
},
{
"user": "davlar",
"ts": 1440601756087
},
{
"user": "chris-schmitz",
"ts": 1440601884551
},
{
"user": "foundeo",
"ts": 1440602026292
},
{
"user": "seancorfield",
"ts": 1440650871176
},
{
"user": "chapmandu",
"ts": 1440651925158
},
{
"user": "aliaspooryorik",
"ts": 1440672232729
},
{
"user": "aliaspooryorik",
"ts": 1440676778012
},
{
"user": "rukumar",
"ts": 1440726546554
},
{
"user": "twillen",
"ts": 1440790328438
},
{
"user": "twillen",
"ts": 1440790358405
},
{
"user": "gamesover",
"ts": 1440834673938
},
{
"user": "ryanguill",
"ts": 1440972989525
},
{
"user": "adam_cameron",
"ts": 1441014547981
},
{
"user": "bdw429s",
"ts": 1441055488779
},
{
"user": "mjclemente",
"ts": 1441057040886
},
{
"user": "bdw429s",
"ts": 1441058266861
},
{
"user": "mjclemente",
"ts": 1441113569070
},
{
"user": "salted",
"ts": 1441113572202
},
{
"user": "chris-schmitz",
"ts": 1441113583049
},
{
"user": "fergusonbs",
"ts": 1441211761552
},
{
"user": "jtreher",
"ts": 1441211767690
},
{
"user": "chris-schmitz",
"ts": 1441211780533
},
{
"user": "mistersender",
"ts": 1441214785034
},
{
"user": "mistersender",
"ts": 1441215953749
},
{
"user": "mehdi",
"ts": 1441216297914
},
{
"user": "adam_cameron",
"ts": 1441217741836
},
{
"user": "mistersender",
"ts": 1441218542232
},
{
"user": "bdw429s",
"ts": 1441221337654
},
{
"user": "foundeo",
"ts": 1441225957082
},
{
"user": "marcin",
"ts": 1441277533303
},
{
"user": "tomchiverton",
"ts": 1441288684946
},
{
"user": "salted",
"ts": 1441288897962
},
{
"user": "chris-schmitz",
"ts": 1441373985612
},
{
"user": "adam_cameron",
"ts": 1441701819158
},
{
"user": "salted",
"ts": 1441715075501
},
{
"user": "salted",
"ts": 1441715092629
},
{
"user": "salted",
"ts": 1441718031475
},
{
"user": "chris-schmitz",
"ts": 1441718042116
},
{
"user": "atuttle",
"ts": 1441728806314
},
{
"user": "atuttle",
"ts": 1441728972769
},
{
"user": "chris-hopkins",
"ts": 1441791062544
},
{
"user": "kwaschny",
"ts": 1441921573439
},
{
"user": "ryanguill",
"ts": 1441995457162
},
{
"user": "kwaschny",
"ts": 1442001948569
},
{
"user": "adam_cameron",
"ts": 1442256926652
},
{
"user": "simonhooker",
"ts": 1442321198515
},
{
"user": "jcberquist",
"ts": 1442322715150
},
{
"user": "djwljr",
"ts": 1442411466603
},
{
"user": "nicholas",
"ts": 1442417538834
},
{
"user": "nicholasc",
"ts": 1442417554761
},
{
"user": "djwljr",
"ts": 1442417624968
},
{
"user": "bdw429s",
"ts": 1442427001229
},
{
"user": "kwaschny",
"ts": 1442427010312
},
{
"user": "kwaschny",
"ts": 1442576729095
},
{
"user": "ryanguill",
"ts": 1442852064240
},
{
"user": "salted",
"ts": 1443102254819
},
{
"user": "bdw429s",
"ts": 1443203324095
},
{
"user": "adam_cameron",
"ts": 1443203494845
},
{
"user": "seancorfield",
"ts": 1443515882272
},
{
"user": "elishia",
"ts": 1443543020934
},
{
"user": "bdw429s",
"ts": 1443543065557
},
{
"user": "wilgeno",
"ts": 1443552756613
},
{
"user": "fabrice",
"ts": 1443625679330
},
{
"user": "fabrice",
"ts": 1443626025295
},
{
"user": "evagoras",
"ts": 1443626573468
},
{
"user": "carehart",
"ts": 1443650609783
},
{
"user": "krishnap",
"ts": 1443723294765
},
{
"user": "krishnap",
"ts": 1443724587842
},
{
"user": "maryjo",
"ts": 1443816657900
},
{
"user": "foundeo",
"ts": 1443819328681
},
{
"user": "aaronstoddard",
"ts": 1443819354047
},
{
"user": "dkumar431",
"ts": 1444033063428
},
{
"user": "bdw429s",
"ts": 1444160677416
},
{
"user": "ryanguill",
"ts": 1444232988233
},
{
"user": "ryanguill",
"ts": 1444269283731
},
{
"user": "jcberquist",
"ts": 1444313428371
},
{
"user": "foundeo",
"ts": 1444318239561
},
{
"user": "justinmclean",
"ts": 1444450173832
},
{
"user": "justinmclean",
"ts": 1444450490679
},
{
"user": "adam.euans",
"ts": 1444764887492
},
{
"user": "mattdyer",
"ts": 1444767981314
},
{
"user": "bdw429s",
"ts": 1444773846684
},
{
"user": "adam_cameron",
"ts": 1444819634790
},
{
"user": "adam_cameron",
"ts": 1444820118853
},
{
"user": "adam_cameron",
"ts": 1444820323858
},
{
"user": "adam_cameron",
"ts": 1444824844067
},
{
"user": "maryjo",
"ts": 1444835811662
},
{
"user": "atuttle",
"ts": 1444836539049
},
{
"user": "maryjo",
"ts": 1444836553770
},
{
"user": "adam_cameron",
"ts": 1444840217118
},
{
"user": "aaronstoddard",
"ts": 1444845376636
},
{
"user": "nicholasc",
"ts": 1444847470622
},
{
"user": "seancorfield",
"ts": 1444866104164
},
{
"user": "ryanguill",
"ts": 1444866114647
},
{
"user": "adam_cameron",
"ts": 1444896888222
},
{
"user": "jtreher",
"ts": 1444906288545
},
{
"user": "bdw429s",
"ts": 1444928349139
},
{
"user": "websolete",
"ts": 1444928353297
},
{
"user": "yogidevbear",
"ts": 1445003598385
},
{
"user": "foundeo",
"ts": 1445003646611
},
{
"user": "ryanguill",
"ts": 1445004854829
},
{
"user": "chris-schmitz",
"ts": 1445012122332
},
{
"user": "fergusonbs",
"ts": 1445012144256
},
{
"user": "ryanguill",
"ts": 1445019109441
},
{
"user": "abram",
"ts": 1445268778341
},
{
"user": "abram",
"ts": 1445268796781
},
{
"user": "abram",
"ts": 1445268826270
},
{
"user": "abram",
"ts": 1445269970961
},
{
"user": "abram",
"ts": 1445275186246
},
{
"user": "ryanguill",
"ts": 1445277767198
},
{
"user": "fyroc",
"ts": 1445277778142
},
{
"user": "tattva5",
"ts": 1445369564858
},
{
"user": "seancorfield",
"ts": 1445369604779
},
{
"user": "danwilson",
"ts": 1445371399207
},
{
"user": "fergusonbs",
"ts": 1445371511238
},
{
"user": "miguel-f",
"ts": 1445371736316
},
{
"user": "ryanguill",
"ts": 1445381983309
},
{
"user": "da_didi",
"ts": 1445588168422
},
{
"user": "da_didi",
"ts": 1445588191018
},
{
"user": "guustnieuwenhuis",
"ts": 1445588196287
},
{
"user": "guustnieuwenhuis",
"ts": 1445588238886
},
{
"user": "guustnieuwenhuis",
"ts": 1445588484024
},
{
"user": "guustnieuwenhuis",
"ts": 1445588712893
},
{
"user": "guustnieuwenhuis",
"ts": 1445588724241
},
{
"user": "dbudde",
"ts": 1445627336151
},
{
"user": "chris-schmitz",
"ts": 1445811135747
},
{
"user": "madmike_de",
"ts": 1445853266610
},
{
"user": "madmike_de",
"ts": 1445853387923
},
{
"user": "madmike_de",
"ts": 1445864778768
},
{
"user": "ryanguill",
"ts": 1445869308716
},
{
"user": "awayken",
"ts": 1446066412330
},
{
"user": "salted",
"ts": 1446122003504
},
{
"user": "atuttle",
"ts": 1446151363627
},
{
"user": "adam_cameron",
"ts": 1446151373373
},
{
"user": "fmdano",
"ts": 1446558451091
},
{
"user": "ryanguill",
"ts": 1446566883772
},
{
"user": "bdw429s",
"ts": 1446577609009
},
{
"user": "ryanguill",
"ts": 1446853089838
},
{
"user": "ryanguill",
"ts": 1446857041992
},
{
"user": "denny",
"ts": 1446857050662
},
{
"user": "atuttle",
"ts": 1446861000987
},
{
"user": "ryanguill",
"ts": 1446861096239
},
{
"user": "atuttle",
"ts": 1446862358732
},
{
"user": "atuttle",
"ts": 1446890158914
},
{
"user": "tyler_gross",
"ts": 1447094455929
},
{
"user": "tyler_gross",
"ts": 1447094595114
},
{
"user": "justinmclean",
"ts": 1447158561188
},
{
"user": "danskaggs",
"ts": 1447163725480
},
{
"user": "mjhagen",
"ts": 1447168945966
},
{
"user": "mjhagen",
"ts": 1447169172814
},
{
"user": "elpete",
"ts": 1447191108468
},
{
"user": "adam_cameron",
"ts": 1447191161217
},
{
"user": "brianklaas",
"ts": 1447201628364
},
{
"user": "gpickin",
"ts": 1447206653553
},
{
"user": "adam_cameron",
"ts": 1447259644761
},
{
"user": "lmajano",
"ts": 1447263992920
},
{
"user": "elpete",
"ts": 1447279725481
},
{
"user": "ryanguill",
"ts": 1447342175172
},
{
"user": "tyler_gross",
"ts": 1447342183820
},
{
"user": "ryanguill",
"ts": 1447342286770
},
{
"user": "fmdano",
"ts": 1447346248575
},
{
"user": "cwigginton",
"ts": 1447435961473
},
{
"user": "seancorfield",
"ts": 1447447507078
},
{
"user": "dajester2015",
"ts": 1447447510632
},
{
"user": "itisdesign",
"ts": 1447559555925
},
{
"user": "itisdesign",
"ts": 1447559614241
},
{
"user": "itisdesign",
"ts": 1447587556429
},
{
"user": "byron",
"ts": 1447692257898
},
{
"user": "cwigginton",
"ts": 1447692270227
},
{
"user": "nzmehere",
"ts": 1447718821506
},
{
"user": "byron",
"ts": 1447780005783
},
{
"user": "dajester2015",
"ts": 1447788720750
},
{
"user": "bdw429s",
"ts": 1447799292464
},
{
"user": "itisdesign",
"ts": 1447825014185
},
{
"user": "adam_cameron",
"ts": 1447835793680
},
{
"user": "fmdano",
"ts": 1447865641877
},
{
"user": "bdw429s",
"ts": 1447958861687
},
{
"user": "foundeo",
"ts": 1448031672288
},
{
"user": "foundeo",
"ts": 1448031791540
},
{
"user": "foundeo",
"ts": 1448032082948
},
{
"user": "foundeo",
"ts": 1448034881683
},
{
"user": "danwilson",
"ts": 1448036652930
},
{
"user": "aliaspooryorik",
"ts": 1448043943478
},
{
"user": "iknowkungfoo",
"ts": 1448043949133
},
{
"user": "ryanguill",
"ts": 1448053445688
},
{
"user": "adam_cameron",
"ts": 1448366567574
},
{
"user": "adam_cameron",
"ts": 1448445784520
},
{
"user": "aliaspooryorik",
"ts": 1448552290109
},
{
"user": "adam_cameron",
"ts": 1448552978027
},
{
"user": "fmdano",
"ts": 1448889488081
},
{
"user": "davlar",
"ts": 1448889715440
},
{
"user": "mjhagen",
"ts": 1448990907180
},
{
"user": "carehart",
"ts": 1449072652109
},
{
"user": "wyox",
"ts": 1449072808066
},
{
"user": "seancorfield",
"ts": 1449083853928
},
{
"user": "chris-hopkins",
"ts": 1449156551646
},
{
"user": "atuttle",
"ts": 1449170161771
},
{
"user": "adam_cameron",
"ts": 1449184834692
},
{
"user": "seancorfield",
"ts": 1449216605016
},
{
"user": "adam_cameron",
"ts": 1449218901987
},
{
"user": "seancorfield",
"ts": 1449220110536
},
{
"user": "seancorfield",
"ts": 1449220230520
},
{
"user": "adam_cameron",
"ts": 1449220248736
},
{
"user": "sqlninja1",
"ts": 1449220282127
},
{
"user": "seancorfield",
"ts": 1449236519539
},
{
"user": "adam_cameron",
"ts": 1449236528706
},
{
"user": "adam_cameron",
"ts": 1449245635519
},
{
"user": "seancorfield",
"ts": 1449245716640
},
{
"user": "adam_cameron",
"ts": 1449248031280
},
{
"user": "seancorfield",
"ts": 1449265159729
},
{
"user": "seancorfield",
"ts": 1449275729602
},
{
"user": "seancorfield",
"ts": 1449278158112
},
{
"user": "adam_cameron",
"ts": 1449278176636
},
{
"user": "seancorfield",
"ts": 1449288030504
},
{
"user": "adam_cameron",
"ts": 1449288041253
},
{
"user": "bdw429s",
"ts": 1449389450029
},
{
"user": "gpickin",
"ts": 1449389478287
},
{
"user": "foundeo",
"ts": 1449503355807
},
{
"user": "bdw429s",
"ts": 1449541362404
},
{
"user": "adam_cameron",
"ts": 1449570966960
},
{
"user": "aliaspooryorik",
"ts": 1449578905738
},
{
"user": "tigeryan",
"ts": 1449690210347
},
{
"user": "tigeryan",
"ts": 1449690233797
},
{
"user": "seancorfield",
"ts": 1449698382263
},
{
"user": "jork",
"ts": 1449742903161
},
{
"user": "adam_cameron",
"ts": 1449743193595
},
{
"user": "jork",
"ts": 1449743233217
},
{
"user": "jork",
"ts": 1449743359135
},
{
"user": "jork",
"ts": 1449744672042
},
{
"user": "atuttle",
"ts": 1449765721262
},
{
"user": "ryanguill",
"ts": 1449786975893
},
{
"user": "dajester2015",
"ts": 1449787181433
},
{
"user": "ryanguill",
"ts": 1449807248601
},
{
"user": "aliaspooryorik",
"ts": 1449847764431
},
{
"user": "jcberquist",
"ts": 1449859668639
},
{
"user": "seancorfield",
"ts": 1450071620153
},
{
"user": "gpickin",
"ts": 1450184710535
},
{
"user": "ryanguill",
"ts": 1450199399611
},
{
"user": "websolete",
"ts": 1450395668736
},
{
"user": "ryanguill",
"ts": 1450399626950
},
{
"user": "ryanguill",
"ts": 1450741378657
},
{
"user": "dfgrumpy",
"ts": 1450760121176
},
{
"user": "igor",
"ts": 1450780003607
},
{
"user": "ryanguill",
"ts": 1450836637515
},
{
"user": "denny",
"ts": 1450986180309
},
{
"user": "bdw429s",
"ts": 1450986190941
},
{
"user": "slcronin",
"ts": 1451442155727
},
{
"user": "bdw429s",
"ts": 1451442163983
},
{
"user": "bunniez",
"ts": 1451442193051
},
{
"user": "bdw429s",
"ts": 1451514724700
},
{
"user": "ryanguill",
"ts": 1451514804293
},
{
"user": "ryanguill",
"ts": 1451515099484
},
{
"user": "ryanguill",
"ts": 1451590868243
},
{
"user": "jtreher",
"ts": 1452025291978
},
{
"user": "briank",
"ts": 1452027322857
},
{
"user": "maryjo",
"ts": 1452054046019
},
{
"user": "miguel-f",
"ts": 1452097802844
},
{
"user": "adam_cameron",
"ts": 1452100183203
},
{
"user": "seancorfield",
"ts": 1452216848437
},
{
"user": "tyler_gross",
"ts": 1452268694973
},
{
"user": "adam_cameron",
"ts": 1452285372940
},
{
"user": "adam_cameron",
"ts": 1452288059408
},
{
"user": "thecycoone",
"ts": 1452288088076
},
{
"user": "dbudde",
"ts": 1452538579495
},
{
"user": "adam_cameron",
"ts": 1452723185701
},
{
"user": "adam_cameron",
"ts": 1452723280230
},
{
"user": "adam_cameron",
"ts": 1452723283938
},
{
"user": "adam_cameron",
"ts": 1452723685723
},
{
"user": "bdw429s",
"ts": 1452740786020
},
{
"user": "seancorfield",
"ts": 1452740809612
},
{
"user": "jcberquist",
"ts": 1452782505351
},
{
"user": "adam_cameron",
"ts": 1452795734870
},
{
"user": "aaronstoddard",
"ts": 1452796424820
},
{
"user": "bdw429s",
"ts": 1452796970091
},
{
"user": "seancorfield",
"ts": 1452804111963
},
{
"user": "elpete",
"ts": 1452879255782
},
{
"user": "seancorfield",
"ts": 1452879660633
},
{
"user": "elpete",
"ts": 1452880253001
},
{
"user": "seancorfield",
"ts": 1452922714291
},
{
"user": "adam_cameron",
"ts": 1453137803439
},
{
"user": "dajester2015",
"ts": 1453161763351
},
{
"user": "jkolbe",
"ts": 1453162849873
},
{
"user": "jkolbe",
"ts": 1453164294269
},
{
"user": "dfgrumpy",
"ts": 1453164297313
},
{
"user": "seancorfield",
"ts": 1453226920205
},
{
"user": "foundeo",
"ts": 1453226931003
},
{
"user": "seancorfield",
"ts": 1453244740308
},
{
"user": "seancorfield",
"ts": 1453334437525
},
{
"user": "adam_cameron",
"ts": 1453409565903
},
{
"user": "adam_cameron",
"ts": 1453474824320
},
{
"user": "salted",
"ts": 1453482533049
},
{
"user": "michaelsmith",
"ts": 1453552776867
},
{
"user": "aliaspooryorik",
"ts": 1453735932984
},
{
"user": "seancoyne",
"ts": 1453740224239
},
{
"user": "jtreher",
"ts": 1453827093847
},
{
"user": "jtreher",
"ts": 1453906259455
},
{
"user": "adam_cameron",
"ts": 1453906277838
},
{
"user": "denny",
"ts": 1454009272050
},
{
"user": "denny",
"ts": 1454010346916
},
{
"user": "dajester2015",
"ts": 1454013707380
},
{
"user": "denny",
"ts": 1454015043696
},
{
"user": "seancorfield",
"ts": 1454086528188
},
{
"user": "adam_cameron",
"ts": 1454342320957
},
{
"user": "ben",
"ts": 1454362793735
},
{
"user": "su_bash",
"ts": 1454549557095
},
{
"user": "bdw429s",
"ts": 1454550144856
},
{
"user": "emjay2",
"ts": 1454599832333
},
{
"user": "tomchiverton",
"ts": 1454602404991
},
{
"user": "ryanguill",
"ts": 1454707203435
},
{
"user": "ryanguill",
"ts": 1455020652059
},
{
"user": "salted",
"ts": 1455020658922
},
{
"user": "aliaspooryorik",
"ts": 1455020663973
},
{
"user": "ryanguill",
"ts": 1455034334578
},
{
"user": "aliaspooryorik",
"ts": 1455034345069
},
{
"user": "seancorfield",
"ts": 1455046678462
},
{
"user": "bdw429s",
"ts": 1455131426040
},
{
"user": "denny",
"ts": 1455131431275
},
{
"user": "ryanguill",
"ts": 1455212177801
},
{
"user": "adam_cameron",
"ts": 1455212205393
},
{
"user": "carehart",
"ts": 1455213436807
},
{
"user": "cwigginton",
"ts": 1455214463889
},
{
"user": "johnsieber",
"ts": 1455214521499
},
{
"user": "tyler_gross",
"ts": 1455215172171
},
{
"user": "sdaniels",
"ts": 1455228734693
},
{
"user": "sana",
"ts": 1455279369456
},
{
"user": "ryanguill",
"ts": 1455315253144
},
{
"user": "aliaspooryorik",
"ts": 1455533471652
},
{
"user": "jamie-purchase",
"ts": 1455555430183
},
{
"user": "raymondcamden",
"ts": 1455555438232
},
{
"user": "salted",
"ts": 1455555443350
},
{
"user": "atuttle",
"ts": 1455610776770
},
{
"user": "dajester2015",
"ts": 1455644053050
},
{
"user": "salted",
"ts": 1455644495657
},
{
"user": "jcberquist",
"ts": 1455669009667
},
{
"user": "ryanguill",
"ts": 1455855091853
},
{
"user": "adam_cameron",
"ts": 1455883916837
},
{
"user": "abram",
"ts": 1455903993171
},
{
"user": "abram",
"ts": 1455904610282
},
{
"user": "abram",
"ts": 1455906924237
},
{
"user": "ryanguill",
"ts": 1456168219509
},
{
"user": "elpete",
"ts": 1456247689912
},
{
"user": "jcberquist",
"ts": 1456247843662
},
{
"user": "elpete",
"ts": 1456248085845
},
{
"user": "elpete",
"ts": 1456251736888
},
{
"user": "cwigginton",
"ts": 1456252470905
},
{
"user": "elpete",
"ts": 1456252664935
},
{
"user": "aliaspooryorik",
"ts": 1456353634434
},
{
"user": "billy",
"ts": 1456359185532
},
{
"user": "dragmire",
"ts": 1456409739300
},
{
"user": "rpotter",
"ts": 1456409742840
},
{
"user": "cwigginton",
"ts": 1456433645227
},
{
"user": "rodel30",
"ts": 1456508045226
},
{
"user": "ryanguill",
"ts": 1456520197924
},
{
"user": "tattva5",
"ts": 1456520211803
},
{
"user": "ryanguill",
"ts": 1456839799037
},
{
"user": "cwigginton",
"ts": 1456849670369
},
{
"user": "jcberquist",
"ts": 1456853188047
},
{
"user": "jc",
"ts": 1456855205895
},
{
"user": "jcberquist",
"ts": 1456860459236
},
{
"user": "dajester2015",
"ts": 1456950537265
},
{
"user": "foundeo",
"ts": 1457113221746
},
{
"user": "foundeo",
"ts": 1457543334445
},
{
"user": "abram",
"ts": 1457549625674
},
{
"user": "seancorfield",
"ts": 1457552974992
},
{
"user": "seancorfield",
"ts": 1457562317562
},
{
"user": "ddspringle",
"ts": 1457562363666
},
{
"user": "aliaspooryorik",
"ts": 1457605736192
},
{
"user": "mjhagen",
"ts": 1457690273877
},
{
"user": "mjhagen",
"ts": 1457690346473
},
{
"user": "salted",
"ts": 1457691085577
},
{
"user": "aliaspooryorik",
"ts": 1457697580656
},
{
"user": "letskillowen",
"ts": 1457732084546
},
{
"user": "ryanguill",
"ts": 1457733817903
},
{
"user": "gpickin",
"ts": 1458062136049
},
{
"user": "tattva5",
"ts": 1458167236435
},
{
"user": "atuttle",
"ts": 1458167255435
},
{
"user": "elpete",
"ts": 1458577953776
},
{
"user": "rodel30",
"ts": 1458664778433
},
{
"user": "tyler_gross",
"ts": 1458671874822
},
{
"user": "ryanguill",
"ts": 1458671981951
},
{
"user": "adam_cameron",
"ts": 1458862451488
},
{
"user": "bdw429s",
"ts": 1459366414953
},
{
"user": "gpickin",
"ts": 1459366420895
},
{
"user": "bdw429s",
"ts": 1459367655352
},
{
"user": "seancorfield",
"ts": 1459367661033
},
{
"user": "denny",
"ts": 1459367670999
},
{
"user": "grahamford",
"ts": 1459367675730
},
{
"user": "lampei",
"ts": 1459367700119
},
{
"user": "ryanguill",
"ts": 1459771765840
},
{
"user": "sana",
"ts": 1459853828074
},
{
"user": "chris-hopkins",
"ts": 1459853839065
},
{
"user": "ryanguill",
"ts": 1459863280084
},
{
"user": "mjhagen",
"ts": 1459863284091
},
{
"user": "thecycoone",
"ts": 1459865197495
},
{
"user": "iabondoc",
"ts": 1459871160288
},
{
"user": "seancorfield",
"ts": 1459914482727
},
{
"user": "bdw429s",
"ts": 1459975475061
},
{
"user": "mjhagen",
"ts": 1460022925833
},
{
"user": "rodel30",
"ts": 1460044395931
},
{
"user": "ryanguill",
"ts": 1460119167166
},
{
"user": "atuttle",
"ts": 1460122733364
},
{
"user": "mjhagen",
"ts": 1460132007637
},
{
"user": "ryanguill",
"ts": 1460245464657
},
{
"user": "bdw429s",
"ts": 1460608784781
},
{
"user": "aliaspooryorik",
"ts": 1460653400165
},
{
"user": "aliaspooryorik",
"ts": 1460717655611
},
{
"user": "adam_cameron",
"ts": 1460717668379
},
{
"user": "ryanguill",
"ts": 1461011343291
},
{
"user": "ryanguill",
"ts": 1461080027498
},
{
"user": "foundeo",
"ts": 1461080686615
},
{
"user": "bdw429s",
"ts": 1461087259437
},
{
"user": "adam_cameron",
"ts": 1461165793523
},
{
"user": "rodel30",
"ts": 1461165811295
},
{
"user": "foundeo",
"ts": 1461762036462
},
{
"user": "gcopley",
"ts": 1461943658135
},
{
"user": "corysilva",
"ts": 1461943664373
},
{
"user": "atuttle",
"ts": 1461946444005
},
{
"user": "rodel30",
"ts": 1461946450232
},
{
"user": "gcopley",
"ts": 1461946496835
},
{
"user": "adam_cameron",
"ts": 1461947292398
},
{
"user": "iavilae",
"ts": 1461947307185
},
{
"user": "seancorfield",
"ts": 1461947317203
},
{
"user": "rodel30",
"ts": 1461947321704
},
{
"user": "dbudde",
"ts": 1461963077487
},
{
"user": "gpickin",
"ts": 1461996106403
},
{
"user": "agentk",
"ts": 1462315110364
},
{
"user": "denny",
"ts": 1462371696856
},
{
"user": "bdw429s",
"ts": 1462371786187
},
{
"user": "bdw429s",
"ts": 1462372242135
},
{
"user": "abram",
"ts": 1462386205218
},
{
"user": "forthmedia",
"ts": 1462535432103
},
{
"user": "aliaspooryorik",
"ts": 1462535452211
},
{
"user": "arowolo",
"ts": 1462540239706
},
{
"user": "seancorfield",
"ts": 1462585812983
},
{
"user": "brianklaas",
"ts": 1462809874678
},
{
"user": "denny",
"ts": 1462963160157
},
{
"user": "foundeo",
"ts": 1462999666134
},
{
"user": "denny",
"ts": 1463094167290
},
{
"user": "anitkumar85",
"ts": 1463094181446
},
{
"user": "aliaspooryorik",
"ts": 1463157336119
},
{
"user": "ryanguill",
"ts": 1463450004222
},
{
"user": "danwilson",
"ts": 1463450016040
},
{
"user": "bdw429s",
"ts": 1463457420837
},
{
"user": "ryanguill",
"ts": 1463587090028
},
{
"user": "howardowens",
"ts": 1463602746722
},
{
"user": "rodel30",
"ts": 1463602770611
},
{
"user": "seandaniels",
"ts": 1463602831703
},
{
"user": "evagoras",
"ts": 1464017949740
},
{
"user": "iknowkungfoo",
"ts": 1464050335947
},
{
"user": "nicholasc",
"ts": 1464160791882
},
{
"user": "foundeo",
"ts": 1464192875406
},
{
"user": "ryanguill",
"ts": 1464225120070
},
{
"user": "bdw429s",
"ts": 1464304064406
},
{
"user": "ryanguill",
"ts": 1464386777443
},
{
"user": "ryanguill",
"ts": 1464440799451
},
{
"user": "rodel30",
"ts": 1464800476865
},
{
"user": "corysilva",
"ts": 1464978527553
},
{
"user": "bdw429s",
"ts": 1465134240325
},
{
"user": "davlar",
"ts": 1465310424494
},
{
"user": "jcberquist",
"ts": 1466000396346
},
{
"user": "ryanguill",
"ts": 1466774289562
},
{
"user": "andrew",
"ts": 1466801468119
},
{
"user": "ryanguill",
"ts": 1466801479959
},
{
"user": "gpickin",
"ts": 1466986512020
},
{
"user": "davlar",
"ts": 1467039235624
},
{
"user": "adam_cameron",
"ts": 1467138560016
},
{
"user": "chris-schmitz",
"ts": 1467207327220
},
{
"user": "jcberquist",
"ts": 1467289173037
},
{
"user": "jcberquist",
"ts": 1467289271968
},
{
"user": "jcberquist",
"ts": 1467306930302
},
{
"user": "abram",
"ts": 1467307094931
},
{
"user": "abram",
"ts": 1467310763924
},
{
"user": "ryanguill",
"ts": 1467738198187
},
{
"user": "bdw429s",
"ts": 1467738205710
},
{
"user": "ryanguill",
"ts": 1467839271346
},
{
"user": "bdw429s",
"ts": 1468022437245
},
{
"user": "prasanth",
"ts": 1468047116097
},
{
"user": "prasanth",
"ts": 1468047156565
},
{
"user": "bdw429s",
"ts": 1468047160147
},
{
"user": "bdw429s",
"ts": 1468069824598
},
{
"user": "prasanth",
"ts": 1468069841697
},
{
"user": "brendan",
"ts": 1468069858648
},
{
"user": "adam_cameron",
"ts": 1468105753081
},
{
"user": "adam_cameron",
"ts": 1468112377081
},
{
"user": "mjhagen",
"ts": 1468112381656
},
{
"user": "lampei",
"ts": 1468186057997
},
{
"user": "adam_cameron",
"ts": 1468303441365
},
{
"user": "abram",
"ts": 1468332521919
},
{
"user": "foundeo",
"ts": 1468524988288
},
{
"user": "bdw429s",
"ts": 1468525332029
},
{
"user": "foundeo",
"ts": 1468525414081
},
{
"user": "foundeo",
"ts": 1468526852252
},
{
"user": "foundeo",
"ts": 1468535416547
},
{
"user": "foundeo",
"ts": 1468568993549
},
{
"user": "foundeo",
"ts": 1468570201416
},
{
"user": "bayornet",
"ts": 1468585044864
},
{
"user": "adam_cameron",
"ts": 1468610283573
},
{
"user": "nicholasc",
"ts": 1468612744001
},
{
"user": "bdw429s",
"ts": 1468862591252
},
{
"user": "ddspringle",
"ts": 1468870365948
},
{
"user": "nicholasc",
"ts": 1468871071676
},
{
"user": "wouter",
"ts": 1468932735651
},
{
"user": "sandip_halder",
"ts": 1468942943554
},
{
"user": "mjhagen",
"ts": 1469046396268
},
{
"user": "aliaspooryorik",
"ts": 1469185997723
},
{
"user": "adam_cameron",
"ts": 1469621258326
},
{
"user": "ryanguill",
"ts": 1469653123277
},
{
"user": "ryanguill",
"ts": 1469653289350
},
{
"user": "ddspringle",
"ts": 1469653310715
},
{
"user": "adam_cameron",
"ts": 1469731752179
},
{
"user": "adam_cameron",
"ts": 1469733403048
},
{
"user": "mjhagen",
"ts": 1470060136327
},
{
"user": "bdw429s",
"ts": 1470167280460
},
{
"user": "ddspringle",
"ts": 1470263627832
},
{
"user": "davlar",
"ts": 1470321165386
},
{
"user": "adam_cameron",
"ts": 1470503737568
},
{
"user": "adam_cameron",
"ts": 1470503785514
},
{
"user": "adam_cameron",
"ts": 1470503874172
},
{
"user": "ryanguill",
"ts": 1470503887817
},
{
"user": "ryanguill",
"ts": 1470504182359
},
{
"user": "nicholasc",
"ts": 1470584438013
},
{
"user": "mjhagen",
"ts": 1470584447400
},
{
"user": "dajester2015",
"ts": 1470760121964
},
{
"user": "aliaspooryorik",
"ts": 1470760265416
},
{
"user": "sknowlton",
"ts": 1470764879260
},
{
"user": "ryanguill",
"ts": 1470765489251
},
{
"user": "sknowlton",
"ts": 1470791858831
},
{
"user": "ryanguill",
"ts": 1470929564883
},
{
"user": "adam_cameron",
"ts": 1471013234641
},
{
"user": "rodel30",
"ts": 1471015940893
},
{
"user": "bdw429s",
"ts": 1471033401032
},
{
"user": "ryanguill",
"ts": 1471033423037
},
{
"user": "foundeo",
"ts": 1471033434958
},
{
"user": "anitkumar85",
"ts": 1471187820696
},
{
"user": "aliaspooryorik",
"ts": 1471267728103
},
{
"user": "aliaspooryorik",
"ts": 1471273450958
},
{
"user": "ryanguill",
"ts": 1471273458698
},
{
"user": "aliaspooryorik",
"ts": 1471288046126
},
{
"user": "aliaspooryorik",
"ts": 1471288649987
},
{
"user": "adam_cameron",
"ts": 1471341117861
},
{
"user": "rodel30",
"ts": 1471379599638
},
{
"user": "bdw429s",
"ts": 1471379604352
},
{
"user": "dajester2015",
"ts": 1471379608236
},
{
"user": "tyler_gross",
"ts": 1471379612135
},
{
"user": "ryanguill",
"ts": 1471379616685
},
{
"user": "mjhagen",
"ts": 1471379629024
},
{
"user": "atuttle",
"ts": 1471379633032
},
{
"user": "elpete",
"ts": 1471379637147
},
{
"user": "s1deburn",
"ts": 1471379650473
},
{
"user": "s1deburn",
"ts": 1471380175104
},
{
"user": "ryan",
"ts": 1471390022530
},
{
"user": "modius",
"ts": 1471431375846
},
{
"user": "aliaspooryorik",
"ts": 1471453975397
},
{
"user": "coldfusioneer",
"ts": 1471453984198
},
{
"user": "aliaspooryorik",
"ts": 1471519584946
},
{
"user": "ryanguill",
"ts": 1471531295035
},
{
"user": "seancorfield",
"ts": 1471544318719
},
{
"user": "tonyjunkes",
"ts": 1471544327593
},
{
"user": "aliaspooryorik",
"ts": 1471553175468
},
{
"user": "seancorfield",
"ts": 1471933211239
},
{
"user": "seancorfield",
"ts": 1471996049866
},
{
"user": "ben",
"ts": 1472004753567
},
{
"user": "gpickin",
"ts": 1472043972855
},
{
"user": "ryanguill",
"ts": 1472047115093
},
{
"user": "aliaspooryorik",
"ts": 1472055146391
},
{
"user": "aliaspooryorik",
"ts": 1472057188100
},
{
"user": "aliaspooryorik",
"ts": 1472057501100
},
{
"user": "bdw429s",
"ts": 1472061226356
},
{
"user": "bdw429s",
"ts": 1472074866188
},
{
"user": "adam_cameron",
"ts": 1472075015618
}
]
@ryanguill
Copy link
Author

ryanguill commented Nov 4, 2016

My first attempt: https://repl.it/EPQu/2 (javascript)

@Rodel30
Copy link

Rodel30 commented Nov 4, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment