formatjson 0.1.4

Formats JSON files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
[{"id":"2489651045","type":"CreateEvent","actor":{"id":665991,"login":"petroav","gravatar_id":"","url":"https://api.github.com/users/petroav","avatar_url":"https://avatars.githubusercontent.com/u/665991?"},"repo":{"id":28688495,"name":"petroav/6.828","url":"https://api.github.com/repos/petroav/6.828"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Solution to homework and assignments from MIT's 6.828 (Operating Systems Engineering). Done in my spare time.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:00Z"}
,{"id":"2489651051","type":"PushEvent","actor":{"id":3854017,"login":"rspt","gravatar_id":"","url":"https://api.github.com/users/rspt","avatar_url":"https://avatars.githubusercontent.com/u/3854017?"},"repo":{"id":28671719,"name":"rspt/rspt-theme","url":"https://api.github.com/repos/rspt/rspt-theme"},"payload":{"push_id":536863970,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6b089eb4a43f728f0a594388092f480f2ecacfcd","before":"437c03652caa0bc4a7554b18d5c0a394c2f3d326","commits":[{"sha":"6b089eb4a43f728f0a594388092f480f2ecacfcd","author":{"email":"5c682c2d1ec4073e277f9ba9f4bdf07e5794dabe@rspt.ch","name":"rspt"},"message":"Fix main header height on mobile","distinct":true,"url":"https://api.github.com/repos/rspt/rspt-theme/commits/6b089eb4a43f728f0a594388092f480f2ecacfcd"}]},"public":true,"created_at":"2015-01-01T15:00:01Z"}
,{"id":"2489651053","type":"PushEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"push_id":536863972,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"ec819b9df4fe612bb35bf562f96810bf991f9975","before":"590433109f221a96cf19ea7a7d9a43ca333e3b3e","commits":[{"sha":"ec819b9df4fe612bb35bf562f96810bf991f9975","author":{"email":"df05f55543db3c62cf64f7438018ec37f3605d3c@gmail.com","name":"Eunsoo Lee"},"message":"#20 게시글 및 댓글 삭제 시 새로고침이 되는 문제 해결\n\n원래 의도는 새로고침이 되지 않고 확인창만으로 해결되어야 함.\n기본 게시판 대응 플러그인에서 발생한 이슈.","distinct":true,"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/commits/ec819b9df4fe612bb35bf562f96810bf991f9975"}]},"public":true,"created_at":"2015-01-01T15:00:01Z"}
,{"id":"2489651057","type":"WatchEvent","actor":{"id":6894991,"login":"SametSisartenep","gravatar_id":"","url":"https://api.github.com/users/SametSisartenep","avatar_url":"https://avatars.githubusercontent.com/u/6894991?"},"repo":{"id":2871998,"name":"visionmedia/debug","url":"https://api.github.com/repos/visionmedia/debug"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:03Z","org":{"id":9285252,"login":"visionmedia","gravatar_id":"","url":"https://api.github.com/orgs/visionmedia","avatar_url":"https://avatars.githubusercontent.com/u/9285252?"}}
,{"id":"2489651062","type":"PushEvent","actor":{"id":485033,"login":"winterbe","gravatar_id":"","url":"https://api.github.com/users/winterbe","avatar_url":"https://avatars.githubusercontent.com/u/485033?"},"repo":{"id":28593843,"name":"winterbe/streamjs","url":"https://api.github.com/repos/winterbe/streamjs"},"payload":{"push_id":536863975,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15b303203be31bd295bc831075da8f74b99b3981","before":"0fef99f604154ccfe1d2fcd0aadeffb5c58e43ff","commits":[{"sha":"15b303203be31bd295bc831075da8f74b99b3981","author":{"email":"52a47bffd52d9cea1ee1362f2bd0c5f87fac9262@googlemail.com","name":"Benjamin Winterberg"},"message":"Add comparator support for min, max operations","distinct":true,"url":"https://api.github.com/repos/winterbe/streamjs/commits/15b303203be31bd295bc831075da8f74b99b3981"}]},"public":true,"created_at":"2015-01-01T15:00:03Z"}
,{"id":"2489651063","type":"PushEvent","actor":{"id":4319954,"login":"hermanwahyudi","gravatar_id":"","url":"https://api.github.com/users/hermanwahyudi","avatar_url":"https://avatars.githubusercontent.com/u/4319954?"},"repo":{"id":27826205,"name":"hermanwahyudi/selenium","url":"https://api.github.com/repos/hermanwahyudi/selenium"},"payload":{"push_id":536863976,"size":1,"distinct_size":0,"ref":"refs/heads/master","head":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","before":"20b10e3a605bd177efff62f1130943774ac07bf3","commits":[{"sha":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Update README.md","distinct":false,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/1b58dd4c4e14ea9cf5212b981774bd448a266c3c"}]},"public":true,"created_at":"2015-01-01T15:00:03Z"}
,{"id":"2489651064","type":"PushEvent","actor":{"id":2881602,"login":"jdilt","gravatar_id":"","url":"https://api.github.com/users/jdilt","avatar_url":"https://avatars.githubusercontent.com/u/2881602?"},"repo":{"id":28682546,"name":"jdilt/jdilt.github.io","url":"https://api.github.com/repos/jdilt/jdilt.github.io"},"payload":{"push_id":536863977,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1","before":"8515c4a9efb40332659e4389821a73800ce6a4bf","commits":[{"sha":"d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1","author":{"email":"3e9bbe622d800410f1d4d0a4bb92004e147f1b1e@163.com","name":"jdilt"},"message":"refine index page and about page","distinct":true,"url":"https://api.github.com/repos/jdilt/jdilt.github.io/commits/d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1"}]},"public":true,"created_at":"2015-01-01T15:00:03Z"}
,{"id":"2489651066","type":"PushEvent","actor":{"id":3495129,"login":"sundaymtn","gravatar_id":"","url":"https://api.github.com/users/sundaymtn","avatar_url":"https://avatars.githubusercontent.com/u/3495129?"},"repo":{"id":24147122,"name":"sundaymtn/waterline","url":"https://api.github.com/repos/sundaymtn/waterline"},"payload":{"push_id":536863979,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2a2ec35bfefb9341b1df2f213aad1dac804bc2ea","before":"a7dba8faf22d2f342b7398ff76bfd10a30106191","commits":[{"sha":"2a2ec35bfefb9341b1df2f213aad1dac804bc2ea","author":{"email":"7fbc091194a9488bfb16868527a7c3a8ba469dba@gmail.com","name":"Seth Carter"},"message":"Thu Jan  1 10:00:02 EST 2015","distinct":true,"url":"https://api.github.com/repos/sundaymtn/waterline/commits/2a2ec35bfefb9341b1df2f213aad1dac804bc2ea"}]},"public":true,"created_at":"2015-01-01T15:00:04Z"}
,{"id":"2489651067","type":"PushEvent","actor":{"id":10363514,"login":"zhouzhi2015","gravatar_id":"","url":"https://api.github.com/users/zhouzhi2015","avatar_url":"https://avatars.githubusercontent.com/u/10363514?"},"repo":{"id":28686619,"name":"zhouzhi2015/temp","url":"https://api.github.com/repos/zhouzhi2015/temp"},"payload":{"push_id":536863980,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22019c081480435bb7d6e629766f2204c6c219bd","before":"d5926ef8c6a8a43724f8dc94007c3c5a918391c3","commits":[{"sha":"22019c081480435bb7d6e629766f2204c6c219bd","author":{"email":"421c4f4cb8c7fe07ea1166286558dc42a56cf3a7","name":"1184795629@qq.com"},"message":"测测","distinct":true,"url":"https://api.github.com/repos/zhouzhi2015/temp/commits/22019c081480435bb7d6e629766f2204c6c219bd"}]},"public":true,"created_at":"2015-01-01T15:00:04Z"}
,{"id":"2489651071","type":"ReleaseEvent","actor":{"id":7659931,"login":"petrkutalek","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","avatar_url":"https://avatars.githubusercontent.com/u/7659931?"},"repo":{"id":20029610,"name":"petrkutalek/png2pos","url":"https://api.github.com/repos/petrkutalek/png2pos"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/818676","assets_url":"https://api.github.com/repos/petrkutalek/png2pos/releases/818676/assets","upload_url":"https://uploads.github.com/repos/petrkutalek/png2pos/releases/818676/assets{?name}","html_url":"https://github.com/petrkutalek/png2pos/releases/tag/v1.5.4","id":818676,"tag_name":"v1.5.4","target_commitish":"master","name":"","draft":false,"author":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:56:44Z","published_at":"2015-01-01T15:00:05Z","assets":[{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362298","id":362298,"name":"png2pos-v1.5.4-linux.zip","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":37781,"download_count":0,"created_at":"2015-01-01T14:59:22Z","updated_at":"2015-01-01T14:59:23Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-linux.zip"},{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362297","id":362297,"name":"png2pos-v1.5.4-linux.zip.asc","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"text/plain","state":"uploaded","size":495,"download_count":0,"created_at":"2015-01-01T14:59:21Z","updated_at":"2015-01-01T14:59:22Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-linux.zip.asc"},{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362299","id":362299,"name":"png2pos-v1.5.4-osx.zip","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":27891,"download_count":0,"created_at":"2015-01-01T14:59:30Z","updated_at":"2015-01-01T14:59:32Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-osx.zip"},{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362300","id":362300,"name":"png2pos-v1.5.4-osx.zip.asc","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"text/plain","state":"uploaded","size":495,"download_count":0,"created_at":"2015-01-01T14:59:30Z","updated_at":"2015-01-01T14:59:33Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-osx.zip.asc"}],"tarball_url":"https://api.github.com/repos/petrkutalek/png2pos/tarball/v1.5.4","zipball_url":"https://api.github.com/repos/petrkutalek/png2pos/zipball/v1.5.4","body":""}},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651077","type":"PushEvent","actor":{"id":4070158,"login":"caleb-eades","gravatar_id":"","url":"https://api.github.com/users/caleb-eades","avatar_url":"https://avatars.githubusercontent.com/u/4070158?"},"repo":{"id":20469468,"name":"caleb-eades/MinecraftServers","url":"https://api.github.com/repos/caleb-eades/MinecraftServers"},"payload":{"push_id":536863983,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6ea9a1f5b0b3c4204272a5fe2587a5ee146c3a49","before":"8e94c95939b8f7db4c085da258698f07ae2b9cf3","commits":[{"sha":"6ea9a1f5b0b3c4204272a5fe2587a5ee146c3a49","author":{"email":"5bbfe2c07a3ef0b22b72711a2edf1c023f6433c5@gmail.com","name":"caleb-eades"},"message":"Auto Snapshot Server State","distinct":true,"url":"https://api.github.com/repos/caleb-eades/MinecraftServers/commits/6ea9a1f5b0b3c4204272a5fe2587a5ee146c3a49"}]},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651078","type":"WatchEvent","actor":{"id":285289,"login":"comcxx11","gravatar_id":"","url":"https://api.github.com/users/comcxx11","avatar_url":"https://avatars.githubusercontent.com/u/285289?"},"repo":{"id":5569958,"name":"phpsysinfo/phpsysinfo","url":"https://api.github.com/repos/phpsysinfo/phpsysinfo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:05Z","org":{"id":6797923,"login":"phpsysinfo","gravatar_id":"","url":"https://api.github.com/orgs/phpsysinfo","avatar_url":"https://avatars.githubusercontent.com/u/6797923?"}}
,{"id":"2489651080","type":"WatchEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":25873041,"name":"wasabeef/awesome-android-libraries","url":"https://api.github.com/repos/wasabeef/awesome-android-libraries"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651083","type":"PushEvent","actor":{"id":9538449,"login":"hcremers","gravatar_id":"","url":"https://api.github.com/users/hcremers","avatar_url":"https://avatars.githubusercontent.com/u/9538449?"},"repo":{"id":26101634,"name":"ktgw0316/LightZone-l10n-nl","url":"https://api.github.com/repos/ktgw0316/LightZone-l10n-nl"},"payload":{"push_id":536863987,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0fca01b12e6a8a1c537842d4831906d1eb4a277e","before":"fe610605ba48a87ee7c9bcf1a8a8db5f51bc4b58","commits":[{"sha":"0fca01b12e6a8a1c537842d4831906d1eb4a277e","author":{"email":"8800578b51f022c8d8adb9606a8b3db4fedbdac6@192.168.0.167","name":"hans"},"message":"Translated by hcremers","distinct":true,"url":"https://api.github.com/repos/ktgw0316/LightZone-l10n-nl/commits/0fca01b12e6a8a1c537842d4831906d1eb4a277e"}]},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651087","type":"PullRequestEvent","actor":{"id":1277095,"login":"Dmitry-Me","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","avatar_url":"https://avatars.githubusercontent.com/u/1277095?"},"repo":{"id":3542607,"name":"leethomason/tinyxml2","url":"https://api.github.com/repos/leethomason/tinyxml2"},"payload":{"action":"opened","number":260,"pull_request":{"url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260","id":26743765,"html_url":"https://github.com/leethomason/tinyxml2/pull/260","diff_url":"https://github.com/leethomason/tinyxml2/pull/260.diff","patch_url":"https://github.com/leethomason/tinyxml2/pull/260.patch","issue_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/260","number":260,"state":"open","locked":false,"title":"Rearrange checks in more natural order","user":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"body":"The original checks order was rather pessimistic for no reasons. We expect it to be successful, don't we?","created_at":"2015-01-01T15:00:06Z","updated_at":"2015-01-01T15:00:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/commits","review_comments_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/comments","review_comment_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/260/comments","statuses_url":"https://api.github.com/repos/leethomason/tinyxml2/statuses/7a7e5dc52537a534bd92dfb17fd0d0d8f39c2723","head":{"label":"Dmitry-Me:placeChecksInMoreNaturalOrder","ref":"placeChecksInMoreNaturalOrder","sha":"7a7e5dc52537a534bd92dfb17fd0d0d8f39c2723","user":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"repo":{"id":22466434,"name":"tinyxml2","full_name":"Dmitry-Me/tinyxml2","owner":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Dmitry-Me/tinyxml2","description":"TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs.","fork":true,"url":"https://api.github.com/repos/Dmitry-Me/tinyxml2","forks_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/forks","keys_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/teams","hooks_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/hooks","issue_events_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/issues/events{/number}","events_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/events","assignees_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/assignees{/user}","branches_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/branches{/branch}","tags_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/tags","blobs_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/refs{/sha}","trees_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/statuses/{sha}","languages_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/languages","stargazers_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/stargazers","contributors_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/contributors","subscribers_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/subscribers","subscription_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/subscription","commits_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/commits{/sha}","git_commits_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/commits{/sha}","comments_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/comments{/number}","issue_comment_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/issues/comments/{number}","contents_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/contents/{+path}","compare_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/merges","archive_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/downloads","issues_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/issues{/number}","pulls_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/pulls{/number}","milestones_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/milestones{/number}","notifications_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/labels{/name}","releases_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/releases{/id}","created_at":"2014-07-31T11:09:27Z","updated_at":"2014-09-04T07:31:28Z","pushed_at":"2015-01-01T14:58:57Z","git_url":"git://github.com/Dmitry-Me/tinyxml2.git","ssh_url":"git@github.com:Dmitry-Me/tinyxml2.git","clone_url":"https://github.com/Dmitry-Me/tinyxml2.git","svn_url":"https://github.com/Dmitry-Me/tinyxml2","homepage":"","size":1904,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"leethomason:master","ref":"master","sha":"b4e81b014e06302df55d0441dceadf6f6825e0ce","user":{"login":"leethomason","id":699925,"avatar_url":"https://avatars.githubusercontent.com/u/699925?v=3","gravatar_id":"","url":"https://api.github.com/users/leethomason","html_url":"https://github.com/leethomason","followers_url":"https://api.github.com/users/leethomason/followers","following_url":"https://api.github.com/users/leethomason/following{/other_user}","gists_url":"https://api.github.com/users/leethomason/gists{/gist_id}","starred_url":"https://api.github.com/users/leethomason/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leethomason/subscriptions","organizations_url":"https://api.github.com/users/leethomason/orgs","repos_url":"https://api.github.com/users/leethomason/repos","events_url":"https://api.github.com/users/leethomason/events{/privacy}","received_events_url":"https://api.github.com/users/leethomason/received_events","type":"User","site_admin":false},"repo":{"id":3542607,"name":"tinyxml2","full_name":"leethomason/tinyxml2","owner":{"login":"leethomason","id":699925,"avatar_url":"https://avatars.githubusercontent.com/u/699925?v=3","gravatar_id":"","url":"https://api.github.com/users/leethomason","html_url":"https://github.com/leethomason","followers_url":"https://api.github.com/users/leethomason/followers","following_url":"https://api.github.com/users/leethomason/following{/other_user}","gists_url":"https://api.github.com/users/leethomason/gists{/gist_id}","starred_url":"https://api.github.com/users/leethomason/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leethomason/subscriptions","organizations_url":"https://api.github.com/users/leethomason/orgs","repos_url":"https://api.github.com/users/leethomason/repos","events_url":"https://api.github.com/users/leethomason/events{/privacy}","received_events_url":"https://api.github.com/users/leethomason/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/leethomason/tinyxml2","description":"TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs.","fork":false,"url":"https://api.github.com/repos/leethomason/tinyxml2","forks_url":"https://api.github.com/repos/leethomason/tinyxml2/forks","keys_url":"https://api.github.com/repos/leethomason/tinyxml2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/leethomason/tinyxml2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/leethomason/tinyxml2/teams","hooks_url":"https://api.github.com/repos/leethomason/tinyxml2/hooks","issue_events_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/events{/number}","events_url":"https://api.github.com/repos/leethomason/tinyxml2/events","assignees_url":"https://api.github.com/repos/leethomason/tinyxml2/assignees{/user}","branches_url":"https://api.github.com/repos/leethomason/tinyxml2/branches{/branch}","tags_url":"https://api.github.com/repos/leethomason/tinyxml2/tags","blobs_url":"https://api.github.com/repos/leethomason/tinyxml2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/leethomason/tinyxml2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/leethomason/tinyxml2/git/refs{/sha}","trees_url":"https://api.github.com/repos/leethomason/tinyxml2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/leethomason/tinyxml2/statuses/{sha}","languages_url":"https://api.github.com/repos/leethomason/tinyxml2/languages","stargazers_url":"https://api.github.com/repos/leethomason/tinyxml2/stargazers","contributors_url":"https://api.github.com/repos/leethomason/tinyxml2/contributors","subscribers_url":"https://api.github.com/repos/leethomason/tinyxml2/subscribers","subscription_url":"https://api.github.com/repos/leethomason/tinyxml2/subscription","commits_url":"https://api.github.com/repos/leethomason/tinyxml2/commits{/sha}","git_commits_url":"https://api.github.com/repos/leethomason/tinyxml2/git/commits{/sha}","comments_url":"https://api.github.com/repos/leethomason/tinyxml2/comments{/number}","issue_comment_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/comments/{number}","contents_url":"https://api.github.com/repos/leethomason/tinyxml2/contents/{+path}","compare_url":"https://api.github.com/repos/leethomason/tinyxml2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/leethomason/tinyxml2/merges","archive_url":"https://api.github.com/repos/leethomason/tinyxml2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/leethomason/tinyxml2/downloads","issues_url":"https://api.github.com/repos/leethomason/tinyxml2/issues{/number}","pulls_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls{/number}","milestones_url":"https://api.github.com/repos/leethomason/tinyxml2/milestones{/number}","notifications_url":"https://api.github.com/repos/leethomason/tinyxml2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/leethomason/tinyxml2/labels{/name}","releases_url":"https://api.github.com/repos/leethomason/tinyxml2/releases{/id}","created_at":"2012-02-25T05:15:50Z","updated_at":"2015-01-01T07:21:21Z","pushed_at":"2014-12-27T00:25:14Z","git_url":"git://github.com/leethomason/tinyxml2.git","ssh_url":"git@github.com:leethomason/tinyxml2.git","clone_url":"https://github.com/leethomason/tinyxml2.git","svn_url":"https://github.com/leethomason/tinyxml2","homepage":"","size":2559,"stargazers_count":648,"watchers_count":648,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":298,"mirror_url":null,"open_issues_count":39,"forks":298,"open_issues":39,"watchers":648,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260"},"html":{"href":"https://github.com/leethomason/tinyxml2/pull/260"},"issue":{"href":"https://api.github.com/repos/leethomason/tinyxml2/issues/260"},"comments":{"href":"https://api.github.com/repos/leethomason/tinyxml2/issues/260/comments"},"review_comments":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/comments"},"review_comment":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/commits"},"statuses":{"href":"https://api.github.com/repos/leethomason/tinyxml2/statuses/7a7e5dc52537a534bd92dfb17fd0d0d8f39c2723"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:06Z"}
,{"id":"2489651090","type":"PullRequestEvent","actor":{"id":2362917,"login":"chrisndodge","gravatar_id":"","url":"https://api.github.com/users/chrisndodge","avatar_url":"https://avatars.githubusercontent.com/u/2362917?"},"repo":{"id":10391073,"name":"edx/edx-platform","url":"https://api.github.com/repos/edx/edx-platform"},"payload":{"action":"closed","number":6196,"pull_request":{"url":"https://api.github.com/repos/edx/edx-platform/pulls/6196","id":25746676,"html_url":"https://github.com/edx/edx-platform/pull/6196","diff_url":"https://github.com/edx/edx-platform/pull/6196.diff","patch_url":"https://github.com/edx/edx-platform/pull/6196.patch","issue_url":"https://api.github.com/repos/edx/edx-platform/issues/6196","number":6196,"state":"closed","locked":false,"title":"WL-168 When redeeming a Registration Code in the shopping cart, the user should be redirect to the Registration Code Redemption page","user":{"login":"muhhshoaib","id":7291787,"avatar_url":"https://avatars.githubusercontent.com/u/7291787?v=3","gravatar_id":"","url":"https://api.github.com/users/muhhshoaib","html_url":"https://github.com/muhhshoaib","followers_url":"https://api.github.com/users/muhhshoaib/followers","following_url":"https://api.github.com/users/muhhshoaib/following{/other_user}","gists_url":"https://api.github.com/users/muhhshoaib/gists{/gist_id}","starred_url":"https://api.github.com/users/muhhshoaib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muhhshoaib/subscriptions","organizations_url":"https://api.github.com/users/muhhshoaib/orgs","repos_url":"https://api.github.com/users/muhhshoaib/repos","events_url":"https://api.github.com/users/muhhshoaib/events{/privacy}","received_events_url":"https://api.github.com/users/muhhshoaib/received_events","type":"User","site_admin":false},"body":"@chrisndodge @smagoun \r\n\r\nKindly review the changes for WL-168\r\n\r\nThanks","created_at":"2014-12-09T14:32:39Z","updated_at":"2015-01-01T15:00:06Z","closed_at":"2015-01-01T15:00:06Z","merged_at":"2015-01-01T15:00:06Z","merge_commit_sha":"1e142da64eac22f52945384f0bff8273f6309582","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/edx/edx-platform/pulls/6196/commits","review_comments_url":"https://api.github.com/repos/edx/edx-platform/pulls/6196/comments","review_comment_url":"https://api.github.com/repos/edx/edx-platform/pulls/comments/{number}","comments_url":"https://api.github.com/repos/edx/edx-platform/issues/6196/comments","statuses_url":"https://api.github.com/repos/edx/edx-platform/statuses/5a437b396e03857a256ffe1ba7e1b5c55c028bd9","head":{"label":"edx:muhhshoaib/WL-168","ref":"muhhshoaib/WL-168","sha":"5a437b396e03857a256ffe1ba7e1b5c55c028bd9","user":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"repo":{"id":10391073,"name":"edx-platform","full_name":"edx/edx-platform","owner":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/edx/edx-platform","description":"Open edX, the edX platform that powers http://edx.org","fork":false,"url":"https://api.github.com/repos/edx/edx-platform","forks_url":"https://api.github.com/repos/edx/edx-platform/forks","keys_url":"https://api.github.com/repos/edx/edx-platform/keys{/key_id}","collaborators_url":"https://api.github.com/repos/edx/edx-platform/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/edx/edx-platform/teams","hooks_url":"https://api.github.com/repos/edx/edx-platform/hooks","issue_events_url":"https://api.github.com/repos/edx/edx-platform/issues/events{/number}","events_url":"https://api.github.com/repos/edx/edx-platform/events","assignees_url":"https://api.github.com/repos/edx/edx-platform/assignees{/user}","branches_url":"https://api.github.com/repos/edx/edx-platform/branches{/branch}","tags_url":"https://api.github.com/repos/edx/edx-platform/tags","blobs_url":"https://api.github.com/repos/edx/edx-platform/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/edx/edx-platform/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/edx/edx-platform/git/refs{/sha}","trees_url":"https://api.github.com/repos/edx/edx-platform/git/trees{/sha}","statuses_url":"https://api.github.com/repos/edx/edx-platform/statuses/{sha}","languages_url":"https://api.github.com/repos/edx/edx-platform/languages","stargazers_url":"https://api.github.com/repos/edx/edx-platform/stargazers","contributors_url":"https://api.github.com/repos/edx/edx-platform/contributors","subscribers_url":"https://api.github.com/repos/edx/edx-platform/subscribers","subscription_url":"https://api.github.com/repos/edx/edx-platform/subscription","commits_url":"https://api.github.com/repos/edx/edx-platform/commits{/sha}","git_commits_url":"https://api.github.com/repos/edx/edx-platform/git/commits{/sha}","comments_url":"https://api.github.com/repos/edx/edx-platform/comments{/number}","issue_comment_url":"https://api.github.com/repos/edx/edx-platform/issues/comments/{number}","contents_url":"https://api.github.com/repos/edx/edx-platform/contents/{+path}","compare_url":"https://api.github.com/repos/edx/edx-platform/compare/{base}...{head}","merges_url":"https://api.github.com/repos/edx/edx-platform/merges","archive_url":"https://api.github.com/repos/edx/edx-platform/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/edx/edx-platform/downloads","issues_url":"https://api.github.com/repos/edx/edx-platform/issues{/number}","pulls_url":"https://api.github.com/repos/edx/edx-platform/pulls{/number}","milestones_url":"https://api.github.com/repos/edx/edx-platform/milestones{/number}","notifications_url":"https://api.github.com/repos/edx/edx-platform/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/edx/edx-platform/labels{/name}","releases_url":"https://api.github.com/repos/edx/edx-platform/releases{/id}","created_at":"2013-05-30T20:20:38Z","updated_at":"2014-12-31T21:59:36Z","pushed_at":"2015-01-01T15:00:06Z","git_url":"git://github.com/edx/edx-platform.git","ssh_url":"git@github.com:edx/edx-platform.git","clone_url":"https://github.com/edx/edx-platform.git","svn_url":"https://github.com/edx/edx-platform","homepage":"http://openedx.org/","size":1558418,"stargazers_count":1643,"watchers_count":1643,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":944,"mirror_url":null,"open_issues_count":144,"forks":944,"open_issues":144,"watchers":1643,"default_branch":"master"}},"base":{"label":"edx:master","ref":"master","sha":"20c356bd8936e2f477a97118aedd654ec6923ccf","user":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"repo":{"id":10391073,"name":"edx-platform","full_name":"edx/edx-platform","owner":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/edx/edx-platform","description":"Open edX, the edX platform that powers http://edx.org","fork":false,"url":"https://api.github.com/repos/edx/edx-platform","forks_url":"https://api.github.com/repos/edx/edx-platform/forks","keys_url":"https://api.github.com/repos/edx/edx-platform/keys{/key_id}","collaborators_url":"https://api.github.com/repos/edx/edx-platform/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/edx/edx-platform/teams","hooks_url":"https://api.github.com/repos/edx/edx-platform/hooks","issue_events_url":"https://api.github.com/repos/edx/edx-platform/issues/events{/number}","events_url":"https://api.github.com/repos/edx/edx-platform/events","assignees_url":"https://api.github.com/repos/edx/edx-platform/assignees{/user}","branches_url":"https://api.github.com/repos/edx/edx-platform/branches{/branch}","tags_url":"https://api.github.com/repos/edx/edx-platform/tags","blobs_url":"https://api.github.com/repos/edx/edx-platform/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/edx/edx-platform/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/edx/edx-platform/git/refs{/sha}","trees_url":"https://api.github.com/repos/edx/edx-platform/git/trees{/sha}","statuses_url":"https://api.github.com/repos/edx/edx-platform/statuses/{sha}","languages_url":"https://api.github.com/repos/edx/edx-platform/languages","stargazers_url":"https://api.github.com/repos/edx/edx-platform/stargazers","contributors_url":"https://api.github.com/repos/edx/edx-platform/contributors","subscribers_url":"https://api.github.com/repos/edx/edx-platform/subscribers","subscription_url":"https://api.github.com/repos/edx/edx-platform/subscription","commits_url":"https://api.github.com/repos/edx/edx-platform/commits{/sha}","git_commits_url":"https://api.github.com/repos/edx/edx-platform/git/commits{/sha}","comments_url":"https://api.github.com/repos/edx/edx-platform/comments{/number}","issue_comment_url":"https://api.github.com/repos/edx/edx-platform/issues/comments/{number}","contents_url":"https://api.github.com/repos/edx/edx-platform/contents/{+path}","compare_url":"https://api.github.com/repos/edx/edx-platform/compare/{base}...{head}","merges_url":"https://api.github.com/repos/edx/edx-platform/merges","archive_url":"https://api.github.com/repos/edx/edx-platform/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/edx/edx-platform/downloads","issues_url":"https://api.github.com/repos/edx/edx-platform/issues{/number}","pulls_url":"https://api.github.com/repos/edx/edx-platform/pulls{/number}","milestones_url":"https://api.github.com/repos/edx/edx-platform/milestones{/number}","notifications_url":"https://api.github.com/repos/edx/edx-platform/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/edx/edx-platform/labels{/name}","releases_url":"https://api.github.com/repos/edx/edx-platform/releases{/id}","created_at":"2013-05-30T20:20:38Z","updated_at":"2014-12-31T21:59:36Z","pushed_at":"2015-01-01T15:00:06Z","git_url":"git://github.com/edx/edx-platform.git","ssh_url":"git@github.com:edx/edx-platform.git","clone_url":"https://github.com/edx/edx-platform.git","svn_url":"https://github.com/edx/edx-platform","homepage":"http://openedx.org/","size":1558418,"stargazers_count":1643,"watchers_count":1643,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":944,"mirror_url":null,"open_issues_count":144,"forks":944,"open_issues":144,"watchers":1643,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/6196"},"html":{"href":"https://github.com/edx/edx-platform/pull/6196"},"issue":{"href":"https://api.github.com/repos/edx/edx-platform/issues/6196"},"comments":{"href":"https://api.github.com/repos/edx/edx-platform/issues/6196/comments"},"review_comments":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/6196/comments"},"review_comment":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/6196/commits"},"statuses":{"href":"https://api.github.com/repos/edx/edx-platform/statuses/5a437b396e03857a256ffe1ba7e1b5c55c028bd9"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"chrisndodge","id":2362917,"avatar_url":"https://avatars.githubusercontent.com/u/2362917?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisndodge","html_url":"https://github.com/chrisndodge","followers_url":"https://api.github.com/users/chrisndodge/followers","following_url":"https://api.github.com/users/chrisndodge/following{/other_user}","gists_url":"https://api.github.com/users/chrisndodge/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisndodge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisndodge/subscriptions","organizations_url":"https://api.github.com/users/chrisndodge/orgs","repos_url":"https://api.github.com/users/chrisndodge/repos","events_url":"https://api.github.com/users/chrisndodge/events{/privacy}","received_events_url":"https://api.github.com/users/chrisndodge/received_events","type":"User","site_admin":false},"comments":22,"review_comments":14,"commits":1,"additions":196,"deletions":326,"changed_files":14}},"public":true,"created_at":"2015-01-01T15:00:06Z","org":{"id":3179841,"login":"edx","gravatar_id":"","url":"https://api.github.com/orgs/edx","avatar_url":"https://avatars.githubusercontent.com/u/3179841?"}}
,{"id":"2489651091","type":"IssuesEvent","actor":{"id":6269456,"login":"yhoonkim","gravatar_id":"","url":"https://api.github.com/users/yhoonkim","avatar_url":"https://avatars.githubusercontent.com/u/6269456?"},"repo":{"id":28594770,"name":"yhoonkim/GraphBoard","url":"https://api.github.com/repos/yhoonkim/GraphBoard"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27","labels_url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27/labels{/name}","comments_url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27/comments","events_url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27/events","html_url":"https://github.com/yhoonkim/GraphBoard/issues/27","id":53221333,"number":27,"title":"Other readers can react to articles","user":{"login":"yhoonkim","id":6269456,"avatar_url":"https://avatars.githubusercontent.com/u/6269456?v=3","gravatar_id":"","url":"https://api.github.com/users/yhoonkim","html_url":"https://github.com/yhoonkim","followers_url":"https://api.github.com/users/yhoonkim/followers","following_url":"https://api.github.com/users/yhoonkim/following{/other_user}","gists_url":"https://api.github.com/users/yhoonkim/gists{/gist_id}","starred_url":"https://api.github.com/users/yhoonkim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yhoonkim/subscriptions","organizations_url":"https://api.github.com/users/yhoonkim/orgs","repos_url":"https://api.github.com/users/yhoonkim/repos","events_url":"https://api.github.com/users/yhoonkim/events{/privacy}","received_events_url":"https://api.github.com/users/yhoonkim/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:06Z","updated_at":"2015-01-01T15:00:06Z","closed_at":null,"body":"- [ ] comment\n- [ ] recommendation\n- [ ] share\n- [ ] RSS\n\n- [ ] Join\n\n- [ ] Own board\n\n- [ ] Interview with people who want to archieve own thought within own writings."}},"public":true,"created_at":"2015-01-01T15:00:06Z"}
,{"id":"2489651093","type":"WatchEvent","actor":{"id":546301,"login":"unicomp21","gravatar_id":"","url":"https://api.github.com/users/unicomp21","avatar_url":"https://avatars.githubusercontent.com/u/546301?"},"repo":{"id":10635999,"name":"dartist/raytracer","url":"https://api.github.com/repos/dartist/raytracer"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:06Z","org":{"id":3138716,"login":"dartist","gravatar_id":"","url":"https://api.github.com/orgs/dartist","avatar_url":"https://avatars.githubusercontent.com/u/3138716?"}}
,{"id":"2489651095","type":"CreateEvent","actor":{"id":2339563,"login":"SundeepK","gravatar_id":"","url":"https://api.github.com/users/SundeepK","avatar_url":"https://avatars.githubusercontent.com/u/2339563?"},"repo":{"id":19470044,"name":"SundeepK/Clone","url":"https://api.github.com/repos/SundeepK/Clone"},"payload":{"ref":"wip/refactor_level_loading_code","ref_type":"branch","master_branch":"master","description":"Clone is a physics based platformer. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:07Z"}
,{"id":"2489651096","type":"PullRequestEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/mevlan/script/pulls/3","id":26743766,"html_url":"https://github.com/mevlan/script/pull/3","diff_url":"https://github.com/mevlan/script/pull/3.diff","patch_url":"https://github.com/mevlan/script/pull/3.patch","issue_url":"https://api.github.com/repos/mevlan/script/issues/3","number":3,"state":"open","locked":false,"title":"final function","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:07Z","updated_at":"2015-01-01T15:00:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mevlan/script/pulls/3/commits","review_comments_url":"https://api.github.com/repos/mevlan/script/pulls/3/comments","review_comment_url":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mevlan/script/issues/3/comments","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c","head":{"label":"mevlan:final","ref":"final","sha":"fecf568375c53fd0bf03eb4e81c821214077f41c","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"mevlan:master","ref":"master","sha":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"},"html":{"href":"https://github.com/mevlan/script/pull/3"},"issue":{"href":"https://api.github.com/repos/mevlan/script/issues/3"},"comments":{"href":"https://api.github.com/repos/mevlan/script/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":3,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651097","type":"PullRequestEvent","actor":{"id":1258383,"login":"suneg","gravatar_id":"","url":"https://api.github.com/users/suneg","avatar_url":"https://avatars.githubusercontent.com/u/1258383?"},"repo":{"id":28608107,"name":"suneg/dojo_rules","url":"https://api.github.com/repos/suneg/dojo_rules"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/suneg/dojo_rules/pulls/3","id":26743725,"html_url":"https://github.com/suneg/dojo_rules/pull/3","diff_url":"https://github.com/suneg/dojo_rules/pull/3.diff","patch_url":"https://github.com/suneg/dojo_rules/pull/3.patch","issue_url":"https://api.github.com/repos/suneg/dojo_rules/issues/3","number":3,"state":"closed","locked":false,"title":"Too many people are spilling coffee","user":{"login":"codeschool-kiddo","id":7882662,"avatar_url":"https://avatars.githubusercontent.com/u/7882662?v=3","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","html_url":"https://github.com/codeschool-kiddo","followers_url":"https://api.github.com/users/codeschool-kiddo/followers","following_url":"https://api.github.com/users/codeschool-kiddo/following{/other_user}","gists_url":"https://api.github.com/users/codeschool-kiddo/gists{/gist_id}","starred_url":"https://api.github.com/users/codeschool-kiddo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codeschool-kiddo/subscriptions","organizations_url":"https://api.github.com/users/codeschool-kiddo/orgs","repos_url":"https://api.github.com/users/codeschool-kiddo/repos","events_url":"https://api.github.com/users/codeschool-kiddo/events{/privacy}","received_events_url":"https://api.github.com/users/codeschool-kiddo/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-01-01T14:54:31Z","updated_at":"2015-01-01T15:00:07Z","closed_at":"2015-01-01T15:00:07Z","merged_at":"2015-01-01T15:00:07Z","merge_commit_sha":"65bb5ef3bd6f94c8a789b6f1054fe0b6c157e5f2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/commits","review_comments_url":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/comments","review_comment_url":"https://api.github.com/repos/suneg/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/suneg/dojo_rules/issues/3/comments","statuses_url":"https://api.github.com/repos/suneg/dojo_rules/statuses/42758f219a36e5147f6c294be3a42b9e76c469aa","head":{"label":"suneg:new_rules","ref":"new_rules","sha":"42758f219a36e5147f6c294be3a42b9e76c469aa","user":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"repo":{"id":28608107,"name":"dojo_rules","full_name":"suneg/dojo_rules","owner":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/suneg/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/suneg/dojo_rules","forks_url":"https://api.github.com/repos/suneg/dojo_rules/forks","keys_url":"https://api.github.com/repos/suneg/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/suneg/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/suneg/dojo_rules/teams","hooks_url":"https://api.github.com/repos/suneg/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/suneg/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/suneg/dojo_rules/events","assignees_url":"https://api.github.com/repos/suneg/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/suneg/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/suneg/dojo_rules/tags","blobs_url":"https://api.github.com/repos/suneg/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/suneg/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/suneg/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/suneg/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/suneg/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/suneg/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/suneg/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/suneg/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/suneg/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/suneg/dojo_rules/subscription","commits_url":"https://api.github.com/repos/suneg/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/suneg/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/suneg/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/suneg/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/suneg/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/suneg/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/suneg/dojo_rules/merges","archive_url":"https://api.github.com/repos/suneg/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/suneg/dojo_rules/downloads","issues_url":"https://api.github.com/repos/suneg/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/suneg/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/suneg/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/suneg/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/suneg/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/suneg/dojo_rules/releases{/id}","created_at":"2014-12-29T22:05:45Z","updated_at":"2015-01-01T14:53:56Z","pushed_at":"2015-01-01T15:00:07Z","git_url":"git://github.com/suneg/dojo_rules.git","ssh_url":"git@github.com:suneg/dojo_rules.git","clone_url":"https://github.com/suneg/dojo_rules.git","svn_url":"https://github.com/suneg/dojo_rules","homepage":null,"size":109,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"suneg:master","ref":"master","sha":"2baa568ca1cd4b0f85bec0da62ba659a6797d60c","user":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"repo":{"id":28608107,"name":"dojo_rules","full_name":"suneg/dojo_rules","owner":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/suneg/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/suneg/dojo_rules","forks_url":"https://api.github.com/repos/suneg/dojo_rules/forks","keys_url":"https://api.github.com/repos/suneg/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/suneg/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/suneg/dojo_rules/teams","hooks_url":"https://api.github.com/repos/suneg/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/suneg/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/suneg/dojo_rules/events","assignees_url":"https://api.github.com/repos/suneg/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/suneg/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/suneg/dojo_rules/tags","blobs_url":"https://api.github.com/repos/suneg/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/suneg/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/suneg/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/suneg/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/suneg/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/suneg/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/suneg/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/suneg/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/suneg/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/suneg/dojo_rules/subscription","commits_url":"https://api.github.com/repos/suneg/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/suneg/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/suneg/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/suneg/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/suneg/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/suneg/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/suneg/dojo_rules/merges","archive_url":"https://api.github.com/repos/suneg/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/suneg/dojo_rules/downloads","issues_url":"https://api.github.com/repos/suneg/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/suneg/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/suneg/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/suneg/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/suneg/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/suneg/dojo_rules/releases{/id}","created_at":"2014-12-29T22:05:45Z","updated_at":"2015-01-01T14:53:56Z","pushed_at":"2015-01-01T15:00:07Z","git_url":"git://github.com/suneg/dojo_rules.git","ssh_url":"git@github.com:suneg/dojo_rules.git","clone_url":"https://github.com/suneg/dojo_rules.git","svn_url":"https://github.com/suneg/dojo_rules","homepage":null,"size":109,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/3"},"html":{"href":"https://github.com/suneg/dojo_rules/pull/3"},"issue":{"href":"https://api.github.com/repos/suneg/dojo_rules/issues/3"},"comments":{"href":"https://api.github.com/repos/suneg/dojo_rules/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/suneg/dojo_rules/statuses/42758f219a36e5147f6c294be3a42b9e76c469aa"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651098","type":"CreateEvent","actor":{"id":803897,"login":"blang","gravatar_id":"","url":"https://api.github.com/users/blang","avatar_url":"https://avatars.githubusercontent.com/u/803897?"},"repo":{"id":28688598,"name":"blang/btrfs-initrd","url":"https://api.github.com/repos/blang/btrfs-initrd"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Initrd creation to support boot from btrfs subvolume","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651105","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536863994,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d70741fcde9b233d93f25b3ece739774fe414280","before":"3c6408452dc2bed76993f673a6d368bd2510b563","commits":[{"sha":"d70741fcde9b233d93f25b3ece739774fe414280","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Update StrPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/d70741fcde9b233d93f25b3ece739774fe414280"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651106","type":"PushEvent","actor":{"id":1258383,"login":"suneg","gravatar_id":"","url":"https://api.github.com/users/suneg","avatar_url":"https://avatars.githubusercontent.com/u/1258383?"},"repo":{"id":28608107,"name":"suneg/dojo_rules","url":"https://api.github.com/repos/suneg/dojo_rules"},"payload":{"push_id":536863995,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"e9a41f62b92cec922e5420eb1e1e78b7d8e69945","before":"2baa568ca1cd4b0f85bec0da62ba659a6797d60c","commits":[{"sha":"0be1f787c2d07a5b123148d67c88e676f7f88359","author":{"email":"2daaee2f17688248bee24305fe3e8f0de41a5a7c@users.noreply.github.com","name":"Code School Kiddo"},"message":"Added new rule about coffee","distinct":false,"url":"https://api.github.com/repos/suneg/dojo_rules/commits/0be1f787c2d07a5b123148d67c88e676f7f88359"},{"sha":"42758f219a36e5147f6c294be3a42b9e76c469aa","author":{"email":"f4bc00911934b6462d05e49320f476dd041507c1@gmail.com","name":"Sune Gynthersen"},"message":"fixed spelling errors","distinct":false,"url":"https://api.github.com/repos/suneg/dojo_rules/commits/42758f219a36e5147f6c294be3a42b9e76c469aa"},{"sha":"e9a41f62b92cec922e5420eb1e1e78b7d8e69945","author":{"email":"f4bc00911934b6462d05e49320f476dd041507c1@gmail.com","name":"Sune Gynthersen"},"message":"Merge pull request #3 from suneg/new_rules\n\nToo many people are spilling coffee","distinct":true,"url":"https://api.github.com/repos/suneg/dojo_rules/commits/e9a41f62b92cec922e5420eb1e1e78b7d8e69945"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651111","type":"PushEvent","actor":{"id":824460,"login":"sebhtml","gravatar_id":"","url":"https://api.github.com/users/sebhtml","avatar_url":"https://avatars.githubusercontent.com/u/824460?"},"repo":{"id":20075555,"name":"GeneAssembly/biosal","url":"https://api.github.com/repos/GeneAssembly/biosal"},"payload":{"push_id":536863998,"size":1,"distinct_size":1,"ref":"refs/heads/mirror","head":"b25e0c32cd070de8e20583c2c84584d7f6abb5ca","before":"9264d0b3d0fd22dff91756a5e4c0c6629bc9f53b","commits":[{"sha":"b25e0c32cd070de8e20583c2c84584d7f6abb5ca","author":{"email":"1a4d2e25eb5ba040b6ad5779a730a1a8a0ff9bc5@anl.gov","name":"Sébastien Boisvert"},"message":"tests: use 1024 nodes on Cetus for Spate tests\n\nSigned-off-by: Sébastien Boisvert <boisvert@anl.gov>","distinct":true,"url":"https://api.github.com/repos/GeneAssembly/biosal/commits/b25e0c32cd070de8e20583c2c84584d7f6abb5ca"}]},"public":true,"created_at":"2015-01-01T15:00:08Z","org":{"id":1619824,"login":"GeneAssembly","gravatar_id":"","url":"https://api.github.com/orgs/GeneAssembly","avatar_url":"https://avatars.githubusercontent.com/u/1619824?"}}
,{"id":"2489651112","type":"PushEvent","actor":{"id":6158630,"login":"greatfire","gravatar_id":"","url":"https://api.github.com/users/greatfire","avatar_url":"https://avatars.githubusercontent.com/u/6158630?"},"repo":{"id":15100395,"name":"greatfire/wiki","url":"https://api.github.com/repos/greatfire/wiki"},"payload":{"push_id":536863993,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"285f31f23dfe56b375350a6daa8b79afe65adbe7","before":"e4db023e33947e9ba331e2a953b53303769fd5ee","commits":[{"sha":"285f31f23dfe56b375350a6daa8b79afe65adbe7","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/wiki/commits/285f31f23dfe56b375350a6daa8b79afe65adbe7"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651113","type":"PushEvent","actor":{"id":1014189,"login":"adamatan","gravatar_id":"","url":"https://api.github.com/users/adamatan","avatar_url":"https://avatars.githubusercontent.com/u/1014189?"},"repo":{"id":15119415,"name":"adamatan/flip_classroom_hackathon","url":"https://api.github.com/repos/adamatan/flip_classroom_hackathon"},"payload":{"push_id":536863999,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8b1b8230766f4ca79f95f40b73aafe8c63bd613","before":"f22d11cc5d26e2011a921879c37532a00cea8dee","commits":[{"sha":"a8b1b8230766f4ca79f95f40b73aafe8c63bd613","author":{"email":"4bb196dc33f06494f5fee5aac258cb1962ba5b84@http://the-openclass.org","name":"Flipped headless user"},"message":"Automated DB Backup","distinct":true,"url":"https://api.github.com/repos/adamatan/flip_classroom_hackathon/commits/a8b1b8230766f4ca79f95f40b73aafe8c63bd613"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651114","type":"WatchEvent","actor":{"id":1209286,"login":"lucker6666","gravatar_id":"","url":"https://api.github.com/users/lucker6666","avatar_url":"https://avatars.githubusercontent.com/u/1209286?"},"repo":{"id":25062303,"name":"googlesamples/android-testing","url":"https://api.github.com/repos/googlesamples/android-testing"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:08Z","org":{"id":7378196,"login":"googlesamples","gravatar_id":"","url":"https://api.github.com/orgs/googlesamples","avatar_url":"https://avatars.githubusercontent.com/u/7378196?"}}
,{"id":"2489651115","type":"PushEvent","actor":{"id":467030,"login":"walmik","gravatar_id":"","url":"https://api.github.com/users/walmik","avatar_url":"https://avatars.githubusercontent.com/u/467030?"},"repo":{"id":3484837,"name":"walmik/timer.jquery","url":"https://api.github.com/repos/walmik/timer.jquery"},"payload":{"push_id":536864000,"size":6,"distinct_size":0,"ref":"refs/heads/develop","head":"fcf2715634a85af52d7544203ed5792bf685e329","before":"a6a0f45aa19483b131302fb2c3b4c5a6fa56aa93","commits":[{"sha":"69f542fcf904635655629d1eb8cf19ab5cb0bbe0","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #17 from walmik/develop\n\nAdded blanket.js for code coverage","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/69f542fcf904635655629d1eb8cf19ab5cb0bbe0"},{"sha":"e641c07de56e70d4ca48fb09a3a46c72f1cf5268","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik"},"message":"Merge branch 'develop'","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/e641c07de56e70d4ca48fb09a3a46c72f1cf5268"},{"sha":"21210d0d48019e224534a6433c79be480db8519a","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #18 from walmik/develop\n\nAdded updateable message to tests page.","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/21210d0d48019e224534a6433c79be480db8519a"},{"sha":"038940758ce5cd92d1c0815f39d6bd8ce1ebeb46","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #19 from walmik/develop\n\nAdded tests to validate duration syntax.","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/038940758ce5cd92d1c0815f39d6bd8ce1ebeb46"},{"sha":"ebefc1f1dff3a63c6700775aa57b79a378bba118","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #20 from walmik/develop\n\nAdded test for reset timer functionality","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/ebefc1f1dff3a63c6700775aa57b79a378bba118"},{"sha":"fcf2715634a85af52d7544203ed5792bf685e329","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #21 from walmik/develop\n\nFixed test for reset timer option. Bumped patch version.","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/fcf2715634a85af52d7544203ed5792bf685e329"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651117","type":"PushEvent","actor":{"id":5409394,"login":"12AwsomeMan34","gravatar_id":"","url":"https://api.github.com/users/12AwsomeMan34","avatar_url":"https://avatars.githubusercontent.com/u/5409394?"},"repo":{"id":28595401,"name":"Laxamer/Txtr","url":"https://api.github.com/repos/Laxamer/Txtr"},"payload":{"push_id":536864001,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c5e90551c0b6d3bad1d9e811e3cc5224150c7422","before":"ef5f7b7aa4126803349ed742e3807d49a77f3ff8","commits":[{"sha":"c5e90551c0b6d3bad1d9e811e3cc5224150c7422","author":{"email":"27bdc783d599ba566a59668de2199bec6c5cce54@yahoo.com","name":"12AwsomeMan34"},"message":"A slight name change\n\nPlus added else for the title if statement","distinct":true,"url":"https://api.github.com/repos/Laxamer/Txtr/commits/c5e90551c0b6d3bad1d9e811e3cc5224150c7422"}]},"public":true,"created_at":"2015-01-01T15:00:08Z","org":{"id":9970446,"login":"Laxamer","gravatar_id":"","url":"https://api.github.com/orgs/Laxamer","avatar_url":"https://avatars.githubusercontent.com/u/9970446?"}}
,{"id":"2489651119","type":"PushEvent","actor":{"id":6158630,"login":"greatfire","gravatar_id":"","url":"https://api.github.com/users/greatfire","avatar_url":"https://avatars.githubusercontent.com/u/6158630?"},"repo":{"id":18126008,"name":"greatfire/z","url":"https://api.github.com/repos/greatfire/z"},"payload":{"push_id":536864002,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3a3f749dee0da674db13c946d2b74a1f4ded512b","before":"daf25c0ac91088991d8f878c36626214f09d24bb","commits":[{"sha":"3a3f749dee0da674db13c946d2b74a1f4ded512b","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/z/commits/3a3f749dee0da674db13c946d2b74a1f4ded512b"}]},"public":true,"created_at":"2015-01-01T15:00:09Z"}
,{"id":"2489651120","type":"CreateEvent","actor":{"id":2059591,"login":"PhantomWolf","gravatar_id":"","url":"https://api.github.com/users/PhantomWolf","avatar_url":"https://avatars.githubusercontent.com/u/2059591?"},"repo":{"id":28592464,"name":"PhantomWolf/Whitelist-PAC-generator","url":"https://api.github.com/repos/PhantomWolf/Whitelist-PAC-generator"},"payload":{"ref":"devel","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:09Z"}
,{"id":"2489651121","type":"PushEvent","actor":{"id":6508762,"login":"basheersubei","gravatar_id":"","url":"https://api.github.com/users/basheersubei","avatar_url":"https://avatars.githubusercontent.com/u/6508762?"},"repo":{"id":28687954,"name":"basheersubei/ofSamplesAndStuff","url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff"},"payload":{"push_id":536864004,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"d04b108b1b1a883435694b9c450c19b8bf34358f","before":"020b10a84565b7a8395ae81e03c4724407fdc4db","commits":[{"sha":"a7f524740196cdc1c7420b2fa1d661a420d052ba","author":{"email":"d4284d16376f6bed429fe984b0b82ad0f9d89ace@gmail.com","name":"Basheer Subei"},"message":"removes binaries and obj files, they shouldn't be in there, only source.","distinct":true,"url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff/commits/a7f524740196cdc1c7420b2fa1d661a420d052ba"},{"sha":"e3bdfd021422af7f1efb60cadcb667a3e962563e","author":{"email":"d4284d16376f6bed429fe984b0b82ad0f9d89ace@gmail.com","name":"Basheer Subei"},"message":"Merge branch 'master' of\nhttps://github.com/basheersubei/ofSamplesAndStuff","distinct":true,"url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff/commits/e3bdfd021422af7f1efb60cadcb667a3e962563e"},{"sha":"d04b108b1b1a883435694b9c450c19b8bf34358f","author":{"email":"d4284d16376f6bed429fe984b0b82ad0f9d89ace@gmail.com","name":"Basheer Subei"},"message":"Merge branch 'master' of https://github.com/basheersubei/ofSamplesAndStuff","distinct":true,"url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff/commits/d04b108b1b1a883435694b9c450c19b8bf34358f"}]},"public":true,"created_at":"2015-01-01T15:00:09Z"}
,{"id":"2489651123","type":"PushEvent","actor":{"id":926454,"login":"lukeis","gravatar_id":"","url":"https://api.github.com/users/lukeis","avatar_url":"https://avatars.githubusercontent.com/u/926454?"},"repo":{"id":9457897,"name":"SeleniumHQ/irc-logs","url":"https://api.github.com/repos/SeleniumHQ/irc-logs"},"payload":{"push_id":536864006,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"42b668380d07c94d83beb1ce1b4ff91109e6a022","before":"ac71511ce5919e10e7f8001e7f1a32d360943e4f","commits":[{"sha":"42b668380d07c94d83beb1ce1b4ff91109e6a022","author":{"email":"c7f2353e77fbd59227c091422ca81210965ba01d","name":"selloggingbot"},"message":"updating logs","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/irc-logs/commits/42b668380d07c94d83beb1ce1b4ff91109e6a022"}]},"public":true,"created_at":"2015-01-01T15:00:09Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}}
,{"id":"2489651126","type":"IssuesEvent","actor":{"id":10162972,"login":"s3408669","gravatar_id":"","url":"https://api.github.com/users/s3408669","avatar_url":"https://avatars.githubusercontent.com/u/10162972?"},"repo":{"id":12382547,"name":"sheimi/SGit","url":"https://api.github.com/repos/sheimi/SGit"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/sheimi/SGit/issues/131","labels_url":"https://api.github.com/repos/sheimi/SGit/issues/131/labels{/name}","comments_url":"https://api.github.com/repos/sheimi/SGit/issues/131/comments","events_url":"https://api.github.com/repos/sheimi/SGit/issues/131/events","html_url":"https://github.com/sheimi/SGit/issues/131","id":53221336,"number":131,"title":"Directly delete a repository from Android/data/me.scheimi/files/repo but that repository still shows in the user interface of SGit","user":{"login":"s3408669","id":10162972,"avatar_url":"https://avatars.githubusercontent.com/u/10162972?v=3","gravatar_id":"","url":"https://api.github.com/users/s3408669","html_url":"https://github.com/s3408669","followers_url":"https://api.github.com/users/s3408669/followers","following_url":"https://api.github.com/users/s3408669/following{/other_user}","gists_url":"https://api.github.com/users/s3408669/gists{/gist_id}","starred_url":"https://api.github.com/users/s3408669/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s3408669/subscriptions","organizations_url":"https://api.github.com/users/s3408669/orgs","repos_url":"https://api.github.com/users/s3408669/repos","events_url":"https://api.github.com/users/s3408669/events{/privacy}","received_events_url":"https://api.github.com/users/s3408669/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:09Z","updated_at":"2015-01-01T15:00:09Z","closed_at":null,"body":"Steps to reproduce:\r\n- Go to Android/data/me.scheimi.sgit/files/repo.\r\n- Remove a repository.\r\n- Go back to SGit\r\n\r\nOutput:\r\n- SGit cannot detect that the repo has been deleted and still show the repo in the user interface. \r\n- When choose that repo, the toast message shows that \r\n\"Repositoy not found (there may be something wrong with this repo)."}},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651127","type":"PushEvent","actor":{"id":1459915,"login":"xtuaok","gravatar_id":"","url":"https://api.github.com/users/xtuaok","avatar_url":"https://avatars.githubusercontent.com/u/1459915?"},"repo":{"id":6719841,"name":"xtuaok/twitter_track_following","url":"https://api.github.com/repos/xtuaok/twitter_track_following"},"payload":{"push_id":536864008,"size":1,"distinct_size":1,"ref":"refs/heads/xtuaok","head":"afb8afe306c7893d93d383a06e4d9df53b41bf47","before":"4671b4868f1a060f2ed64d8268cd22d514a84e63","commits":[{"sha":"afb8afe306c7893d93d383a06e4d9df53b41bf47","author":{"email":"47cb89439b2d6961b59dff4298e837f67aa77389@gmail.com","name":"Tomonori Tamagawa"},"message":"Update ID 949438177\n\n - screen_name: chomado\n - name: ちょまど@初詣おみくじ凶\n - description: ( *゚▽゚* っ)З腐女子!絵描き!| H26新卒文系SE (入社して4ヶ月目の8月にSIer(適応障害になった)を辞職し開発者に転職) | H26秋応用情報合格!| 自作bot (in PHP) chomado_bot | プログラミングガチ初心者\n - location:","distinct":true,"url":"https://api.github.com/repos/xtuaok/twitter_track_following/commits/afb8afe306c7893d93d383a06e4d9df53b41bf47"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651128","type":"ForkEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":25873041,"name":"wasabeef/awesome-android-libraries","url":"https://api.github.com/repos/wasabeef/awesome-android-libraries"},"payload":{"forkee":{"id":28688599,"name":"awesome-android-libraries","full_name":"Soufien/awesome-android-libraries","owner":{"login":"Soufien","id":1757814,"avatar_url":"https://avatars.githubusercontent.com/u/1757814?v=3","gravatar_id":"","url":"https://api.github.com/users/Soufien","html_url":"https://github.com/Soufien","followers_url":"https://api.github.com/users/Soufien/followers","following_url":"https://api.github.com/users/Soufien/following{/other_user}","gists_url":"https://api.github.com/users/Soufien/gists{/gist_id}","starred_url":"https://api.github.com/users/Soufien/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Soufien/subscriptions","organizations_url":"https://api.github.com/users/Soufien/orgs","repos_url":"https://api.github.com/users/Soufien/repos","events_url":"https://api.github.com/users/Soufien/events{/privacy}","received_events_url":"https://api.github.com/users/Soufien/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Soufien/awesome-android-libraries","description":"This is an alphabetical list of libraries for Android development, the majority being actively maintained.","fork":true,"url":"https://api.github.com/repos/Soufien/awesome-android-libraries","forks_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/forks","keys_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/teams","hooks_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/hooks","issue_events_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/issues/events{/number}","events_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/events","assignees_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/assignees{/user}","branches_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/branches{/branch}","tags_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/tags","blobs_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/refs{/sha}","trees_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/statuses/{sha}","languages_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/languages","stargazers_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/stargazers","contributors_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/contributors","subscribers_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/subscribers","subscription_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/subscription","commits_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/commits{/sha}","git_commits_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/commits{/sha}","comments_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/comments{/number}","issue_comment_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/issues/comments/{number}","contents_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/contents/{+path}","compare_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/merges","archive_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/downloads","issues_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/issues{/number}","pulls_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/pulls{/number}","milestones_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/milestones{/number}","notifications_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/labels{/name}","releases_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/releases{/id}","created_at":"2015-01-01T15:00:10Z","updated_at":"2015-01-01T15:00:05Z","pushed_at":"2014-12-30T10:07:06Z","git_url":"git://github.com/Soufien/awesome-android-libraries.git","ssh_url":"git@github.com:Soufien/awesome-android-libraries.git","clone_url":"https://github.com/Soufien/awesome-android-libraries.git","svn_url":"https://github.com/Soufien/awesome-android-libraries","homepage":"https://twitter.com/wasabeef_jp","size":259,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651130","type":"PullRequestEvent","actor":{"id":732452,"login":"bscSCORM","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","avatar_url":"https://avatars.githubusercontent.com/u/732452?"},"repo":{"id":5452699,"name":"RusticiSoftware/TinCanJS","url":"https://api.github.com/repos/RusticiSoftware/TinCanJS"},"payload":{"action":"closed","number":97,"pull_request":{"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97","id":25667344,"html_url":"https://github.com/RusticiSoftware/TinCanJS/pull/97","diff_url":"https://github.com/RusticiSoftware/TinCanJS/pull/97.diff","patch_url":"https://github.com/RusticiSoftware/TinCanJS/pull/97.patch","issue_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97","number":97,"state":"closed","locked":false,"title":"Allow forced no registration and POST method for setState","user":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"body":"Allow the AP to explicitly store a state document with no registration by passing a registration of null in the configuration.\r\n\r\nAllow the AP to specify it wants to use POST instead of PUT for application/json.\r\n\r\nSupersedes https://github.com/RusticiSoftware/TinCanJS/pull/93","created_at":"2014-12-08T13:59:20Z","updated_at":"2015-01-01T15:00:10Z","closed_at":"2015-01-01T15:00:10Z","merged_at":"2015-01-01T15:00:10Z","merge_commit_sha":"be5df8f1232f43105acae8d0ed6653fdf87aefc5","assignee":{"login":"bscSCORM","id":732452,"avatar_url":"https://avatars.githubusercontent.com/u/732452?v=3","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","html_url":"https://github.com/bscSCORM","followers_url":"https://api.github.com/users/bscSCORM/followers","following_url":"https://api.github.com/users/bscSCORM/following{/other_user}","gists_url":"https://api.github.com/users/bscSCORM/gists{/gist_id}","starred_url":"https://api.github.com/users/bscSCORM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bscSCORM/subscriptions","organizations_url":"https://api.github.com/users/bscSCORM/orgs","repos_url":"https://api.github.com/users/bscSCORM/repos","events_url":"https://api.github.com/users/bscSCORM/events{/privacy}","received_events_url":"https://api.github.com/users/bscSCORM/received_events","type":"User","site_admin":false},"milestone":null,"commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/commits","review_comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/comments","review_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97/comments","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c2073e24bc12351cec96ccfc7b97ef34ed32287c","head":{"label":"garemoko:setState_squashed","ref":"setState_squashed","sha":"c2073e24bc12351cec96ccfc7b97ef34ed32287c","user":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"repo":{"id":23806425,"name":"TinCanJS","full_name":"garemoko/TinCanJS","owner":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/garemoko/TinCanJS","description":"JavaScript library for Tin Can API","fork":true,"url":"https://api.github.com/repos/garemoko/TinCanJS","forks_url":"https://api.github.com/repos/garemoko/TinCanJS/forks","keys_url":"https://api.github.com/repos/garemoko/TinCanJS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/garemoko/TinCanJS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/garemoko/TinCanJS/teams","hooks_url":"https://api.github.com/repos/garemoko/TinCanJS/hooks","issue_events_url":"https://api.github.com/repos/garemoko/TinCanJS/issues/events{/number}","events_url":"https://api.github.com/repos/garemoko/TinCanJS/events","assignees_url":"https://api.github.com/repos/garemoko/TinCanJS/assignees{/user}","branches_url":"https://api.github.com/repos/garemoko/TinCanJS/branches{/branch}","tags_url":"https://api.github.com/repos/garemoko/TinCanJS/tags","blobs_url":"https://api.github.com/repos/garemoko/TinCanJS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/garemoko/TinCanJS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/garemoko/TinCanJS/git/refs{/sha}","trees_url":"https://api.github.com/repos/garemoko/TinCanJS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/garemoko/TinCanJS/statuses/{sha}","languages_url":"https://api.github.com/repos/garemoko/TinCanJS/languages","stargazers_url":"https://api.github.com/repos/garemoko/TinCanJS/stargazers","contributors_url":"https://api.github.com/repos/garemoko/TinCanJS/contributors","subscribers_url":"https://api.github.com/repos/garemoko/TinCanJS/subscribers","subscription_url":"https://api.github.com/repos/garemoko/TinCanJS/subscription","commits_url":"https://api.github.com/repos/garemoko/TinCanJS/commits{/sha}","git_commits_url":"https://api.github.com/repos/garemoko/TinCanJS/git/commits{/sha}","comments_url":"https://api.github.com/repos/garemoko/TinCanJS/comments{/number}","issue_comment_url":"https://api.github.com/repos/garemoko/TinCanJS/issues/comments/{number}","contents_url":"https://api.github.com/repos/garemoko/TinCanJS/contents/{+path}","compare_url":"https://api.github.com/repos/garemoko/TinCanJS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/garemoko/TinCanJS/merges","archive_url":"https://api.github.com/repos/garemoko/TinCanJS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/garemoko/TinCanJS/downloads","issues_url":"https://api.github.com/repos/garemoko/TinCanJS/issues{/number}","pulls_url":"https://api.github.com/repos/garemoko/TinCanJS/pulls{/number}","milestones_url":"https://api.github.com/repos/garemoko/TinCanJS/milestones{/number}","notifications_url":"https://api.github.com/repos/garemoko/TinCanJS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/garemoko/TinCanJS/labels{/name}","releases_url":"https://api.github.com/repos/garemoko/TinCanJS/releases{/id}","created_at":"2014-09-08T20:12:29Z","updated_at":"2014-12-08T15:36:53Z","pushed_at":"2014-12-30T16:51:57Z","git_url":"git://github.com/garemoko/TinCanJS.git","ssh_url":"git@github.com:garemoko/TinCanJS.git","clone_url":"https://github.com/garemoko/TinCanJS.git","svn_url":"https://github.com/garemoko/TinCanJS","homepage":"http://rusticisoftware.github.io/TinCanJS/","size":7430,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"RusticiSoftware:master","ref":"master","sha":"6f51600a2d30f63d7ef61d528c99e6ff003c5934","user":{"login":"RusticiSoftware","id":440964,"avatar_url":"https://avatars.githubusercontent.com/u/440964?v=3","gravatar_id":"","url":"https://api.github.com/users/RusticiSoftware","html_url":"https://github.com/RusticiSoftware","followers_url":"https://api.github.com/users/RusticiSoftware/followers","following_url":"https://api.github.com/users/RusticiSoftware/following{/other_user}","gists_url":"https://api.github.com/users/RusticiSoftware/gists{/gist_id}","starred_url":"https://api.github.com/users/RusticiSoftware/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RusticiSoftware/subscriptions","organizations_url":"https://api.github.com/users/RusticiSoftware/orgs","repos_url":"https://api.github.com/users/RusticiSoftware/repos","events_url":"https://api.github.com/users/RusticiSoftware/events{/privacy}","received_events_url":"https://api.github.com/users/RusticiSoftware/received_events","type":"Organization","site_admin":false},"repo":{"id":5452699,"name":"TinCanJS","full_name":"RusticiSoftware/TinCanJS","owner":{"login":"RusticiSoftware","id":440964,"avatar_url":"https://avatars.githubusercontent.com/u/440964?v=3","gravatar_id":"","url":"https://api.github.com/users/RusticiSoftware","html_url":"https://github.com/RusticiSoftware","followers_url":"https://api.github.com/users/RusticiSoftware/followers","following_url":"https://api.github.com/users/RusticiSoftware/following{/other_user}","gists_url":"https://api.github.com/users/RusticiSoftware/gists{/gist_id}","starred_url":"https://api.github.com/users/RusticiSoftware/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RusticiSoftware/subscriptions","organizations_url":"https://api.github.com/users/RusticiSoftware/orgs","repos_url":"https://api.github.com/users/RusticiSoftware/repos","events_url":"https://api.github.com/users/RusticiSoftware/events{/privacy}","received_events_url":"https://api.github.com/users/RusticiSoftware/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/RusticiSoftware/TinCanJS","description":"JavaScript library for Tin Can API","fork":false,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS","forks_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/forks","keys_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/teams","hooks_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/hooks","issue_events_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/events{/number}","events_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/events","assignees_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/assignees{/user}","branches_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/branches{/branch}","tags_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/tags","blobs_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/refs{/sha}","trees_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/{sha}","languages_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/languages","stargazers_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/stargazers","contributors_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/contributors","subscribers_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/subscribers","subscription_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/subscription","commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits{/sha}","git_commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/commits{/sha}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/comments{/number}","issue_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/comments/{number}","contents_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/contents/{+path}","compare_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/merges","archive_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/downloads","issues_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues{/number}","pulls_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls{/number}","milestones_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/milestones{/number}","notifications_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/labels{/name}","releases_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/releases{/id}","created_at":"2012-08-17T13:41:20Z","updated_at":"2015-01-01T14:47:41Z","pushed_at":"2015-01-01T15:00:10Z","git_url":"git://github.com/RusticiSoftware/TinCanJS.git","ssh_url":"git@github.com:RusticiSoftware/TinCanJS.git","clone_url":"https://github.com/RusticiSoftware/TinCanJS.git","svn_url":"https://github.com/RusticiSoftware/TinCanJS","homepage":"http://rusticisoftware.github.io/TinCanJS/","size":8368,"stargazers_count":78,"watchers_count":78,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":60,"mirror_url":null,"open_issues_count":22,"forks":60,"open_issues":22,"watchers":78,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97"},"html":{"href":"https://github.com/RusticiSoftware/TinCanJS/pull/97"},"issue":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97"},"comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97/comments"},"review_comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/comments"},"review_comment":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/commits"},"statuses":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c2073e24bc12351cec96ccfc7b97ef34ed32287c"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"bscSCORM","id":732452,"avatar_url":"https://avatars.githubusercontent.com/u/732452?v=3","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","html_url":"https://github.com/bscSCORM","followers_url":"https://api.github.com/users/bscSCORM/followers","following_url":"https://api.github.com/users/bscSCORM/following{/other_user}","gists_url":"https://api.github.com/users/bscSCORM/gists{/gist_id}","starred_url":"https://api.github.com/users/bscSCORM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bscSCORM/subscriptions","organizations_url":"https://api.github.com/users/bscSCORM/orgs","repos_url":"https://api.github.com/users/bscSCORM/repos","events_url":"https://api.github.com/users/bscSCORM/events{/privacy}","received_events_url":"https://api.github.com/users/bscSCORM/received_events","type":"User","site_admin":false},"comments":4,"review_comments":8,"commits":5,"additions":379,"deletions":6,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}}
,{"id":"2489651134","type":"PushEvent","actor":{"id":227042,"login":"missionsix","gravatar_id":"","url":"https://api.github.com/users/missionsix","avatar_url":"https://avatars.githubusercontent.com/u/227042?"},"repo":{"id":19073780,"name":"missionsix/Transmissionbt","url":"https://api.github.com/repos/missionsix/Transmissionbt"},"payload":{"push_id":536864012,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"327e6e0f499419019bfd9583a116dc8ffba05938","before":"6bed2872a1750b4d8862cfe0780d176c987c75c4","commits":[{"sha":"c7f1fe9de1da8077fe350bc9b19330d1d14eb6a9","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@1bcf1a7e-6170-4b50-b784-84ec52b2dec6","name":"mikedld"},"message":"#4400, #5462: Add possibility to test one crypto backend against another (reference) backend\n\n\ngit-svn-id: file:///data/workdir/Transmission-svn/trunk@14419 1bcf1a7e-6170-4b50-b784-84ec52b2dec6","distinct":true,"url":"https://api.github.com/repos/missionsix/Transmissionbt/commits/c7f1fe9de1da8077fe350bc9b19330d1d14eb6a9"},{"sha":"797366176e4bbc4977e19b235370cce0701c379d","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@1bcf1a7e-6170-4b50-b784-84ec52b2dec6","name":"mikedld"},"message":"#4400, #5462: Fix autotools configuration\n\n\ngit-svn-id: file:///data/workdir/Transmission-svn/trunk@14420 1bcf1a7e-6170-4b50-b784-84ec52b2dec6","distinct":true,"url":"https://api.github.com/repos/missionsix/Transmissionbt/commits/797366176e4bbc4977e19b235370cce0701c379d"},{"sha":"327e6e0f499419019bfd9583a116dc8ffba05938","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@1bcf1a7e-6170-4b50-b784-84ec52b2dec6","name":"mikedld"},"message":"#4400, #5462: Fix \"make check\" for po files\n\n\ngit-svn-id: file:///data/workdir/Transmission-svn/trunk@14421 1bcf1a7e-6170-4b50-b784-84ec52b2dec6","distinct":true,"url":"https://api.github.com/repos/missionsix/Transmissionbt/commits/327e6e0f499419019bfd9583a116dc8ffba05938"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651135","type":"PushEvent","actor":{"id":1276160,"login":"designingsean","gravatar_id":"","url":"https://api.github.com/users/designingsean","avatar_url":"https://avatars.githubusercontent.com/u/1276160?"},"repo":{"id":28671894,"name":"designingsean/tce-wordpress-theme","url":"https://api.github.com/repos/designingsean/tce-wordpress-theme"},"payload":{"push_id":536864013,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"85036f9252390fbadaf4a5232f55c320e4cd718e","before":"71833e4d47472462cdd1804a47f2fd44b17727b1","commits":[{"sha":"85036f9252390fbadaf4a5232f55c320e4cd718e","author":{"email":"d7e19930cc1f42c2d0781f4d9e6f1fe5891bf9cf@designingsean.com","name":"Sean Ryan"},"message":"Add in very rough mobile styles","distinct":true,"url":"https://api.github.com/repos/designingsean/tce-wordpress-theme/commits/85036f9252390fbadaf4a5232f55c320e4cd718e"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651137","type":"PushEvent","actor":{"id":429529,"login":"cato-","gravatar_id":"","url":"https://api.github.com/users/cato-","avatar_url":"https://avatars.githubusercontent.com/u/429529?"},"repo":{"id":7588969,"name":"xenim/livestatus-publicpage","url":"https://api.github.com/repos/xenim/livestatus-publicpage"},"payload":{"push_id":536864015,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"04baa6f3a60d5ec9939e8a427d06148a6648d781","before":"024962500dccf1395702d2c737349620239c3f60","commits":[{"sha":"04baa6f3a60d5ec9939e8a427d06148a6648d781","author":{"email":"12e9293ec6b30c7fa8a0926af42807e929c1684f@niob.xnis.de","name":"Robert Weidlich"},"message":"update","distinct":true,"url":"https://api.github.com/repos/xenim/livestatus-publicpage/commits/04baa6f3a60d5ec9939e8a427d06148a6648d781"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":1789841,"login":"xenim","gravatar_id":"","url":"https://api.github.com/orgs/xenim","avatar_url":"https://avatars.githubusercontent.com/u/1789841?"}}
,{"id":"2489651138","type":"PushEvent","actor":{"id":3157424,"login":"fffy2366","gravatar_id":"","url":"https://api.github.com/users/fffy2366","avatar_url":"https://avatars.githubusercontent.com/u/3157424?"},"repo":{"id":28271942,"name":"wechat-distribution/distribution","url":"https://api.github.com/repos/wechat-distribution/distribution"},"payload":{"push_id":536864014,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e253376a66a6e431ea89723c9b8bb9186b70f518","before":"003c9c9fe8e6a2c95d87b75895ccdec4ef9f9635","commits":[{"sha":"e253376a66a6e431ea89723c9b8bb9186b70f518","author":{"email":"3f309f8c9fb4a69938494f88f629d59c9c4a532c@gmail.com","name":"Frank"},"message":"change credit","distinct":true,"url":"https://api.github.com/repos/wechat-distribution/distribution/commits/e253376a66a6e431ea89723c9b8bb9186b70f518"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":10253928,"login":"wechat-distribution","gravatar_id":"","url":"https://api.github.com/orgs/wechat-distribution","avatar_url":"https://avatars.githubusercontent.com/u/10253928?"}}
,{"id":"2489651140","type":"PushEvent","actor":{"id":1608685,"login":"nmap-bot","gravatar_id":"","url":"https://api.github.com/users/nmap-bot","avatar_url":"https://avatars.githubusercontent.com/u/1608685?"},"repo":{"id":3671479,"name":"nmap/nmap","url":"https://api.github.com/repos/nmap/nmap"},"payload":{"push_id":536864016,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"d2622c0396f5fbac6edb42df6b49f23ded21d8e2","before":"fc99bed7069b4996631ebda2f2dcea1c5814b369","commits":[{"sha":"1371a3303e2f2a15867f94beed496a6d5ac121be","author":{"email":"d1a888239fe2584da78334b3974c3b58a26c0864@e0a8ed71-7df4-0310-8962-fdc924857419","name":"tomsellers"},"message":"Rework of PostgreSQL version detection -\n\nAdded detection for PostgreSQL 9.4 via line number match\nAdded windows platform detection\nReworked language specific sections for regex consistency and priority\nGenerated German softmatch from a more specific probe\nBroadened French softmatch\nCreated language neutral universal softmatches for windows and non-windows platforms","distinct":true,"url":"https://api.github.com/repos/nmap/nmap/commits/1371a3303e2f2a15867f94beed496a6d5ac121be"},{"sha":"d2622c0396f5fbac6edb42df6b49f23ded21d8e2","author":{"email":"d1a888239fe2584da78334b3974c3b58a26c0864@e0a8ed71-7df4-0310-8962-fdc924857419","name":"tomsellers"},"message":"Fix reference in rmi-vuln-classloader.nse to point to Metasploit\nGithub repo as Metasploit Redmine is deprecated and requires\nauth.","distinct":true,"url":"https://api.github.com/repos/nmap/nmap/commits/d2622c0396f5fbac6edb42df6b49f23ded21d8e2"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":63385,"login":"nmap","gravatar_id":"","url":"https://api.github.com/orgs/nmap","avatar_url":"https://avatars.githubusercontent.com/u/63385?"}}
,{"id":"2489651141","type":"PushEvent","actor":{"id":4447136,"login":"su-github-machine-user","gravatar_id":"","url":"https://api.github.com/users/su-github-machine-user","avatar_url":"https://avatars.githubusercontent.com/u/4447136?"},"repo":{"id":10314483,"name":"su-github-machine-user/github-nagios-check","url":"https://api.github.com/repos/su-github-machine-user/github-nagios-check"},"payload":{"push_id":536864017,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c3ae48b58233d6b4e40829076b731cf7b8eecc28","before":"f7e5efb3006a41246e9cad0a8f20d58a04215336","commits":[{"sha":"c3ae48b58233d6b4e40829076b731cf7b8eecc28","author":{"email":"875a8f2f42c570f5f4ea7bfd154f582bcf95673a@su.se","name":"su-githubmirror"},"message":"New timestamp: 1420124402","distinct":true,"url":"https://api.github.com/repos/su-github-machine-user/github-nagios-check/commits/c3ae48b58233d6b4e40829076b731cf7b8eecc28"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651143","type":"PushEvent","actor":{"id":732452,"login":"bscSCORM","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","avatar_url":"https://avatars.githubusercontent.com/u/732452?"},"repo":{"id":5452699,"name":"RusticiSoftware/TinCanJS","url":"https://api.github.com/repos/RusticiSoftware/TinCanJS"},"payload":{"push_id":536864019,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2","before":"a40a23d5ba0d4bf0c5b96e552f2f873123195fb0","commits":[{"sha":"7ce74102de0eab323c195c23d11d1ed8bd5b787d","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Allow forced no registration and POST method for setState","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/7ce74102de0eab323c195c23d11d1ed8bd5b787d"},{"sha":"f59467e41917191c754d497c7783bce993260c7b","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Style fixes","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/f59467e41917191c754d497c7783bce993260c7b"},{"sha":"a13fb6be3ae24f2d1e6714a8a623af63f81776b5","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"forced no registration and POST for all document API methods (with tests)","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/a13fb6be3ae24f2d1e6714a8a623af63f81776b5"},{"sha":"561244ffd8e1ec2533451b26b60429e8e1f1db67","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"allow explicitly null registration for getState","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/561244ffd8e1ec2533451b26b60429e8e1f1db67"},{"sha":"c2073e24bc12351cec96ccfc7b97ef34ed32287c","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Fixes to agent and activity profile tests","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/c2073e24bc12351cec96ccfc7b97ef34ed32287c"},{"sha":"0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2","author":{"email":"3a19cd5185143587c3e7d5e91f5db86ca3a27fc7@scorm.com","name":"bscSCORM"},"message":"Merge pull request #97 from garemoko/setState_squashed\n\nAllow forced no registration and POST method for setState","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}}
,{"id":"2489651146","type":"PushEvent","actor":{"id":1450716,"login":"luigino","gravatar_id":"","url":"https://api.github.com/users/luigino","avatar_url":"https://avatars.githubusercontent.com/u/1450716?"},"repo":{"id":28688404,"name":"luigino/Baka-MPlayer","url":"https://api.github.com/repos/luigino/Baka-MPlayer"},"payload":{"push_id":536864021,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a489b190099429657d97209261eafb8713e11f8b","before":"abe4f865d05d63b194227b41210fa53fbe6f56f9","commits":[{"sha":"a489b190099429657d97209261eafb8713e11f8b","author":{"email":"2efa471c453097304a26f7a4073c0b0cb8086df1@gmx.com","name":"Luigi Baldoni"},"message":"Added Italian translation","distinct":true,"url":"https://api.github.com/repos/luigino/Baka-MPlayer/commits/a489b190099429657d97209261eafb8713e11f8b"}]},"public":true,"created_at":"2015-01-01T15:00:11Z"}
,{"id":"2489651154","type":"GollumEvent","actor":{"id":877290,"login":"wyldckat","gravatar_id":"","url":"https://api.github.com/users/wyldckat","avatar_url":"https://avatars.githubusercontent.com/u/877290?"},"repo":{"id":15490592,"name":"wyldckat/wyldckat.github.io","url":"https://api.github.com/repos/wyldckat/wyldckat.github.io"},"payload":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"edited","sha":"604f669003fe6d1fd7f826437a02e42e5481f802","html_url":"https://github.com/wyldckat/wyldckat.github.io/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:00:11Z"}
,{"id":"2489651156","type":"PushEvent","actor":{"id":2318343,"login":"treckstar","gravatar_id":"","url":"https://api.github.com/users/treckstar","avatar_url":"https://avatars.githubusercontent.com/u/2318343?"},"repo":{"id":17101123,"name":"treckstar/yolo-octo-hipster","url":"https://api.github.com/repos/treckstar/yolo-octo-hipster"},"payload":{"push_id":536864026,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b2c33057d10424c9989d70eac74d0e63a9d7e89","before":"2c75a5b19bce244487398b0db4132ebaf27d0e9d","commits":[{"sha":"2b2c33057d10424c9989d70eac74d0e63a9d7e89","author":{"email":"28cf8d5dd63a27bb1a047ac2fe7ded863d3bc56c@gmail.com","name":"treckstar"},"message":"Good music is good music, and that should be enough for anybody.","distinct":true,"url":"https://api.github.com/repos/treckstar/yolo-octo-hipster/commits/2b2c33057d10424c9989d70eac74d0e63a9d7e89"}]},"public":true,"created_at":"2015-01-01T15:00:11Z"}
,{"id":"2489651164","type":"PushEvent","actor":{"id":8675834,"login":"tamil1","gravatar_id":"","url":"https://api.github.com/users/tamil1","avatar_url":"https://avatars.githubusercontent.com/u/8675834?"},"repo":{"id":23728095,"name":"tamil1/tamil1.github.io","url":"https://api.github.com/repos/tamil1/tamil1.github.io"},"payload":{"push_id":536864031,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15f79969406eec31c20a42e27bf2a54aee7f17b7","before":"98e36510c5c44146d5943be67500b33cf2f7c20f","commits":[{"sha":"15f79969406eec31c20a42e27bf2a54aee7f17b7","author":{"email":"3425cbc239dd0de4c48f523e0e9eff11aa587235@gmail.com","name":"tamil1"},"message":"normalrun","distinct":true,"url":"https://api.github.com/repos/tamil1/tamil1.github.io/commits/15f79969406eec31c20a42e27bf2a54aee7f17b7"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651165","type":"PushEvent","actor":{"id":10066144,"login":"nilegsalcin","gravatar_id":"","url":"https://api.github.com/users/nilegsalcin","avatar_url":"https://avatars.githubusercontent.com/u/10066144?"},"repo":{"id":28340536,"name":"nilegsalcin/puppet-bootstrap","url":"https://api.github.com/repos/nilegsalcin/puppet-bootstrap"},"payload":{"push_id":536864032,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d861c239ff6ec2e31a990c74dc3a9da3424996c1","before":"0497f04c7e1977282fde3cf469d7c52c1b0cdbf2","commits":[{"sha":"d861c239ff6ec2e31a990c74dc3a9da3424996c1","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@niclasgelin.se","name":"niclasgelin"},"message":"Example commit","distinct":true,"url":"https://api.github.com/repos/nilegsalcin/puppet-bootstrap/commits/d861c239ff6ec2e31a990c74dc3a9da3424996c1"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651167","type":"CreateEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"ref":"task","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651168","type":"PushEvent","actor":{"id":4277,"login":"yaroslav","gravatar_id":"","url":"https://api.github.com/users/yaroslav","avatar_url":"https://avatars.githubusercontent.com/u/4277?"},"repo":{"id":26508664,"name":"evilmartians/postcss","url":"https://api.github.com/repos/evilmartians/postcss"},"payload":{"push_id":536864034,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6a3c20cbd10b7766713a56c294cb6d77dd35ace9","before":"311c811fbfab757e112290e6e80c5ca8c53d85f7","commits":[{"sha":"42a1df1139aae53ca0dffd5be208a90543023870","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@rebertia.com","name":"Chris Rebert"},"message":"typo/spelling fix in README","distinct":true,"url":"https://api.github.com/repos/evilmartians/postcss/commits/42a1df1139aae53ca0dffd5be208a90543023870"},{"sha":"6a3c20cbd10b7766713a56c294cb6d77dd35ace9","author":{"email":"fd2b0a636ed0c80c1646cd2c2e72f7a758b42b5b@sitnik.ru","name":"Andrey Sitnik"},"message":"Merge pull request #160 from cvrebert/patch-1\n\ntypo/spelling fix in README","distinct":true,"url":"https://api.github.com/repos/evilmartians/postcss/commits/6a3c20cbd10b7766713a56c294cb6d77dd35ace9"}]},"public":true,"created_at":"2015-01-01T15:00:12Z","org":{"id":46581,"login":"evilmartians","gravatar_id":"","url":"https://api.github.com/orgs/evilmartians","avatar_url":"https://avatars.githubusercontent.com/u/46581?"}}
,{"id":"2489651169","type":"PushEvent","actor":{"id":8770348,"login":"HouseMonitor","gravatar_id":"","url":"https://api.github.com/users/HouseMonitor","avatar_url":"https://avatars.githubusercontent.com/u/8770348?"},"repo":{"id":24030380,"name":"HouseMonitor/Logs2014-2015","url":"https://api.github.com/repos/HouseMonitor/Logs2014-2015"},"payload":{"push_id":536864036,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3e84515dc75cd395fc74549b2f2647885563f3cf","before":"0b8540a22ee6d99b0d068874597c4db2aed15776","commits":[{"sha":"3e84515dc75cd395fc74549b2f2647885563f3cf","author":{"email":"17e72c8f1b0781cefad8c299a70b47a752ed01a6@gmail.com","name":"Matej Drolc"},"message":"automated commit","distinct":true,"url":"https://api.github.com/repos/HouseMonitor/Logs2014-2015/commits/3e84515dc75cd395fc74549b2f2647885563f3cf"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651172","type":"PushEvent","actor":{"id":5059195,"login":"Blimeo","gravatar_id":"","url":"https://api.github.com/users/Blimeo","avatar_url":"https://avatars.githubusercontent.com/u/5059195?"},"repo":{"id":28688096,"name":"Blimeo/blimeo.github.io","url":"https://api.github.com/repos/Blimeo/blimeo.github.io"},"payload":{"push_id":536864038,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c2d7a0295ac9c1b5f66c4905b15554837dd6af36","before":"ac36b03525bdde4e20484762e28d938ad069f950","commits":[{"sha":"c2d7a0295ac9c1b5f66c4905b15554837dd6af36","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"dddddddddd\n\ndddddddddddd","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/c2d7a0295ac9c1b5f66c4905b15554837dd6af36"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651177","type":"PushEvent","actor":{"id":4102215,"login":"d3stats","gravatar_id":"","url":"https://api.github.com/users/d3stats","avatar_url":"https://avatars.githubusercontent.com/u/4102215?"},"repo":{"id":9317463,"name":"d3stats/d3.fuzz.me.uk","url":"https://api.github.com/repos/d3stats/d3.fuzz.me.uk"},"payload":{"push_id":536864039,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"8d2eeac4682416227ab24cdb1b96b7854ef0bf95","before":"fb12c4a82f191cf34318250b164e1099cf093c33","commits":[{"sha":"8d2eeac4682416227ab24cdb1b96b7854ef0bf95","author":{"email":"4f26aeafdb2367620a393c973eddbe8f8b846ebd@fuzz.me.uk","name":"d3stats"},"message":"scheduled update","distinct":true,"url":"https://api.github.com/repos/d3stats/d3.fuzz.me.uk/commits/8d2eeac4682416227ab24cdb1b96b7854ef0bf95"}]},"public":true,"created_at":"2015-01-01T15:00:13Z"}
,{"id":"2489651179","type":"PullRequestEvent","actor":{"id":7580708,"login":"OQO","gravatar_id":"","url":"https://api.github.com/users/OQO","avatar_url":"https://avatars.githubusercontent.com/u/7580708?"},"repo":{"id":19777872,"name":"OQO/websocket-sharp","url":"https://api.github.com/repos/OQO/websocket-sharp"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1","id":26743767,"html_url":"https://github.com/OQO/websocket-sharp/pull/1","diff_url":"https://github.com/OQO/websocket-sharp/pull/1.diff","patch_url":"https://github.com/OQO/websocket-sharp/pull/1.patch","issue_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1","number":1,"state":"open","locked":false,"title":"Update from master","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:12Z","updated_at":"2015-01-01T15:00:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits","review_comments_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments","review_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847","head":{"label":"sta:master","ref":"master","sha":"d25abde62826651db331b8995a02fa5b6d1a1847","user":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"repo":{"id":997491,"name":"websocket-sharp","full_name":"sta/websocket-sharp","owner":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sta/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":false,"url":"https://api.github.com/repos/sta/websocket-sharp","forks_url":"https://api.github.com/repos/sta/websocket-sharp/forks","keys_url":"https://api.github.com/repos/sta/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sta/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sta/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/sta/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/sta/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/sta/websocket-sharp/events","assignees_url":"https://api.github.com/repos/sta/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/sta/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/sta/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/sta/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sta/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sta/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/sta/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sta/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/sta/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/sta/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/sta/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/sta/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/sta/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/sta/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/sta/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/sta/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/sta/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/sta/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/sta/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sta/websocket-sharp/merges","archive_url":"https://api.github.com/repos/sta/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sta/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/sta/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/sta/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/sta/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/sta/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sta/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/sta/websocket-sharp/releases{/id}","created_at":"2010-10-18T12:51:34Z","updated_at":"2015-01-01T14:57:39Z","pushed_at":"2014-12-31T02:45:51Z","git_url":"git://github.com/sta/websocket-sharp.git","ssh_url":"git@github.com:sta/websocket-sharp.git","clone_url":"https://github.com/sta/websocket-sharp.git","svn_url":"https://github.com/sta/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":17131,"stargazers_count":284,"watchers_count":284,"language":"C#","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":110,"mirror_url":null,"open_issues_count":63,"forks":110,"open_issues":63,"watchers":284,"default_branch":"master"}},"base":{"label":"OQO:master","ref":"master","sha":"87d48ed9ad4c88d5c7f03d8fc9546a15b42fc9c4","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"repo":{"id":19777872,"name":"websocket-sharp","full_name":"OQO/websocket-sharp","owner":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/OQO/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":true,"url":"https://api.github.com/repos/OQO/websocket-sharp","forks_url":"https://api.github.com/repos/OQO/websocket-sharp/forks","keys_url":"https://api.github.com/repos/OQO/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/OQO/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/OQO/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/OQO/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/OQO/websocket-sharp/events","assignees_url":"https://api.github.com/repos/OQO/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/OQO/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/OQO/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/OQO/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/OQO/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/OQO/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/OQO/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/OQO/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/OQO/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/OQO/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/OQO/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/OQO/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/OQO/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/OQO/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/OQO/websocket-sharp/merges","archive_url":"https://api.github.com/repos/OQO/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/OQO/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/OQO/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/OQO/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/OQO/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/OQO/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/OQO/websocket-sharp/releases{/id}","created_at":"2014-05-14T12:06:30Z","updated_at":"2015-01-01T14:57:34Z","pushed_at":"2014-05-12T10:57:20Z","git_url":"git://github.com/OQO/websocket-sharp.git","ssh_url":"git@github.com:OQO/websocket-sharp.git","clone_url":"https://github.com/OQO/websocket-sharp.git","svn_url":"https://github.com/OQO/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":12939,"stargazers_count":0,"watchers_count":0,"language":"C#","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1"},"html":{"href":"https://github.com/OQO/websocket-sharp/pull/1"},"issue":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1"},"comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":269,"additions":8814,"deletions":7216,"changed_files":88}},"public":true,"created_at":"2015-01-01T15:00:13Z"}
,{"id":"2489651182","type":"PushEvent","actor":{"id":8147971,"login":"machchk","gravatar_id":"","url":"https://api.github.com/users/machchk","avatar_url":"https://avatars.githubusercontent.com/u/8147971?"},"repo":{"id":21783823,"name":"machchk/report","url":"https://api.github.com/repos/machchk/report"},"payload":{"push_id":536864041,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fb87b961677cfaa8f078e0be86c74b0f00e29887","before":"708de1b06fb0e8463ec25d9d82f2b0ae8daae088","commits":[{"sha":"fb87b961677cfaa8f078e0be86c74b0f00e29887","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@localhost","name":"root"},"message":"update","distinct":true,"url":"https://api.github.com/repos/machchk/report/commits/fb87b961677cfaa8f078e0be86c74b0f00e29887"}]},"public":true,"created_at":"2015-01-01T15:00:13Z"}
,{"id":"2489651184","type":"IssuesEvent","actor":{"id":924247,"login":"KhanBugz","gravatar_id":"","url":"https://api.github.com/users/KhanBugz","avatar_url":"https://avatars.githubusercontent.com/u/924247?"},"repo":{"id":11828772,"name":"Khan/khan-i18n","url":"https://api.github.com/repos/Khan/khan-i18n"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490","labels_url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490/labels{/name}","comments_url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490/comments","events_url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490/events","html_url":"https://github.com/Khan/khan-i18n/issues/56490","id":53221338,"number":56490,"title":"not-translated:Type the missing numbers in the boxes.","user":{"login":"KhanBugz","id":924247,"avatar_url":"https://avatars.githubusercontent.com/u/924247?v=3","gravatar_id":"","url":"https://api.github.com/users/KhanBugz","html_url":"https://github.com/KhanBugz","followers_url":"https://api.github.com/users/KhanBugz/followers","following_url":"https://api.github.com/users/KhanBugz/following{/other_user}","gists_url":"https://api.github.com/users/KhanBugz/gists{/gist_id}","starred_url":"https://api.github.com/users/KhanBugz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KhanBugz/subscriptions","organizations_url":"https://api.github.com/users/KhanBugz/orgs","repos_url":"https://api.github.com/users/KhanBugz/repos","events_url":"https://api.github.com/users/KhanBugz/events{/privacy}","received_events_url":"https://api.github.com/users/KhanBugz/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/agent_chrome","name":"agent_chrome","color":"ededed"},{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/agent_xp","name":"agent_xp","color":"ededed"},{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/lang_pt","name":"lang_pt","color":"ededed"},{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/type_not-translated","name":"type_not-translated","color":"ededed"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:13Z","updated_at":"2015-01-01T15:00:13Z","closed_at":null,"body":"Url: https://pt.khanacademy.org/mission/early-math/task/4810474051600384\n\nUser Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.146 Safari/537.36\n\nProblem Text: \nType the missing numbers in the boxes.\n\nUser Description: \n\n\nNext Steps: \nIf this is a translation issue, fix it. Otherwise verify what is wrong, add a comment in English describing the issue and assign to tzjames."}},"public":true,"created_at":"2015-01-01T15:00:13Z","org":{"id":15455,"login":"Khan","gravatar_id":"","url":"https://api.github.com/orgs/Khan","avatar_url":"https://avatars.githubusercontent.com/u/15455?"}}
,{"id":"2489651192","type":"WatchEvent","actor":{"id":6178707,"login":"jbatch","gravatar_id":"","url":"https://api.github.com/users/jbatch","avatar_url":"https://avatars.githubusercontent.com/u/6178707?"},"repo":{"id":28613552,"name":"jkchapman/LibGDX-GameOfLife","url":"https://api.github.com/repos/jkchapman/LibGDX-GameOfLife"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:14Z"}
,{"id":"2489651193","type":"PushEvent","actor":{"id":3160808,"login":"trustedsec","gravatar_id":"","url":"https://api.github.com/users/trustedsec","avatar_url":"https://avatars.githubusercontent.com/u/3160808?"},"repo":{"id":7391261,"name":"trustedsec/social-engineer-toolkit","url":"https://api.github.com/repos/trustedsec/social-engineer-toolkit"},"payload":{"push_id":536864043,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5a917540e0548f628177be73aadf7182789b5930","before":"1e37d405ce953e5e1c20ec32ab242f5fe33fa597","commits":[{"sha":"5a917540e0548f628177be73aadf7182789b5930","author":{"email":"863b5d643be6fa3d7c1bad8d1f065e00f75dc0c2@trustedsec.com","name":"trustedsec"},"message":"Updated Java Applet with obfuscation.","distinct":true,"url":"https://api.github.com/repos/trustedsec/social-engineer-toolkit/commits/5a917540e0548f628177be73aadf7182789b5930"}]},"public":true,"created_at":"2015-01-01T15:00:14Z"}
,{"id":"2489651194","type":"IssueCommentEvent","actor":{"id":7356386,"login":"Poulern","gravatar_id":"","url":"https://api.github.com/users/Poulern","avatar_url":"https://avatars.githubusercontent.com/u/7356386?"},"repo":{"id":27872927,"name":"cptnnick/F3_PA","url":"https://api.github.com/repos/cptnnick/F3_PA"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1","labels_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/comments","events_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/events","html_url":"https://github.com/cptnnick/F3_PA/issues/1","id":52843291,"number":1,"title":"Fix line 26 in briefing.sqf","user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cptnnick/F3_PA/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":{"login":"cptnnick","id":6839081,"avatar_url":"https://avatars.githubusercontent.com/u/6839081?v=3","gravatar_id":"","url":"https://api.github.com/users/cptnnick","html_url":"https://github.com/cptnnick","followers_url":"https://api.github.com/users/cptnnick/followers","following_url":"https://api.github.com/users/cptnnick/following{/other_user}","gists_url":"https://api.github.com/users/cptnnick/gists{/gist_id}","starred_url":"https://api.github.com/users/cptnnick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cptnnick/subscriptions","organizations_url":"https://api.github.com/users/cptnnick/orgs","repos_url":"https://api.github.com/users/cptnnick/repos","events_url":"https://api.github.com/users/cptnnick/events{/privacy}","received_events_url":"https://api.github.com/users/cptnnick/received_events","type":"User","site_admin":false},"milestone":null,"comments":2,"created_at":"2014-12-25T02:00:16Z","updated_at":"2015-01-01T15:00:14Z","closed_at":null,"body":"[02:48:59] Poulern: http://puu.sh/dIqRL/1d8422a923.png\r\n[02:55:08] Poulern: but i get this erorr\r\n[02:55:13] Poulern: every tiem\r\n[02:55:28] Nick van der Lee: I wanted it designated by side instead of faction\r\n[02:56:02] Nick van der Lee: OH\r\n[02:56:15] Nick van der Lee: Try (str(side player) )\r\n[02:56:45] Poulern: _unitSide = toLower (side player);\r\n[02:56:51] Poulern: _unitSide = (str(side player) )\r\n[02:56:53] Poulern: ?\r\n[02:56:55] Poulern: like so\r\n[02:57:12] Nick van der Lee: _unitSide = toLower (str(side player))\r\n[02:58:03] Poulern: if (_unitSide != toLower (faction (leader group player))) then {_unitSide = toLower (faction (leader group player))};\r\n[02:58:06] Poulern: error missing ;\r\n[02:58:21] Nick van der Lee: Delete that part\r\n[02:58:26] Nick van der Lee: It's obsolete\r\n[02:58:38] Poulern: Make sure to fix the main\r\n[02:58:46] Nick van der Lee: Make a ticket\r\n[02:58:48] Poulern: briefing.sqf in the F3_PA\r\n[02:58:51] Poulern: okay man\r\n[02:58:55] Nick van der Lee: I'll need to fix in main F3 too\r\n[02:59:11] Nick van der Lee: It's 3 AM I ain't gonna remember : P"},"comment":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/comments/68488497","html_url":"https://github.com/cptnnick/F3_PA/issues/1#issuecomment-68488497","issue_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1","id":68488497,"user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:14Z","updated_at":"2015-01-01T15:00:14Z","body":"Sorry yes this has been fixed. GJ"}},"public":true,"created_at":"2015-01-01T15:00:14Z"}
,{"id":"2489651195","type":"PushEvent","actor":{"id":636687,"login":"sjahl","gravatar_id":"","url":"https://api.github.com/users/sjahl","avatar_url":"https://avatars.githubusercontent.com/u/636687?"},"repo":{"id":24571081,"name":"sjahl/user-env","url":"https://api.github.com/repos/sjahl/user-env"},"payload":{"push_id":536864044,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6de3f031e77281dec134aca51012ff49cc3eb77c","before":"ae93eb7289fa8b2c3c05f086d3f3cf07d4aa1778","commits":[{"sha":"6de3f031e77281dec134aca51012ff49cc3eb77c","author":{"email":"ee6934e3c2c933d3ba2f7adfcb5ee9c4f3530eff@gmail.com","name":"Stephen Jahl"},"message":"make user-env.yml a little happier on a fresh host","distinct":true,"url":"https://api.github.com/repos/sjahl/user-env/commits/6de3f031e77281dec134aca51012ff49cc3eb77c"}]},"public":true,"created_at":"2015-01-01T15:00:15Z"}
,{"id":"2489651200","type":"PushEvent","actor":{"id":2101973,"login":"konjac","gravatar_id":"","url":"https://api.github.com/users/konjac","avatar_url":"https://avatars.githubusercontent.com/u/2101973?"},"repo":{"id":24664906,"name":"konjac/calendars","url":"https://api.github.com/repos/konjac/calendars"},"payload":{"push_id":536864048,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"02a80bddfd8a97c82e1ba8744ada2be5ab345fc9","before":"beb1d032f0c16f4acb341ea7d1f3d76ecc7af2f6","commits":[{"sha":"02a80bddfd8a97c82e1ba8744ada2be5ab345fc9","author":{"email":"6dc96bd73a12a2b22abd88d2fca39328a25102c5@gmail.com","name":"konjac"},"message":"update","distinct":true,"url":"https://api.github.com/repos/konjac/calendars/commits/02a80bddfd8a97c82e1ba8744ada2be5ab345fc9"}]},"public":true,"created_at":"2015-01-01T15:00:15Z"}
,{"id":"2489651202","type":"CreateEvent","actor":{"id":3000391,"login":"maybezi","gravatar_id":"","url":"https://api.github.com/users/maybezi","avatar_url":"https://avatars.githubusercontent.com/u/3000391?"},"repo":{"id":28687115,"name":"maybezi/project","url":"https://api.github.com/repos/maybezi/project"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"This is a test project for learning Git","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:15Z"}
,{"id":"2489651203","type":"IssuesEvent","actor":{"id":4005415,"login":"JDGrimes","gravatar_id":"","url":"https://api.github.com/users/JDGrimes","avatar_url":"https://avatars.githubusercontent.com/u/4005415?"},"repo":{"id":17290397,"name":"WordPoints/wordpointsorg","url":"https://api.github.com/repos/WordPoints/wordpointsorg"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11","labels_url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11/comments","events_url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11/events","html_url":"https://github.com/WordPoints/wordpointsorg/issues/11","id":53221339,"number":11,"title":"I18n support for the module APIs","user":{"login":"JDGrimes","id":4005415,"avatar_url":"https://avatars.githubusercontent.com/u/4005415?v=3","gravatar_id":"","url":"https://api.github.com/users/JDGrimes","html_url":"https://github.com/JDGrimes","followers_url":"https://api.github.com/users/JDGrimes/followers","following_url":"https://api.github.com/users/JDGrimes/following{/other_user}","gists_url":"https://api.github.com/users/JDGrimes/gists{/gist_id}","starred_url":"https://api.github.com/users/JDGrimes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JDGrimes/subscriptions","organizations_url":"https://api.github.com/users/JDGrimes/orgs","repos_url":"https://api.github.com/users/JDGrimes/repos","events_url":"https://api.github.com/users/JDGrimes/events{/privacy}","received_events_url":"https://api.github.com/users/JDGrimes/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/WordPoints/wordpointsorg/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:15Z","updated_at":"2015-01-01T15:00:15Z","closed_at":null,"body":"Module APIs should be able to declare support for I18n and we should then use an interface to automatically install the correct l10n files for the installed modules based on the site's language."}},"public":true,"created_at":"2015-01-01T15:00:15Z","org":{"id":6233660,"login":"WordPoints","gravatar_id":"","url":"https://api.github.com/orgs/WordPoints","avatar_url":"https://avatars.githubusercontent.com/u/6233660?"}}
,{"id":"2489651214","type":"CreateEvent","actor":{"id":10364620,"login":"quixing","gravatar_id":"","url":"https://api.github.com/users/quixing","avatar_url":"https://avatars.githubusercontent.com/u/10364620?"},"repo":{"id":28688601,"name":"quixing/help-me","url":"https://api.github.com/repos/quixing/help-me"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:16Z"}
,{"id":"2489651215","type":"PushEvent","actor":{"id":16563,"login":"kless","gravatar_id":"","url":"https://api.github.com/users/kless","avatar_url":"https://avatars.githubusercontent.com/u/16563?"},"repo":{"id":22802018,"name":"kless/dat","url":"https://api.github.com/repos/kless/dat"},"payload":{"push_id":536864059,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"383d2078d085f3882288158a92c6ada80d32b852","before":"1704aca17c720f75a4749e1ac7c15e20970ae9af","commits":[{"sha":"383d2078d085f3882288158a92c6ada80d32b852","author":{"email":"35a2c6fae61f8077aab61faa4019722abf05093c@matx.cc","name":"Jonas mg"},"message":"Remove type Interface to Value","distinct":true,"url":"https://api.github.com/repos/kless/dat/commits/383d2078d085f3882288158a92c6ada80d32b852"}]},"public":true,"created_at":"2015-01-01T15:00:16Z"}
,{"id":"2489651220","type":"IssueCommentEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/comments","events_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/events","html_url":"https://github.com/izuzero/xe-module-ajaxboard/issues/20","id":53221232,"number":20,"title":"게시글 및 댓글 삭제 시 새로고침이 되는 문제","user":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/labels/type%2Fbug","name":"type/bug","color":"eb6420"}],"state":"open","locked":false,"assignee":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3/labels","id":917346,"number":3,"title":"2.1.1","description":"","creator":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":9,"state":"open","created_at":"2014-12-30T04:09:29Z","updated_at":"2015-01-01T14:55:01Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-01-01T14:54:49Z","updated_at":"2015-01-01T15:00:16Z","closed_at":null,"body":"기본 게시판 대응 플러그인 #19"},"comment":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/comments/68488498","html_url":"https://github.com/izuzero/xe-module-ajaxboard/issues/20#issuecomment-68488498","issue_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20","id":68488498,"user":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:16Z","updated_at":"2015-01-01T15:00:16Z","body":"fixed ec819b9"}},"public":true,"created_at":"2015-01-01T15:00:16Z"}
,{"id":"2489651221","type":"WatchEvent","actor":{"id":5496929,"login":"jakblak","gravatar_id":"","url":"https://api.github.com/users/jakblak","avatar_url":"https://avatars.githubusercontent.com/u/5496929?"},"repo":{"id":2328523,"name":"n1k0/casperjs","url":"https://api.github.com/repos/n1k0/casperjs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:17Z"}
,{"id":"2489651223","type":"IssueCommentEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":4542716,"name":"NixOS/nixpkgs","url":"https://api.github.com/repos/NixOS/nixpkgs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","labels_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/labels{/name}","comments_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/comments","events_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/events","html_url":"https://github.com/NixOS/nixpkgs/pull/5521","id":53219802,"number":5521,"title":"fetchgit: give output a nicer name","user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2015-01-01T13:35:14Z","updated_at":"2015-01-01T15:00:17Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/NixOS/nixpkgs/pulls/5521","html_url":"https://github.com/NixOS/nixpkgs/pull/5521","diff_url":"https://github.com/NixOS/nixpkgs/pull/5521.diff","patch_url":"https://github.com/NixOS/nixpkgs/pull/5521.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/NixOS/nixpkgs/issues/comments/68488499","html_url":"https://github.com/NixOS/nixpkgs/pull/5521#issuecomment-68488499","issue_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","id":68488499,"user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:17Z","updated_at":"2015-01-01T15:00:17Z","body":"@vcunat concerns addressed."}},"public":true,"created_at":"2015-01-01T15:00:17Z","org":{"id":487568,"login":"NixOS","gravatar_id":"","url":"https://api.github.com/orgs/NixOS","avatar_url":"https://avatars.githubusercontent.com/u/487568?"}}
,{"id":"2489651224","type":"GollumEvent","actor":{"id":114114,"login":"weakish","gravatar_id":"","url":"https://api.github.com/users/weakish","avatar_url":"https://avatars.githubusercontent.com/u/114114?"},"repo":{"id":28688228,"name":"weakish/greylist","url":"https://api.github.com/repos/weakish/greylist"},"payload":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"created","sha":"3f3049cbe6b8a4a6e1272317a3bfb67e6a376c71","html_url":"https://github.com/weakish/greylist/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:00:17Z"}
,{"id":"2489651225","type":"CreateEvent","actor":{"id":10364695,"login":"Abeer-y","gravatar_id":"","url":"https://api.github.com/users/Abeer-y","avatar_url":"https://avatars.githubusercontent.com/u/10364695?"},"repo":{"id":28688602,"name":"Abeer-y/Ultimatum-Game-on-A-Barabasi-Albert-Network","url":"https://api.github.com/repos/Abeer-y/Ultimatum-Game-on-A-Barabasi-Albert-Network"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:17Z"}
,{"id":"2489651230","type":"WatchEvent","actor":{"id":8199224,"login":"boccaperta-it","gravatar_id":"","url":"https://api.github.com/users/boccaperta-it","avatar_url":"https://avatars.githubusercontent.com/u/8199224?"},"repo":{"id":13042462,"name":"mozilla/Fira","url":"https://api.github.com/repos/mozilla/Fira"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:17Z","org":{"id":131524,"login":"mozilla","gravatar_id":"","url":"https://api.github.com/orgs/mozilla","avatar_url":"https://avatars.githubusercontent.com/u/131524?"}}
,{"id":"2489651233","type":"IssuesEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/comments","events_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/events","html_url":"https://github.com/izuzero/xe-module-ajaxboard/issues/20","id":53221232,"number":20,"title":"게시글 및 댓글 삭제 시 새로고침이 되는 문제","user":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/labels/type%2Fbug","name":"type/bug","color":"eb6420"}],"state":"closed","locked":false,"assignee":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3/labels","id":917346,"number":3,"title":"2.1.1","description":"","creator":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"open_issues":0,"closed_issues":10,"state":"open","created_at":"2014-12-30T04:09:29Z","updated_at":"2015-01-01T15:00:18Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-01-01T14:54:49Z","updated_at":"2015-01-01T15:00:18Z","closed_at":"2015-01-01T15:00:18Z","body":"기본 게시판 대응 플러그인 #19"}},"public":true,"created_at":"2015-01-01T15:00:18Z"}
,{"id":"2489651237","type":"CreateEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"ref":"kill_list","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:18Z"}
,{"id":"2489651240","type":"IssuesEvent","actor":{"id":7356386,"login":"Poulern","gravatar_id":"","url":"https://api.github.com/users/Poulern","avatar_url":"https://avatars.githubusercontent.com/u/7356386?"},"repo":{"id":27872927,"name":"cptnnick/F3_PA","url":"https://api.github.com/repos/cptnnick/F3_PA"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1","labels_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/comments","events_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/events","html_url":"https://github.com/cptnnick/F3_PA/issues/1","id":52843291,"number":1,"title":"Fix line 26 in briefing.sqf","user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cptnnick/F3_PA/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":{"login":"cptnnick","id":6839081,"avatar_url":"https://avatars.githubusercontent.com/u/6839081?v=3","gravatar_id":"","url":"https://api.github.com/users/cptnnick","html_url":"https://github.com/cptnnick","followers_url":"https://api.github.com/users/cptnnick/followers","following_url":"https://api.github.com/users/cptnnick/following{/other_user}","gists_url":"https://api.github.com/users/cptnnick/gists{/gist_id}","starred_url":"https://api.github.com/users/cptnnick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cptnnick/subscriptions","organizations_url":"https://api.github.com/users/cptnnick/orgs","repos_url":"https://api.github.com/users/cptnnick/repos","events_url":"https://api.github.com/users/cptnnick/events{/privacy}","received_events_url":"https://api.github.com/users/cptnnick/received_events","type":"User","site_admin":false},"milestone":null,"comments":2,"created_at":"2014-12-25T02:00:16Z","updated_at":"2015-01-01T15:00:18Z","closed_at":"2015-01-01T15:00:18Z","body":"[02:48:59] Poulern: http://puu.sh/dIqRL/1d8422a923.png\r\n[02:55:08] Poulern: but i get this erorr\r\n[02:55:13] Poulern: every tiem\r\n[02:55:28] Nick van der Lee: I wanted it designated by side instead of faction\r\n[02:56:02] Nick van der Lee: OH\r\n[02:56:15] Nick van der Lee: Try (str(side player) )\r\n[02:56:45] Poulern: _unitSide = toLower (side player);\r\n[02:56:51] Poulern: _unitSide = (str(side player) )\r\n[02:56:53] Poulern: ?\r\n[02:56:55] Poulern: like so\r\n[02:57:12] Nick van der Lee: _unitSide = toLower (str(side player))\r\n[02:58:03] Poulern: if (_unitSide != toLower (faction (leader group player))) then {_unitSide = toLower (faction (leader group player))};\r\n[02:58:06] Poulern: error missing ;\r\n[02:58:21] Nick van der Lee: Delete that part\r\n[02:58:26] Nick van der Lee: It's obsolete\r\n[02:58:38] Poulern: Make sure to fix the main\r\n[02:58:46] Nick van der Lee: Make a ticket\r\n[02:58:48] Poulern: briefing.sqf in the F3_PA\r\n[02:58:51] Poulern: okay man\r\n[02:58:55] Nick van der Lee: I'll need to fix in main F3 too\r\n[02:59:11] Nick van der Lee: It's 3 AM I ain't gonna remember : P"}},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651243","type":"PushEvent","actor":{"id":1856621,"login":"InternetDevels","gravatar_id":"","url":"https://api.github.com/users/InternetDevels","avatar_url":"https://avatars.githubusercontent.com/u/1856621?"},"repo":{"id":20291263,"name":"InternetDevels/drupalcores","url":"https://api.github.com/repos/InternetDevels/drupalcores"},"payload":{"push_id":536864073,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21","before":"82c54cbaeccfb24c23e3b3c9ee76941851557dc3","commits":[{"sha":"ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21","author":{"email":"141a748f5c0795fdf68eaad85b65480c92abbe5f@internetdevels.com","name":"mula"},"message":"Update bump.","distinct":true,"url":"https://api.github.com/repos/InternetDevels/drupalcores/commits/ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21"}]},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651244","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":23516583,"name":"hex7c0/grunt-endline","url":"https://api.github.com/repos/hex7c0/grunt-endline"},"payload":{"push_id":536864074,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c234ab7ab43bd908f9a0b4ba53f6b8f6e17031f","before":"5d2a936b24a75d1e8dc6893d9e3a355301073d12","commits":[{"sha":"1c234ab7ab43bd908f9a0b4ba53f6b8f6e17031f","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/grunt-endline/commits/1c234ab7ab43bd908f9a0b4ba53f6b8f6e17031f"}]},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651247","type":"PushEvent","actor":{"id":597140,"login":"chris-roerig","gravatar_id":"","url":"https://api.github.com/users/chris-roerig","avatar_url":"https://avatars.githubusercontent.com/u/597140?"},"repo":{"id":28304259,"name":"chris-roerig/52-projects","url":"https://api.github.com/repos/chris-roerig/52-projects"},"payload":{"push_id":536864076,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a3cf6610515801e3227c6ac8e1424f005d6256ce","before":"dbd975ebba88d4b3115c22f90bc933cb92ffd3ce","commits":[{"sha":"a3cf6610515801e3227c6ac8e1424f005d6256ce","author":{"email":"9690d8731dc55fbdec51a2812b0d3c75d4937fe1@gmail.com","name":"Chris"},"message":"Added 2015 link to readme","distinct":true,"url":"https://api.github.com/repos/chris-roerig/52-projects/commits/a3cf6610515801e3227c6ac8e1424f005d6256ce"}]},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651253","type":"PullRequestEvent","actor":{"id":3244065,"login":"USunOfBeach","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","avatar_url":"https://avatars.githubusercontent.com/u/3244065?"},"repo":{"id":20825841,"name":"USunOfBeach/GrimDawnZH","url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH"},"payload":{"action":"opened","number":47,"pull_request":{"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47","id":26743768,"html_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47","diff_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.diff","patch_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.patch","issue_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47","number":47,"state":"open","locked":false,"title":"update","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:20Z","updated_at":"2015-01-01T15:00:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits","review_comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments","review_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2","head":{"label":"solael:master","ref":"master","sha":"e723da36c4de572768afa46b834e18cbe1d551c2","user":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"repo":{"id":20801623,"name":"GrimDawnZH","full_name":"solael/GrimDawnZH","owner":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/solael/GrimDawnZH","description":"","fork":false,"url":"https://api.github.com/repos/solael/GrimDawnZH","forks_url":"https://api.github.com/repos/solael/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/solael/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/solael/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/solael/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/solael/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/solael/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/solael/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/solael/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/solael/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/solael/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/solael/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/solael/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/solael/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/solael/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/solael/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/solael/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/solael/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/solael/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/solael/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/solael/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/solael/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/solael/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/solael/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/solael/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/solael/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/solael/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/solael/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/solael/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/solael/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/solael/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/solael/GrimDawnZH/releases{/id}","created_at":"2014-06-13T11:07:41Z","updated_at":"2014-10-28T17:53:11Z","pushed_at":"2015-01-01T07:24:37Z","git_url":"git://github.com/solael/GrimDawnZH.git","ssh_url":"git@github.com:solael/GrimDawnZH.git","clone_url":"https://github.com/solael/GrimDawnZH.git","svn_url":"https://github.com/solael/GrimDawnZH","homepage":null,"size":3500,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":7,"mirror_url":null,"open_issues_count":0,"forks":7,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"USunOfBeach:master","ref":"master","sha":"fb8eb3c24284a05c0300921584f654629dd42b1d","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"repo":{"id":20825841,"name":"GrimDawnZH","full_name":"USunOfBeach/GrimDawnZH","owner":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/USunOfBeach/GrimDawnZH","description":"","fork":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH","forks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/releases{/id}","created_at":"2014-06-14T05:32:54Z","updated_at":"2014-11-25T02:45:34Z","pushed_at":"2014-12-31T09:47:34Z","git_url":"git://github.com/USunOfBeach/GrimDawnZH.git","ssh_url":"git@github.com:USunOfBeach/GrimDawnZH.git","clone_url":"https://github.com/USunOfBeach/GrimDawnZH.git","svn_url":"https://github.com/USunOfBeach/GrimDawnZH","homepage":null,"size":2947,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47"},"html":{"href":"https://github.com/USunOfBeach/GrimDawnZH/pull/47"},"issue":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47"},"comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments"},"review_comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments"},"review_comment":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits"},"statuses":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":3,"additions":102,"deletions":100,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651254","type":"WatchEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":26689598,"name":"prakhar1989/awesome-courses","url":"https://api.github.com/repos/prakhar1989/awesome-courses"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651258","type":"PushEvent","actor":{"id":4582835,"login":"hamini","gravatar_id":"","url":"https://api.github.com/users/hamini","avatar_url":"https://avatars.githubusercontent.com/u/4582835?"},"repo":{"id":28688513,"name":"hamini/sqlalchem","url":"https://api.github.com/repos/hamini/sqlalchem"},"payload":{"push_id":536864079,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58527233d610608cd6ac9492f35cbdae0508833d","before":"5810b7f953456be61f4bf371b6fd786cd3f61263","commits":[{"sha":"58527233d610608cd6ac9492f35cbdae0508833d","author":{"email":"f44e77edbd869fff0a564f864944cde5b10d166e@gmail.com","name":"hamini"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/hamini/sqlalchem/commits/58527233d610608cd6ac9492f35cbdae0508833d"}]},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651261","type":"PushEvent","actor":{"id":24870,"login":"okomok","gravatar_id":"","url":"https://api.github.com/users/okomok","avatar_url":"https://avatars.githubusercontent.com/u/24870?"},"repo":{"id":28598724,"name":"okomok/vim-scala","url":"https://api.github.com/repos/okomok/vim-scala"},"payload":{"push_id":536864080,"size":1,"distinct_size":1,"ref":"refs/heads/private-hack","head":"1dfc3a4088479e791d44a70c4cc9969c1287cf63","before":"de7fdc70760109107b91b07e21dcf8c70f97cbe4","commits":[{"sha":"1dfc3a4088479e791d44a70c4cc9969c1287cf63","author":{"email":"a8067a912d62a6b12fcb80ebbb1809692b1267b6@gmail.com","name":"okomok"},"message":"skip needed","distinct":true,"url":"https://api.github.com/repos/okomok/vim-scala/commits/1dfc3a4088479e791d44a70c4cc9969c1287cf63"}]},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651263","type":"PushEvent","actor":{"id":3599510,"login":"xoyip","gravatar_id":"","url":"https://api.github.com/users/xoyip","avatar_url":"https://avatars.githubusercontent.com/u/3599510?"},"repo":{"id":28589009,"name":"xoyip/Brewfile","url":"https://api.github.com/repos/xoyip/Brewfile"},"payload":{"push_id":536864081,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eeb36c34cb7cb08a0c264dc0b0c6bbdfe366bd00","before":"2d01c1fa32a4613d00bdae8bce1aa45df8fad261","commits":[{"sha":"eeb36c34cb7cb08a0c264dc0b0c6bbdfe366bd00","author":{"email":"4ce662cfe195bf9e5b799610b638accde23afe50","name":"SET_ME_LOCALLY"},"message":"\"Update the package list\"","distinct":true,"url":"https://api.github.com/repos/xoyip/Brewfile/commits/eeb36c34cb7cb08a0c264dc0b0c6bbdfe366bd00"}]},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651267","type":"DeleteEvent","actor":{"id":5174751,"login":"alviteri","gravatar_id":"","url":"https://api.github.com/users/alviteri","avatar_url":"https://avatars.githubusercontent.com/u/5174751?"},"repo":{"id":26325354,"name":"crdroidandroid/android_packages_apps_Settings","url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings"},"payload":{"ref":"features","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:23Z","org":{"id":9610671,"login":"crdroidandroid","gravatar_id":"","url":"https://api.github.com/orgs/crdroidandroid","avatar_url":"https://avatars.githubusercontent.com/u/9610671?"}}
,{"id":"2489651268","type":"PushEvent","actor":{"id":1179960,"login":"yiyizym","gravatar_id":"","url":"https://api.github.com/users/yiyizym","avatar_url":"https://avatars.githubusercontent.com/u/1179960?"},"repo":{"id":14262141,"name":"yiyizym/blog","url":"https://api.github.com/repos/yiyizym/blog"},"payload":{"push_id":536864085,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"69ae0abf35be76168591f0bff94783e2a0dfc35a","before":"7f0aae1918dbe52deb1f15395a7534a2602dfd0e","commits":[{"sha":"69ae0abf35be76168591f0bff94783e2a0dfc35a","author":{"email":"2df7aa65c6090c0cb32fa52c940b03e1f541375f@gmial.com","name":"yiyizym"},"message":"nc","distinct":true,"url":"https://api.github.com/repos/yiyizym/blog/commits/69ae0abf35be76168591f0bff94783e2a0dfc35a"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651271","type":"PushEvent","actor":{"id":8280494,"login":"vascon8","gravatar_id":"","url":"https://api.github.com/users/vascon8","avatar_url":"https://avatars.githubusercontent.com/u/8280494?"},"repo":{"id":28088541,"name":"vascon8/appium-dot-app","url":"https://api.github.com/repos/vascon8/appium-dot-app"},"payload":{"push_id":536864086,"size":6,"distinct_size":4,"ref":"refs/heads/temp","head":"e092c85da3a74ad3812b424b9970bd4147f8af48","before":"66d6d2f168ebb606f48df111b20de4dd59f7af0a","commits":[{"sha":"d69505ee83efa1f4dc0ae415752018c2dee1d749","author":{"email":"5683c97e3d1b7baf9975b7a83fbac64abb95d6fc@yelp.com","name":"Daniel Roth"},"message":"Fix for issue #410, landscape view broken.","distinct":false,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/d69505ee83efa1f4dc0ae415752018c2dee1d749"},{"sha":"20ddc32caa1a04f5adabd1760f91dbead989159a","author":{"email":"b611df31359e9ab1bf729fd0aaebf4ab4b2ecf3e@zoosk.com","name":"Dan Cuellar"},"message":"Merge pull request #420 from dwroth/master\n\nFix for issue #410, landscape view broken.","distinct":false,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/20ddc32caa1a04f5adabd1760f91dbead989159a"},{"sha":"dc08c3f158957543050014f09015e2be9cd3436b","author":{"email":"8a8a51f4540c265c1fd290b1ff4461347cd8e84e@DanCMacBookAir-7.local","name":"Dan Cuellar"},"message":"1.3.4","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/dc08c3f158957543050014f09015e2be9cd3436b"},{"sha":"cf6101792717d6e11c45141034e70571a914cd9a","author":{"email":"b611df31359e9ab1bf729fd0aaebf4ab4b2ecf3e@zoosk.com","name":"Dan Cuellar"},"message":"Merge pull request #422 from penguinho/master\n\n1.3.4","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/cf6101792717d6e11c45141034e70571a914cd9a"},{"sha":"225c4bb601bc60c1a5ed701a9429c1e154a1a2d5","author":{"email":"df16fbeef62b317e0d07216dcb054abbcfd17bd7@qq.com","name":"SnowLiu"},"message":"update subproject\n\nsubproject commit","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/225c4bb601bc60c1a5ed701a9429c1e154a1a2d5"},{"sha":"e092c85da3a74ad3812b424b9970bd4147f8af48","author":{"email":"df16fbeef62b317e0d07216dcb054abbcfd17bd7@qq.com","name":"SnowLiu"},"message":"merge from appium\n\nmerge from appium","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/e092c85da3a74ad3812b424b9970bd4147f8af48"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651272","type":"CreateEvent","actor":{"id":803897,"login":"blang","gravatar_id":"","url":"https://api.github.com/users/blang","avatar_url":"https://avatars.githubusercontent.com/u/803897?"},"repo":{"id":28688598,"name":"blang/btrfs-initrd","url":"https://api.github.com/repos/blang/btrfs-initrd"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Initrd creation to support boot from btrfs subvolume","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651274","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864087,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"44d16923964b1c1a669d2ff05abb55fb4db27040","before":"13f5bfae0f2021196aba42ad0ee7e30d3dfb5583","commits":[{"sha":"44d16923964b1c1a669d2ff05abb55fb4db27040","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124421604\n\nB/5/xAs2un4mjjaODVeJcRfrj+30hEnkvA66DULIR8M=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/44d16923964b1c1a669d2ff05abb55fb4db27040"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651276","type":"PushEvent","actor":{"id":375965,"login":"silverpower","gravatar_id":"","url":"https://api.github.com/users/silverpower","avatar_url":"https://avatars.githubusercontent.com/u/375965?"},"repo":{"id":27519296,"name":"silverpower/comrade_erika","url":"https://api.github.com/repos/silverpower/comrade_erika"},"payload":{"push_id":536864090,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"796db823e89e0fe7f766d6050f5f4a99b89ffdec","before":"37969674c5bfff3e6fcc8ff282a285358e2ba377","commits":[{"sha":"796db823e89e0fe7f766d6050f5f4a99b89ffdec","author":{"email":"44b9c36ece3f0f4299dd2538cf632009acf974d1@gmail.com","name":"Michelle Darcy"},"message":"Really, the crossbow and RPG should be handing out more.","distinct":true,"url":"https://api.github.com/repos/silverpower/comrade_erika/commits/796db823e89e0fe7f766d6050f5f4a99b89ffdec"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651278","type":"PushEvent","actor":{"id":1121789,"login":"Saisi","gravatar_id":"","url":"https://api.github.com/users/Saisi","avatar_url":"https://avatars.githubusercontent.com/u/1121789?"},"repo":{"id":25811730,"name":"Saisi/secret-octo-wookie","url":"https://api.github.com/repos/Saisi/secret-octo-wookie"},"payload":{"push_id":536864094,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bf26858ae41177154a6d0a604139ba52ea1d50d8","before":"0413c63e474386737549f59fa1bc79b04a4a2ae7","commits":[{"sha":"bf26858ae41177154a6d0a604139ba52ea1d50d8","author":{"email":"5070ee02c118bb3c67d539b31e44522403b2c763@users.noreply.github.com","name":"saisi"},"message":"1420124421 hmm","distinct":true,"url":"https://api.github.com/repos/Saisi/secret-octo-wookie/commits/bf26858ae41177154a6d0a604139ba52ea1d50d8"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651280","type":"PushEvent","actor":{"id":28127,"login":"hkairi","gravatar_id":"","url":"https://api.github.com/users/hkairi","avatar_url":"https://avatars.githubusercontent.com/u/28127?"},"repo":{"id":28299476,"name":"hkairi/agendakar-widget","url":"https://api.github.com/repos/hkairi/agendakar-widget"},"payload":{"push_id":536864092,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4883f8c386f863e579adec660e3f038574f4bb9e","before":"1f14e6de2aece96d7a0c7e3831aa2beda420b2e5","commits":[{"sha":"4883f8c386f863e579adec660e3f038574f4bb9e","author":{"email":"b510bb486ebd5c8c5aff3ba43ada62bee3eff38e@gmail.com","name":"Hassane Moustapha"},"message":"jslint","distinct":true,"url":"https://api.github.com/repos/hkairi/agendakar-widget/commits/4883f8c386f863e579adec660e3f038574f4bb9e"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651282","type":"ForkEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":26689598,"name":"prakhar1989/awesome-courses","url":"https://api.github.com/repos/prakhar1989/awesome-courses"},"payload":{"forkee":{"id":28688604,"name":"awesome-courses","full_name":"Soufien/awesome-courses","owner":{"login":"Soufien","id":1757814,"avatar_url":"https://avatars.githubusercontent.com/u/1757814?v=3","gravatar_id":"","url":"https://api.github.com/users/Soufien","html_url":"https://github.com/Soufien","followers_url":"https://api.github.com/users/Soufien/followers","following_url":"https://api.github.com/users/Soufien/following{/other_user}","gists_url":"https://api.github.com/users/Soufien/gists{/gist_id}","starred_url":"https://api.github.com/users/Soufien/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Soufien/subscriptions","organizations_url":"https://api.github.com/users/Soufien/orgs","repos_url":"https://api.github.com/users/Soufien/repos","events_url":"https://api.github.com/users/Soufien/events{/privacy}","received_events_url":"https://api.github.com/users/Soufien/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Soufien/awesome-courses","description":"List of awesome university courses for learning Computer Science!","fork":true,"url":"https://api.github.com/repos/Soufien/awesome-courses","forks_url":"https://api.github.com/repos/Soufien/awesome-courses/forks","keys_url":"https://api.github.com/repos/Soufien/awesome-courses/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Soufien/awesome-courses/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Soufien/awesome-courses/teams","hooks_url":"https://api.github.com/repos/Soufien/awesome-courses/hooks","issue_events_url":"https://api.github.com/repos/Soufien/awesome-courses/issues/events{/number}","events_url":"https://api.github.com/repos/Soufien/awesome-courses/events","assignees_url":"https://api.github.com/repos/Soufien/awesome-courses/assignees{/user}","branches_url":"https://api.github.com/repos/Soufien/awesome-courses/branches{/branch}","tags_url":"https://api.github.com/repos/Soufien/awesome-courses/tags","blobs_url":"https://api.github.com/repos/Soufien/awesome-courses/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Soufien/awesome-courses/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Soufien/awesome-courses/git/refs{/sha}","trees_url":"https://api.github.com/repos/Soufien/awesome-courses/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Soufien/awesome-courses/statuses/{sha}","languages_url":"https://api.github.com/repos/Soufien/awesome-courses/languages","stargazers_url":"https://api.github.com/repos/Soufien/awesome-courses/stargazers","contributors_url":"https://api.github.com/repos/Soufien/awesome-courses/contributors","subscribers_url":"https://api.github.com/repos/Soufien/awesome-courses/subscribers","subscription_url":"https://api.github.com/repos/Soufien/awesome-courses/subscription","commits_url":"https://api.github.com/repos/Soufien/awesome-courses/commits{/sha}","git_commits_url":"https://api.github.com/repos/Soufien/awesome-courses/git/commits{/sha}","comments_url":"https://api.github.com/repos/Soufien/awesome-courses/comments{/number}","issue_comment_url":"https://api.github.com/repos/Soufien/awesome-courses/issues/comments/{number}","contents_url":"https://api.github.com/repos/Soufien/awesome-courses/contents/{+path}","compare_url":"https://api.github.com/repos/Soufien/awesome-courses/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Soufien/awesome-courses/merges","archive_url":"https://api.github.com/repos/Soufien/awesome-courses/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Soufien/awesome-courses/downloads","issues_url":"https://api.github.com/repos/Soufien/awesome-courses/issues{/number}","pulls_url":"https://api.github.com/repos/Soufien/awesome-courses/pulls{/number}","milestones_url":"https://api.github.com/repos/Soufien/awesome-courses/milestones{/number}","notifications_url":"https://api.github.com/repos/Soufien/awesome-courses/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Soufien/awesome-courses/labels{/name}","releases_url":"https://api.github.com/repos/Soufien/awesome-courses/releases{/id}","created_at":"2015-01-01T15:00:23Z","updated_at":"2015-01-01T15:00:20Z","pushed_at":"2015-01-01T07:26:11Z","git_url":"git://github.com/Soufien/awesome-courses.git","ssh_url":"git@github.com:Soufien/awesome-courses.git","clone_url":"https://github.com/Soufien/awesome-courses.git","svn_url":"https://github.com/Soufien/awesome-courses","homepage":null,"size":1035,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651284","type":"WatchEvent","actor":{"id":6894991,"login":"SametSisartenep","gravatar_id":"","url":"https://api.github.com/users/SametSisartenep","avatar_url":"https://avatars.githubusercontent.com/u/6894991?"},"repo":{"id":2206953,"name":"tj/commander.js","url":"https://api.github.com/repos/tj/commander.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651285","type":"PushEvent","actor":{"id":8345569,"login":"jpespinal","gravatar_id":"","url":"https://api.github.com/users/jpespinal","avatar_url":"https://avatars.githubusercontent.com/u/8345569?"},"repo":{"id":28417357,"name":"jpespinal/portfolio","url":"https://api.github.com/repos/jpespinal/portfolio"},"payload":{"push_id":536864095,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fd5bacb69d7570aa678176ade7079eee513e54e5","before":"4f17ffb756e855eba6916a27900be4d981b6c138","commits":[{"sha":"fd5bacb69d7570aa678176ade7079eee513e54e5","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Added labels to Contact section icons.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/fd5bacb69d7570aa678176ade7079eee513e54e5"}]},"public":true,"created_at":"2015-01-01T15:00:24Z"}
,{"id":"2489651287","type":"CreateEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.3","ref_type":"branch","master_branch":"0.1","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:24Z"}
,{"id":"2489651289","type":"CreateEvent","actor":{"id":10350512,"login":"LiuSmile","gravatar_id":"","url":"https://api.github.com/users/LiuSmile","avatar_url":"https://avatars.githubusercontent.com/u/10350512?"},"repo":{"id":28688606,"name":"LiuSmile/StuGit","url":"https://api.github.com/repos/LiuSmile/StuGit"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"StuGit","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651294","type":"WatchEvent","actor":{"id":1984680,"login":"miaoz","gravatar_id":"","url":"https://api.github.com/users/miaoz","avatar_url":"https://avatars.githubusercontent.com/u/1984680?"},"repo":{"id":27985695,"name":"kevinzhow/Waver","url":"https://api.github.com/repos/kevinzhow/Waver"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651296","type":"WatchEvent","actor":{"id":3305006,"login":"EvilOlaf","gravatar_id":"","url":"https://api.github.com/users/EvilOlaf","avatar_url":"https://avatars.githubusercontent.com/u/3305006?"},"repo":{"id":16442741,"name":"SBPrime/AsyncWorldEdit","url":"https://api.github.com/repos/SBPrime/AsyncWorldEdit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651298","type":"PullRequestEvent","actor":{"id":3244065,"login":"USunOfBeach","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","avatar_url":"https://avatars.githubusercontent.com/u/3244065?"},"repo":{"id":20825841,"name":"USunOfBeach/GrimDawnZH","url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH"},"payload":{"action":"closed","number":47,"pull_request":{"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47","id":26743768,"html_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47","diff_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.diff","patch_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.patch","issue_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47","number":47,"state":"closed","locked":false,"title":"update","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:20Z","updated_at":"2015-01-01T15:00:25Z","closed_at":"2015-01-01T15:00:25Z","merged_at":"2015-01-01T15:00:25Z","merge_commit_sha":"d2818ac2cf36415357edad9129a075d345c90799","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits","review_comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments","review_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2","head":{"label":"solael:master","ref":"master","sha":"e723da36c4de572768afa46b834e18cbe1d551c2","user":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"repo":{"id":20801623,"name":"GrimDawnZH","full_name":"solael/GrimDawnZH","owner":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/solael/GrimDawnZH","description":"","fork":false,"url":"https://api.github.com/repos/solael/GrimDawnZH","forks_url":"https://api.github.com/repos/solael/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/solael/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/solael/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/solael/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/solael/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/solael/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/solael/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/solael/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/solael/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/solael/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/solael/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/solael/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/solael/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/solael/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/solael/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/solael/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/solael/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/solael/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/solael/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/solael/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/solael/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/solael/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/solael/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/solael/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/solael/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/solael/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/solael/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/solael/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/solael/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/solael/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/solael/GrimDawnZH/releases{/id}","created_at":"2014-06-13T11:07:41Z","updated_at":"2014-10-28T17:53:11Z","pushed_at":"2015-01-01T07:24:37Z","git_url":"git://github.com/solael/GrimDawnZH.git","ssh_url":"git@github.com:solael/GrimDawnZH.git","clone_url":"https://github.com/solael/GrimDawnZH.git","svn_url":"https://github.com/solael/GrimDawnZH","homepage":null,"size":3500,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":7,"mirror_url":null,"open_issues_count":0,"forks":7,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"USunOfBeach:master","ref":"master","sha":"fb8eb3c24284a05c0300921584f654629dd42b1d","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"repo":{"id":20825841,"name":"GrimDawnZH","full_name":"USunOfBeach/GrimDawnZH","owner":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/USunOfBeach/GrimDawnZH","description":"","fork":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH","forks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/releases{/id}","created_at":"2014-06-14T05:32:54Z","updated_at":"2014-11-25T02:45:34Z","pushed_at":"2015-01-01T15:00:26Z","git_url":"git://github.com/USunOfBeach/GrimDawnZH.git","ssh_url":"git@github.com:USunOfBeach/GrimDawnZH.git","clone_url":"https://github.com/USunOfBeach/GrimDawnZH.git","svn_url":"https://github.com/USunOfBeach/GrimDawnZH","homepage":null,"size":2947,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47"},"html":{"href":"https://github.com/USunOfBeach/GrimDawnZH/pull/47"},"issue":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47"},"comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments"},"review_comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments"},"review_comment":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits"},"statuses":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":3,"additions":102,"deletions":100,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651301","type":"PushEvent","actor":{"id":3233271,"login":"bigsquirrel","gravatar_id":"","url":"https://api.github.com/users/bigsquirrel","avatar_url":"https://avatars.githubusercontent.com/u/3233271?"},"repo":{"id":28680217,"name":"bigsquirrel/bigsquirrel.github.io","url":"https://api.github.com/repos/bigsquirrel/bigsquirrel.github.io"},"payload":{"push_id":536864097,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"df4335964eb6cfccfc154142c91b06c40164099d","before":"ada240622490660cb4f6159a912ea460c35676e8","commits":[{"sha":"df4335964eb6cfccfc154142c91b06c40164099d","author":{"email":"628bf910fbbd0b68ca95cb1b1f567efb1617a454@gmail.com","name":"ivanchou"},"message":"add google analysis","distinct":true,"url":"https://api.github.com/repos/bigsquirrel/bigsquirrel.github.io/commits/df4335964eb6cfccfc154142c91b06c40164099d"}]},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651302","type":"PushEvent","actor":{"id":8265668,"login":"frank-deng","gravatar_id":"","url":"https://api.github.com/users/frank-deng","avatar_url":"https://avatars.githubusercontent.com/u/8265668?"},"repo":{"id":22905085,"name":"frank-deng/fgfs-tools","url":"https://api.github.com/repos/frank-deng/fgfs-tools"},"payload":{"push_id":536864099,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"41ea1332747c3d06af9db0db746c80b9890e7615","before":"524f4af02705aa2a6ff44370a0cfb4ee105ee029","commits":[{"sha":"6c1261bb2df4bf4032ebdc071846dbc278fa3a6f","author":{"email":"07f907d0a05f63ed1e641aa2775520c26d6f16b2@163.com","name":"frank-deng"},"message":"fgtools uses python for quicker response, screenshot function removed","distinct":true,"url":"https://api.github.com/repos/frank-deng/fgfs-tools/commits/6c1261bb2df4bf4032ebdc071846dbc278fa3a6f"},{"sha":"41ea1332747c3d06af9db0db746c80b9890e7615","author":{"email":"07f907d0a05f63ed1e641aa2775520c26d6f16b2@163.com","name":"frank-deng"},"message":"fgtools updated","distinct":true,"url":"https://api.github.com/repos/frank-deng/fgfs-tools/commits/41ea1332747c3d06af9db0db746c80b9890e7615"}]},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651304","type":"PushEvent","actor":{"id":3244065,"login":"USunOfBeach","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","avatar_url":"https://avatars.githubusercontent.com/u/3244065?"},"repo":{"id":20825841,"name":"USunOfBeach/GrimDawnZH","url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH"},"payload":{"push_id":536864102,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"e8cfd4525ee9e2f1fa5a14768cb56fd0c38a1b7f","before":"fb8eb3c24284a05c0300921584f654629dd42b1d","commits":[{"sha":"bdb11d1059df6d01266fe7ff91833b8869893a26","author":{"email":"3995fecd97602380da639bd2f19a348e1dd3a3cf@ensiie.fr","name":"Yuheng Zhao"},"message":"Merge pull request #31 from USunOfBeach/master\n\nskill","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/bdb11d1059df6d01266fe7ff91833b8869893a26"},{"sha":"1e64b28d9fd863234b3cda01ff0058d6143f0d2f","author":{"email":"0466391ef8d59c86a7d8800b2471797778a9a628@gmail.com","name":"solael"},"message":"空行","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/1e64b28d9fd863234b3cda01ff0058d6143f0d2f"},{"sha":"e723da36c4de572768afa46b834e18cbe1d551c2","author":{"email":"0466391ef8d59c86a7d8800b2471797778a9a628@gmail.com","name":"solael"},"message":"修正","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/e723da36c4de572768afa46b834e18cbe1d551c2"},{"sha":"e8cfd4525ee9e2f1fa5a14768cb56fd0c38a1b7f","author":{"email":"adfe27685b198ae904742e557e3f7375964be338@gmail.com","name":"USunOfBeach"},"message":"Merge pull request #47 from solael/master\n\nupdate","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/e8cfd4525ee9e2f1fa5a14768cb56fd0c38a1b7f"}]},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651309","type":"PushEvent","actor":{"id":1866543,"login":"idok","gravatar_id":"","url":"https://api.github.com/users/idok","avatar_url":"https://avatars.githubusercontent.com/u/1866543?"},"repo":{"id":26432432,"name":"wix/react-templates","url":"https://api.github.com/repos/wix/react-templates"},"payload":{"push_id":536864105,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"0166106c06d8a73d849ad825faaac8a0a42464c4","before":"cc7cb8ea44634ed4b539674b016f4c9e88b21342","commits":[{"sha":"0166106c06d8a73d849ad825faaac8a0a42464c4","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"add yeoman and hello project","distinct":true,"url":"https://api.github.com/repos/wix/react-templates/commits/0166106c06d8a73d849ad825faaac8a0a42464c4"}]},"public":true,"created_at":"2015-01-01T15:00:27Z","org":{"id":686511,"login":"wix","gravatar_id":"","url":"https://api.github.com/orgs/wix","avatar_url":"https://avatars.githubusercontent.com/u/686511?"}}
,{"id":"2489651310","type":"WatchEvent","actor":{"id":6376156,"login":"shenjiayu","gravatar_id":"","url":"https://api.github.com/users/shenjiayu","avatar_url":"https://avatars.githubusercontent.com/u/6376156?"},"repo":{"id":2325298,"name":"torvalds/linux","url":"https://api.github.com/repos/torvalds/linux"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651313","type":"CreateEvent","actor":{"id":10364741,"login":"Adidaz","gravatar_id":"","url":"https://api.github.com/users/Adidaz","avatar_url":"https://avatars.githubusercontent.com/u/10364741?"},"repo":{"id":28688607,"name":"Adidaz/callingCard","url":"https://api.github.com/repos/Adidaz/callingCard"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651315","type":"PushEvent","actor":{"id":5477252,"login":"callumW","gravatar_id":"","url":"https://api.github.com/users/callumW","avatar_url":"https://avatars.githubusercontent.com/u/5477252?"},"repo":{"id":28609540,"name":"callumW/map_generator","url":"https://api.github.com/repos/callumW/map_generator"},"payload":{"push_id":536864109,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eddff3883580a911ebcfeedf4197247c1292e865","before":"583184c9395d5ad61a14b26f9cd1425c55499d08","commits":[{"sha":"eddff3883580a911ebcfeedf4197247c1292e865","author":{"email":"8b421b0a1f73d85e4029c56084bdae8ccf6199f8@outlook.com","name":"callumW"},"message":"new terrain globber","distinct":true,"url":"https://api.github.com/repos/callumW/map_generator/commits/eddff3883580a911ebcfeedf4197247c1292e865"}]},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651321","type":"IssueCommentEvent","actor":{"id":62572,"login":"markbirbeck","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","avatar_url":"https://avatars.githubusercontent.com/u/62572?"},"repo":{"id":13315164,"name":"markbirbeck/sublime-text-shell-command","url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7","labels_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/comments","events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/events","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7","id":22832809,"number":7,"title":"Feature/add doller variable","user":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2013-11-18T12:59:21Z","updated_at":"2015-01-01T15:00:28Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7","diff_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.diff","patch_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.patch"},"body":"Add new class to handle ${...} based variable which User can input with input panel,\r\nor replaced automatically with pre-defined variable (but now implemented `project_folders` and `project_name`)"},"comment":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/comments/68488500","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7#issuecomment-68488500","issue_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7","id":68488500,"user":{"login":"markbirbeck","id":62572,"avatar_url":"https://avatars.githubusercontent.com/u/62572?v=3","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","html_url":"https://github.com/markbirbeck","followers_url":"https://api.github.com/users/markbirbeck/followers","following_url":"https://api.github.com/users/markbirbeck/following{/other_user}","gists_url":"https://api.github.com/users/markbirbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/markbirbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markbirbeck/subscriptions","organizations_url":"https://api.github.com/users/markbirbeck/orgs","repos_url":"https://api.github.com/users/markbirbeck/repos","events_url":"https://api.github.com/users/markbirbeck/events{/privacy}","received_events_url":"https://api.github.com/users/markbirbeck/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:28Z","updated_at":"2015-01-01T15:00:28Z","body":"Hi @aflc.\r\n\r\nSorry this took so long, but I was doing so much nodejs last year that I just didn't get round to updating any of my ST modules!\r\n\r\nAnyway, thanks for this great functionality and it is now incorporated, with a couple of very minor changes:\r\n\r\n* I've added it directly to the main `ShellCommandCommand` class, rather than to a subclass, since this feature should be available in all situations;\r\n* to maintain consistency with other uses of the `${variable:default}` kind of syntax, I've said that the prompt parameter is always the third parameter;\r\n* I've factored your code into its own module to make adding new variables easier.\r\n\r\nI hope this is ok, and thanks again for your work.\r\n\r\nMark"}},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651329","type":"CreateEvent","actor":{"id":10086149,"login":"yunqy","gravatar_id":"","url":"https://api.github.com/users/yunqy","avatar_url":"https://avatars.githubusercontent.com/u/10086149?"},"repo":{"id":28024771,"name":"yunqy/ShareDictionary","url":"https://api.github.com/repos/yunqy/ShareDictionary"},"payload":{"ref":"MiaBranch","ref_type":"branch","master_branch":"master","description":"Socail Network and Application","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651331","type":"PullRequestEvent","actor":{"id":7580708,"login":"OQO","gravatar_id":"","url":"https://api.github.com/users/OQO","avatar_url":"https://avatars.githubusercontent.com/u/7580708?"},"repo":{"id":19777872,"name":"OQO/websocket-sharp","url":"https://api.github.com/repos/OQO/websocket-sharp"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1","id":26743767,"html_url":"https://github.com/OQO/websocket-sharp/pull/1","diff_url":"https://github.com/OQO/websocket-sharp/pull/1.diff","patch_url":"https://github.com/OQO/websocket-sharp/pull/1.patch","issue_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1","number":1,"state":"closed","locked":false,"title":"Update from master","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:12Z","updated_at":"2015-01-01T15:00:29Z","closed_at":"2015-01-01T15:00:29Z","merged_at":"2015-01-01T15:00:29Z","merge_commit_sha":"96c8ca1da04db1dd80fa4c86e034b304ca099749","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits","review_comments_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments","review_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847","head":{"label":"sta:master","ref":"master","sha":"d25abde62826651db331b8995a02fa5b6d1a1847","user":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"repo":{"id":997491,"name":"websocket-sharp","full_name":"sta/websocket-sharp","owner":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sta/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":false,"url":"https://api.github.com/repos/sta/websocket-sharp","forks_url":"https://api.github.com/repos/sta/websocket-sharp/forks","keys_url":"https://api.github.com/repos/sta/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sta/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sta/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/sta/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/sta/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/sta/websocket-sharp/events","assignees_url":"https://api.github.com/repos/sta/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/sta/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/sta/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/sta/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sta/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sta/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/sta/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sta/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/sta/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/sta/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/sta/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/sta/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/sta/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/sta/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/sta/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/sta/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/sta/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/sta/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/sta/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sta/websocket-sharp/merges","archive_url":"https://api.github.com/repos/sta/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sta/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/sta/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/sta/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/sta/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/sta/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sta/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/sta/websocket-sharp/releases{/id}","created_at":"2010-10-18T12:51:34Z","updated_at":"2015-01-01T14:57:39Z","pushed_at":"2014-12-31T02:45:51Z","git_url":"git://github.com/sta/websocket-sharp.git","ssh_url":"git@github.com:sta/websocket-sharp.git","clone_url":"https://github.com/sta/websocket-sharp.git","svn_url":"https://github.com/sta/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":17131,"stargazers_count":284,"watchers_count":284,"language":"C#","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":110,"mirror_url":null,"open_issues_count":63,"forks":110,"open_issues":63,"watchers":284,"default_branch":"master"}},"base":{"label":"OQO:master","ref":"master","sha":"87d48ed9ad4c88d5c7f03d8fc9546a15b42fc9c4","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"repo":{"id":19777872,"name":"websocket-sharp","full_name":"OQO/websocket-sharp","owner":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/OQO/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":true,"url":"https://api.github.com/repos/OQO/websocket-sharp","forks_url":"https://api.github.com/repos/OQO/websocket-sharp/forks","keys_url":"https://api.github.com/repos/OQO/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/OQO/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/OQO/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/OQO/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/OQO/websocket-sharp/events","assignees_url":"https://api.github.com/repos/OQO/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/OQO/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/OQO/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/OQO/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/OQO/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/OQO/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/OQO/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/OQO/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/OQO/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/OQO/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/OQO/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/OQO/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/OQO/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/OQO/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/OQO/websocket-sharp/merges","archive_url":"https://api.github.com/repos/OQO/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/OQO/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/OQO/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/OQO/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/OQO/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/OQO/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/OQO/websocket-sharp/releases{/id}","created_at":"2014-05-14T12:06:30Z","updated_at":"2015-01-01T14:57:34Z","pushed_at":"2015-01-01T15:00:29Z","git_url":"git://github.com/OQO/websocket-sharp.git","ssh_url":"git@github.com:OQO/websocket-sharp.git","clone_url":"https://github.com/OQO/websocket-sharp.git","svn_url":"https://github.com/OQO/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":12939,"stargazers_count":0,"watchers_count":0,"language":"C#","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1"},"html":{"href":"https://github.com/OQO/websocket-sharp/pull/1"},"issue":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1"},"comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":269,"additions":8814,"deletions":7216,"changed_files":88}},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651332","type":"PushEvent","actor":{"id":7184355,"login":"akiokanashiki","gravatar_id":"","url":"https://api.github.com/users/akiokanashiki","avatar_url":"https://avatars.githubusercontent.com/u/7184355?"},"repo":{"id":28599608,"name":"akiokanashiki/tdwf","url":"https://api.github.com/repos/akiokanashiki/tdwf"},"payload":{"push_id":536864111,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31c890ccb1010cc7980ce0c8147dc47c7d8e9c81","before":"2d18dfbfa81019f1ce9f0575581e6432ebe1b9aa","commits":[{"sha":"31c890ccb1010cc7980ce0c8147dc47c7d8e9c81","author":{"email":"c2937ce015cc7a35e4b793efe3547c0e88e001c9@mail.com","name":"akio@mail.com"},"message":"update date time logics","distinct":true,"url":"https://api.github.com/repos/akiokanashiki/tdwf/commits/31c890ccb1010cc7980ce0c8147dc47c7d8e9c81"}]},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651336","type":"PushEvent","actor":{"id":3904348,"login":"floscher","gravatar_id":"","url":"https://api.github.com/users/floscher","avatar_url":"https://avatars.githubusercontent.com/u/3904348?"},"repo":{"id":28688327,"name":"floscher/linguist","url":"https://api.github.com/repos/floscher/linguist"},"payload":{"push_id":536864115,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"1f383a78efb74b7f64d100482659c78c08f765cd","before":"6dd5b14e30a6206699158d6839650eafdeb6e87e","commits":[{"sha":"1f383a78efb74b7f64d100482659c78c08f765cd","author":{"email":"73262ad0334ab37227b2f7a0205f51db1e606681@schaeferban.de","name":"Florian Schäfer"},"message":"Add tm_scope: none","distinct":true,"url":"https://api.github.com/repos/floscher/linguist/commits/1f383a78efb74b7f64d100482659c78c08f765cd"}]},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651338","type":"PushEvent","actor":{"id":2447222,"login":"GaryCarneiro","gravatar_id":"","url":"https://api.github.com/users/GaryCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/2447222?"},"repo":{"id":13476673,"name":"GaryCarneiro/dotfiles","url":"https://api.github.com/repos/GaryCarneiro/dotfiles"},"payload":{"push_id":536864117,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d7287457717a2e66411ac153315956fcf26f600d","before":"0c96298cf3ae1066d3b08621caf4c06dace7754e","commits":[{"sha":"d7287457717a2e66411ac153315956fcf26f600d","author":{"email":"134e06816552b8c24c328e457b24000a062639ee@gmail.com","name":"Garfield Edgar Carneiro"},"message":"New Right Status Bar; Includes load average","distinct":true,"url":"https://api.github.com/repos/GaryCarneiro/dotfiles/commits/d7287457717a2e66411ac153315956fcf26f600d"}]},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651343","type":"PushEvent","actor":{"id":7580708,"login":"OQO","gravatar_id":"","url":"https://api.github.com/users/OQO","avatar_url":"https://avatars.githubusercontent.com/u/7580708?"},"repo":{"id":19777872,"name":"OQO/websocket-sharp","url":"https://api.github.com/repos/OQO/websocket-sharp"},"payload":{"push_id":536864118,"size":270,"distinct_size":270,"ref":"refs/heads/master","head":"28e0b50375802ddfdd34aa4ccac8043723bd6f7f","before":"87d48ed9ad4c88d5c7f03d8fc9546a15b42fc9c4","commits":[{"sha":"4611ed7a8df3f02ee61f2b6e76acf2beb56220fe","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WsStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/4611ed7a8df3f02ee61f2b6e76acf2beb56220fe"},{"sha":"fdf413545e444f20e26a55117d542b2f374d88ef","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Renamed WsStream.cs to WebSocketStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/fdf413545e444f20e26a55117d542b2f374d88ef"},{"sha":"e20c3df55130fcf6945975df3920f71d7ab8e682","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Added GetWebSocketStream method to HttpConnection class","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/e20c3df55130fcf6945975df3920f71d7ab8e682"},{"sha":"cae324a9367346e02fd7a6296828f99b62d83f51","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #46","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/cae324a9367346e02fd7a6296828f99b62d83f51"},{"sha":"be85033f8a476daf1e13e56ba253c27f2e63646f","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #45","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/be85033f8a476daf1e13e56ba253c27f2e63646f"},{"sha":"696cfd686dbf0b03055348bf105388517d76081b","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Refactored ChunkedInputStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/696cfd686dbf0b03055348bf105388517d76081b"},{"sha":"2a1f706051c97cb8bf1988e629bca590b9b13500","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Refactored ChunkStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/2a1f706051c97cb8bf1988e629bca590b9b13500"},{"sha":"4be6ef84947d4bc98978fc339ca8e8109bd2dbcb","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Renamed ChunkedInputStream.cs to ChunkedRequestStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/4be6ef84947d4bc98978fc339ca8e8109bd2dbcb"},{"sha":"22778052f391bc5a694cf39ed9f0b8219355bb6e","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #43","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/22778052f391bc5a694cf39ed9f0b8219355bb6e"},{"sha":"142fc2213d0514c1b101a4a7ca0d672bd6c0ff4e","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for Chunk.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/142fc2213d0514c1b101a4a7ca0d672bd6c0ff4e"},{"sha":"5bd88ee1a320d4fb677a443c5ac53e8bfc7a0934","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebSocket.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/5bd88ee1a320d4fb677a443c5ac53e8bfc7a0934"},{"sha":"be1470a32ef6ea6c0d6aa07480e671ab930a11cd","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #47, and refactored HttpListenerRequest.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/be1470a32ef6ea6c0d6aa07480e671ab930a11cd"},{"sha":"de88dc3b15d3a41fd6001b6c553c1978c9eb9190","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebSocket.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/de88dc3b15d3a41fd6001b6c553c1978c9eb9190"},{"sha":"6a063c64d4d187a163cf1bb5bdeb17b10ba51cb7","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Refactored HttpListenerResponse.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/6a063c64d4d187a163cf1bb5bdeb17b10ba51cb7"},{"sha":"0b8349869dabac132b30de0068804c79ab4230e0","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for HttpListenerResponse.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/0b8349869dabac132b30de0068804c79ab4230e0"},{"sha":"5e1539c660a865762b3e999402806e55545db5bb","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebHeaderCollection.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/5e1539c660a865762b3e999402806e55545db5bb"},{"sha":"bdb7e415bd059f95307b02739a4160817eb3b6a2","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebHeaderCollection.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/bdb7e415bd059f95307b02739a4160817eb3b6a2"},{"sha":"72565cc8fe460f7253dcebc8b2402aedfaf44747","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for HttpListenerRequest.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/72565cc8fe460f7253dcebc8b2402aedfaf44747"},{"sha":"f85f227a7923abebf2b50c3ca4c616a38633de9a","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for force close in HttpConnection.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/f85f227a7923abebf2b50c3ca4c616a38633de9a"},{"sha":"74b8bb392ce7314f23fe7f9d88dce3c15bdf72f9","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for request url in HttpListenerRequest.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/74b8bb392ce7314f23fe7f9d88dce3c15bdf72f9"}]},"public":true,"created_at":"2015-01-01T15:00:31Z"}
,{"id":"2489651345","type":"GollumEvent","actor":{"id":2152766,"login":"mottosso","gravatar_id":"","url":"https://api.github.com/users/mottosso","avatar_url":"https://avatars.githubusercontent.com/u/2152766?"},"repo":{"id":24176031,"name":"pyqt/python-qt5","url":"https://api.github.com/repos/pyqt/python-qt5"},"payload":{"pages":[{"page_name":"Compiling-PyQt5-on-Ubuntu-12.04","title":"Compiling PyQt5 on Ubuntu 12.04","summary":null,"action":"edited","sha":"671d61709abc28cf10063f00c5d534bcdfc7d77b","html_url":"https://github.com/pyqt/python-qt5/wiki/Compiling-PyQt5-on-Ubuntu-12.04"}]},"public":true,"created_at":"2015-01-01T15:00:31Z","org":{"id":8809976,"login":"pyqt","gravatar_id":"","url":"https://api.github.com/orgs/pyqt","avatar_url":"https://avatars.githubusercontent.com/u/8809976?"}}
,{"id":"2489651349","type":"WatchEvent","actor":{"id":1687276,"login":"iVanPan","gravatar_id":"","url":"https://api.github.com/users/iVanPan","avatar_url":"https://avatars.githubusercontent.com/u/1687276?"},"repo":{"id":21558697,"name":"pedant/safe-java-js-webview-bridge","url":"https://api.github.com/repos/pedant/safe-java-js-webview-bridge"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:31Z"}
,{"id":"2489651353","type":"PushEvent","actor":{"id":829292,"login":"vanakenm","gravatar_id":"","url":"https://api.github.com/users/vanakenm","avatar_url":"https://avatars.githubusercontent.com/u/829292?"},"repo":{"id":28354641,"name":"vanakenm/fullstack-challenges","url":"https://api.github.com/repos/vanakenm/fullstack-challenges"},"payload":{"push_id":536864123,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"76d087e4006c437e278cfb5130e250bea8000ef7","before":"24315939795c402709df7d691957020fb6046f8b","commits":[{"sha":"76d087e4006c437e278cfb5130e250bea8000ef7","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@joyouscoding.com","name":"vanakenm"},"message":"html","distinct":true,"url":"https://api.github.com/repos/vanakenm/fullstack-challenges/commits/76d087e4006c437e278cfb5130e250bea8000ef7"}]},"public":true,"created_at":"2015-01-01T15:00:32Z"}
,{"id":"2489651361","type":"IssueCommentEvent","actor":{"id":6243408,"login":"rnaby","gravatar_id":"","url":"https://api.github.com/users/rnaby","avatar_url":"https://avatars.githubusercontent.com/u/6243408?"},"repo":{"id":19650991,"name":"DevPress/DP-Dashboard","url":"https://api.github.com/repos/DevPress/DP-Dashboard"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1","labels_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1/comments","events_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1/events","html_url":"https://github.com/DevPress/DP-Dashboard/issues/1","id":50233014,"number":1,"title":"Supported WP Versions?","user":{"login":"Satori83","id":3317473,"avatar_url":"https://avatars.githubusercontent.com/u/3317473?v=3","gravatar_id":"","url":"https://api.github.com/users/Satori83","html_url":"https://github.com/Satori83","followers_url":"https://api.github.com/users/Satori83/followers","following_url":"https://api.github.com/users/Satori83/following{/other_user}","gists_url":"https://api.github.com/users/Satori83/gists{/gist_id}","starred_url":"https://api.github.com/users/Satori83/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Satori83/subscriptions","organizations_url":"https://api.github.com/users/Satori83/orgs","repos_url":"https://api.github.com/users/Satori83/repos","events_url":"https://api.github.com/users/Satori83/events{/privacy}","received_events_url":"https://api.github.com/users/Satori83/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-11-26T22:15:21Z","updated_at":"2015-01-01T15:00:33Z","closed_at":null,"body":"Can anyone tell me what WP versions are currently supported in this plugin?"},"comment":{"url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/comments/68488502","html_url":"https://github.com/DevPress/DP-Dashboard/issues/1#issuecomment-68488502","issue_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1","id":68488502,"user":{"login":"rnaby","id":6243408,"avatar_url":"https://avatars.githubusercontent.com/u/6243408?v=3","gravatar_id":"","url":"https://api.github.com/users/rnaby","html_url":"https://github.com/rnaby","followers_url":"https://api.github.com/users/rnaby/followers","following_url":"https://api.github.com/users/rnaby/following{/other_user}","gists_url":"https://api.github.com/users/rnaby/gists{/gist_id}","starred_url":"https://api.github.com/users/rnaby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rnaby/subscriptions","organizations_url":"https://api.github.com/users/rnaby/orgs","repos_url":"https://api.github.com/users/rnaby/repos","events_url":"https://api.github.com/users/rnaby/events{/privacy}","received_events_url":"https://api.github.com/users/rnaby/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:33Z","updated_at":"2015-01-01T15:00:33Z","body":"I've tested with WP 4.0.1 and it worked pretty well. :) @Satori83 "}},"public":true,"created_at":"2015-01-01T15:00:33Z","org":{"id":7528159,"login":"DevPress","gravatar_id":"","url":"https://api.github.com/orgs/DevPress","avatar_url":"https://avatars.githubusercontent.com/u/7528159?"}}
,{"id":"2489651377","type":"PushEvent","actor":{"id":1560181,"login":"Adaptivity","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","avatar_url":"https://avatars.githubusercontent.com/u/1560181?"},"repo":{"id":23959316,"name":"Adaptivity/AlchemyPlusPlus","url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus"},"payload":{"push_id":536864134,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"9b030b578f898458765d9be3d66553d3c619c16e","before":"d23dff0c4078dd66b373dfe050bf7339135a495e","commits":[{"sha":"9b030b578f898458765d9be3d66553d3c619c16e","author":{"email":"ac090b77375f06e6ec5e15967cc07eee7f097787@gmail.com","name":"Anton"},"message":"Update en_US.lang","distinct":true,"url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/commits/9b030b578f898458765d9be3d66553d3c619c16e"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651376","type":"PushEvent","actor":{"id":210312,"login":"micahyoung","gravatar_id":"","url":"https://api.github.com/users/micahyoung","avatar_url":"https://avatars.githubusercontent.com/u/210312?"},"repo":{"id":25281621,"name":"micahyoung/citibike-data","url":"https://api.github.com/repos/micahyoung/citibike-data"},"payload":{"push_id":536864133,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"48c350cf9e07dea1db9809dbcd879839e9f53291","before":"c4154ef1794264461160edfcddbc3889584e5e2f","commits":[{"sha":"48c350cf9e07dea1db9809dbcd879839e9f53291","author":{"email":"45b9372d3d6883e588eb18cca37878d6aa2d5cd5@young.io","name":"Micah Young"},"message":"1420124402","distinct":true,"url":"https://api.github.com/repos/micahyoung/citibike-data/commits/48c350cf9e07dea1db9809dbcd879839e9f53291"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651380","type":"PushEvent","actor":{"id":4921183,"login":"kamranahmedse","gravatar_id":"","url":"https://api.github.com/users/kamranahmedse","avatar_url":"https://avatars.githubusercontent.com/u/4921183?"},"repo":{"id":26853048,"name":"kamranahmedse/kamranahmedse.github.io","url":"https://api.github.com/repos/kamranahmedse/kamranahmedse.github.io"},"payload":{"push_id":536864136,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aec12518c2ff5a5d77bcedd7a82f98792b3e1137","before":"fd5cda301ae106f73ed147060f8a9f1112fbf425","commits":[{"sha":"aec12518c2ff5a5d77bcedd7a82f98792b3e1137","author":{"email":"fa0bc2fb54f782af56a7e6f70cb96a7e98c52ea2@gmail.com","name":"Kamran Ahmed"},"message":"Update 2015-01-01-github-took-me-back-in-time.md","distinct":true,"url":"https://api.github.com/repos/kamranahmedse/kamranahmedse.github.io/commits/aec12518c2ff5a5d77bcedd7a82f98792b3e1137"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651381","type":"PushEvent","actor":{"id":7034200,"login":"BimbaLaszlo","gravatar_id":"","url":"https://api.github.com/users/BimbaLaszlo","avatar_url":"https://avatars.githubusercontent.com/u/7034200?"},"repo":{"id":23027352,"name":"BimbaLaszlo/vim-eight","url":"https://api.github.com/repos/BimbaLaszlo/vim-eight"},"payload":{"push_id":536864138,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"63557415a24106fb35a83f43a97de3eb7ce01aae","before":"20747159156b873a801a0850f0302b653d90a9b2","commits":[{"sha":"63557415a24106fb35a83f43a97de3eb7ce01aae","author":{"email":"682156ba2c001129511d88c98f21be630a220f7a@gmail.com","name":"BimbaLaszlo"},"message":"set compiler","distinct":true,"url":"https://api.github.com/repos/BimbaLaszlo/vim-eight/commits/63557415a24106fb35a83f43a97de3eb7ce01aae"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651382","type":"PushEvent","actor":{"id":210312,"login":"micahyoung","gravatar_id":"","url":"https://api.github.com/users/micahyoung","avatar_url":"https://avatars.githubusercontent.com/u/210312?"},"repo":{"id":16091467,"name":"micahyoung/cbstats-data","url":"https://api.github.com/repos/micahyoung/cbstats-data"},"payload":{"push_id":536864139,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fec7c7a952c6e3150abe090ddb781edc12bdc72","before":"dbb2d68dba5a00b6c87dc00b3a7f2fd9459daa2a","commits":[{"sha":"6fec7c7a952c6e3150abe090ddb781edc12bdc72","author":{"email":"45b9372d3d6883e588eb18cca37878d6aa2d5cd5@young.io","name":"Micah Young"},"message":"1420124402","distinct":true,"url":"https://api.github.com/repos/micahyoung/cbstats-data/commits/6fec7c7a952c6e3150abe090ddb781edc12bdc72"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651384","type":"PushEvent","actor":{"id":3634239,"login":"zodex","gravatar_id":"","url":"https://api.github.com/users/zodex","avatar_url":"https://avatars.githubusercontent.com/u/3634239?"},"repo":{"id":17524983,"name":"CRXTeam/android_frameworks_base","url":"https://api.github.com/repos/CRXTeam/android_frameworks_base"},"payload":{"push_id":536864140,"size":1,"distinct_size":1,"ref":"refs/heads/lollipop","head":"60082a637f0e7b4e9a7e1b105109b258b0b2a52b","before":"b614124b09c4e40b1a6f43ccfc025b454911f837","commits":[{"sha":"60082a637f0e7b4e9a7e1b105109b258b0b2a52b","author":{"email":"60eb9d7a29ff8c0feb8ff6e683cb848cd0cb326e@gmail.com","name":"Scott Warner"},"message":"QuickSettings: Add long click support\n\nAdd long click support for QS tiles, and add actions for common tiles\n\nChange-Id: I2b5940e1bf8ec80f03901fc2b017df68161b48ae\n\nConflicts:\n\tpackages/SystemUI/src/com/android/systemui/qs/tiles/RotationLockTile.java","distinct":true,"url":"https://api.github.com/repos/CRXTeam/android_frameworks_base/commits/60082a637f0e7b4e9a7e1b105109b258b0b2a52b"}]},"public":true,"created_at":"2015-01-01T15:00:36Z","org":{"id":6718659,"login":"CRXTeam","gravatar_id":"","url":"https://api.github.com/orgs/CRXTeam","avatar_url":"https://avatars.githubusercontent.com/u/6718659?"}}
,{"id":"2489651385","type":"PushEvent","actor":{"id":10252673,"login":"quhezheng","gravatar_id":"","url":"https://api.github.com/users/quhezheng","avatar_url":"https://avatars.githubusercontent.com/u/10252673?"},"repo":{"id":28398342,"name":"quhezheng/HomeIP","url":"https://api.github.com/repos/quhezheng/HomeIP"},"payload":{"push_id":536864141,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"494d351b663ab026ddb2d6d39003a24eb8346e7c","before":"994c7130a9f90ed1dc4bb09817058a9cc7654c20","commits":[{"sha":"494d351b663ab026ddb2d6d39003a24eb8346e7c","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/494d351b663ab026ddb2d6d39003a24eb8346e7c"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651386","type":"WatchEvent","actor":{"id":3499186,"login":"cnsouka","gravatar_id":"","url":"https://api.github.com/users/cnsouka","avatar_url":"https://avatars.githubusercontent.com/u/3499186?"},"repo":{"id":3301400,"name":"MinecraftForge/MinecraftForge","url":"https://api.github.com/repos/MinecraftForge/MinecraftForge"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:37Z","org":{"id":1390178,"login":"MinecraftForge","gravatar_id":"","url":"https://api.github.com/orgs/MinecraftForge","avatar_url":"https://avatars.githubusercontent.com/u/1390178?"}}
,{"id":"2489651390","type":"WatchEvent","actor":{"id":82952,"login":"vigo","gravatar_id":"","url":"https://api.github.com/users/vigo","avatar_url":"https://avatars.githubusercontent.com/u/82952?"},"repo":{"id":19387158,"name":"0x73/Oc","url":"https://api.github.com/repos/0x73/Oc"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651392","type":"IssueCommentEvent","actor":{"id":256041,"login":"nikosdion","gravatar_id":"","url":"https://api.github.com/users/nikosdion","avatar_url":"https://avatars.githubusercontent.com/u/256041?"},"repo":{"id":14451140,"name":"akeeba/akeebasubs","url":"https://api.github.com/repos/akeeba/akeebasubs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87","labels_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87/labels{/name}","comments_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87/comments","events_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87/events","html_url":"https://github.com/akeeba/akeebasubs/issues/87","id":53219834,"number":87,"title":"Validation of the new EU checkboxes.","user":{"login":"compojoom","id":693770,"avatar_url":"https://avatars.githubusercontent.com/u/693770?v=3","gravatar_id":"","url":"https://api.github.com/users/compojoom","html_url":"https://github.com/compojoom","followers_url":"https://api.github.com/users/compojoom/followers","following_url":"https://api.github.com/users/compojoom/following{/other_user}","gists_url":"https://api.github.com/users/compojoom/gists{/gist_id}","starred_url":"https://api.github.com/users/compojoom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/compojoom/subscriptions","organizations_url":"https://api.github.com/users/compojoom/orgs","repos_url":"https://api.github.com/users/compojoom/repos","events_url":"https://api.github.com/users/compojoom/events{/privacy}","received_events_url":"https://api.github.com/users/compojoom/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T13:37:08Z","updated_at":"2015-01-01T15:00:37Z","closed_at":null,"body":"Hey guys,\r\nWhen you submit the form for the first time a JS validation of the fields kicks in. Whenever I check any of the checkboxes the \"please confirm to continue\" text dissapears and then appears again a second after the validation is complete. The same happens with the TOS.\r\nYou can recreate the issue on your sub page as well: https://www.akeebabackup.com/subscribe/new/atpro.html?layout=default"},"comment":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/comments/68488503","html_url":"https://github.com/akeeba/akeebasubs/issues/87#issuecomment-68488503","issue_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87","id":68488503,"user":{"login":"nikosdion","id":256041,"avatar_url":"https://avatars.githubusercontent.com/u/256041?v=3","gravatar_id":"","url":"https://api.github.com/users/nikosdion","html_url":"https://github.com/nikosdion","followers_url":"https://api.github.com/users/nikosdion/followers","following_url":"https://api.github.com/users/nikosdion/following{/other_user}","gists_url":"https://api.github.com/users/nikosdion/gists{/gist_id}","starred_url":"https://api.github.com/users/nikosdion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikosdion/subscriptions","organizations_url":"https://api.github.com/users/nikosdion/orgs","repos_url":"https://api.github.com/users/nikosdion/repos","events_url":"https://api.github.com/users/nikosdion/events{/privacy}","received_events_url":"https://api.github.com/users/nikosdion/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:37Z","updated_at":"2015-01-01T15:00:37Z","body":"I know. I won't debug for a few days to weeks. It is very low priority for me. Care to debug yourself?="}},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":4135934,"login":"akeeba","gravatar_id":"","url":"https://api.github.com/orgs/akeeba","avatar_url":"https://avatars.githubusercontent.com/u/4135934?"}}
,{"id":"2489651393","type":"DeleteEvent","actor":{"id":6325631,"login":"pirej","gravatar_id":"","url":"https://api.github.com/users/pirej","avatar_url":"https://avatars.githubusercontent.com/u/6325631?"},"repo":{"id":27979491,"name":"lollipoop/android_vendor_omni","url":"https://api.github.com/repos/lollipoop/android_vendor_omni"},"payload":{"ref":"m4","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":10051895,"login":"lollipoop","gravatar_id":"","url":"https://api.github.com/orgs/lollipoop","avatar_url":"https://avatars.githubusercontent.com/u/10051895?"}}
,{"id":"2489651394","type":"PushEvent","actor":{"id":827024,"login":"avishayil","gravatar_id":"","url":"https://api.github.com/users/avishayil","avatar_url":"https://avatars.githubusercontent.com/u/827024?"},"repo":{"id":28687734,"name":"avishayil/wordpress-post-fb-url-linter","url":"https://api.github.com/repos/avishayil/wordpress-post-fb-url-linter"},"payload":{"push_id":536864143,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"34eb55f3ab775b60b10df241e786c792e129a238","before":"fd194759a277f066326c96abd385ffa68f28ea50","commits":[{"sha":"34eb55f3ab775b60b10df241e786c792e129a238","author":{"email":"2beb02123bdb59251461d915f454c5a061ce3f30@geekmedia.co.il","name":"Avishay Bassa"},"message":"Updates to readme.md","distinct":true,"url":"https://api.github.com/repos/avishayil/wordpress-post-fb-url-linter/commits/34eb55f3ab775b60b10df241e786c792e129a238"}]},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651395","type":"PushEvent","actor":{"id":9826478,"login":"SrJosue1","gravatar_id":"","url":"https://api.github.com/users/SrJosue1","avatar_url":"https://avatars.githubusercontent.com/u/9826478?"},"repo":{"id":28688368,"name":"SrJosue1/Testing","url":"https://api.github.com/repos/SrJosue1/Testing"},"payload":{"push_id":536864144,"size":1,"distinct_size":1,"ref":"refs/heads/hg-page","head":"953dbf1b42ee1d9616b91427df1897911cf0c477","before":"82e0ca5aa55951315fde91b4614915519ddf85ac","commits":[{"sha":"953dbf1b42ee1d9616b91427df1897911cf0c477","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@mycpaccess.tk","name":"Josue"},"message":"Testing_Videos","distinct":true,"url":"https://api.github.com/repos/SrJosue1/Testing/commits/953dbf1b42ee1d9616b91427df1897911cf0c477"}]},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651401","type":"CreateEvent","actor":{"id":1793469,"login":"tan-tan-kanarek","gravatar_id":"","url":"https://api.github.com/users/tan-tan-kanarek","avatar_url":"https://avatars.githubusercontent.com/u/1793469?"},"repo":{"id":15510138,"name":"kaltura/platform-install-packages","url":"https://api.github.com/repos/kaltura/platform-install-packages"},"payload":{"ref":"Jupiter-10.2.0-monit","ref_type":"branch","master_branch":"Jupiter-10.2.0","description":"Official deployment packages to install the Kaltura platform on a server or cluster environments using native OS package managers","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":319096,"login":"kaltura","gravatar_id":"","url":"https://api.github.com/orgs/kaltura","avatar_url":"https://avatars.githubusercontent.com/u/319096?"}}
,{"id":"2489651403","type":"PushEvent","actor":{"id":370793,"login":"Ratmir15","gravatar_id":"","url":"https://api.github.com/users/Ratmir15","avatar_url":"https://avatars.githubusercontent.com/u/370793?"},"repo":{"id":3652623,"name":"Ratmir15/hz-base","url":"https://api.github.com/repos/Ratmir15/hz-base"},"payload":{"push_id":536864147,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"13112bea8af8930db751c479f9791b7e05d087fb","before":"adc7c2a9aab85e0312850a07314ff37acaf36467","commits":[{"sha":"13112bea8af8930db751c479f9791b7e05d087fb","author":{"email":"1de0837f738a2fcf8dd0b85edef8d919b335fdeb@yandex.ru","name":"Ratmir"},"message":"dump","distinct":true,"url":"https://api.github.com/repos/Ratmir15/hz-base/commits/13112bea8af8930db751c479f9791b7e05d087fb"}]},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651404","type":"PushEvent","actor":{"id":1218603,"login":"eraydiler","gravatar_id":"","url":"https://api.github.com/users/eraydiler","avatar_url":"https://avatars.githubusercontent.com/u/1218603?"},"repo":{"id":27305177,"name":"iOS-7-Lessons/Matched-Up","url":"https://api.github.com/repos/iOS-7-Lessons/Matched-Up"},"payload":{"push_id":536864148,"size":1,"distinct_size":1,"ref":"refs/heads/EndOf#368","head":"1d1646bbc3a16dd2a878f96858acfa30b133a002","before":"15d4c2ab9ce9a3830f45fe5d096a633c77eacee9","commits":[{"sha":"1d1646bbc3a16dd2a878f96858acfa30b133a002","author":{"email":"f2a92d87ff16c93d174aad6f95ea63c28119ba41@Eray-MacBook-Pro.local","name":"Eray"},"message":"Duplicates were deleted.","distinct":true,"url":"https://api.github.com/repos/iOS-7-Lessons/Matched-Up/commits/1d1646bbc3a16dd2a878f96858acfa30b133a002"}]},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":9675649,"login":"iOS-7-Lessons","gravatar_id":"","url":"https://api.github.com/orgs/iOS-7-Lessons","avatar_url":"https://avatars.githubusercontent.com/u/9675649?"}}
,{"id":"2489651405","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":27127029,"name":"hex7c0/json-decrypt","url":"https://api.github.com/repos/hex7c0/json-decrypt"},"payload":{"push_id":536864149,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"698001314bcfec3799017415f5e56c7137e50d14","before":"c16ff79d97b2982f142e7919c987cb5f3c40974c","commits":[{"sha":"5d12a95f5c955c5660f7250e6f10aed48f32bebd","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/json-decrypt/commits/5d12a95f5c955c5660f7250e6f10aed48f32bebd"},{"sha":"698001314bcfec3799017415f5e56c7137e50d14","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/json-decrypt/commits/698001314bcfec3799017415f5e56c7137e50d14"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651408","type":"PushEvent","actor":{"id":5622390,"login":"stevensouza","gravatar_id":"","url":"https://api.github.com/users/stevensouza","avatar_url":"https://avatars.githubusercontent.com/u/5622390?"},"repo":{"id":18473416,"name":"stevensouza/testproject","url":"https://api.github.com/repos/stevensouza/testproject"},"payload":{"push_id":536864151,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"92db85bd8f8d350af29500ccd6d15f1bc4589e61","before":"846d1902b1446a569a7f73c1d94b7fdd5c83d367","commits":[{"sha":"92db85bd8f8d350af29500ccd6d15f1bc4589e61","author":{"email":"9ce5770b3bb4b2a1d59be2d97e34379cd192299f@stevesouza.com","name":"Steve Souza"},"message":"added sigar test code (returns operating system info)","distinct":true,"url":"https://api.github.com/repos/stevensouza/testproject/commits/92db85bd8f8d350af29500ccd6d15f1bc4589e61"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651410","type":"CreateEvent","actor":{"id":9118616,"login":"piotrzalewski","gravatar_id":"","url":"https://api.github.com/users/piotrzalewski","avatar_url":"https://avatars.githubusercontent.com/u/9118616?"},"repo":{"id":28688538,"name":"piotrzalewski/GAEPrime","url":"https://api.github.com/repos/piotrzalewski/GAEPrime"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"GAE project for testing.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651411","type":"WatchEvent","actor":{"id":2599479,"login":"alecourtes","gravatar_id":"","url":"https://api.github.com/users/alecourtes","avatar_url":"https://avatars.githubusercontent.com/u/2599479?"},"repo":{"id":13126364,"name":"willfarrell/alfred-youtube-workflow","url":"https://api.github.com/repos/willfarrell/alfred-youtube-workflow"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651412","type":"PushEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061659,"name":"syon/andy-hiroyuki.github.io","url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io"},"payload":{"push_id":536864154,"size":1,"distinct_size":1,"ref":"refs/heads/middleman","head":"a133ccb43da62f8b35640a3519e5a519669e1573","before":"35ebbf4bbad8b9ade13abe3b89265469fec781df","commits":[{"sha":"a133ccb43da62f8b35640a3519e5a519669e1573","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"Silver Forest","distinct":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits/a133ccb43da62f8b35640a3519e5a519669e1573"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651413","type":"GollumEvent","actor":{"id":2254431,"login":"osler","gravatar_id":"","url":"https://api.github.com/users/osler","avatar_url":"https://avatars.githubusercontent.com/u/2254431?"},"repo":{"id":28687819,"name":"osler/World-of-Warcraft-Modding","url":"https://api.github.com/repos/osler/World-of-Warcraft-Modding"},"payload":{"pages":[{"page_name":"_Sidebar","title":"_Sidebar","summary":null,"action":"edited","sha":"f843e0cd86ab9c9807d41c307203e3c796e306ff","html_url":"https://github.com/osler/World-of-Warcraft-Modding/wiki/_Sidebar"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651414","type":"PushEvent","actor":{"id":2413283,"login":"cristianomatos","gravatar_id":"","url":"https://api.github.com/users/cristianomatos","avatar_url":"https://avatars.githubusercontent.com/u/2413283?"},"repo":{"id":26325354,"name":"crdroidandroid/android_packages_apps_Settings","url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings"},"payload":{"push_id":536864155,"size":3,"distinct_size":3,"ref":"refs/heads/cm-12.0","head":"5de56924398030dde1afea7e9c41da102ea903e7","before":"ed34c8185ef67b91b24478029ad5fcf22142443a","commits":[{"sha":"924cbbe557b5a676f29628afbb5b035b86400ba7","author":{"email":"28dad2a4fd4400519093d168b4416744edb2e68c@gmail.com","name":"cristianomatos"},"message":"Follow CyanogenMod on ButtonBacklightBrightness\n\nWe already have this feature ported from cm11 and this commit just follow minor things\n\n- Check this commit: 33aa700ddf9deedb9243d5d3a243b51c6db4543f","distinct":true,"url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings/commits/924cbbe557b5a676f29628afbb5b035b86400ba7"},{"sha":"08ddf9e2f30fc6389aff016a4b4c6bdcda8967a3","author":{"email":"28dad2a4fd4400519093d168b4416744edb2e68c@gmail.com","name":"cristianomatos"},"message":"AOKP system animations: add Animation controls exit only and Animations controls reverse exit [2/2]\n\n- Work by @Stevespear426 and a complement of this commit: https://github.com/crdroidandroid/android_packages_apps_Settings/commit/a7625ef52ee959eafec9cca7511b38b5a9d13597","distinct":true,"url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings/commits/08ddf9e2f30fc6389aff016a4b4c6bdcda8967a3"},{"sha":"5de56924398030dde1afea7e9c41da102ea903e7","author":{"email":"28dad2a4fd4400519093d168b4416744edb2e68c@gmail.com","name":"cristianomatos"},"message":"Match AOKP changes for system animations\n\nHere is the commit: https://github.com/AOKP/packages_apps_ROMControl/commit/6b5789328815c9e718a17d3d772d35f8ec22b57c\n\nI just can't find the email to put you as tha author\n\nThanks to @BytecodeMe","distinct":true,"url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings/commits/5de56924398030dde1afea7e9c41da102ea903e7"}]},"public":true,"created_at":"2015-01-01T15:00:39Z","org":{"id":9610671,"login":"crdroidandroid","gravatar_id":"","url":"https://api.github.com/orgs/crdroidandroid","avatar_url":"https://avatars.githubusercontent.com/u/9610671?"}}
,{"id":"2489651415","type":"DeleteEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.2","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651416","type":"PushEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28687886,"name":"Derathir/PCaPP","url":"https://api.github.com/repos/Derathir/PCaPP"},"payload":{"push_id":536864157,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","before":"d8832d838ed16e3e068fba91c423c3c424ca335b","commits":[{"sha":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","author":{"email":"0762d2b4f0518f50ca1a535b2ee4401a1aea69d9@gmail.com","name":"Derathir"},"message":"Armor.xml\n\nI noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks.","distinct":true,"url":"https://api.github.com/repos/Derathir/PCaPP/commits/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651426","type":"PushEvent","actor":{"id":10083725,"login":"namangoel1","gravatar_id":"","url":"https://api.github.com/users/namangoel1","avatar_url":"https://avatars.githubusercontent.com/u/10083725?"},"repo":{"id":27712771,"name":"namangoel1/gci","url":"https://api.github.com/repos/namangoel1/gci"},"payload":{"push_id":536864159,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ad53d2b1f9bdb711898406c9f89dc2f5631008eb","before":"13d4df7770fab8a04e973577b89d78ce552eff07","commits":[{"sha":"3bf52d12c2cca366c72d359c13d7c6e1ba99ba5c","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@namanyayg.com","name":"Namanyay Goel"},"message":"Moving to angleconverter","distinct":true,"url":"https://api.github.com/repos/namangoel1/gci/commits/3bf52d12c2cca366c72d359c13d7c6e1ba99ba5c"},{"sha":"ad53d2b1f9bdb711898406c9f89dc2f5631008eb","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@namanyayg.com","name":"Namanyay Goel"},"message":"Completing angleconverter","distinct":true,"url":"https://api.github.com/repos/namangoel1/gci/commits/ad53d2b1f9bdb711898406c9f89dc2f5631008eb"}]},"public":true,"created_at":"2015-01-01T15:00:41Z"}
,{"id":"2489651432","type":"PushEvent","actor":{"id":1222165,"login":"jmini","gravatar_id":"","url":"https://api.github.com/users/jmini","avatar_url":"https://avatars.githubusercontent.com/u/1222165?"},"repo":{"id":3136807,"name":"BSI-Business-Systems-Integration-AG/org.eclipsescout.demo","url":"https://api.github.com/repos/BSI-Business-Systems-Integration-AG/org.eclipsescout.demo"},"payload":{"push_id":536864161,"size":1,"distinct_size":1,"ref":"refs/heads/4.3","head":"ed36b05b9117bb090d4de2635b6909298dbe728e","before":"954324eba827679716e665948d5fd2cf8c24b614","commits":[{"sha":"ed36b05b9117bb090d4de2635b6909298dbe728e","author":{"email":"7cdfcbd9315be4cfd7bdf307b4ac78d3bcdb56ad@bsiag.com","name":"Jeremie Bresson"},"message":"Widgets: Use SharedCodeService (Bug 444213)\n\nAnd removed LocalCodeService.\n\nhttps://bugs.eclipse.org/bugs/show_bug.cgi?id=444213","distinct":true,"url":"https://api.github.com/repos/BSI-Business-Systems-Integration-AG/org.eclipsescout.demo/commits/ed36b05b9117bb090d4de2635b6909298dbe728e"}]},"public":true,"created_at":"2015-01-01T15:00:41Z","org":{"id":893651,"login":"BSI-Business-Systems-Integration-AG","gravatar_id":"","url":"https://api.github.com/orgs/BSI-Business-Systems-Integration-AG","avatar_url":"https://avatars.githubusercontent.com/u/893651?"}}
,{"id":"2489651434","type":"PushEvent","actor":{"id":2362917,"login":"chrisndodge","gravatar_id":"","url":"https://api.github.com/users/chrisndodge","avatar_url":"https://avatars.githubusercontent.com/u/2362917?"},"repo":{"id":10391073,"name":"edx/edx-platform","url":"https://api.github.com/repos/edx/edx-platform"},"payload":{"push_id":536864160,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"91a4796216b1aa5e7fbb2834b80894b93348bf6e","before":"4589a976763cd6997f5f77b9789103c1154d5d05","commits":[{"sha":"5a437b396e03857a256ffe1ba7e1b5c55c028bd9","author":{"email":"51e2c21eda4c9a37abf27381df1ac569253bbae3@arbisoft.com","name":"Muhammad Shoaib"},"message":"WL-168 When redeeming a Registration Code in the shopping cart, the user should be redirect to the Registration Code Redemption page\n\nimprovements suggested by william","distinct":false,"url":"https://api.github.com/repos/edx/edx-platform/commits/5a437b396e03857a256ffe1ba7e1b5c55c028bd9"},{"sha":"91a4796216b1aa5e7fbb2834b80894b93348bf6e","author":{"email":"9376b685e83a711fba45f684eafc9d02a9e477db@edx.org","name":"chrisndodge"},"message":"Merge pull request #6196 from edx/muhhshoaib/WL-168\n\nWL-168 When redeeming a Registration Code in the shopping cart, the user should be redirect to the Registration Code Redemption page","distinct":true,"url":"https://api.github.com/repos/edx/edx-platform/commits/91a4796216b1aa5e7fbb2834b80894b93348bf6e"}]},"public":true,"created_at":"2015-01-01T15:00:41Z","org":{"id":3179841,"login":"edx","gravatar_id":"","url":"https://api.github.com/orgs/edx","avatar_url":"https://avatars.githubusercontent.com/u/3179841?"}}
,{"id":"2489651435","type":"WatchEvent","actor":{"id":8445924,"login":"kovetskiy","gravatar_id":"","url":"https://api.github.com/users/kovetskiy","avatar_url":"https://avatars.githubusercontent.com/u/8445924?"},"repo":{"id":15357376,"name":"t9md/vim-choosewin","url":"https://api.github.com/repos/t9md/vim-choosewin"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:41Z"}
,{"id":"2489651438","type":"CreateEvent","actor":{"id":5174751,"login":"alviteri","gravatar_id":"","url":"https://api.github.com/users/alviteri","avatar_url":"https://avatars.githubusercontent.com/u/5174751?"},"repo":{"id":26325354,"name":"crdroidandroid/android_packages_apps_Settings","url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings"},"payload":{"ref":"features","ref_type":"branch","master_branch":"cm-12.0","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:43Z","org":{"id":9610671,"login":"crdroidandroid","gravatar_id":"","url":"https://api.github.com/orgs/crdroidandroid","avatar_url":"https://avatars.githubusercontent.com/u/9610671?"}}
,{"id":"2489651440","type":"PullRequestEvent","actor":{"id":62572,"login":"markbirbeck","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","avatar_url":"https://avatars.githubusercontent.com/u/62572?"},"repo":{"id":13315164,"name":"markbirbeck/sublime-text-shell-command","url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command"},"payload":{"action":"closed","number":7,"pull_request":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7","id":10047845,"html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7","diff_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.diff","patch_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.patch","issue_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7","number":7,"state":"closed","locked":false,"title":"Feature/add doller variable","user":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"body":"Add new class to handle ${...} based variable which User can input with input panel,\r\nor replaced automatically with pre-defined variable (but now implemented `project_folders` and `project_name`)","created_at":"2013-11-18T12:59:21Z","updated_at":"2015-01-01T15:00:42Z","closed_at":"2015-01-01T15:00:42Z","merged_at":null,"merge_commit_sha":"63139a09b34afc2831d146cd664e8447343ccd6d","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/commits","review_comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/comments","review_comment_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/comments/{number}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/comments","statuses_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/statuses/b8bc0288f950667ab214206d1b51098bc5fd9b63","head":{"label":"aflc:feature/add_doller_variable","ref":"feature/add_doller_variable","sha":"b8bc0288f950667ab214206d1b51098bc5fd9b63","user":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"repo":{"id":14014485,"name":"sublime-text-shell-command","full_name":"aflc/sublime-text-shell-command","owner":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/aflc/sublime-text-shell-command","description":"A Sublime Text 3 plugin for running OS commands.","fork":true,"url":"https://api.github.com/repos/aflc/sublime-text-shell-command","forks_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/forks","keys_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/keys{/key_id}","collaborators_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/teams","hooks_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/hooks","issue_events_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/issues/events{/number}","events_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/events","assignees_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/assignees{/user}","branches_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/branches{/branch}","tags_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/tags","blobs_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/refs{/sha}","trees_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/trees{/sha}","statuses_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/statuses/{sha}","languages_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/languages","stargazers_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/stargazers","contributors_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/contributors","subscribers_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/subscribers","subscription_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/subscription","commits_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/commits{/sha}","git_commits_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/commits{/sha}","comments_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/comments{/number}","issue_comment_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/issues/comments/{number}","contents_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/contents/{+path}","compare_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/compare/{base}...{head}","merges_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/merges","archive_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/downloads","issues_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/issues{/number}","pulls_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/pulls{/number}","milestones_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/milestones{/number}","notifications_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/labels{/name}","releases_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/releases{/id}","created_at":"2013-10-31T11:00:32Z","updated_at":"2013-11-18T12:59:21Z","pushed_at":"2013-11-18T12:54:59Z","git_url":"git://github.com/aflc/sublime-text-shell-command.git","ssh_url":"git@github.com:aflc/sublime-text-shell-command.git","clone_url":"https://github.com/aflc/sublime-text-shell-command.git","svn_url":"https://github.com/aflc/sublime-text-shell-command","homepage":null,"size":122,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"markbirbeck:develop","ref":"develop","sha":"12e46d913747486c2677b1342e7684632c1ff4c7","user":{"login":"markbirbeck","id":62572,"avatar_url":"https://avatars.githubusercontent.com/u/62572?v=3","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","html_url":"https://github.com/markbirbeck","followers_url":"https://api.github.com/users/markbirbeck/followers","following_url":"https://api.github.com/users/markbirbeck/following{/other_user}","gists_url":"https://api.github.com/users/markbirbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/markbirbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markbirbeck/subscriptions","organizations_url":"https://api.github.com/users/markbirbeck/orgs","repos_url":"https://api.github.com/users/markbirbeck/repos","events_url":"https://api.github.com/users/markbirbeck/events{/privacy}","received_events_url":"https://api.github.com/users/markbirbeck/received_events","type":"User","site_admin":false},"repo":{"id":13315164,"name":"sublime-text-shell-command","full_name":"markbirbeck/sublime-text-shell-command","owner":{"login":"markbirbeck","id":62572,"avatar_url":"https://avatars.githubusercontent.com/u/62572?v=3","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","html_url":"https://github.com/markbirbeck","followers_url":"https://api.github.com/users/markbirbeck/followers","following_url":"https://api.github.com/users/markbirbeck/following{/other_user}","gists_url":"https://api.github.com/users/markbirbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/markbirbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markbirbeck/subscriptions","organizations_url":"https://api.github.com/users/markbirbeck/orgs","repos_url":"https://api.github.com/users/markbirbeck/repos","events_url":"https://api.github.com/users/markbirbeck/events{/privacy}","received_events_url":"https://api.github.com/users/markbirbeck/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/markbirbeck/sublime-text-shell-command","description":"A Sublime Text 3 plugin for running any Shell command.","fork":false,"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command","forks_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/forks","keys_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/keys{/key_id}","collaborators_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/teams","hooks_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/hooks","issue_events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/events{/number}","events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/events","assignees_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/assignees{/user}","branches_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/branches{/branch}","tags_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/tags","blobs_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/refs{/sha}","trees_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/trees{/sha}","statuses_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/statuses/{sha}","languages_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/languages","stargazers_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/stargazers","contributors_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/contributors","subscribers_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/subscribers","subscription_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/subscription","commits_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/commits{/sha}","git_commits_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/commits{/sha}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/comments{/number}","issue_comment_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/comments/{number}","contents_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/contents/{+path}","compare_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/compare/{base}...{head}","merges_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/merges","archive_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/downloads","issues_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues{/number}","pulls_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls{/number}","milestones_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/milestones{/number}","notifications_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/labels{/name}","releases_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/releases{/id}","created_at":"2013-10-04T02:48:38Z","updated_at":"2015-01-01T14:49:26Z","pushed_at":"2015-01-01T14:49:26Z","git_url":"git://github.com/markbirbeck/sublime-text-shell-command.git","ssh_url":"git@github.com:markbirbeck/sublime-text-shell-command.git","clone_url":"https://github.com/markbirbeck/sublime-text-shell-command.git","svn_url":"https://github.com/markbirbeck/sublime-text-shell-command","homepage":"","size":459,"stargazers_count":59,"watchers_count":59,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":10,"mirror_url":null,"open_issues_count":13,"forks":10,"open_issues":13,"watchers":59,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7"},"html":{"href":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7"},"issue":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7"},"comments":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/comments"},"review_comments":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/comments"},"review_comment":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/commits"},"statuses":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/statuses/b8bc0288f950667ab214206d1b51098bc5fd9b63"}},"merged":false,"mergeable":false,"mergeable_state":"dirty","merged_by":null,"comments":1,"review_comments":0,"commits":2,"additions":94,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:43Z"}
,{"id":"2489651443","type":"CreateEvent","actor":{"id":1025765,"login":"craiglockwood","gravatar_id":"","url":"https://api.github.com/users/craiglockwood","avatar_url":"https://avatars.githubusercontent.com/u/1025765?"},"repo":{"id":28688608,"name":"craiglockwood/lardylockwoods","url":"https://api.github.com/repos/craiglockwood/lardylockwoods"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A simple weight management dashboard for the annual Lockwood diet (uses chart.js)","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:43Z"}
,{"id":"2489651444","type":"PushEvent","actor":{"id":3064121,"login":"jingyuan4ever","gravatar_id":"","url":"https://api.github.com/users/jingyuan4ever","avatar_url":"https://avatars.githubusercontent.com/u/3064121?"},"repo":{"id":17544783,"name":"jingyuan4ever/checkio","url":"https://api.github.com/repos/jingyuan4ever/checkio"},"payload":{"push_id":536864167,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97d8569c48403e93d87fa0d9d6d836261d68a1d6","before":"1a233c9a55d596a1cd9b4306811fb0ae4ab392db","commits":[{"sha":"97d8569c48403e93d87fa0d9d6d836261d68a1d6","author":{"email":"e3f0f858b132ab9a917901df9210f0626834e936@gmail.com","name":"jingyuan4ever"},"message":"add the-great-common-divisor","distinct":true,"url":"https://api.github.com/repos/jingyuan4ever/checkio/commits/97d8569c48403e93d87fa0d9d6d836261d68a1d6"}]},"public":true,"created_at":"2015-01-01T15:00:43Z"}
,{"id":"2489651445","type":"PushEvent","actor":{"id":4726466,"login":"sharonadar","gravatar_id":"","url":"https://api.github.com/users/sharonadar","avatar_url":"https://avatars.githubusercontent.com/u/4726466?"},"repo":{"id":11364783,"name":"kaltura/server","url":"https://api.github.com/repos/kaltura/server"},"payload":{"push_id":536864166,"size":1,"distinct_size":1,"ref":"refs/heads/Jupiter-10.2.0-PLAT-2032","head":"a78a0479f2e3c7642796c29292380db53bd5f197","before":"fdb3baa71775d9e69a849af1590f70b32b0bacbb","commits":[{"sha":"a78a0479f2e3c7642796c29292380db53bd5f197","author":{"email":"ad7c84f63a6190abf0df51576bab926e84456593@gmail.com","name":"sharonadar"},"message":"Missing files...","distinct":true,"url":"https://api.github.com/repos/kaltura/server/commits/a78a0479f2e3c7642796c29292380db53bd5f197"}]},"public":true,"created_at":"2015-01-01T15:00:43Z","org":{"id":319096,"login":"kaltura","gravatar_id":"","url":"https://api.github.com/orgs/kaltura","avatar_url":"https://avatars.githubusercontent.com/u/319096?"}}
,{"id":"2489651446","type":"IssueCommentEvent","actor":{"id":1392109,"login":"parubets","gravatar_id":"","url":"https://api.github.com/users/parubets","avatar_url":"https://avatars.githubusercontent.com/u/1392109?"},"repo":{"id":15259244,"name":"bitpay/bitcore","url":"https://api.github.com/repos/bitpay/bitcore"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bitpay/bitcore/issues/860","labels_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/labels{/name}","comments_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/comments","events_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/events","html_url":"https://github.com/bitpay/bitcore/issues/860","id":52934239,"number":860,"title":"bip32 compliance","user":{"login":"parubets","id":1392109,"avatar_url":"https://avatars.githubusercontent.com/u/1392109?v=3","gravatar_id":"","url":"https://api.github.com/users/parubets","html_url":"https://github.com/parubets","followers_url":"https://api.github.com/users/parubets/followers","following_url":"https://api.github.com/users/parubets/following{/other_user}","gists_url":"https://api.github.com/users/parubets/gists{/gist_id}","starred_url":"https://api.github.com/users/parubets/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parubets/subscriptions","organizations_url":"https://api.github.com/users/parubets/orgs","repos_url":"https://api.github.com/users/parubets/repos","events_url":"https://api.github.com/users/parubets/events{/privacy}","received_events_url":"https://api.github.com/users/parubets/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-26T18:21:53Z","updated_at":"2015-01-01T15:00:43Z","closed_at":"2015-01-01T15:00:43Z","body":"Hi guys,\r\n\r\nI'm fighting with bip32 keys derive, and what i get from browser output doesn't equal to bitcore test suite or bip32 test vectors.\r\nBrowser output:\r\n\r\n```\r\nbitcore.HDPrivateKey.fromSeed('000102030405060708090a0b0c0d0e0f').derive(\"m/0'\").xprivkey\r\n\"xprv9wTYmMFdV23MzHB1Z9SQKteo9xo9v1mm5gRdZGEUPy9t79fj3cRY3pdncVv6a7o5TMv76KuWezzEAw7CAwjXwrH5a9EzdgmNVo7wgWN1yEs\"\r\n```\r\n\r\nthe resulted key is wrong...\r\n\r\nif i test in ruby, i got correct result (which is also correct in bitcore testsuite)\r\n\r\n```\r\n2.0.0-p576 :049 > MoneyTree::Master.new(seed_hex: \"000102030405060708090a0b0c0d0e0f\").node_for_path(\"m/0'\").to_serialized_address(:private)\r\n => \"xprv9uHRZZhk6KAJC1avXpDAp4MDc3sQKNxDiPvvkX8Br5ngLNv1TxvUxt4cV1rGL5hj6KCesnDYUhd7oWgT11eZG7XnxHrnYeSvkzY7d2bhkJ7\"\r\n```\r\n\r\nwhat i'm doing wrong?\r\n\r\nthank you!"},"comment":{"url":"https://api.github.com/repos/bitpay/bitcore/issues/comments/68488504","html_url":"https://github.com/bitpay/bitcore/issues/860#issuecomment-68488504","issue_url":"https://api.github.com/repos/bitpay/bitcore/issues/860","id":68488504,"user":{"login":"parubets","id":1392109,"avatar_url":"https://avatars.githubusercontent.com/u/1392109?v=3","gravatar_id":"","url":"https://api.github.com/users/parubets","html_url":"https://github.com/parubets","followers_url":"https://api.github.com/users/parubets/followers","following_url":"https://api.github.com/users/parubets/following{/other_user}","gists_url":"https://api.github.com/users/parubets/gists{/gist_id}","starred_url":"https://api.github.com/users/parubets/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parubets/subscriptions","organizations_url":"https://api.github.com/users/parubets/orgs","repos_url":"https://api.github.com/users/parubets/repos","events_url":"https://api.github.com/users/parubets/events{/privacy}","received_events_url":"https://api.github.com/users/parubets/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:43Z","updated_at":"2015-01-01T15:00:43Z","body":"Hi!\r\n\r\nThanks for your reply... I found the error - it was in the jsqrcode library, they added prototype function to Array class... after removing it - everything works fine!\r\n\r\nThanks!"}},"public":true,"created_at":"2015-01-01T15:00:43Z","org":{"id":2554930,"login":"bitpay","gravatar_id":"","url":"https://api.github.com/orgs/bitpay","avatar_url":"https://avatars.githubusercontent.com/u/2554930?"}}
,{"id":"2489651448","type":"IssuesEvent","actor":{"id":1392109,"login":"parubets","gravatar_id":"","url":"https://api.github.com/users/parubets","avatar_url":"https://avatars.githubusercontent.com/u/1392109?"},"repo":{"id":15259244,"name":"bitpay/bitcore","url":"https://api.github.com/repos/bitpay/bitcore"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/bitpay/bitcore/issues/860","labels_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/labels{/name}","comments_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/comments","events_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/events","html_url":"https://github.com/bitpay/bitcore/issues/860","id":52934239,"number":860,"title":"bip32 compliance","user":{"login":"parubets","id":1392109,"avatar_url":"https://avatars.githubusercontent.com/u/1392109?v=3","gravatar_id":"","url":"https://api.github.com/users/parubets","html_url":"https://github.com/parubets","followers_url":"https://api.github.com/users/parubets/followers","following_url":"https://api.github.com/users/parubets/following{/other_user}","gists_url":"https://api.github.com/users/parubets/gists{/gist_id}","starred_url":"https://api.github.com/users/parubets/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parubets/subscriptions","organizations_url":"https://api.github.com/users/parubets/orgs","repos_url":"https://api.github.com/users/parubets/repos","events_url":"https://api.github.com/users/parubets/events{/privacy}","received_events_url":"https://api.github.com/users/parubets/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-26T18:21:53Z","updated_at":"2015-01-01T15:00:43Z","closed_at":"2015-01-01T15:00:43Z","body":"Hi guys,\r\n\r\nI'm fighting with bip32 keys derive, and what i get from browser output doesn't equal to bitcore test suite or bip32 test vectors.\r\nBrowser output:\r\n\r\n```\r\nbitcore.HDPrivateKey.fromSeed('000102030405060708090a0b0c0d0e0f').derive(\"m/0'\").xprivkey\r\n\"xprv9wTYmMFdV23MzHB1Z9SQKteo9xo9v1mm5gRdZGEUPy9t79fj3cRY3pdncVv6a7o5TMv76KuWezzEAw7CAwjXwrH5a9EzdgmNVo7wgWN1yEs\"\r\n```\r\n\r\nthe resulted key is wrong...\r\n\r\nif i test in ruby, i got correct result (which is also correct in bitcore testsuite)\r\n\r\n```\r\n2.0.0-p576 :049 > MoneyTree::Master.new(seed_hex: \"000102030405060708090a0b0c0d0e0f\").node_for_path(\"m/0'\").to_serialized_address(:private)\r\n => \"xprv9uHRZZhk6KAJC1avXpDAp4MDc3sQKNxDiPvvkX8Br5ngLNv1TxvUxt4cV1rGL5hj6KCesnDYUhd7oWgT11eZG7XnxHrnYeSvkzY7d2bhkJ7\"\r\n```\r\n\r\nwhat i'm doing wrong?\r\n\r\nthank you!"}},"public":true,"created_at":"2015-01-01T15:00:44Z","org":{"id":2554930,"login":"bitpay","gravatar_id":"","url":"https://api.github.com/orgs/bitpay","avatar_url":"https://avatars.githubusercontent.com/u/2554930?"}}
,{"id":"2489651451","type":"PushEvent","actor":{"id":5181913,"login":"eclecticlogic","gravatar_id":"","url":"https://api.github.com/users/eclecticlogic","avatar_url":"https://avatars.githubusercontent.com/u/5181913?"},"repo":{"id":28636767,"name":"eclecticlogic/pedal-loader","url":"https://api.github.com/repos/eclecticlogic/pedal-loader"},"payload":{"push_id":536864168,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"866757088a45bbdea0d93fe05efefd642d432816","before":"745a502dce9023e92329f548fe5746e99e290988","commits":[{"sha":"866757088a45bbdea0d93fe05efefd642d432816","author":{"email":"cb4abed6c07c79e2deeb7d5895ddc855894ab403@eclecticlogic.com","name":"Karthik Abram"},"message":"added more documentation.","distinct":true,"url":"https://api.github.com/repos/eclecticlogic/pedal-loader/commits/866757088a45bbdea0d93fe05efefd642d432816"}]},"public":true,"created_at":"2015-01-01T15:00:44Z"}
,{"id":"2489651455","type":"IssueCommentEvent","actor":{"id":189796,"login":"cebe","gravatar_id":"","url":"https://api.github.com/users/cebe","avatar_url":"https://avatars.githubusercontent.com/u/189796?"},"repo":{"id":28057858,"name":"samdark/yiifeed","url":"https://api.github.com/repos/samdark/yiifeed"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/samdark/yiifeed/issues/5","labels_url":"https://api.github.com/repos/samdark/yiifeed/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/samdark/yiifeed/issues/5/comments","events_url":"https://api.github.com/repos/samdark/yiifeed/issues/5/events","html_url":"https://github.com/samdark/yiifeed/issues/5","id":53004212,"number":5,"title":"yiifeed.com does not resolve in DNS","user":{"login":"cebe","id":189796,"avatar_url":"https://avatars.githubusercontent.com/u/189796?v=3","gravatar_id":"","url":"https://api.github.com/users/cebe","html_url":"https://github.com/cebe","followers_url":"https://api.github.com/users/cebe/followers","following_url":"https://api.github.com/users/cebe/following{/other_user}","gists_url":"https://api.github.com/users/cebe/gists{/gist_id}","starred_url":"https://api.github.com/users/cebe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cebe/subscriptions","organizations_url":"https://api.github.com/users/cebe/orgs","repos_url":"https://api.github.com/users/cebe/repos","events_url":"https://api.github.com/users/cebe/events{/privacy}","received_events_url":"https://api.github.com/users/cebe/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/samdark/yiifeed/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":{"login":"samdark","id":47294,"avatar_url":"https://avatars.githubusercontent.com/u/47294?v=3","gravatar_id":"","url":"https://api.github.com/users/samdark","html_url":"https://github.com/samdark","followers_url":"https://api.github.com/users/samdark/followers","following_url":"https://api.github.com/users/samdark/following{/other_user}","gists_url":"https://api.github.com/users/samdark/gists{/gist_id}","starred_url":"https://api.github.com/users/samdark/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/samdark/subscriptions","organizations_url":"https://api.github.com/users/samdark/orgs","repos_url":"https://api.github.com/users/samdark/repos","events_url":"https://api.github.com/users/samdark/events{/privacy}","received_events_url":"https://api.github.com/users/samdark/received_events","type":"User","site_admin":false},"milestone":null,"comments":4,"created_at":"2014-12-28T16:37:30Z","updated_at":"2015-01-01T15:00:46Z","closed_at":"2014-12-31T18:11:52Z","body":"```\r\n$ dig yiifeed.com @8.8.8.8\r\n\r\n; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> yiifeed.com @8.8.8.8\r\n;; global options: +cmd\r\n;; Got answer:\r\n;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 52689\r\n;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0\r\n\r\n;; QUESTION SECTION:\r\n;yiifeed.com.\t\t\tIN\tA\r\n\r\n;; Query time: 221 msec\r\n;; SERVER: 8.8.8.8#53(8.8.8.8)\r\n;; WHEN: Sun Dec 28 17:34:07 2014\r\n;; MSG SIZE  rcvd: 29\r\n```"},"comment":{"url":"https://api.github.com/repos/samdark/yiifeed/issues/comments/68488506","html_url":"https://github.com/samdark/yiifeed/issues/5#issuecomment-68488506","issue_url":"https://api.github.com/repos/samdark/yiifeed/issues/5","id":68488506,"user":{"login":"cebe","id":189796,"avatar_url":"https://avatars.githubusercontent.com/u/189796?v=3","gravatar_id":"","url":"https://api.github.com/users/cebe","html_url":"https://github.com/cebe","followers_url":"https://api.github.com/users/cebe/followers","following_url":"https://api.github.com/users/cebe/following{/other_user}","gists_url":"https://api.github.com/users/cebe/gists{/gist_id}","starred_url":"https://api.github.com/users/cebe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cebe/subscriptions","organizations_url":"https://api.github.com/users/cebe/orgs","repos_url":"https://api.github.com/users/cebe/repos","events_url":"https://api.github.com/users/cebe/events{/privacy}","received_events_url":"https://api.github.com/users/cebe/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:46Z","updated_at":"2015-01-01T15:00:46Z","body":"it is working now."}},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651456","type":"IssueCommentEvent","actor":{"id":4566,"login":"nathany","gravatar_id":"","url":"https://api.github.com/users/nathany","avatar_url":"https://avatars.githubusercontent.com/u/4566?"},"repo":{"id":11180687,"name":"spf13/hugo","url":"https://api.github.com/repos/spf13/hugo"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/spf13/hugo/issues/758","labels_url":"https://api.github.com/repos/spf13/hugo/issues/758/labels{/name}","comments_url":"https://api.github.com/repos/spf13/hugo/issues/758/comments","events_url":"https://api.github.com/repos/spf13/hugo/issues/758/events","html_url":"https://github.com/spf13/hugo/issues/758","id":53213403,"number":758,"title":"https protocol used with localhost","user":{"login":"nathany","id":4566,"avatar_url":"https://avatars.githubusercontent.com/u/4566?v=3","gravatar_id":"","url":"https://api.github.com/users/nathany","html_url":"https://github.com/nathany","followers_url":"https://api.github.com/users/nathany/followers","following_url":"https://api.github.com/users/nathany/following{/other_user}","gists_url":"https://api.github.com/users/nathany/gists{/gist_id}","starred_url":"https://api.github.com/users/nathany/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nathany/subscriptions","organizations_url":"https://api.github.com/users/nathany/orgs","repos_url":"https://api.github.com/users/nathany/repos","events_url":"https://api.github.com/users/nathany/events{/privacy}","received_events_url":"https://api.github.com/users/nathany/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2015-01-01T05:32:39Z","updated_at":"2015-01-01T15:00:45Z","closed_at":null,"body":"As @andrelima [mentioned here](https://github.com/spf13/hugo/issues/544#issuecomment-58817004):\r\n\r\n`{{ .Site.BaseUrl }}` results in `https://localhost:1313/` if the baseurl defined in config uses https.\r\n\r\nIn this case it probably makes sense to override the protocol to http along with the host.\r\n\r\nA work around (in some cases) is just to use relative paths instead of `{{ .Site.BaseUrl }}`.\r\n\r\nI just upgraded hugo to latest (fb1b795d59b3c6d5d74df3a69b4026574b6dd5fa) and this issue remains."},"comment":{"url":"https://api.github.com/repos/spf13/hugo/issues/comments/68488505","html_url":"https://github.com/spf13/hugo/issues/758#issuecomment-68488505","issue_url":"https://api.github.com/repos/spf13/hugo/issues/758","id":68488505,"user":{"login":"nathany","id":4566,"avatar_url":"https://avatars.githubusercontent.com/u/4566?v=3","gravatar_id":"","url":"https://api.github.com/users/nathany","html_url":"https://github.com/nathany","followers_url":"https://api.github.com/users/nathany/followers","following_url":"https://api.github.com/users/nathany/following{/other_user}","gists_url":"https://api.github.com/users/nathany/gists{/gist_id}","starred_url":"https://api.github.com/users/nathany/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nathany/subscriptions","organizations_url":"https://api.github.com/users/nathany/orgs","repos_url":"https://api.github.com/users/nathany/repos","events_url":"https://api.github.com/users/nathany/events{/privacy}","received_events_url":"https://api.github.com/users/nathany/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:45Z","updated_at":"2015-01-01T15:00:45Z","body":"I can write up a patch and see what happens.\r\n\r\nPersonally I don't see any reason to run the Hugo server securely during development. There's hardly any reason to run a static site securely in production. Perhaps the occasional mailing list signup, maybe a bit of PageRank, and to prevent ISP-injected garbage. Mostly I'd just like more of the web to be secure, so I'm trying to set a good example. :grinning: \r\n\r\n@dsimmons Interesting setup. I contemplated CloudFlare but didn't really want to change my DNS provider. I've been using S3 as an website origin (which doesn't support HTTPS) with CloudFront and a custom cert. I'm not entirely in love with the setup, mainly cache invalidation.\r\n"}},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651460","type":"CreateEvent","actor":{"id":6561166,"login":"PLMbugz","gravatar_id":"","url":"https://api.github.com/users/PLMbugz","avatar_url":"https://avatars.githubusercontent.com/u/6561166?"},"repo":{"id":22066165,"name":"mquinson/PLM-data","url":"https://api.github.com/repos/mquinson/PLM-data"},"payload":{"ref":"PLM88a35b5297c85b6812de5d1f0ba423a5a0bb790b","ref_type":"branch","master_branch":"master","description":"Anonymous code uploaded by the PLM clients","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651461","type":"PushEvent","actor":{"id":424724,"login":"dezelin","gravatar_id":"","url":"https://api.github.com/users/dezelin","avatar_url":"https://avatars.githubusercontent.com/u/424724?"},"repo":{"id":28683833,"name":"dezelin/Timetable","url":"https://api.github.com/repos/dezelin/Timetable"},"payload":{"push_id":536864173,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad","before":"e66aab97a3671d748d2b233dffb6c01c64d407b9","commits":[{"sha":"6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad","author":{"email":"9576f8760ba70773cbd6b2f7999c3b70fa9040cb@gmail.com","name":"Aleksandar Dezelin"},"message":"Skip connectedCheck for glass project. Fix in .travis.yml.\n    There is no Glass emulator currently available.","distinct":true,"url":"https://api.github.com/repos/dezelin/Timetable/commits/6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad"}]},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651462","type":"CreateEvent","actor":{"id":5462203,"login":"StartEnd","gravatar_id":"","url":"https://api.github.com/users/StartEnd","avatar_url":"https://avatars.githubusercontent.com/u/5462203?"},"repo":{"id":28688609,"name":"StartEnd/codeDemo","url":"https://api.github.com/repos/StartEnd/codeDemo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"记录每日练习代码","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:48Z"}
,{"id":"2489651473","type":"PushEvent","actor":{"id":1144873,"login":"greysteil","gravatar_id":"","url":"https://api.github.com/users/greysteil","avatar_url":"https://avatars.githubusercontent.com/u/1144873?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"push_id":536864176,"size":1,"distinct_size":1,"ref":"refs/heads/check-adapter-supported","head":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","before":"cdb41f8d903287ad56248d408ead0e10f1cb44cd","commits":[{"sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Check adapter is supported","distinct":true,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"}]},"public":true,"created_at":"2015-01-01T15:00:48Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489651475","type":"PushEvent","actor":{"id":3990482,"login":"rosbuild","gravatar_id":"","url":"https://api.github.com/users/rosbuild","avatar_url":"https://avatars.githubusercontent.com/u/3990482?"},"repo":{"id":14125815,"name":"osrf/www.ros.org","url":"https://api.github.com/repos/osrf/www.ros.org"},"payload":{"push_id":536864177,"size":1,"distinct_size":1,"ref":"refs/heads/wordpressdb","head":"5774257a65c086d139fc58c74e79871b809d258a","before":"5b9f67b956bdbacbcaebba94d09df5cd2513c7f8","commits":[{"sha":"5774257a65c086d139fc58c74e79871b809d258a","author":{"email":"c2678b3531040209f84244ce8534556c3494c8b3@osrfoundation.org","name":"Your Name"},"message":"automatic db update","distinct":true,"url":"https://api.github.com/repos/osrf/www.ros.org/commits/5774257a65c086d139fc58c74e79871b809d258a"}]},"public":true,"created_at":"2015-01-01T15:00:48Z","org":{"id":3999730,"login":"osrf","gravatar_id":"","url":"https://api.github.com/orgs/osrf","avatar_url":"https://avatars.githubusercontent.com/u/3999730?"}}
,{"id":"2489651476","type":"PushEvent","actor":{"id":2713846,"login":"Valicek1","gravatar_id":"","url":"https://api.github.com/users/Valicek1","avatar_url":"https://avatars.githubusercontent.com/u/2713846?"},"repo":{"id":28660348,"name":"fpc-svn/lazarus","url":"https://api.github.com/repos/fpc-svn/lazarus"},"payload":{"push_id":536864178,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"91fb02e5a875f4d7f72fede16a165cf528c7ef6a","before":"5276743d3c97ce0428438eef95cffba39357d00b","commits":[{"sha":"91fb02e5a875f4d7f72fede16a165cf528c7ef6a","author":{"email":"9e2282b90ff89d0d1e4630c2f585c6220d1db1bc@4005530d-fff6-0310-9dd1-cebe43e6787f","name":"joost"},"message":"fpmake: Search in all available packages for packages with the LazarusDsgnPkg flag. Include those packages in the ide using staticpackages.inc\n\ngit-svn-id: http://svn.freepascal.org/svn/lazarus/trunk@47277 4005530d-fff6-0310-9dd1-cebe43e6787f","distinct":true,"url":"https://api.github.com/repos/fpc-svn/lazarus/commits/91fb02e5a875f4d7f72fede16a165cf528c7ef6a"}]},"public":true,"created_at":"2015-01-01T15:00:48Z","org":{"id":7508884,"login":"fpc-svn","gravatar_id":"","url":"https://api.github.com/orgs/fpc-svn","avatar_url":"https://avatars.githubusercontent.com/u/7508884?"}}
,{"id":"2489651482","type":"PushEvent","actor":{"id":7102537,"login":"wrldwzrd89","gravatar_id":"","url":"https://api.github.com/users/wrldwzrd89","avatar_url":"https://avatars.githubusercontent.com/u/7102537?"},"repo":{"id":28007183,"name":"wrldwzrd89/mazer-5d","url":"https://api.github.com/repos/wrldwzrd89/mazer-5d"},"payload":{"push_id":536864181,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"79e215369b1374d0bd17f8d7b2308930c171b7d6","before":"579df4ee4becc50ca022bdcbdafdd723e2d8b670","commits":[{"sha":"79e215369b1374d0bd17f8d7b2308930c171b7d6","author":{"email":"553d5f2f16f33fec8f737e36baaed09e6262e5ef@puttysoftware.com","name":"wrldwzrd89"},"message":"Support paint mode in the editor.","distinct":true,"url":"https://api.github.com/repos/wrldwzrd89/mazer-5d/commits/79e215369b1374d0bd17f8d7b2308930c171b7d6"}]},"public":true,"created_at":"2015-01-01T15:00:49Z"}
,{"id":"2489651483","type":"PullRequestReviewCommentEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/mevlan/script/pulls/comments/22400085","id":22400085,"diff_hunk":"@@ -7,3 +7,6 @@\n print '2015'\n def newFunc():\n \tpass\n+","path":"loop.py","position":4,"original_position":4,"commit_id":"fecf568375c53fd0bf03eb4e81c821214077f41c","original_commit_id":"fecf568375c53fd0bf03eb4e81c821214077f41c","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"remove white space","created_at":"2015-01-01T15:00:49Z","updated_at":"2015-01-01T15:00:49Z","html_url":"https://github.com/mevlan/script/pull/3#discussion_r22400085","pull_request_url":"https://api.github.com/repos/mevlan/script/pulls/3","_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/22400085"},"html":{"href":"https://github.com/mevlan/script/pull/3#discussion_r22400085"},"pull_request":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"}}},"pull_request":{"url":"https://api.github.com/repos/mevlan/script/pulls/3","id":26743766,"html_url":"https://github.com/mevlan/script/pull/3","diff_url":"https://github.com/mevlan/script/pull/3.diff","patch_url":"https://github.com/mevlan/script/pull/3.patch","issue_url":"https://api.github.com/repos/mevlan/script/issues/3","number":3,"state":"open","locked":false,"title":"final function","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:07Z","updated_at":"2015-01-01T15:00:49Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4833038a845b112cd85cb3ee029c6f8ee4cda756","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mevlan/script/pulls/3/commits","review_comments_url":"https://api.github.com/repos/mevlan/script/pulls/3/comments","review_comment_url":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mevlan/script/issues/3/comments","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c","head":{"label":"mevlan:final","ref":"final","sha":"fecf568375c53fd0bf03eb4e81c821214077f41c","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"mevlan:master","ref":"master","sha":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"},"html":{"href":"https://github.com/mevlan/script/pull/3"},"issue":{"href":"https://api.github.com/repos/mevlan/script/issues/3"},"comments":{"href":"https://api.github.com/repos/mevlan/script/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c"}}}},"public":true,"created_at":"2015-01-01T15:00:49Z"}
,{"id":"2489651489","type":"IssueCommentEvent","actor":{"id":31021,"login":"grawity","gravatar_id":"","url":"https://api.github.com/users/grawity","avatar_url":"https://avatars.githubusercontent.com/u/31021?"},"repo":{"id":4342947,"name":"atheme/charybdis","url":"https://api.github.com/repos/atheme/charybdis"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/atheme/charybdis/issues/76","labels_url":"https://api.github.com/repos/atheme/charybdis/issues/76/labels{/name}","comments_url":"https://api.github.com/repos/atheme/charybdis/issues/76/comments","events_url":"https://api.github.com/repos/atheme/charybdis/issues/76/events","html_url":"https://github.com/atheme/charybdis/issues/76","id":53218762,"number":76,"title":"./configure working directory can't be determined","user":{"login":"xnite","id":5316187,"avatar_url":"https://avatars.githubusercontent.com/u/5316187?v=3","gravatar_id":"","url":"https://api.github.com/users/xnite","html_url":"https://github.com/xnite","followers_url":"https://api.github.com/users/xnite/followers","following_url":"https://api.github.com/users/xnite/following{/other_user}","gists_url":"https://api.github.com/users/xnite/gists{/gist_id}","starred_url":"https://api.github.com/users/xnite/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xnite/subscriptions","organizations_url":"https://api.github.com/users/xnite/orgs","repos_url":"https://api.github.com/users/xnite/repos","events_url":"https://api.github.com/users/xnite/events{/privacy}","received_events_url":"https://api.github.com/users/xnite/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T12:25:41Z","updated_at":"2015-01-01T15:00:50Z","closed_at":null,"body":"Getting this error on ./configure, I've never seen this before, and I'm not sure what to do. The machine is running latest Debian, same configuration as any other machine we have added to our network, so I'm not sure what might have changed to cause this on this machine in comparison with any other machine.\r\n\r\n$ ./configure\r\nconfigure: error: working directory cannot be determined"},"comment":{"url":"https://api.github.com/repos/atheme/charybdis/issues/comments/68488508","html_url":"https://github.com/atheme/charybdis/issues/76#issuecomment-68488508","issue_url":"https://api.github.com/repos/atheme/charybdis/issues/76","id":68488508,"user":{"login":"grawity","id":31021,"avatar_url":"https://avatars.githubusercontent.com/u/31021?v=3","gravatar_id":"","url":"https://api.github.com/users/grawity","html_url":"https://github.com/grawity","followers_url":"https://api.github.com/users/grawity/followers","following_url":"https://api.github.com/users/grawity/following{/other_user}","gists_url":"https://api.github.com/users/grawity/gists{/gist_id}","starred_url":"https://api.github.com/users/grawity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/grawity/subscriptions","organizations_url":"https://api.github.com/users/grawity/orgs","repos_url":"https://api.github.com/users/grawity/repos","events_url":"https://api.github.com/users/grawity/events{/privacy}","received_events_url":"https://api.github.com/users/grawity/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:50Z","updated_at":"2015-01-01T15:00:50Z","body":"Make sure `pwd`, `cd \"$(pwd)\"`, `ls -di .` report correct results."}},"public":true,"created_at":"2015-01-01T15:00:51Z","org":{"id":941247,"login":"atheme","gravatar_id":"","url":"https://api.github.com/orgs/atheme","avatar_url":"https://avatars.githubusercontent.com/u/941247?"}}
,{"id":"2489651491","type":"PushEvent","actor":{"id":1679649,"login":"daviddenton","gravatar_id":"","url":"https://api.github.com/users/daviddenton","avatar_url":"https://avatars.githubusercontent.com/u/1679649?"},"repo":{"id":28445638,"name":"daviddenton/memebot","url":"https://api.github.com/repos/daviddenton/memebot"},"payload":{"push_id":536864183,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8306d6db56d3752bd85869942cf1d535ad8928e1","before":"99ccb3a84a6c1971cc5b79a576db3186ae9ed011","commits":[{"sha":"8306d6db56d3752bd85869942cf1d535ad8928e1","author":{"email":"dab893115685411e6ac198584f3dcfaecbea5c07@springer.com","name":"david denton"},"message":"dave - added mappings","distinct":true,"url":"https://api.github.com/repos/daviddenton/memebot/commits/8306d6db56d3752bd85869942cf1d535ad8928e1"}]},"public":true,"created_at":"2015-01-01T15:00:51Z"}
,{"id":"2489651493","type":"PushEvent","actor":{"id":1606069,"login":"CatTail","gravatar_id":"","url":"https://api.github.com/users/CatTail","avatar_url":"https://avatars.githubusercontent.com/u/1606069?"},"repo":{"id":25470653,"name":"CatTail/cattail.github.io","url":"https://api.github.com/repos/CatTail/cattail.github.io"},"payload":{"push_id":536864184,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f80c62a8e497bf7585258209df1f1ee986480321","before":"fa66e4532edab54df74b9cfc54ce367e5e87af04","commits":[{"sha":"251f82daa914ba46e40d65df72aae20994f05c1c","author":{"email":"ec16b02d20102ec999494fba92685951cd710529@gmail.com","name":"zhongchiyu"},"message":"Remove useless disqus comment","distinct":true,"url":"https://api.github.com/repos/CatTail/cattail.github.io/commits/251f82daa914ba46e40d65df72aae20994f05c1c"},{"sha":"f80c62a8e497bf7585258209df1f1ee986480321","author":{"email":"ec16b02d20102ec999494fba92685951cd710529@gmail.com","name":"zhongchiyu"},"message":"Merge branch 'master' of github.com:CatTail/cattail.github.io","distinct":true,"url":"https://api.github.com/repos/CatTail/cattail.github.io/commits/f80c62a8e497bf7585258209df1f1ee986480321"}]},"public":true,"created_at":"2015-01-01T15:00:51Z"}
,{"id":"2489651494","type":"CreateEvent","actor":{"id":5869219,"login":"dacenter","gravatar_id":"","url":"https://api.github.com/users/dacenter","avatar_url":"https://avatars.githubusercontent.com/u/5869219?"},"repo":{"id":28688611,"name":"Realcraft/Realcraft","url":"https://api.github.com/repos/Realcraft/Realcraft"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Мод, который добавляет в игру максимум реалистичности","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:51Z","org":{"id":10364754,"login":"Realcraft","gravatar_id":"","url":"https://api.github.com/orgs/Realcraft","avatar_url":"https://avatars.githubusercontent.com/u/10364754?"}}
,{"id":"2489651497","type":"PullRequestReviewCommentEvent","actor":{"id":406283,"login":"lennart0901","gravatar_id":"","url":"https://api.github.com/users/lennart0901","avatar_url":"https://avatars.githubusercontent.com/u/406283?"},"repo":{"id":1385122,"name":"matplotlib/matplotlib","url":"https://api.github.com/repos/matplotlib/matplotlib"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/22400088","id":22400088,"diff_hunk":"@@ -557,6 +557,9 @@ def draw(self, renderer):\n         self._set_gc_clip(gc)\n \n         if self._bbox:\n+            self._bbox.update(dict(clip_box=self.clipbox,","path":"lib/matplotlib/text.py","position":4,"original_position":4,"commit_id":"572bc04ef501e7921c66402fa420fde838310528","original_commit_id":"572bc04ef501e7921c66402fa420fde838310528","user":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"body":"What about making the combined dict a local variable, like\r\n\r\n```\r\nbbox_params = dict(self._bbox, clip_box=self.clipbox, ...\r\n```\r\n\r\nI'm somehow against syncing some state, that is internal and exactly determined by some other state.","created_at":"2015-01-01T15:00:51Z","updated_at":"2015-01-01T15:00:51Z","html_url":"https://github.com/matplotlib/matplotlib/pull/3676#discussion_r22400088","pull_request_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676","_links":{"self":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/22400088"},"html":{"href":"https://github.com/matplotlib/matplotlib/pull/3676#discussion_r22400088"},"pull_request":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676"}}},"pull_request":{"url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676","id":22979986,"html_url":"https://github.com/matplotlib/matplotlib/pull/3676","diff_url":"https://github.com/matplotlib/matplotlib/pull/3676.diff","patch_url":"https://github.com/matplotlib/matplotlib/pull/3676.patch","issue_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676","number":3676,"state":"open","locked":false,"title":"Fix #3647 [backport to 1.4.x]","user":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"body":"This fixes #3647, for me on the tkagg backend.\r\nWhat still is strange is that the bug does not occur for e.g. cairo backend.","created_at":"2014-10-19T12:16:56Z","updated_at":"2015-01-01T15:00:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":"a914a6d015868604032eaeb06884e75eb73089d4","assignee":null,"milestone":{"url":"https://api.github.com/repos/matplotlib/matplotlib/milestones/17","labels_url":"https://api.github.com/repos/matplotlib/matplotlib/milestones/17/labels","id":830260,"number":17,"title":"v1.4.3","description":"Scheduled bug-fix release.","creator":{"login":"tacaswell","id":199813,"avatar_url":"https://avatars.githubusercontent.com/u/199813?v=3","gravatar_id":"","url":"https://api.github.com/users/tacaswell","html_url":"https://github.com/tacaswell","followers_url":"https://api.github.com/users/tacaswell/followers","following_url":"https://api.github.com/users/tacaswell/following{/other_user}","gists_url":"https://api.github.com/users/tacaswell/gists{/gist_id}","starred_url":"https://api.github.com/users/tacaswell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tacaswell/subscriptions","organizations_url":"https://api.github.com/users/tacaswell/orgs","repos_url":"https://api.github.com/users/tacaswell/repos","events_url":"https://api.github.com/users/tacaswell/events{/privacy}","received_events_url":"https://api.github.com/users/tacaswell/received_events","type":"User","site_admin":false},"open_issues":24,"closed_issues":51,"state":"open","created_at":"2014-10-17T13:41:23Z","updated_at":"2015-01-01T03:52:08Z","due_on":"2015-02-01T08:00:00Z","closed_at":null},"commits_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/commits","review_comments_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/comments","review_comment_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/{number}","comments_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676/comments","statuses_url":"https://api.github.com/repos/matplotlib/matplotlib/statuses/572bc04ef501e7921c66402fa420fde838310528","head":{"label":"lennart0901:fix_3647","ref":"fix_3647","sha":"572bc04ef501e7921c66402fa420fde838310528","user":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"repo":{"id":21864883,"name":"matplotlib","full_name":"lennart0901/matplotlib","owner":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lennart0901/matplotlib","description":"matplotlib: plotting with Python","fork":true,"url":"https://api.github.com/repos/lennart0901/matplotlib","forks_url":"https://api.github.com/repos/lennart0901/matplotlib/forks","keys_url":"https://api.github.com/repos/lennart0901/matplotlib/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lennart0901/matplotlib/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lennart0901/matplotlib/teams","hooks_url":"https://api.github.com/repos/lennart0901/matplotlib/hooks","issue_events_url":"https://api.github.com/repos/lennart0901/matplotlib/issues/events{/number}","events_url":"https://api.github.com/repos/lennart0901/matplotlib/events","assignees_url":"https://api.github.com/repos/lennart0901/matplotlib/assignees{/user}","branches_url":"https://api.github.com/repos/lennart0901/matplotlib/branches{/branch}","tags_url":"https://api.github.com/repos/lennart0901/matplotlib/tags","blobs_url":"https://api.github.com/repos/lennart0901/matplotlib/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lennart0901/matplotlib/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lennart0901/matplotlib/git/refs{/sha}","trees_url":"https://api.github.com/repos/lennart0901/matplotlib/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lennart0901/matplotlib/statuses/{sha}","languages_url":"https://api.github.com/repos/lennart0901/matplotlib/languages","stargazers_url":"https://api.github.com/repos/lennart0901/matplotlib/stargazers","contributors_url":"https://api.github.com/repos/lennart0901/matplotlib/contributors","subscribers_url":"https://api.github.com/repos/lennart0901/matplotlib/subscribers","subscription_url":"https://api.github.com/repos/lennart0901/matplotlib/subscription","commits_url":"https://api.github.com/repos/lennart0901/matplotlib/commits{/sha}","git_commits_url":"https://api.github.com/repos/lennart0901/matplotlib/git/commits{/sha}","comments_url":"https://api.github.com/repos/lennart0901/matplotlib/comments{/number}","issue_comment_url":"https://api.github.com/repos/lennart0901/matplotlib/issues/comments/{number}","contents_url":"https://api.github.com/repos/lennart0901/matplotlib/contents/{+path}","compare_url":"https://api.github.com/repos/lennart0901/matplotlib/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lennart0901/matplotlib/merges","archive_url":"https://api.github.com/repos/lennart0901/matplotlib/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lennart0901/matplotlib/downloads","issues_url":"https://api.github.com/repos/lennart0901/matplotlib/issues{/number}","pulls_url":"https://api.github.com/repos/lennart0901/matplotlib/pulls{/number}","milestones_url":"https://api.github.com/repos/lennart0901/matplotlib/milestones{/number}","notifications_url":"https://api.github.com/repos/lennart0901/matplotlib/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lennart0901/matplotlib/labels{/name}","releases_url":"https://api.github.com/repos/lennart0901/matplotlib/releases{/id}","created_at":"2014-07-15T15:19:40Z","updated_at":"2014-11-28T15:25:52Z","pushed_at":"2014-11-28T15:30:49Z","git_url":"git://github.com/lennart0901/matplotlib.git","ssh_url":"git@github.com:lennart0901/matplotlib.git","clone_url":"https://github.com/lennart0901/matplotlib.git","svn_url":"https://github.com/lennart0901/matplotlib","homepage":"http://matplotlib.org/","size":199316,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"matplotlib:master","ref":"master","sha":"5b398e95454ba9cc6dfad866ff7bc22b41ad7a68","user":{"login":"matplotlib","id":215947,"avatar_url":"https://avatars.githubusercontent.com/u/215947?v=3","gravatar_id":"","url":"https://api.github.com/users/matplotlib","html_url":"https://github.com/matplotlib","followers_url":"https://api.github.com/users/matplotlib/followers","following_url":"https://api.github.com/users/matplotlib/following{/other_user}","gists_url":"https://api.github.com/users/matplotlib/gists{/gist_id}","starred_url":"https://api.github.com/users/matplotlib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matplotlib/subscriptions","organizations_url":"https://api.github.com/users/matplotlib/orgs","repos_url":"https://api.github.com/users/matplotlib/repos","events_url":"https://api.github.com/users/matplotlib/events{/privacy}","received_events_url":"https://api.github.com/users/matplotlib/received_events","type":"Organization","site_admin":false},"repo":{"id":1385122,"name":"matplotlib","full_name":"matplotlib/matplotlib","owner":{"login":"matplotlib","id":215947,"avatar_url":"https://avatars.githubusercontent.com/u/215947?v=3","gravatar_id":"","url":"https://api.github.com/users/matplotlib","html_url":"https://github.com/matplotlib","followers_url":"https://api.github.com/users/matplotlib/followers","following_url":"https://api.github.com/users/matplotlib/following{/other_user}","gists_url":"https://api.github.com/users/matplotlib/gists{/gist_id}","starred_url":"https://api.github.com/users/matplotlib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matplotlib/subscriptions","organizations_url":"https://api.github.com/users/matplotlib/orgs","repos_url":"https://api.github.com/users/matplotlib/repos","events_url":"https://api.github.com/users/matplotlib/events{/privacy}","received_events_url":"https://api.github.com/users/matplotlib/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/matplotlib/matplotlib","description":"matplotlib: plotting with Python","fork":false,"url":"https://api.github.com/repos/matplotlib/matplotlib","forks_url":"https://api.github.com/repos/matplotlib/matplotlib/forks","keys_url":"https://api.github.com/repos/matplotlib/matplotlib/keys{/key_id}","collaborators_url":"https://api.github.com/repos/matplotlib/matplotlib/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/matplotlib/matplotlib/teams","hooks_url":"https://api.github.com/repos/matplotlib/matplotlib/hooks","issue_events_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/events{/number}","events_url":"https://api.github.com/repos/matplotlib/matplotlib/events","assignees_url":"https://api.github.com/repos/matplotlib/matplotlib/assignees{/user}","branches_url":"https://api.github.com/repos/matplotlib/matplotlib/branches{/branch}","tags_url":"https://api.github.com/repos/matplotlib/matplotlib/tags","blobs_url":"https://api.github.com/repos/matplotlib/matplotlib/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/matplotlib/matplotlib/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/matplotlib/matplotlib/git/refs{/sha}","trees_url":"https://api.github.com/repos/matplotlib/matplotlib/git/trees{/sha}","statuses_url":"https://api.github.com/repos/matplotlib/matplotlib/statuses/{sha}","languages_url":"https://api.github.com/repos/matplotlib/matplotlib/languages","stargazers_url":"https://api.github.com/repos/matplotlib/matplotlib/stargazers","contributors_url":"https://api.github.com/repos/matplotlib/matplotlib/contributors","subscribers_url":"https://api.github.com/repos/matplotlib/matplotlib/subscribers","subscription_url":"https://api.github.com/repos/matplotlib/matplotlib/subscription","commits_url":"https://api.github.com/repos/matplotlib/matplotlib/commits{/sha}","git_commits_url":"https://api.github.com/repos/matplotlib/matplotlib/git/commits{/sha}","comments_url":"https://api.github.com/repos/matplotlib/matplotlib/comments{/number}","issue_comment_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/comments/{number}","contents_url":"https://api.github.com/repos/matplotlib/matplotlib/contents/{+path}","compare_url":"https://api.github.com/repos/matplotlib/matplotlib/compare/{base}...{head}","merges_url":"https://api.github.com/repos/matplotlib/matplotlib/merges","archive_url":"https://api.github.com/repos/matplotlib/matplotlib/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/matplotlib/matplotlib/downloads","issues_url":"https://api.github.com/repos/matplotlib/matplotlib/issues{/number}","pulls_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls{/number}","milestones_url":"https://api.github.com/repos/matplotlib/matplotlib/milestones{/number}","notifications_url":"https://api.github.com/repos/matplotlib/matplotlib/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/matplotlib/matplotlib/labels{/name}","releases_url":"https://api.github.com/repos/matplotlib/matplotlib/releases{/id}","created_at":"2011-02-19T03:17:12Z","updated_at":"2015-01-01T04:46:04Z","pushed_at":"2015-01-01T03:50:39Z","git_url":"git://github.com/matplotlib/matplotlib.git","ssh_url":"git@github.com:matplotlib/matplotlib.git","clone_url":"https://github.com/matplotlib/matplotlib.git","svn_url":"https://github.com/matplotlib/matplotlib","homepage":"http://matplotlib.org/","size":249595,"stargazers_count":2133,"watchers_count":2133,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1042,"mirror_url":null,"open_issues_count":440,"forks":1042,"open_issues":440,"watchers":2133,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676"},"html":{"href":"https://github.com/matplotlib/matplotlib/pull/3676"},"issue":{"href":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676"},"comments":{"href":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676/comments"},"review_comments":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/comments"},"review_comment":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/commits"},"statuses":{"href":"https://api.github.com/repos/matplotlib/matplotlib/statuses/572bc04ef501e7921c66402fa420fde838310528"}}}},"public":true,"created_at":"2015-01-01T15:00:51Z","org":{"id":215947,"login":"matplotlib","gravatar_id":"","url":"https://api.github.com/orgs/matplotlib","avatar_url":"https://avatars.githubusercontent.com/u/215947?"}}
,{"id":"2489651498","type":"PushEvent","actor":{"id":546831,"login":"hanjos","gravatar_id":"","url":"https://api.github.com/users/hanjos","avatar_url":"https://avatars.githubusercontent.com/u/546831?"},"repo":{"id":27872255,"name":"hanjos/nexus","url":"https://api.github.com/repos/hanjos/nexus"},"payload":{"push_id":536864186,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"966a8f76647a530053e7bc8c34bb4be23ec6b438","before":"7ab63e4fc3f8eaf3bea9203e62069d5b424bbb7b","commits":[{"sha":"5400395118bfba87cdd574236e099f2ced7912ff","author":{"email":"a6a0ed2b2b61e4de3362b6eef0d4c791b55c2ae4@acm.org","name":"Humberto Anjos"},"message":"Fixing some comments and String()s.","distinct":true,"url":"https://api.github.com/repos/hanjos/nexus/commits/5400395118bfba87cdd574236e099f2ced7912ff"},{"sha":"966a8f76647a530053e7bc8c34bb4be23ec6b438","author":{"email":"a6a0ed2b2b61e4de3362b6eef0d4c791b55c2ae4@acm.org","name":"Humberto Anjos"},"message":"Removing DefaultFileName().","distinct":true,"url":"https://api.github.com/repos/hanjos/nexus/commits/966a8f76647a530053e7bc8c34bb4be23ec6b438"}]},"public":true,"created_at":"2015-01-01T15:00:52Z"}
,{"id":"2489651500","type":"PushEvent","actor":{"id":342183,"login":"Randati","gravatar_id":"","url":"https://api.github.com/users/Randati","avatar_url":"https://avatars.githubusercontent.com/u/342183?"},"repo":{"id":28309001,"name":"Randati/cjdrs","url":"https://api.github.com/repos/Randati/cjdrs"},"payload":{"push_id":536864189,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e7d20130646f7d4b2e241e3cf5780531319b4adf","before":"dc8d3526c6ccc0cf557418047a2c0b041d569847","commits":[{"sha":"e7d20130646f7d4b2e241e3cf5780531319b4adf","author":{"email":"6506045a2a0a9fbd6ed3f2c6493f339164053041@aalto.fi","name":"Vanhala Antti"},"message":"Configurable tun device and udp bind","distinct":true,"url":"https://api.github.com/repos/Randati/cjdrs/commits/e7d20130646f7d4b2e241e3cf5780531319b4adf"}]},"public":true,"created_at":"2015-01-01T15:00:52Z"}
,{"id":"2489651502","type":"PushEvent","actor":{"id":928957,"login":"EricSchles","gravatar_id":"","url":"https://api.github.com/users/EricSchles","avatar_url":"https://avatars.githubusercontent.com/u/928957?"},"repo":{"id":28687489,"name":"EricSchles/typecheck","url":"https://api.github.com/repos/EricSchles/typecheck"},"payload":{"push_id":536864190,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef1a32ff62e8f166bd70754eed656177d16e03ed","before":"90bcfde4601cb4d6003653720bdaec6e27fc9e6f","commits":[{"sha":"ef1a32ff62e8f166bd70754eed656177d16e03ed","author":{"email":"a964ada144256419b1dd7e3f8a6b4fc60c5e9024@gmail.com","name":"EricSchles"},"message":"java is just annoying","distinct":true,"url":"https://api.github.com/repos/EricSchles/typecheck/commits/ef1a32ff62e8f166bd70754eed656177d16e03ed"}]},"public":true,"created_at":"2015-01-01T15:00:52Z"}
,{"id":"2489651504","type":"PullRequestEvent","actor":{"id":1793469,"login":"tan-tan-kanarek","gravatar_id":"","url":"https://api.github.com/users/tan-tan-kanarek","avatar_url":"https://avatars.githubusercontent.com/u/1793469?"},"repo":{"id":15510138,"name":"kaltura/platform-install-packages","url":"https://api.github.com/repos/kaltura/platform-install-packages"},"payload":{"action":"opened","number":312,"pull_request":{"url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312","id":26743774,"html_url":"https://github.com/kaltura/platform-install-packages/pull/312","diff_url":"https://github.com/kaltura/platform-install-packages/pull/312.diff","patch_url":"https://github.com/kaltura/platform-install-packages/pull/312.patch","issue_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312","number":312,"state":"open","locked":false,"title":"Buold and package monit","user":{"login":"tan-tan-kanarek","id":1793469,"avatar_url":"https://avatars.githubusercontent.com/u/1793469?v=3","gravatar_id":"","url":"https://api.github.com/users/tan-tan-kanarek","html_url":"https://github.com/tan-tan-kanarek","followers_url":"https://api.github.com/users/tan-tan-kanarek/followers","following_url":"https://api.github.com/users/tan-tan-kanarek/following{/other_user}","gists_url":"https://api.github.com/users/tan-tan-kanarek/gists{/gist_id}","starred_url":"https://api.github.com/users/tan-tan-kanarek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tan-tan-kanarek/subscriptions","organizations_url":"https://api.github.com/users/tan-tan-kanarek/orgs","repos_url":"https://api.github.com/users/tan-tan-kanarek/repos","events_url":"https://api.github.com/users/tan-tan-kanarek/events{/privacy}","received_events_url":"https://api.github.com/users/tan-tan-kanarek/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:52Z","updated_at":"2015-01-01T15:00:52Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/commits","review_comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/comments","review_comment_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/comments/{number}","comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312/comments","statuses_url":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/d01dff1c653fbd9f97973c77bf85c9409fda3ea2","head":{"label":"kaltura:Jupiter-10.2.0-monit","ref":"Jupiter-10.2.0-monit","sha":"d01dff1c653fbd9f97973c77bf85c9409fda3ea2","user":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"repo":{"id":15510138,"name":"platform-install-packages","full_name":"kaltura/platform-install-packages","owner":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/kaltura/platform-install-packages","description":"Official deployment packages to install the Kaltura platform on a server or cluster environments using native OS package managers","fork":false,"url":"https://api.github.com/repos/kaltura/platform-install-packages","forks_url":"https://api.github.com/repos/kaltura/platform-install-packages/forks","keys_url":"https://api.github.com/repos/kaltura/platform-install-packages/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kaltura/platform-install-packages/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kaltura/platform-install-packages/teams","hooks_url":"https://api.github.com/repos/kaltura/platform-install-packages/hooks","issue_events_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/events{/number}","events_url":"https://api.github.com/repos/kaltura/platform-install-packages/events","assignees_url":"https://api.github.com/repos/kaltura/platform-install-packages/assignees{/user}","branches_url":"https://api.github.com/repos/kaltura/platform-install-packages/branches{/branch}","tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/tags","blobs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/refs{/sha}","trees_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/{sha}","languages_url":"https://api.github.com/repos/kaltura/platform-install-packages/languages","stargazers_url":"https://api.github.com/repos/kaltura/platform-install-packages/stargazers","contributors_url":"https://api.github.com/repos/kaltura/platform-install-packages/contributors","subscribers_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscribers","subscription_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscription","commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/commits{/sha}","git_commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/commits{/sha}","comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/comments{/number}","issue_comment_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/comments/{number}","contents_url":"https://api.github.com/repos/kaltura/platform-install-packages/contents/{+path}","compare_url":"https://api.github.com/repos/kaltura/platform-install-packages/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kaltura/platform-install-packages/merges","archive_url":"https://api.github.com/repos/kaltura/platform-install-packages/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kaltura/platform-install-packages/downloads","issues_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues{/number}","pulls_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls{/number}","milestones_url":"https://api.github.com/repos/kaltura/platform-install-packages/milestones{/number}","notifications_url":"https://api.github.com/repos/kaltura/platform-install-packages/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kaltura/platform-install-packages/labels{/name}","releases_url":"https://api.github.com/repos/kaltura/platform-install-packages/releases{/id}","created_at":"2013-12-29T15:08:53Z","updated_at":"2015-01-01T13:14:03Z","pushed_at":"2015-01-01T15:00:38Z","git_url":"git://github.com/kaltura/platform-install-packages.git","ssh_url":"git@github.com:kaltura/platform-install-packages.git","clone_url":"https://github.com/kaltura/platform-install-packages.git","svn_url":"https://github.com/kaltura/platform-install-packages","homepage":null,"size":32514,"stargazers_count":60,"watchers_count":60,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":38,"mirror_url":null,"open_issues_count":6,"forks":38,"open_issues":6,"watchers":60,"default_branch":"Jupiter-10.2.0"}},"base":{"label":"kaltura:Jupiter-10.2.0","ref":"Jupiter-10.2.0","sha":"20b7a9c23a66575994c13e9f747f28a0f89aa557","user":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"repo":{"id":15510138,"name":"platform-install-packages","full_name":"kaltura/platform-install-packages","owner":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/kaltura/platform-install-packages","description":"Official deployment packages to install the Kaltura platform on a server or cluster environments using native OS package managers","fork":false,"url":"https://api.github.com/repos/kaltura/platform-install-packages","forks_url":"https://api.github.com/repos/kaltura/platform-install-packages/forks","keys_url":"https://api.github.com/repos/kaltura/platform-install-packages/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kaltura/platform-install-packages/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kaltura/platform-install-packages/teams","hooks_url":"https://api.github.com/repos/kaltura/platform-install-packages/hooks","issue_events_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/events{/number}","events_url":"https://api.github.com/repos/kaltura/platform-install-packages/events","assignees_url":"https://api.github.com/repos/kaltura/platform-install-packages/assignees{/user}","branches_url":"https://api.github.com/repos/kaltura/platform-install-packages/branches{/branch}","tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/tags","blobs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/refs{/sha}","trees_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/{sha}","languages_url":"https://api.github.com/repos/kaltura/platform-install-packages/languages","stargazers_url":"https://api.github.com/repos/kaltura/platform-install-packages/stargazers","contributors_url":"https://api.github.com/repos/kaltura/platform-install-packages/contributors","subscribers_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscribers","subscription_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscription","commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/commits{/sha}","git_commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/commits{/sha}","comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/comments{/number}","issue_comment_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/comments/{number}","contents_url":"https://api.github.com/repos/kaltura/platform-install-packages/contents/{+path}","compare_url":"https://api.github.com/repos/kaltura/platform-install-packages/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kaltura/platform-install-packages/merges","archive_url":"https://api.github.com/repos/kaltura/platform-install-packages/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kaltura/platform-install-packages/downloads","issues_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues{/number}","pulls_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls{/number}","milestones_url":"https://api.github.com/repos/kaltura/platform-install-packages/milestones{/number}","notifications_url":"https://api.github.com/repos/kaltura/platform-install-packages/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kaltura/platform-install-packages/labels{/name}","releases_url":"https://api.github.com/repos/kaltura/platform-install-packages/releases{/id}","created_at":"2013-12-29T15:08:53Z","updated_at":"2015-01-01T13:14:03Z","pushed_at":"2015-01-01T15:00:38Z","git_url":"git://github.com/kaltura/platform-install-packages.git","ssh_url":"git@github.com:kaltura/platform-install-packages.git","clone_url":"https://github.com/kaltura/platform-install-packages.git","svn_url":"https://github.com/kaltura/platform-install-packages","homepage":null,"size":32514,"stargazers_count":60,"watchers_count":60,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":38,"mirror_url":null,"open_issues_count":6,"forks":38,"open_issues":6,"watchers":60,"default_branch":"Jupiter-10.2.0"}},"_links":{"self":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312"},"html":{"href":"https://github.com/kaltura/platform-install-packages/pull/312"},"issue":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312"},"comments":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312/comments"},"review_comments":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/comments"},"review_comment":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/commits"},"statuses":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/d01dff1c653fbd9f97973c77bf85c9409fda3ea2"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":48,"deletions":0,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:00:53Z","org":{"id":319096,"login":"kaltura","gravatar_id":"","url":"https://api.github.com/orgs/kaltura","avatar_url":"https://avatars.githubusercontent.com/u/319096?"}}
,{"id":"2489651508","type":"CreateEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.2","ref_type":"branch","master_branch":"0.1","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:53Z"}
,{"id":"2489651509","type":"WatchEvent","actor":{"id":143572,"login":"hotoo","gravatar_id":"","url":"https://api.github.com/users/hotoo","avatar_url":"https://avatars.githubusercontent.com/u/143572?"},"repo":{"id":3327272,"name":"lognormal/boomerang","url":"https://api.github.com/repos/lognormal/boomerang"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:53Z","org":{"id":1398850,"login":"lognormal","gravatar_id":"","url":"https://api.github.com/orgs/lognormal","avatar_url":"https://avatars.githubusercontent.com/u/1398850?"}}
,{"id":"2489651511","type":"CreateEvent","actor":{"id":8143365,"login":"ClemensAhrens","gravatar_id":"","url":"https://api.github.com/users/ClemensAhrens","avatar_url":"https://avatars.githubusercontent.com/u/8143365?"},"repo":{"id":28688612,"name":"ClemensAhrens/coref","url":"https://api.github.com/repos/ClemensAhrens/coref"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:53Z"}
,{"id":"2489651517","type":"WatchEvent","actor":{"id":983189,"login":"rbartoli","gravatar_id":"","url":"https://api.github.com/users/rbartoli","avatar_url":"https://avatars.githubusercontent.com/u/983189?"},"repo":{"id":2010022,"name":"evanx/vellum","url":"https://api.github.com/repos/evanx/vellum"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651518","type":"PullRequestEvent","actor":{"id":1560181,"login":"Adaptivity","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","avatar_url":"https://avatars.githubusercontent.com/u/1560181?"},"repo":{"id":13984803,"name":"jakimfett/AlchemyPlusPlus","url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus"},"payload":{"action":"opened","number":28,"pull_request":{"url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28","id":26743775,"html_url":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28","diff_url":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28.diff","patch_url":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28.patch","issue_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28","number":28,"state":"open","locked":false,"title":"Update ru_RU.lang","user":{"login":"Adaptivity","id":1560181,"avatar_url":"https://avatars.githubusercontent.com/u/1560181?v=3","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","html_url":"https://github.com/Adaptivity","followers_url":"https://api.github.com/users/Adaptivity/followers","following_url":"https://api.github.com/users/Adaptivity/following{/other_user}","gists_url":"https://api.github.com/users/Adaptivity/gists{/gist_id}","starred_url":"https://api.github.com/users/Adaptivity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Adaptivity/subscriptions","organizations_url":"https://api.github.com/users/Adaptivity/orgs","repos_url":"https://api.github.com/users/Adaptivity/repos","events_url":"https://api.github.com/users/Adaptivity/events{/privacy}","received_events_url":"https://api.github.com/users/Adaptivity/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:54Z","updated_at":"2015-01-01T15:00:54Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/commits","review_comments_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/comments","review_comment_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/comments/{number}","comments_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28/comments","statuses_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/statuses/9b030b578f898458765d9be3d66553d3c619c16e","head":{"label":"Adaptivity:patch-1","ref":"patch-1","sha":"9b030b578f898458765d9be3d66553d3c619c16e","user":{"login":"Adaptivity","id":1560181,"avatar_url":"https://avatars.githubusercontent.com/u/1560181?v=3","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","html_url":"https://github.com/Adaptivity","followers_url":"https://api.github.com/users/Adaptivity/followers","following_url":"https://api.github.com/users/Adaptivity/following{/other_user}","gists_url":"https://api.github.com/users/Adaptivity/gists{/gist_id}","starred_url":"https://api.github.com/users/Adaptivity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Adaptivity/subscriptions","organizations_url":"https://api.github.com/users/Adaptivity/orgs","repos_url":"https://api.github.com/users/Adaptivity/repos","events_url":"https://api.github.com/users/Adaptivity/events{/privacy}","received_events_url":"https://api.github.com/users/Adaptivity/received_events","type":"User","site_admin":false},"repo":{"id":23959316,"name":"AlchemyPlusPlus","full_name":"Adaptivity/AlchemyPlusPlus","owner":{"login":"Adaptivity","id":1560181,"avatar_url":"https://avatars.githubusercontent.com/u/1560181?v=3","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","html_url":"https://github.com/Adaptivity","followers_url":"https://api.github.com/users/Adaptivity/followers","following_url":"https://api.github.com/users/Adaptivity/following{/other_user}","gists_url":"https://api.github.com/users/Adaptivity/gists{/gist_id}","starred_url":"https://api.github.com/users/Adaptivity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Adaptivity/subscriptions","organizations_url":"https://api.github.com/users/Adaptivity/orgs","repos_url":"https://api.github.com/users/Adaptivity/repos","events_url":"https://api.github.com/users/Adaptivity/events{/privacy}","received_events_url":"https://api.github.com/users/Adaptivity/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Adaptivity/AlchemyPlusPlus","description":"Expanded brewing system for Minecraft","fork":true,"url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus","forks_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/forks","keys_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/teams","hooks_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/hooks","issue_events_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/issues/events{/number}","events_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/events","assignees_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/assignees{/user}","branches_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/branches{/branch}","tags_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/tags","blobs_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/refs{/sha}","trees_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/statuses/{sha}","languages_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/languages","stargazers_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/stargazers","contributors_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/contributors","subscribers_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/subscribers","subscription_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/subscription","commits_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/commits{/sha}","git_commits_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/commits{/sha}","comments_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/comments{/number}","issue_comment_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/issues/comments/{number}","contents_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/contents/{+path}","compare_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/merges","archive_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/downloads","issues_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/issues{/number}","pulls_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/pulls{/number}","milestones_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/milestones{/number}","notifications_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/labels{/name}","releases_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/releases{/id}","created_at":"2014-09-12T12:14:53Z","updated_at":"2014-09-03T23:39:40Z","pushed_at":"2015-01-01T15:00:35Z","git_url":"git://github.com/Adaptivity/AlchemyPlusPlus.git","ssh_url":"git@github.com:Adaptivity/AlchemyPlusPlus.git","clone_url":"https://github.com/Adaptivity/AlchemyPlusPlus.git","svn_url":"https://github.com/Adaptivity/AlchemyPlusPlus","homepage":"","size":1162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"1.7-update"}},"base":{"label":"jakimfett:1.7-update","ref":"1.7-update","sha":"20ac6da256aef7b5e08447741242efee2497d990","user":{"login":"jakimfett","id":2565176,"avatar_url":"https://avatars.githubusercontent.com/u/2565176?v=3","gravatar_id":"","url":"https://api.github.com/users/jakimfett","html_url":"https://github.com/jakimfett","followers_url":"https://api.github.com/users/jakimfett/followers","following_url":"https://api.github.com/users/jakimfett/following{/other_user}","gists_url":"https://api.github.com/users/jakimfett/gists{/gist_id}","starred_url":"https://api.github.com/users/jakimfett/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jakimfett/subscriptions","organizations_url":"https://api.github.com/users/jakimfett/orgs","repos_url":"https://api.github.com/users/jakimfett/repos","events_url":"https://api.github.com/users/jakimfett/events{/privacy}","received_events_url":"https://api.github.com/users/jakimfett/received_events","type":"User","site_admin":false},"repo":{"id":13984803,"name":"AlchemyPlusPlus","full_name":"jakimfett/AlchemyPlusPlus","owner":{"login":"jakimfett","id":2565176,"avatar_url":"https://avatars.githubusercontent.com/u/2565176?v=3","gravatar_id":"","url":"https://api.github.com/users/jakimfett","html_url":"https://github.com/jakimfett","followers_url":"https://api.github.com/users/jakimfett/followers","following_url":"https://api.github.com/users/jakimfett/following{/other_user}","gists_url":"https://api.github.com/users/jakimfett/gists{/gist_id}","starred_url":"https://api.github.com/users/jakimfett/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jakimfett/subscriptions","organizations_url":"https://api.github.com/users/jakimfett/orgs","repos_url":"https://api.github.com/users/jakimfett/repos","events_url":"https://api.github.com/users/jakimfett/events{/privacy}","received_events_url":"https://api.github.com/users/jakimfett/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jakimfett/AlchemyPlusPlus","description":"Expanded brewing system for Minecraft","fork":false,"url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus","forks_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/forks","keys_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/teams","hooks_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/hooks","issue_events_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/events{/number}","events_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/events","assignees_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/assignees{/user}","branches_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/branches{/branch}","tags_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/tags","blobs_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/refs{/sha}","trees_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/statuses/{sha}","languages_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/languages","stargazers_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/stargazers","contributors_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/contributors","subscribers_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/subscribers","subscription_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/subscription","commits_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/commits{/sha}","git_commits_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/commits{/sha}","comments_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/comments{/number}","issue_comment_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/comments/{number}","contents_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/contents/{+path}","compare_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/merges","archive_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/downloads","issues_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues{/number}","pulls_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls{/number}","milestones_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/milestones{/number}","notifications_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/labels{/name}","releases_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/releases{/id}","created_at":"2013-10-30T11:35:38Z","updated_at":"2014-12-24T19:36:13Z","pushed_at":"2014-12-24T19:36:13Z","git_url":"git://github.com/jakimfett/AlchemyPlusPlus.git","ssh_url":"git@github.com:jakimfett/AlchemyPlusPlus.git","clone_url":"https://github.com/jakimfett/AlchemyPlusPlus.git","svn_url":"https://github.com/jakimfett/AlchemyPlusPlus","homepage":"","size":2027,"stargazers_count":10,"watchers_count":10,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":7,"mirror_url":null,"open_issues_count":2,"forks":7,"open_issues":2,"watchers":10,"default_branch":"1.7-update"}},"_links":{"self":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28"},"html":{"href":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28"},"issue":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28"},"comments":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28/comments"},"review_comments":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/comments"},"review_comment":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/commits"},"statuses":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/statuses/9b030b578f898458765d9be3d66553d3c619c16e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":99,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651520","type":"PushEvent","actor":{"id":716269,"login":"RoryCrispin","gravatar_id":"","url":"https://api.github.com/users/RoryCrispin","avatar_url":"https://avatars.githubusercontent.com/u/716269?"},"repo":{"id":22583389,"name":"RoryCrispin/chive","url":"https://api.github.com/repos/RoryCrispin/chive"},"payload":{"push_id":536864196,"size":3,"distinct_size":3,"ref":"refs/heads/newUI","head":"d21f5a2886103181e651300f8fff610eb44ae944","before":"1f93cbb717319a7f358248f3e08463f90e7497b9","commits":[{"sha":"9850fffbd8dada98976598a5e059bd1ae1a14eb8","author":{"email":"610dbf3f31251c2f1347437b7dedf1bcbcbda97e@gmail.com","name":"Rory Crispin"},"message":"Hover fixes","distinct":true,"url":"https://api.github.com/repos/RoryCrispin/chive/commits/9850fffbd8dada98976598a5e059bd1ae1a14eb8"},{"sha":"843e3ed5fe85fc857d987982495370b1032bf486","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@rorycrispin.co.uk","name":"Rory Crispin"},"message":"Merge remote-tracking branch 'origin/newUI' into newUI\n\nConflicts:\n\t.idea/workspace.xml\n\tcss/artist/artist_main.css\n\tcss/index/index.css\n\tcss/index/leftPane.css","distinct":true,"url":"https://api.github.com/repos/RoryCrispin/chive/commits/843e3ed5fe85fc857d987982495370b1032bf486"},{"sha":"d21f5a2886103181e651300f8fff610eb44ae944","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@rorycrispin.co.uk","name":"Rory Crispin"},"message":"Workkk","distinct":true,"url":"https://api.github.com/repos/RoryCrispin/chive/commits/d21f5a2886103181e651300f8fff610eb44ae944"}]},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651521","type":"PushEvent","actor":{"id":2593193,"login":"misoobu","gravatar_id":"","url":"https://api.github.com/users/misoobu","avatar_url":"https://avatars.githubusercontent.com/u/2593193?"},"repo":{"id":28684853,"name":"misoobu/gree-community","url":"https://api.github.com/repos/misoobu/gree-community"},"payload":{"push_id":536864197,"size":1,"distinct_size":1,"ref":"refs/heads/adjust_new_html_format","head":"afcf1e2225d29f0087bb08e6c4d754502bd24f09","before":"df20a0e7221aa5c0e802858dbb727e9b72d61f59","commits":[{"sha":"afcf1e2225d29f0087bb08e6c4d754502bd24f09","author":{"email":"504acf256364d1b694a361eb47e224c44eb632f6@me.com","name":"misoobu"},"message":"adjust new html format (encoding)","distinct":true,"url":"https://api.github.com/repos/misoobu/gree-community/commits/afcf1e2225d29f0087bb08e6c4d754502bd24f09"}]},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651522","type":"PushEvent","actor":{"id":9898422,"login":"superlucky84","gravatar_id":"","url":"https://api.github.com/users/superlucky84","avatar_url":"https://avatars.githubusercontent.com/u/9898422?"},"repo":{"id":26996267,"name":"superlucky84/superlucky","url":"https://api.github.com/repos/superlucky84/superlucky"},"payload":{"push_id":536864198,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc","before":"5bb90ab36a649487bc3143ee97392a1e82e43635","commits":[{"sha":"fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc","author":{"email":"ef472836fe800ec78173ee4bff753e52ff094e51@gmail.com","name":"root"},"message":"board job","distinct":true,"url":"https://api.github.com/repos/superlucky84/superlucky/commits/fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc"}]},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651524","type":"PushEvent","actor":{"id":112486,"login":"ehartmann","gravatar_id":"","url":"https://api.github.com/users/ehartmann","avatar_url":"https://avatars.githubusercontent.com/u/112486?"},"repo":{"id":28660592,"name":"ElsaBonnaud/WebSite","url":"https://api.github.com/repos/ElsaBonnaud/WebSite"},"payload":{"push_id":536864199,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a245f2ede928a3045dc96100c175b25713efa654","before":"638fab26bf628db20f83a0e7e3a0ff012e6ed64c","commits":[{"sha":"a245f2ede928a3045dc96100c175b25713efa654","author":{"email":"87c01f2a11d6af298dcc61e432606186023760d0@gmail.com","name":"Eric Hartmann"},"message":"Add up.sh","distinct":true,"url":"https://api.github.com/repos/ElsaBonnaud/WebSite/commits/a245f2ede928a3045dc96100c175b25713efa654"}]},"public":true,"created_at":"2015-01-01T15:00:55Z"}
,{"id":"2489651526","type":"WatchEvent","actor":{"id":8642435,"login":"i8s301a","gravatar_id":"","url":"https://api.github.com/users/i8s301a","avatar_url":"https://avatars.githubusercontent.com/u/8642435?"},"repo":{"id":3407328,"name":"kiminozo/BgmOnWp","url":"https://api.github.com/repos/kiminozo/BgmOnWp"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651527","type":"WatchEvent","actor":{"id":52318,"login":"andyduke","gravatar_id":"","url":"https://api.github.com/users/andyduke","avatar_url":"https://avatars.githubusercontent.com/u/52318?"},"repo":{"id":12025365,"name":"toddmotto/echo","url":"https://api.github.com/repos/toddmotto/echo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651532","type":"ReleaseEvent","actor":{"id":728958,"login":"Oderik","gravatar_id":"","url":"https://api.github.com/users/Oderik","avatar_url":"https://avatars.githubusercontent.com/u/728958?"},"repo":{"id":18946463,"name":"Oderik/xbmc-somafm","url":"https://api.github.com/repos/Oderik/xbmc-somafm"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/Oderik/xbmc-somafm/releases/818677","assets_url":"https://api.github.com/repos/Oderik/xbmc-somafm/releases/818677/assets","upload_url":"https://uploads.github.com/repos/Oderik/xbmc-somafm/releases/818677/assets{?name}","html_url":"https://github.com/Oderik/xbmc-somafm/releases/tag/v1.0.1","id":818677,"tag_name":"v1.0.1","target_commitish":"master","name":"Fix playback on Android","draft":false,"author":{"login":"Oderik","id":728958,"avatar_url":"https://avatars.githubusercontent.com/u/728958?v=3","gravatar_id":"","url":"https://api.github.com/users/Oderik","html_url":"https://github.com/Oderik","followers_url":"https://api.github.com/users/Oderik/followers","following_url":"https://api.github.com/users/Oderik/following{/other_user}","gists_url":"https://api.github.com/users/Oderik/gists{/gist_id}","starred_url":"https://api.github.com/users/Oderik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Oderik/subscriptions","organizations_url":"https://api.github.com/users/Oderik/orgs","repos_url":"https://api.github.com/users/Oderik/repos","events_url":"https://api.github.com/users/Oderik/events{/privacy}","received_events_url":"https://api.github.com/users/Oderik/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:56:33Z","published_at":"2015-01-01T15:00:56Z","assets":[],"tarball_url":"https://api.github.com/repos/Oderik/xbmc-somafm/tarball/v1.0.1","zipball_url":"https://api.github.com/repos/Oderik/xbmc-somafm/zipball/v1.0.1","body":"Use fallback if certain XML parsing fails. This is quite a dirty hotfix for an issue occuring on Kodi for Android due to an old version of python"}},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651533","type":"CreateEvent","actor":{"id":728958,"login":"Oderik","gravatar_id":"","url":"https://api.github.com/users/Oderik","avatar_url":"https://avatars.githubusercontent.com/u/728958?"},"repo":{"id":18946463,"name":"Oderik/xbmc-somafm","url":"https://api.github.com/repos/Oderik/xbmc-somafm"},"payload":{"ref":"v1.0.1","ref_type":"tag","master_branch":"master","description":"SomaFM Plugin for XBMC","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651534","type":"PushEvent","actor":{"id":8837415,"login":"sarinasalim","gravatar_id":"","url":"https://api.github.com/users/sarinasalim","avatar_url":"https://avatars.githubusercontent.com/u/8837415?"},"repo":{"id":24245833,"name":"Learningroots/www_src","url":"https://api.github.com/repos/Learningroots/www_src"},"payload":{"push_id":536864202,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4603b8e286c87f9510eea0f675375bc241489b09","before":"4c9fce483800385b7eabc1f815e43ce1ad1e70e4","commits":[{"sha":"4603b8e286c87f9510eea0f675375bc241489b09","author":{"email":"8a37ec473379fa8bd80487aa11cf30a943f6d0f1@gmail.com","name":"sarinasalim"},"message":"MailChimp setup for newsletters\nhttps://app.asana.com/0/22988389214210/22145625010440","distinct":true,"url":"https://api.github.com/repos/Learningroots/www_src/commits/4603b8e286c87f9510eea0f675375bc241489b09"}]},"public":true,"created_at":"2015-01-01T15:00:56Z","org":{"id":8837436,"login":"Learningroots","gravatar_id":"","url":"https://api.github.com/orgs/Learningroots","avatar_url":"https://avatars.githubusercontent.com/u/8837436?"}}
,{"id":"2489651537","type":"PushEvent","actor":{"id":1725475,"login":"qianlifeng","gravatar_id":"","url":"https://api.github.com/users/qianlifeng","avatar_url":"https://avatars.githubusercontent.com/u/1725475?"},"repo":{"id":18005959,"name":"qianlifeng/Wox.Plugin.Everything","url":"https://api.github.com/repos/qianlifeng/Wox.Plugin.Everything"},"payload":{"push_id":536864204,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db9b24528e38e384f40716dd50cfe2e64eee362c","before":"88e8bcce5e194c1067e1444290dea4e41190a12c","commits":[{"sha":"db9b24528e38e384f40716dd50cfe2e64eee362c","author":{"email":"8d358f8bee2d734157d908bc67029a31cccfd821@163.com","name":"qianlifeng"},"message":"add context menu","distinct":true,"url":"https://api.github.com/repos/qianlifeng/Wox.Plugin.Everything/commits/db9b24528e38e384f40716dd50cfe2e64eee362c"}]},"public":true,"created_at":"2015-01-01T15:00:57Z"}
,{"id":"2489651543","type":"DeleteEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.3","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:58Z"}
,{"id":"2489651544","type":"PushEvent","actor":{"id":6265848,"login":"horatiothomas","gravatar_id":"","url":"https://api.github.com/users/horatiothomas","avatar_url":"https://avatars.githubusercontent.com/u/6265848?"},"repo":{"id":28661096,"name":"qkalantary/Antswer","url":"https://api.github.com/repos/qkalantary/Antswer"},"payload":{"push_id":536864210,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aac0581a1ff4e0ad8b6f730daf390647c96aaee2","before":"52bb989cea9b74daf50329afbba4273868fe8aba","commits":[{"sha":"aac0581a1ff4e0ad8b6f730daf390647c96aaee2","author":{"email":"98c20188b83c25b65c31c78947aa3d5fd78bb4ce@Horatios-Air.home","name":"Horatio Thomas"},"message":"Added services","distinct":true,"url":"https://api.github.com/repos/qkalantary/Antswer/commits/aac0581a1ff4e0ad8b6f730daf390647c96aaee2"}]},"public":true,"created_at":"2015-01-01T15:00:58Z"}
,{"id":"2489651553","type":"PullRequestEvent","actor":{"id":1144873,"login":"greysteil","gravatar_id":"","url":"https://api.github.com/users/greysteil","avatar_url":"https://avatars.githubusercontent.com/u/1144873?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"action":"opened","number":5,"pull_request":{"url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5","id":26743776,"html_url":"https://github.com/gocardless/activejob-retry/pull/5","diff_url":"https://github.com/gocardless/activejob-retry/pull/5.diff","patch_url":"https://github.com/gocardless/activejob-retry/pull/5.patch","issue_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/5","number":5,"state":"open","locked":false,"title":"Check adapter is supported","user":{"login":"greysteil","id":1144873,"avatar_url":"https://avatars.githubusercontent.com/u/1144873?v=3","gravatar_id":"","url":"https://api.github.com/users/greysteil","html_url":"https://github.com/greysteil","followers_url":"https://api.github.com/users/greysteil/followers","following_url":"https://api.github.com/users/greysteil/following{/other_user}","gists_url":"https://api.github.com/users/greysteil/gists{/gist_id}","starred_url":"https://api.github.com/users/greysteil/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/greysteil/subscriptions","organizations_url":"https://api.github.com/users/greysteil/orgs","repos_url":"https://api.github.com/users/greysteil/repos","events_url":"https://api.github.com/users/greysteil/events{/privacy}","received_events_url":"https://api.github.com/users/greysteil/received_events","type":"User","site_admin":false},"body":"Cleans up previous implementation so specs pass.","created_at":"2015-01-01T15:00:59Z","updated_at":"2015-01-01T15:00:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/commits","review_comments_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/comments","review_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/comments/{number}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/5/comments","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","head":{"label":"gocardless:check-adapter-supported","ref":"check-adapter-supported","sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","user":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"repo":{"id":28648149,"name":"activejob-retry","full_name":"gocardless/activejob-retry","owner":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gocardless/activejob-retry","description":"Automatic retries for ActiveJob","fork":false,"url":"https://api.github.com/repos/gocardless/activejob-retry","forks_url":"https://api.github.com/repos/gocardless/activejob-retry/forks","keys_url":"https://api.github.com/repos/gocardless/activejob-retry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gocardless/activejob-retry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gocardless/activejob-retry/teams","hooks_url":"https://api.github.com/repos/gocardless/activejob-retry/hooks","issue_events_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/events{/number}","events_url":"https://api.github.com/repos/gocardless/activejob-retry/events","assignees_url":"https://api.github.com/repos/gocardless/activejob-retry/assignees{/user}","branches_url":"https://api.github.com/repos/gocardless/activejob-retry/branches{/branch}","tags_url":"https://api.github.com/repos/gocardless/activejob-retry/tags","blobs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gocardless/activejob-retry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/refs{/sha}","trees_url":"https://api.github.com/repos/gocardless/activejob-retry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/{sha}","languages_url":"https://api.github.com/repos/gocardless/activejob-retry/languages","stargazers_url":"https://api.github.com/repos/gocardless/activejob-retry/stargazers","contributors_url":"https://api.github.com/repos/gocardless/activejob-retry/contributors","subscribers_url":"https://api.github.com/repos/gocardless/activejob-retry/subscribers","subscription_url":"https://api.github.com/repos/gocardless/activejob-retry/subscription","commits_url":"https://api.github.com/repos/gocardless/activejob-retry/commits{/sha}","git_commits_url":"https://api.github.com/repos/gocardless/activejob-retry/git/commits{/sha}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/comments{/number}","issue_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/comments/{number}","contents_url":"https://api.github.com/repos/gocardless/activejob-retry/contents/{+path}","compare_url":"https://api.github.com/repos/gocardless/activejob-retry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gocardless/activejob-retry/merges","archive_url":"https://api.github.com/repos/gocardless/activejob-retry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gocardless/activejob-retry/downloads","issues_url":"https://api.github.com/repos/gocardless/activejob-retry/issues{/number}","pulls_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls{/number}","milestones_url":"https://api.github.com/repos/gocardless/activejob-retry/milestones{/number}","notifications_url":"https://api.github.com/repos/gocardless/activejob-retry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gocardless/activejob-retry/labels{/name}","releases_url":"https://api.github.com/repos/gocardless/activejob-retry/releases{/id}","created_at":"2014-12-30T22:46:41Z","updated_at":"2015-01-01T14:31:50Z","pushed_at":"2015-01-01T15:00:47Z","git_url":"git://github.com/gocardless/activejob-retry.git","ssh_url":"git@github.com:gocardless/activejob-retry.git","clone_url":"https://github.com/gocardless/activejob-retry.git","svn_url":"https://github.com/gocardless/activejob-retry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"gocardless:master","ref":"master","sha":"26f1f1fb98b689a9c72f62ab81fbd86b555e9650","user":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"repo":{"id":28648149,"name":"activejob-retry","full_name":"gocardless/activejob-retry","owner":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gocardless/activejob-retry","description":"Automatic retries for ActiveJob","fork":false,"url":"https://api.github.com/repos/gocardless/activejob-retry","forks_url":"https://api.github.com/repos/gocardless/activejob-retry/forks","keys_url":"https://api.github.com/repos/gocardless/activejob-retry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gocardless/activejob-retry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gocardless/activejob-retry/teams","hooks_url":"https://api.github.com/repos/gocardless/activejob-retry/hooks","issue_events_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/events{/number}","events_url":"https://api.github.com/repos/gocardless/activejob-retry/events","assignees_url":"https://api.github.com/repos/gocardless/activejob-retry/assignees{/user}","branches_url":"https://api.github.com/repos/gocardless/activejob-retry/branches{/branch}","tags_url":"https://api.github.com/repos/gocardless/activejob-retry/tags","blobs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gocardless/activejob-retry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/refs{/sha}","trees_url":"https://api.github.com/repos/gocardless/activejob-retry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/{sha}","languages_url":"https://api.github.com/repos/gocardless/activejob-retry/languages","stargazers_url":"https://api.github.com/repos/gocardless/activejob-retry/stargazers","contributors_url":"https://api.github.com/repos/gocardless/activejob-retry/contributors","subscribers_url":"https://api.github.com/repos/gocardless/activejob-retry/subscribers","subscription_url":"https://api.github.com/repos/gocardless/activejob-retry/subscription","commits_url":"https://api.github.com/repos/gocardless/activejob-retry/commits{/sha}","git_commits_url":"https://api.github.com/repos/gocardless/activejob-retry/git/commits{/sha}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/comments{/number}","issue_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/comments/{number}","contents_url":"https://api.github.com/repos/gocardless/activejob-retry/contents/{+path}","compare_url":"https://api.github.com/repos/gocardless/activejob-retry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gocardless/activejob-retry/merges","archive_url":"https://api.github.com/repos/gocardless/activejob-retry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gocardless/activejob-retry/downloads","issues_url":"https://api.github.com/repos/gocardless/activejob-retry/issues{/number}","pulls_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls{/number}","milestones_url":"https://api.github.com/repos/gocardless/activejob-retry/milestones{/number}","notifications_url":"https://api.github.com/repos/gocardless/activejob-retry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gocardless/activejob-retry/labels{/name}","releases_url":"https://api.github.com/repos/gocardless/activejob-retry/releases{/id}","created_at":"2014-12-30T22:46:41Z","updated_at":"2015-01-01T14:31:50Z","pushed_at":"2015-01-01T15:00:47Z","git_url":"git://github.com/gocardless/activejob-retry.git","ssh_url":"git@github.com:gocardless/activejob-retry.git","clone_url":"https://github.com/gocardless/activejob-retry.git","svn_url":"https://github.com/gocardless/activejob-retry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5"},"html":{"href":"https://github.com/gocardless/activejob-retry/pull/5"},"issue":{"href":"https://api.github.com/repos/gocardless/activejob-retry/issues/5"},"comments":{"href":"https://api.github.com/repos/gocardless/activejob-retry/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/gocardless/activejob-retry/statuses/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":15,"deletions":11,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:00:59Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489651570","type":"IssueCommentEvent","actor":{"id":7194491,"login":"BackSlasher","gravatar_id":"","url":"https://api.github.com/users/BackSlasher","avatar_url":"https://avatars.githubusercontent.com/u/7194491?"},"repo":{"id":4056288,"name":"opscode/omnibus-chef","url":"https://api.github.com/repos/opscode/omnibus-chef"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319","labels_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319/labels{/name}","comments_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319/comments","events_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319/events","html_url":"https://github.com/opscode/omnibus-chef/issues/319","id":53215487,"number":319,"title":"Symbolic links for knife etc conflict when installing ChefDK and Chef Client","user":{"login":"BackSlasher","id":7194491,"avatar_url":"https://avatars.githubusercontent.com/u/7194491?v=3","gravatar_id":"","url":"https://api.github.com/users/BackSlasher","html_url":"https://github.com/BackSlasher","followers_url":"https://api.github.com/users/BackSlasher/followers","following_url":"https://api.github.com/users/BackSlasher/following{/other_user}","gists_url":"https://api.github.com/users/BackSlasher/gists{/gist_id}","starred_url":"https://api.github.com/users/BackSlasher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BackSlasher/subscriptions","organizations_url":"https://api.github.com/users/BackSlasher/orgs","repos_url":"https://api.github.com/users/BackSlasher/repos","events_url":"https://api.github.com/users/BackSlasher/events{/privacy}","received_events_url":"https://api.github.com/users/BackSlasher/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T08:15:03Z","updated_at":"2015-01-01T15:01:02Z","closed_at":"2015-01-01T14:31:08Z","body":"When running Ubuntu 14.04, After installing the following in that order:\r\n* Chef client latest (12.0.3-1)\r\n* ChefDK latest (0.3.5)\r\n\r\nAnd running `knife --version`, I get version 11.  \r\nThis is an issue because after installing ChefDK, I was unable to bootstrap Chef 12 clients (because Knife 11 wouldn't copy self-signed certificates like Knife 12 does).\r\n\r\nThis is because both packages include knife, and each is overwriting `/usr/bin/knife`, meaning the last installed product \"wins\".\r\nInstead of using [`ln -sf`](https://github.com/opscode/omnibus-chef/blob/master/package-scripts/chefdk/postinst#L39), one could use [Debian alternatives](https://www.debian-administration.org/article/91/Using_the_Debian_alternatives_system), allowing both Knife versions from ChefDK and Chef Client to coexist.\r\nOr one can avoid overwriting the link if it points to a newer version."},"comment":{"url":"https://api.github.com/repos/opscode/omnibus-chef/issues/comments/68488509","html_url":"https://github.com/opscode/omnibus-chef/issues/319#issuecomment-68488509","issue_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319","id":68488509,"user":{"login":"BackSlasher","id":7194491,"avatar_url":"https://avatars.githubusercontent.com/u/7194491?v=3","gravatar_id":"","url":"https://api.github.com/users/BackSlasher","html_url":"https://github.com/BackSlasher","followers_url":"https://api.github.com/users/BackSlasher/followers","following_url":"https://api.github.com/users/BackSlasher/following{/other_user}","gists_url":"https://api.github.com/users/BackSlasher/gists{/gist_id}","starred_url":"https://api.github.com/users/BackSlasher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BackSlasher/subscriptions","organizations_url":"https://api.github.com/users/BackSlasher/orgs","repos_url":"https://api.github.com/users/BackSlasher/repos","events_url":"https://api.github.com/users/BackSlasher/events{/privacy}","received_events_url":"https://api.github.com/users/BackSlasher/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:02Z","updated_at":"2015-01-01T15:01:02Z","body":"@lamont-granquist I think this issue will reoccur the next time there's a functional difference between the latest client and the latest DK. Don't you think the installation script should at least print an error when there's an existing (and valid) symlink?\r\n\r\nI'll be happy to help, I just want to get your idea of what's a good solution before I work on it."}},"public":true,"created_at":"2015-01-01T15:01:02Z","org":{"id":29740,"login":"opscode","gravatar_id":"","url":"https://api.github.com/orgs/opscode","avatar_url":"https://avatars.githubusercontent.com/u/29740?"}}
,{"id":"2489651573","type":"WatchEvent","actor":{"id":5869219,"login":"dacenter","gravatar_id":"","url":"https://api.github.com/users/dacenter","avatar_url":"https://avatars.githubusercontent.com/u/5869219?"},"repo":{"id":28688611,"name":"Realcraft/Realcraft","url":"https://api.github.com/repos/Realcraft/Realcraft"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:03Z","org":{"id":10364754,"login":"Realcraft","gravatar_id":"","url":"https://api.github.com/orgs/Realcraft","avatar_url":"https://avatars.githubusercontent.com/u/10364754?"}}
,{"id":"2489651575","type":"IssueCommentEvent","actor":{"id":23058,"login":"davydotcom","gravatar_id":"","url":"https://api.github.com/users/davydotcom","avatar_url":"https://avatars.githubusercontent.com/u/23058?"},"repo":{"id":7763363,"name":"ratpack/ratpack","url":"https://api.github.com/repos/ratpack/ratpack"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/537","labels_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/labels{/name}","comments_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/comments","events_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/events","html_url":"https://github.com/ratpack/ratpack/issues/537","id":53108739,"number":537,"title":"Improved configurability of asset handler","user":{"login":"alkemist","id":17825,"avatar_url":"https://avatars.githubusercontent.com/u/17825?v=3","gravatar_id":"","url":"https://api.github.com/users/alkemist","html_url":"https://github.com/alkemist","followers_url":"https://api.github.com/users/alkemist/followers","following_url":"https://api.github.com/users/alkemist/following{/other_user}","gists_url":"https://api.github.com/users/alkemist/gists{/gist_id}","starred_url":"https://api.github.com/users/alkemist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alkemist/subscriptions","organizations_url":"https://api.github.com/users/alkemist/orgs","repos_url":"https://api.github.com/users/alkemist/repos","events_url":"https://api.github.com/users/alkemist/events{/privacy}","received_events_url":"https://api.github.com/users/alkemist/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/ratpack/ratpack/labels/good-first-contrib","name":"good-first-contrib","color":"00c5fe"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-30T11:08:31Z","updated_at":"2015-01-01T15:01:03Z","closed_at":null,"body":"Our asset handling is too simplistic. I'd like to change things around to make the asset handling more configurable, by introducing a builder for asset handlers.\r\n\r\nWe should introduce…\r\n\r\n```\r\npackage ratpack.file\r\n\r\ninterface AssetHandlerSpec {\r\n  AssetHandlerSpec compressionMinSize(int bytes)\r\n  AssetHandlerSpec indexFiles(String... indexFiles)\r\n  AssetHandlerSpec noCompress(String mimeTypes)\r\n}\r\n```\r\n\r\nThe asset handler method on `Handlers` and corresponding `Chain` method will change to…\r\n\r\n```\r\nHandler assets(LaunchConfig launchConfig, String path, Action<? super AssetHandlerSpec> config)\r\n```\r\n\r\nWe can then remove the related items from launch config.\r\n\r\nThis will also require some reworking of the file serving internals to support more decisions being made about how to render the file at the handler level instead of the internal transmitter.\r\n"},"comment":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/comments/68488510","html_url":"https://github.com/ratpack/ratpack/issues/537#issuecomment-68488510","issue_url":"https://api.github.com/repos/ratpack/ratpack/issues/537","id":68488510,"user":{"login":"davydotcom","id":23058,"avatar_url":"https://avatars.githubusercontent.com/u/23058?v=3","gravatar_id":"","url":"https://api.github.com/users/davydotcom","html_url":"https://github.com/davydotcom","followers_url":"https://api.github.com/users/davydotcom/followers","following_url":"https://api.github.com/users/davydotcom/following{/other_user}","gists_url":"https://api.github.com/users/davydotcom/gists{/gist_id}","starred_url":"https://api.github.com/users/davydotcom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davydotcom/subscriptions","organizations_url":"https://api.github.com/users/davydotcom/orgs","repos_url":"https://api.github.com/users/davydotcom/repos","events_url":"https://api.github.com/users/davydotcom/events{/privacy}","received_events_url":"https://api.github.com/users/davydotcom/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:03Z","updated_at":"2015-01-01T15:01:03Z","body":"Are you going to compress files on the fly? Might be better to quit create gz versions when packaging up so you don't have the load on servers from gripping "}},"public":true,"created_at":"2015-01-01T15:01:03Z","org":{"id":3344496,"login":"ratpack","gravatar_id":"","url":"https://api.github.com/orgs/ratpack","avatar_url":"https://avatars.githubusercontent.com/u/3344496?"}}
,{"id":"2489651576","type":"GollumEvent","actor":{"id":2254431,"login":"osler","gravatar_id":"","url":"https://api.github.com/users/osler","avatar_url":"https://avatars.githubusercontent.com/u/2254431?"},"repo":{"id":28687819,"name":"osler/World-of-Warcraft-Modding","url":"https://api.github.com/repos/osler/World-of-Warcraft-Modding"},"payload":{"pages":[{"page_name":"_Sidebar","title":"_Sidebar","summary":null,"action":"edited","sha":"69f2fffebae94f23c45b5ee867e4dec1041789e7","html_url":"https://github.com/osler/World-of-Warcraft-Modding/wiki/_Sidebar"}]},"public":true,"created_at":"2015-01-01T15:01:03Z"}
,{"id":"2489651582","type":"IssueCommentEvent","actor":{"id":3431139,"login":"ty221","gravatar_id":"","url":"https://api.github.com/users/ty221","avatar_url":"https://avatars.githubusercontent.com/u/3431139?"},"repo":{"id":21477900,"name":"fossasia/fossasia15","url":"https://api.github.com/repos/fossasia/fossasia15"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fossasia/fossasia15/issues/4","labels_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4/comments","events_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4/events","html_url":"https://github.com/fossasia/fossasia15/pull/4","id":53218335,"number":4,"title":"Improved and optimized all pictures of organizers and spakers","user":{"login":"ty221","id":3431139,"avatar_url":"https://avatars.githubusercontent.com/u/3431139?v=3","gravatar_id":"","url":"https://api.github.com/users/ty221","html_url":"https://github.com/ty221","followers_url":"https://api.github.com/users/ty221/followers","following_url":"https://api.github.com/users/ty221/following{/other_user}","gists_url":"https://api.github.com/users/ty221/gists{/gist_id}","starred_url":"https://api.github.com/users/ty221/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ty221/subscriptions","organizations_url":"https://api.github.com/users/ty221/orgs","repos_url":"https://api.github.com/users/ty221/repos","events_url":"https://api.github.com/users/ty221/events{/privacy}","received_events_url":"https://api.github.com/users/ty221/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T11:58:59Z","updated_at":"2015-01-01T15:01:03Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/fossasia/fossasia15/pulls/4","html_url":"https://github.com/fossasia/fossasia15/pull/4","diff_url":"https://github.com/fossasia/fossasia15/pull/4.diff","patch_url":"https://github.com/fossasia/fossasia15/pull/4.patch"},"body":"https://www.google-melange.com/gci/task/view/google/gci2014/5839599284781056"},"comment":{"url":"https://api.github.com/repos/fossasia/fossasia15/issues/comments/68488511","html_url":"https://github.com/fossasia/fossasia15/pull/4#issuecomment-68488511","issue_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4","id":68488511,"user":{"login":"ty221","id":3431139,"avatar_url":"https://avatars.githubusercontent.com/u/3431139?v=3","gravatar_id":"","url":"https://api.github.com/users/ty221","html_url":"https://github.com/ty221","followers_url":"https://api.github.com/users/ty221/followers","following_url":"https://api.github.com/users/ty221/following{/other_user}","gists_url":"https://api.github.com/users/ty221/gists{/gist_id}","starred_url":"https://api.github.com/users/ty221/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ty221/subscriptions","organizations_url":"https://api.github.com/users/ty221/orgs","repos_url":"https://api.github.com/users/ty221/repos","events_url":"https://api.github.com/users/ty221/events{/privacy}","received_events_url":"https://api.github.com/users/ty221/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:03Z","updated_at":"2015-01-01T15:01:03Z","body":"Now everywhere size is exactly 300*300"}},"public":true,"created_at":"2015-01-01T15:01:04Z","org":{"id":6295529,"login":"fossasia","gravatar_id":"","url":"https://api.github.com/orgs/fossasia","avatar_url":"https://avatars.githubusercontent.com/u/6295529?"}}
,{"id":"2489651584","type":"IssueCommentEvent","actor":{"id":1909317,"login":"Woseseltops","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","avatar_url":"https://avatars.githubusercontent.com/u/1909317?"},"repo":{"id":28224290,"name":"Woseseltops/signbank","url":"https://api.github.com/repos/Woseseltops/signbank"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/7","labels_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7/comments","events_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7/events","html_url":"https://github.com/Woseseltops/signbank/issues/7","id":52469797,"number":7,"title":"For all fields, the choices should be ordered alphabetically","user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Woseseltops/signbank/labels/enhancement","name":"enhancement","color":"84b6eb"},{"url":"https://api.github.com/repos/Woseseltops/signbank/labels/top+priority","name":"top priority","color":"e11d21"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/Woseseltops/signbank/milestones/1","labels_url":"https://api.github.com/repos/Woseseltops/signbank/milestones/1/labels","id":915849,"number":1,"title":"First fully functional team version","description":"","creator":{"login":"ocrasborn","id":10242207,"avatar_url":"https://avatars.githubusercontent.com/u/10242207?v=3","gravatar_id":"","url":"https://api.github.com/users/ocrasborn","html_url":"https://github.com/ocrasborn","followers_url":"https://api.github.com/users/ocrasborn/followers","following_url":"https://api.github.com/users/ocrasborn/following{/other_user}","gists_url":"https://api.github.com/users/ocrasborn/gists{/gist_id}","starred_url":"https://api.github.com/users/ocrasborn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ocrasborn/subscriptions","organizations_url":"https://api.github.com/users/ocrasborn/orgs","repos_url":"https://api.github.com/users/ocrasborn/repos","events_url":"https://api.github.com/users/ocrasborn/events{/privacy}","received_events_url":"https://api.github.com/users/ocrasborn/received_events","type":"User","site_admin":false},"open_issues":7,"closed_issues":0,"state":"open","created_at":"2014-12-27T22:00:19Z","updated_at":"2014-12-28T11:03:58Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2014-12-19T10:44:41Z","updated_at":"2015-01-01T15:01:04Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/comments/68488512","html_url":"https://github.com/Woseseltops/signbank/issues/7#issuecomment-68488512","issue_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7","id":68488512,"user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:04Z","updated_at":"2015-01-01T15:01:04Z","body":"Related to https://github.com/Woseseltops/signbank/issues/8"}},"public":true,"created_at":"2015-01-01T15:01:04Z"}
,{"id":"2489651587","type":"PushEvent","actor":{"id":1793416,"login":"apascual89","gravatar_id":"","url":"https://api.github.com/users/apascual89","avatar_url":"https://avatars.githubusercontent.com/u/1793416?"},"repo":{"id":28508293,"name":"apascual89/packages_apps_Settings","url":"https://api.github.com/repos/apascual89/packages_apps_Settings"},"payload":{"push_id":536864226,"size":0,"distinct_size":0,"ref":"refs/heads/lp5.0","head":"8875e3b8a0ff16614016cbbc0a1be7c9ef0b0958","before":"181de1dca0ac326aae247e6454392f2ebd39cbb7","commits":[]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651591","type":"WatchEvent","actor":{"id":8643295,"login":"mhparker23","gravatar_id":"","url":"https://api.github.com/users/mhparker23","avatar_url":"https://avatars.githubusercontent.com/u/8643295?"},"repo":{"id":21289110,"name":"vinta/awesome-python","url":"https://api.github.com/repos/vinta/awesome-python"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651592","type":"PushEvent","actor":{"id":45407,"login":"stig","gravatar_id":"","url":"https://api.github.com/users/stig","avatar_url":"https://avatars.githubusercontent.com/u/45407?"},"repo":{"id":21182391,"name":"stig/.emacs.d","url":"https://api.github.com/repos/stig/.emacs.d"},"payload":{"push_id":536864227,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"79b315b3daf1bbb4d1632ba7c745631d1a6ae108","before":"c3b4822b4b681dc1b36f026b528d610bfbfc24e2","commits":[{"sha":"79b315b3daf1bbb4d1632ba7c745631d1a6ae108","author":{"email":"33cc5b077fc72668cead4696906bc719c9a2b56d@net-a-porter.com","name":"Stig Brautaset"},"message":"Re-organise configuration into multiple files\n\nAlso add delete-current-buffer-file defun, and move package installs to\na common location.","distinct":true,"url":"https://api.github.com/repos/stig/.emacs.d/commits/79b315b3daf1bbb4d1632ba7c745631d1a6ae108"}]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651593","type":"PushEvent","actor":{"id":433583,"login":"shlomizadok","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","avatar_url":"https://avatars.githubusercontent.com/u/433583?"},"repo":{"id":27426416,"name":"shlomizadok/foreman_openscap","url":"https://api.github.com/repos/shlomizadok/foreman_openscap"},"payload":{"push_id":536864228,"size":0,"distinct_size":0,"ref":"refs/heads/policy_ui","head":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","before":"b249c41355e147bc4b87aa7a5959215b48e161a5","commits":[]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651594","type":"PushEvent","actor":{"id":653941,"login":"cjolowicz","gravatar_id":"","url":"https://api.github.com/users/cjolowicz","avatar_url":"https://avatars.githubusercontent.com/u/653941?"},"repo":{"id":14541119,"name":"cjolowicz/scripts","url":"https://api.github.com/repos/cjolowicz/scripts"},"payload":{"push_id":536864229,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f8db283a12541f4c61ade4809737f93f2d7a626d","before":"1a2ef42d8f6f794fd0917a1fd6e540a1325e2226","commits":[{"sha":"f8db283a12541f4c61ade4809737f93f2d7a626d","author":{"email":"82a36422d455213247e76b728a8ed41cf0074c73@dealloc.org","name":"Claudio Jolowicz"},"message":"[qreversetree] Add --help.","distinct":true,"url":"https://api.github.com/repos/cjolowicz/scripts/commits/f8db283a12541f4c61ade4809737f93f2d7a626d"}]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651596","type":"PushEvent","actor":{"id":4002921,"login":"LucasZheng","gravatar_id":"","url":"https://api.github.com/users/LucasZheng","avatar_url":"https://avatars.githubusercontent.com/u/4002921?"},"repo":{"id":28431894,"name":"LucasZheng/LucasZheng.github.io","url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io"},"payload":{"push_id":536864230,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97575f293e28988c4e88906f9d1844f50f44ec2f","before":"5b17bdb8c8f48c33a27375993b76616446ba8258","commits":[{"sha":"97575f293e28988c4e88906f9d1844f50f44ec2f","author":{"email":"becca14b8729f2c8609f074c547c436bd940ceed@activenetwork.com","name":"LucasZheng"},"message":"Site updated: 2015-01-01 23:00:30","distinct":true,"url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io/commits/97575f293e28988c4e88906f9d1844f50f44ec2f"}]},"public":true,"created_at":"2015-01-01T15:01:06Z"}
,{"id":"2489651597","type":"PushEvent","actor":{"id":10341769,"login":"lyftclothing","gravatar_id":"","url":"https://api.github.com/users/lyftclothing","avatar_url":"https://avatars.githubusercontent.com/u/10341769?"},"repo":{"id":28600442,"name":"lyftclothing/lyftclothing.github.io","url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io"},"payload":{"push_id":536864231,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"59fdcb1091825ece541d97bf483e6cb23263b371","before":"3432a51a2df56fa087e1e64173a73c1e81b0d78e","commits":[{"sha":"59fdcb1091825ece541d97bf483e6cb23263b371","author":{"email":"aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@lyftclothing.com","name":"Jacob Gibbs"},"message":"Site updated at 2015-01-01 15:00:56 UTC","distinct":true,"url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io/commits/59fdcb1091825ece541d97bf483e6cb23263b371"}]},"public":true,"created_at":"2015-01-01T15:01:06Z"}
,{"id":"2489651599","type":"PullRequestEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28668553,"name":"Raulfin/PCaPP","url":"https://api.github.com/repos/Raulfin/PCaPP"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1","id":26743778,"html_url":"https://github.com/Raulfin/PCaPP/pull/1","diff_url":"https://github.com/Raulfin/PCaPP/pull/1.diff","patch_url":"https://github.com/Raulfin/PCaPP/pull/1.patch","issue_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","number":1,"state":"open","locked":false,"title":"Armor.xml","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"body":"I noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks.","created_at":"2015-01-01T15:01:06Z","updated_at":"2015-01-01T15:01:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits","review_comments_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments","review_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","head":{"label":"Derathir:patch-1","ref":"patch-1","sha":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"repo":{"id":28687886,"name":"PCaPP","full_name":"Derathir/PCaPP","owner":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Derathir/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":true,"url":"https://api.github.com/repos/Derathir/PCaPP","forks_url":"https://api.github.com/repos/Derathir/PCaPP/forks","keys_url":"https://api.github.com/repos/Derathir/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Derathir/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Derathir/PCaPP/teams","hooks_url":"https://api.github.com/repos/Derathir/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Derathir/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Derathir/PCaPP/events","assignees_url":"https://api.github.com/repos/Derathir/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Derathir/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Derathir/PCaPP/tags","blobs_url":"https://api.github.com/repos/Derathir/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Derathir/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Derathir/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Derathir/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Derathir/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Derathir/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Derathir/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Derathir/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Derathir/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Derathir/PCaPP/subscription","commits_url":"https://api.github.com/repos/Derathir/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Derathir/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Derathir/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Derathir/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Derathir/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Derathir/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Derathir/PCaPP/merges","archive_url":"https://api.github.com/repos/Derathir/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Derathir/PCaPP/downloads","issues_url":"https://api.github.com/repos/Derathir/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Derathir/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Derathir/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Derathir/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Derathir/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Derathir/PCaPP/releases{/id}","created_at":"2015-01-01T14:16:43Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T15:00:39Z","git_url":"git://github.com/Derathir/PCaPP.git","ssh_url":"git@github.com:Derathir/PCaPP.git","clone_url":"https://github.com/Derathir/PCaPP.git","svn_url":"https://github.com/Derathir/PCaPP","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Raulfin:master","ref":"master","sha":"d8832d838ed16e3e068fba91c423c3c424ca335b","user":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"repo":{"id":28668553,"name":"PCaPP","full_name":"Raulfin/PCaPP","owner":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Raulfin/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":false,"url":"https://api.github.com/repos/Raulfin/PCaPP","forks_url":"https://api.github.com/repos/Raulfin/PCaPP/forks","keys_url":"https://api.github.com/repos/Raulfin/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Raulfin/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Raulfin/PCaPP/teams","hooks_url":"https://api.github.com/repos/Raulfin/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Raulfin/PCaPP/events","assignees_url":"https://api.github.com/repos/Raulfin/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Raulfin/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Raulfin/PCaPP/tags","blobs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Raulfin/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Raulfin/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Raulfin/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Raulfin/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Raulfin/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Raulfin/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Raulfin/PCaPP/subscription","commits_url":"https://api.github.com/repos/Raulfin/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Raulfin/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Raulfin/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Raulfin/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Raulfin/PCaPP/merges","archive_url":"https://api.github.com/repos/Raulfin/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Raulfin/PCaPP/downloads","issues_url":"https://api.github.com/repos/Raulfin/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Raulfin/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Raulfin/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Raulfin/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Raulfin/PCaPP/releases{/id}","created_at":"2014-12-31T15:11:20Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T07:47:04Z","git_url":"git://github.com/Raulfin/PCaPP.git","ssh_url":"git@github.com:Raulfin/PCaPP.git","clone_url":"https://github.com/Raulfin/PCaPP.git","svn_url":"https://github.com/Raulfin/PCaPP","homepage":null,"size":0,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1"},"html":{"href":"https://github.com/Raulfin/PCaPP/pull/1"},"issue":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1"},"comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":28,"deletions":16,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:06Z"}
,{"id":"2489651605","type":"IssueCommentEvent","actor":{"id":3419281,"login":"Xexanos","gravatar_id":"","url":"https://api.github.com/users/Xexanos","avatar_url":"https://avatars.githubusercontent.com/u/3419281?"},"repo":{"id":23991305,"name":"Xexanos/PoorOres","url":"https://api.github.com/repos/Xexanos/PoorOres"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5","labels_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/comments","events_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/events","html_url":"https://github.com/Xexanos/PoorOres/issues/5","id":53209922,"number":5,"title":"Breaking some ores should drop nuggets not ores.","user":{"login":"Claycorp","id":3961359,"avatar_url":"https://avatars.githubusercontent.com/u/3961359?v=3","gravatar_id":"","url":"https://api.github.com/users/Claycorp","html_url":"https://github.com/Claycorp","followers_url":"https://api.github.com/users/Claycorp/followers","following_url":"https://api.github.com/users/Claycorp/following{/other_user}","gists_url":"https://api.github.com/users/Claycorp/gists{/gist_id}","starred_url":"https://api.github.com/users/Claycorp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Claycorp/subscriptions","organizations_url":"https://api.github.com/users/Claycorp/orgs","repos_url":"https://api.github.com/users/Claycorp/repos","events_url":"https://api.github.com/users/Claycorp/events{/privacy}","received_events_url":"https://api.github.com/users/Claycorp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T00:45:42Z","updated_at":"2015-01-01T15:01:08Z","closed_at":"2015-01-01T15:01:08Z","body":"Diamond, Emerald, Coal... Any other gem or ores that drop items.\r\n\r\nThis is especially the case with coal as getting the coal out of the ore is less efficient than making charcoal or using planks thus making the ores completely pointless unless you need the coal for a crafting recipe.\r\n\r\nAdding in a new line to the config for this option would be optimal.\r\nI:blockDropsNuggets=0/1 or S:blockDropsNuggets:true/false "},"comment":{"url":"https://api.github.com/repos/Xexanos/PoorOres/issues/comments/68488514","html_url":"https://github.com/Xexanos/PoorOres/issues/5#issuecomment-68488514","issue_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5","id":68488514,"user":{"login":"Xexanos","id":3419281,"avatar_url":"https://avatars.githubusercontent.com/u/3419281?v=3","gravatar_id":"","url":"https://api.github.com/users/Xexanos","html_url":"https://github.com/Xexanos","followers_url":"https://api.github.com/users/Xexanos/followers","following_url":"https://api.github.com/users/Xexanos/following{/other_user}","gists_url":"https://api.github.com/users/Xexanos/gists{/gist_id}","starred_url":"https://api.github.com/users/Xexanos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Xexanos/subscriptions","organizations_url":"https://api.github.com/users/Xexanos/orgs","repos_url":"https://api.github.com/users/Xexanos/repos","events_url":"https://api.github.com/users/Xexanos/events{/privacy}","received_events_url":"https://api.github.com/users/Xexanos/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:08Z","updated_at":"2015-01-01T15:01:08Z","body":"I did it a little different and just take a look at the original ore. If that drops an item I also drop an item... and I adjusted the amount dropped, to accommodate, that for example lapis does not only drop one but multiple items at a time."}},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651606","type":"IssuesEvent","actor":{"id":3419281,"login":"Xexanos","gravatar_id":"","url":"https://api.github.com/users/Xexanos","avatar_url":"https://avatars.githubusercontent.com/u/3419281?"},"repo":{"id":23991305,"name":"Xexanos/PoorOres","url":"https://api.github.com/repos/Xexanos/PoorOres"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5","labels_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/comments","events_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/events","html_url":"https://github.com/Xexanos/PoorOres/issues/5","id":53209922,"number":5,"title":"Breaking some ores should drop nuggets not ores.","user":{"login":"Claycorp","id":3961359,"avatar_url":"https://avatars.githubusercontent.com/u/3961359?v=3","gravatar_id":"","url":"https://api.github.com/users/Claycorp","html_url":"https://github.com/Claycorp","followers_url":"https://api.github.com/users/Claycorp/followers","following_url":"https://api.github.com/users/Claycorp/following{/other_user}","gists_url":"https://api.github.com/users/Claycorp/gists{/gist_id}","starred_url":"https://api.github.com/users/Claycorp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Claycorp/subscriptions","organizations_url":"https://api.github.com/users/Claycorp/orgs","repos_url":"https://api.github.com/users/Claycorp/repos","events_url":"https://api.github.com/users/Claycorp/events{/privacy}","received_events_url":"https://api.github.com/users/Claycorp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T00:45:42Z","updated_at":"2015-01-01T15:01:08Z","closed_at":"2015-01-01T15:01:08Z","body":"Diamond, Emerald, Coal... Any other gem or ores that drop items.\r\n\r\nThis is especially the case with coal as getting the coal out of the ore is less efficient than making charcoal or using planks thus making the ores completely pointless unless you need the coal for a crafting recipe.\r\n\r\nAdding in a new line to the config for this option would be optimal.\r\nI:blockDropsNuggets=0/1 or S:blockDropsNuggets:true/false "}},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651607","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864237,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57","before":"44d16923964b1c1a669d2ff05abb55fb4db27040","commits":[{"sha":"3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124466695\n\nvAR42JZyUqS3uPWynugOOjGwp9GrUB+GBaQon33nZd4=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57"}]},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651609","type":"PushEvent","actor":{"id":3890972,"login":"timmmmyboy","gravatar_id":"","url":"https://api.github.com/users/timmmmyboy","avatar_url":"https://avatars.githubusercontent.com/u/3890972?"},"repo":{"id":26382386,"name":"reclaimhosting/federated-wiki","url":"https://api.github.com/repos/reclaimhosting/federated-wiki"},"payload":{"push_id":536864239,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec","before":"37c55a8f8723e588a277c4ac8c68435cfe05a991","commits":[{"sha":"19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@reclaimhosting.com","name":"Reclaim Hosting"},"message":"Recent Changes","distinct":true,"url":"https://api.github.com/repos/reclaimhosting/federated-wiki/commits/19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec"}]},"public":true,"created_at":"2015-01-01T15:01:08Z","org":{"id":6590468,"login":"reclaimhosting","gravatar_id":"","url":"https://api.github.com/orgs/reclaimhosting","avatar_url":"https://avatars.githubusercontent.com/u/6590468?"}}
,{"id":"2489651610","type":"PushEvent","actor":{"id":6895040,"login":"codertradergambler","gravatar_id":"","url":"https://api.github.com/users/codertradergambler","avatar_url":"https://avatars.githubusercontent.com/u/6895040?"},"repo":{"id":18620619,"name":"chancecoin/chancecoinj","url":"https://api.github.com/repos/chancecoin/chancecoinj"},"payload":{"push_id":536864240,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfc67a964475a358a16e7c50dd44c0586043c74e","before":"578dc4282cde1533fc8a261ef53c02bca596eaba","commits":[{"sha":"cfc67a964475a358a16e7c50dd44c0586043c74e","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/cfc67a964475a358a16e7c50dd44c0586043c74e"}]},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651611","type":"PushEvent","actor":{"id":9315869,"login":"epambench","gravatar_id":"","url":"https://api.github.com/users/epambench","avatar_url":"https://avatars.githubusercontent.com/u/9315869?"},"repo":{"id":28230784,"name":"epambench/tdd","url":"https://api.github.com/repos/epambench/tdd"},"payload":{"push_id":536864241,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"af9da4bcf102c61914552eb110a7a4bdfd98b42a","before":"408f7b452cc2fa1fd4df4e711aa0811ff2612c6f","commits":[{"sha":"af9da4bcf102c61914552eb110a7a4bdfd98b42a","author":{"email":"4b9765d0390350d227c73d25f0f650bb1a53e880@gmail.com","name":"vladimir"},"message":"Added mockito and javadocs","distinct":true,"url":"https://api.github.com/repos/epambench/tdd/commits/af9da4bcf102c61914552eb110a7a4bdfd98b42a"}]},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651613","type":"PushEvent","actor":{"id":9497205,"login":"magicwheel","gravatar_id":"","url":"https://api.github.com/users/magicwheel","avatar_url":"https://avatars.githubusercontent.com/u/9497205?"},"repo":{"id":26048351,"name":"magicwheel/agent-core-and-example","url":"https://api.github.com/repos/magicwheel/agent-core-and-example"},"payload":{"push_id":536864242,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a25f67dc411a7ed081da9fc8119c110f66060fef","before":"6b6288cc5c599c4413529e7d8ff1620414c6f219","commits":[{"sha":"a25f67dc411a7ed081da9fc8119c110f66060fef","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@magicwheel.info","name":"magicwheel"},"message":"initdb, destroy old pear","distinct":true,"url":"https://api.github.com/repos/magicwheel/agent-core-and-example/commits/a25f67dc411a7ed081da9fc8119c110f66060fef"}]},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651616","type":"PullRequestEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/chrisduan/mychat/pulls/3","id":26743779,"html_url":"https://github.com/chrisduan/mychat/pull/3","diff_url":"https://github.com/chrisduan/mychat/pull/3.diff","patch_url":"https://github.com/chrisduan/mychat/pull/3.patch","issue_url":"https://api.github.com/repos/chrisduan/mychat/issues/3","number":3,"state":"open","locked":false,"title":"modify README.md,log develop plan","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:09Z","updated_at":"2015-01-01T15:01:09Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits","review_comments_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments","review_comment_url":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","head":{"label":"chrisduan:task","ref":"task","sha":"016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:00:12Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"chrisduan:master","ref":"master","sha":"06d276764e280d653c89ac60cc5378615559aef8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:00:12Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3"},"html":{"href":"https://github.com/chrisduan/mychat/pull/3"},"issue":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3"},"comments":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":7,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651618","type":"PushEvent","actor":{"id":3677711,"login":"eranif","gravatar_id":"","url":"https://api.github.com/users/eranif","avatar_url":"https://avatars.githubusercontent.com/u/3677711?"},"repo":{"id":16066615,"name":"eranif/codelite","url":"https://api.github.com/repos/eranif/codelite"},"payload":{"push_id":536864244,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cec26e3ca2b7aff57a519651f133b389859fbdf9","before":"682764fee0a3db54456d1b1cfd8d44ad240d53c8","commits":[{"sha":"cec26e3ca2b7aff57a519651f133b389859fbdf9","author":{"email":"a09b99f04bac94993f20a01f321dd533fa9e2be7@pc-erany.zend.net","name":"unknown"},"message":"Updated template projects's resource file to include 64 bit support","distinct":true,"url":"https://api.github.com/repos/eranif/codelite/commits/cec26e3ca2b7aff57a519651f133b389859fbdf9"}]},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651626","type":"IssueCommentEvent","actor":{"id":5392783,"login":"moyamo","gravatar_id":"","url":"https://api.github.com/users/moyamo","avatar_url":"https://avatars.githubusercontent.com/u/5392783?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76","labels_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76/labels{/name}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76/comments","events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76/events","html_url":"https://github.com/koalalorenzo/python-digitalocean/issues/76","id":52948575,"number":76,"title":"Should be able to specify ssh key by fingerprint","user":{"login":"Janzert","id":392930,"avatar_url":"https://avatars.githubusercontent.com/u/392930?v=3","gravatar_id":"","url":"https://api.github.com/users/Janzert","html_url":"https://github.com/Janzert","followers_url":"https://api.github.com/users/Janzert/followers","following_url":"https://api.github.com/users/Janzert/following{/other_user}","gists_url":"https://api.github.com/users/Janzert/gists{/gist_id}","starred_url":"https://api.github.com/users/Janzert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Janzert/subscriptions","organizations_url":"https://api.github.com/users/Janzert/orgs","repos_url":"https://api.github.com/users/Janzert/repos","events_url":"https://api.github.com/users/Janzert/events{/privacy}","received_events_url":"https://api.github.com/users/Janzert/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-27T05:10:10Z","updated_at":"2015-01-01T15:01:10Z","closed_at":null,"body":"When creating a droplet you should be able to give a key fingerprint to Droplet.create(). The current code tries to interpret any string as an actual public key.\r\n\r\nAdding an additional check to see if it's a fingerprint, instead of a full public key, after finding a string in Droplet.__get_ssh_keys_id and then directly adding the fingerprint to the id list allows it to work."},"comment":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/comments/68488516","html_url":"https://github.com/koalalorenzo/python-digitalocean/issues/76#issuecomment-68488516","issue_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76","id":68488516,"user":{"login":"moyamo","id":5392783,"avatar_url":"https://avatars.githubusercontent.com/u/5392783?v=3","gravatar_id":"","url":"https://api.github.com/users/moyamo","html_url":"https://github.com/moyamo","followers_url":"https://api.github.com/users/moyamo/followers","following_url":"https://api.github.com/users/moyamo/following{/other_user}","gists_url":"https://api.github.com/users/moyamo/gists{/gist_id}","starred_url":"https://api.github.com/users/moyamo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moyamo/subscriptions","organizations_url":"https://api.github.com/users/moyamo/orgs","repos_url":"https://api.github.com/users/moyamo/repos","events_url":"https://api.github.com/users/moyamo/events{/privacy}","received_events_url":"https://api.github.com/users/moyamo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:10Z","updated_at":"2015-01-01T15:01:10Z","body":"See https://github.com/koalalorenzo/python-digitalocean/pull/77\r\n\r\nThis might be what you are looking for. However it assumes your ssh_key is 16 pairs of hexadecimal digits separated by a colon."}},"public":true,"created_at":"2015-01-01T15:01:10Z"}
,{"id":"2489651627","type":"CreateEvent","actor":{"id":2738277,"login":"FiLeVeR10","gravatar_id":"","url":"https://api.github.com/users/FiLeVeR10","avatar_url":"https://avatars.githubusercontent.com/u/2738277?"},"repo":{"id":28688614,"name":"FiLeVeR10/zenity-ui","url":"https://api.github.com/repos/FiLeVeR10/zenity-ui"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Terminal based user interface for Zenity","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:10Z"}
,{"id":"2489651630","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28260344,"name":"cdpython/blog","url":"https://api.github.com/repos/cdpython/blog"},"payload":{"push_id":536864250,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ebf416a1e3e195dcbf1067d312f7e222c2b803d","before":"9e2d5afb1550cdceb14eb73095266e2b967ec672","commits":[{"sha":"9ebf416a1e3e195dcbf1067d312f7e222c2b803d","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월  2일 금요일 00시 01분 05초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/blog/commits/9ebf416a1e3e195dcbf1067d312f7e222c2b803d"}]},"public":true,"created_at":"2015-01-01T15:01:11Z"}
,{"id":"2489651634","type":"CreateEvent","actor":{"id":10364738,"login":"Fisab","gravatar_id":"","url":"https://api.github.com/users/Fisab","avatar_url":"https://avatars.githubusercontent.com/u/10364738?"},"repo":{"id":28688615,"name":"Fisab/fisab","url":"https://api.github.com/repos/Fisab/fisab"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Fisab","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:11Z"}
,{"id":"2489651635","type":"PushEvent","actor":{"id":7085564,"login":"manuth","gravatar_id":"","url":"https://api.github.com/users/manuth","avatar_url":"https://avatars.githubusercontent.com/u/7085564?"},"repo":{"id":27093817,"name":"manuth/Untitled-Project","url":"https://api.github.com/repos/manuth/Untitled-Project"},"payload":{"push_id":536864253,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ebcb152700b714aa4eedc6c37bc49994caaca93","before":"a2c92aab59da756ee498e0c015d0ae2c2d8104a5","commits":[{"sha":"3ebcb152700b714aa4eedc6c37bc49994caaca93","author":{"email":"21be835e24113c517b59468ee88756c27c039486@gmail.com","name":"manuth"},"message":"01.01.15","distinct":true,"url":"https://api.github.com/repos/manuth/Untitled-Project/commits/3ebcb152700b714aa4eedc6c37bc49994caaca93"}]},"public":true,"created_at":"2015-01-01T15:01:11Z"}
,{"id":"2489651637","type":"DeleteEvent","actor":{"id":253237,"login":"Jamesking56","gravatar_id":"","url":"https://api.github.com/users/Jamesking56","avatar_url":"https://avatars.githubusercontent.com/u/253237?"},"repo":{"id":28677238,"name":"Jamesking56/Cachet","url":"https://api.github.com/repos/Jamesking56/Cachet"},"payload":{"ref":"seeding-fixes","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:12Z"}
,{"id":"2489651638","type":"PushEvent","actor":{"id":5059195,"login":"Blimeo","gravatar_id":"","url":"https://api.github.com/users/Blimeo","avatar_url":"https://avatars.githubusercontent.com/u/5059195?"},"repo":{"id":28688096,"name":"Blimeo/blimeo.github.io","url":"https://api.github.com/repos/Blimeo/blimeo.github.io"},"payload":{"push_id":536864256,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aa0a4decc8475d7af6b33b6fea69d6102e5b06ba","before":"c2d7a0295ac9c1b5f66c4905b15554837dd6af36","commits":[{"sha":"aa0a4decc8475d7af6b33b6fea69d6102e5b06ba","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"fake and gay\n\naaaaaaaaa","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/aa0a4decc8475d7af6b33b6fea69d6102e5b06ba"}]},"public":true,"created_at":"2015-01-01T15:01:12Z"}
,{"id":"2489651649","type":"WatchEvent","actor":{"id":158963,"login":"destroytoday","gravatar_id":"","url":"https://api.github.com/users/destroytoday","avatar_url":"https://avatars.githubusercontent.com/u/158963?"},"repo":{"id":5594091,"name":"stubbornella/type-o-matic","url":"https://api.github.com/repos/stubbornella/type-o-matic"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:13Z"}
,{"id":"2489651650","type":"WatchEvent","actor":{"id":231889,"login":"matthiasg","gravatar_id":"","url":"https://api.github.com/users/matthiasg","avatar_url":"https://avatars.githubusercontent.com/u/231889?"},"repo":{"id":24953448,"name":"google/material-design-icons","url":"https://api.github.com/repos/google/material-design-icons"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:13Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}}
,{"id":"2489651651","type":"CreateEvent","actor":{"id":10364582,"login":"AxelRL","gravatar_id":"","url":"https://api.github.com/users/AxelRL","avatar_url":"https://avatars.githubusercontent.com/u/10364582?"},"repo":{"id":28688617,"name":"AxelRL/AxelRL.github.io","url":"https://api.github.com/repos/AxelRL/AxelRL.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Min hemsida","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:13Z"}
,{"id":"2489651653","type":"PushEvent","actor":{"id":688408,"login":"itadakimas","gravatar_id":"","url":"https://api.github.com/users/itadakimas","avatar_url":"https://avatars.githubusercontent.com/u/688408?"},"repo":{"id":28281944,"name":"itadakimas/maths-matrices","url":"https://api.github.com/repos/itadakimas/maths-matrices"},"payload":{"push_id":536864258,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c2bb4ad99120f7f762a972585571e646cc0c166","before":"3ab4db0b0fa6a62a993332263ba6089cf8fe7e00","commits":[{"sha":"1c2bb4ad99120f7f762a972585571e646cc0c166","author":{"email":"b45971ad8f7dfc534e0f776a310b9b42fffccd6d@nolaroads.com","name":"Said AHEMT"},"message":"ajoute la méthode Matrix::debugHTML","distinct":true,"url":"https://api.github.com/repos/itadakimas/maths-matrices/commits/1c2bb4ad99120f7f762a972585571e646cc0c166"}]},"public":true,"created_at":"2015-01-01T15:01:14Z"}
,{"id":"2489651659","type":"DeleteEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.2","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651660","type":"PushEvent","actor":{"id":1641302,"login":"michey","gravatar_id":"","url":"https://api.github.com/users/michey","avatar_url":"https://avatars.githubusercontent.com/u/1641302?"},"repo":{"id":28687752,"name":"michey/templates-LUFA","url":"https://api.github.com/repos/michey/templates-LUFA"},"payload":{"push_id":536864261,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"b836b229dbb499f6b3985227b90f5ccc0ca9373a","before":"4fe49b3eb044bf7bdbcb7b30e60584b0671633e4","commits":[{"sha":"cae993e897a3727773a58bb2bc855b4679b2a822","author":{"email":"227eeb00d9a94e3b8793a07fc26d817b03e5d1b5@gmail.com","name":"Alexander Mihailov"},"message":"add changes in makefiles, some sort of support of xcode, and programming posibility","distinct":true,"url":"https://api.github.com/repos/michey/templates-LUFA/commits/cae993e897a3727773a58bb2bc855b4679b2a822"},{"sha":"b836b229dbb499f6b3985227b90f5ccc0ca9373a","author":{"email":"227eeb00d9a94e3b8793a07fc26d817b03e5d1b5@gmail.com","name":"Alexander Mihailov"},"message":" add changes in makefiles, some sort of support of xcode, and programming posibility","distinct":true,"url":"https://api.github.com/repos/michey/templates-LUFA/commits/b836b229dbb499f6b3985227b90f5ccc0ca9373a"}]},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651661","type":"ForkEvent","actor":{"id":1772762,"login":"mobilipia","gravatar_id":"","url":"https://api.github.com/users/mobilipia","avatar_url":"https://avatars.githubusercontent.com/u/1772762?"},"repo":{"id":481412,"name":"TooTallNate/Java-WebSocket","url":"https://api.github.com/repos/TooTallNate/Java-WebSocket"},"payload":{"forkee":{"id":28688618,"name":"Java-WebSocket","full_name":"mobilipia/Java-WebSocket","owner":{"login":"mobilipia","id":1772762,"avatar_url":"https://avatars.githubusercontent.com/u/1772762?v=3","gravatar_id":"","url":"https://api.github.com/users/mobilipia","html_url":"https://github.com/mobilipia","followers_url":"https://api.github.com/users/mobilipia/followers","following_url":"https://api.github.com/users/mobilipia/following{/other_user}","gists_url":"https://api.github.com/users/mobilipia/gists{/gist_id}","starred_url":"https://api.github.com/users/mobilipia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mobilipia/subscriptions","organizations_url":"https://api.github.com/users/mobilipia/orgs","repos_url":"https://api.github.com/users/mobilipia/repos","events_url":"https://api.github.com/users/mobilipia/events{/privacy}","received_events_url":"https://api.github.com/users/mobilipia/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mobilipia/Java-WebSocket","description":"A barebones WebSocket client and server implementation written in 100% Java.","fork":true,"url":"https://api.github.com/repos/mobilipia/Java-WebSocket","forks_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/forks","keys_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/teams","hooks_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/hooks","issue_events_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/issues/events{/number}","events_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/events","assignees_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/assignees{/user}","branches_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/branches{/branch}","tags_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/tags","blobs_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/refs{/sha}","trees_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/statuses/{sha}","languages_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/languages","stargazers_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/stargazers","contributors_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/contributors","subscribers_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/subscribers","subscription_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/subscription","commits_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/commits{/sha}","git_commits_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/commits{/sha}","comments_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/comments{/number}","issue_comment_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/issues/comments/{number}","contents_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/contents/{+path}","compare_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/merges","archive_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/downloads","issues_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/issues{/number}","pulls_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/pulls{/number}","milestones_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/milestones{/number}","notifications_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/labels{/name}","releases_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/releases{/id}","created_at":"2015-01-01T15:01:15Z","updated_at":"2014-12-31T07:36:27Z","pushed_at":"2014-08-09T20:29:29Z","git_url":"git://github.com/mobilipia/Java-WebSocket.git","ssh_url":"git@github.com:mobilipia/Java-WebSocket.git","clone_url":"https://github.com/mobilipia/Java-WebSocket.git","svn_url":"https://github.com/mobilipia/Java-WebSocket","homepage":"http://java-websocket.org/","size":4307,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651663","type":"WatchEvent","actor":{"id":732366,"login":"0xfeeddeadbeef","gravatar_id":"","url":"https://api.github.com/users/0xfeeddeadbeef","avatar_url":"https://avatars.githubusercontent.com/u/732366?"},"repo":{"id":28465385,"name":"onlyutkarsh/OpenConfigurationManager","url":"https://api.github.com/repos/onlyutkarsh/OpenConfigurationManager"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651664","type":"PushEvent","actor":{"id":46095,"login":"MeirKriheli","gravatar_id":"","url":"https://api.github.com/users/MeirKriheli","avatar_url":"https://avatars.githubusercontent.com/u/46095?"},"repo":{"id":1567485,"name":"MeirKriheli/Open-Knesset","url":"https://api.github.com/repos/MeirKriheli/Open-Knesset"},"payload":{"push_id":536864262,"size":14,"distinct_size":14,"ref":"refs/heads/master","head":"456e518e0b48e87c7137e40d7bba03823e173caa","before":"75714af1397dd841d40433ed1856c66338542ced","commits":[{"sha":"3c4e638529c53ec270d61bfd3e63679ac9b52a3f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Add a Committee property - `gender_presence`","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/3c4e638529c53ec270d61bfd3e63679ac9b52a3f"},{"sha":"fef18fd92990b08d5003a25d10206f9ff65e4c4c","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/fef18fd92990b08d5003a25d10206f9ff65e4c4c"},{"sha":"c89932c0ecbadff5c8f9959510d06997a6ed0fb3","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added scraper that gets events for an mk and stores in new mks.models.Event model","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/c89932c0ecbadff5c8f9959510d06997a6ed0fb3"},{"sha":"c360401e58f3d8b7f3ec1323814dfe579a80e0bb","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added color and updating of events","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/c360401e58f3d8b7f3ec1323814dfe579a80e0bb"},{"sha":"fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge commit 'c360401e58f3d8b7f3ec1323814dfe579a80e0bb'","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4"},{"sha":"a36b64fd04626f9d662135a25eea9e22fd155108","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/a36b64fd04626f9d662135a25eea9e22fd155108"},{"sha":"30872810bdd9d31a9b82a3bea5c5d558399f2f38","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface #279\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/30872810bdd9d31a9b82a3bea5c5d558399f2f38"},{"sha":"7db3cb347f0b5e85a798aabf495924c84b4d1949","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/7db3cb347f0b5e85a798aabf495924c84b4d1949"},{"sha":"1df2040e6e82a4bb14dfa60491945b171bdb2461","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/1df2040e6e82a4bb14dfa60491945b171bdb2461"},{"sha":"4541f36ffd4519c78683adcee7754611495eaa2f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"removing a deprecated debug toolbar setting","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/4541f36ffd4519c78683adcee7754611495eaa2f"},{"sha":"21ef3bfac0ebee5c0281045c19e9028efb28d767","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Remove the Plenum from the member API","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/21ef3bfac0ebee5c0281045c19e9028efb28d767"},{"sha":"c666d1315b224a87be7d9335eece426e0e8dd1a6","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/c666d1315b224a87be7d9335eece426e0e8dd1a6"},{"sha":"5cefdda3a0426a24d2a2c077587e311dbfdc317f","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Add API docs link to README","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/5cefdda3a0426a24d2a2c077587e311dbfdc317f"},{"sha":"456e518e0b48e87c7137e40d7bba03823e173caa","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Merge branch 'master' of https://github.com/daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/456e518e0b48e87c7137e40d7bba03823e173caa"}]},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651673","type":"PushEvent","actor":{"id":10321481,"login":"Fumes007","gravatar_id":"","url":"https://api.github.com/users/Fumes007","avatar_url":"https://avatars.githubusercontent.com/u/10321481?"},"repo":{"id":28531568,"name":"Fumes007/Material","url":"https://api.github.com/repos/Fumes007/Material"},"payload":{"push_id":536864266,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d7de2454a06334c5d624f595181e521e290374a8","before":"55bb4ee4491c43b6f1428585a971aa291aff2be9","commits":[{"sha":"d7de2454a06334c5d624f595181e521e290374a8","author":{"email":"e0228c2ed04989008c35d09539476c25f93c0420@gmail.com","name":"Fumes007"},"message":"added material design spec","distinct":true,"url":"https://api.github.com/repos/Fumes007/Material/commits/d7de2454a06334c5d624f595181e521e290374a8"}]},"public":true,"created_at":"2015-01-01T15:01:16Z"}
,{"id":"2489651677","type":"IssuesEvent","actor":{"id":5221013,"login":"stevelaskaridis","gravatar_id":"","url":"https://api.github.com/users/stevelaskaridis","avatar_url":"https://avatars.githubusercontent.com/u/5221013?"},"repo":{"id":25934134,"name":"thessrb/thessrbio","url":"https://api.github.com/repos/thessrb/thessrbio"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thessrb/thessrbio/issues/48","labels_url":"https://api.github.com/repos/thessrb/thessrbio/issues/48/labels{/name}","comments_url":"https://api.github.com/repos/thessrb/thessrbio/issues/48/comments","events_url":"https://api.github.com/repos/thessrb/thessrbio/issues/48/events","html_url":"https://github.com/thessrb/thessrbio/issues/48","id":53221360,"number":48,"title":"Members pages shoutout typo?","user":{"login":"stevelaskaridis","id":5221013,"avatar_url":"https://avatars.githubusercontent.com/u/5221013?v=3","gravatar_id":"","url":"https://api.github.com/users/stevelaskaridis","html_url":"https://github.com/stevelaskaridis","followers_url":"https://api.github.com/users/stevelaskaridis/followers","following_url":"https://api.github.com/users/stevelaskaridis/following{/other_user}","gists_url":"https://api.github.com/users/stevelaskaridis/gists{/gist_id}","starred_url":"https://api.github.com/users/stevelaskaridis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevelaskaridis/subscriptions","organizations_url":"https://api.github.com/users/stevelaskaridis/orgs","repos_url":"https://api.github.com/users/stevelaskaridis/repos","events_url":"https://api.github.com/users/stevelaskaridis/events{/privacy}","received_events_url":"https://api.github.com/users/stevelaskaridis/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:01:17Z","updated_at":"2015-01-01T15:01:17Z","closed_at":null,"body":"In the members page, inside the *shoutout*, shouldn't it be \"Shame on you\" instead of \"Same on you\" ?\r\n\r\n![capture](https://cloud.githubusercontent.com/assets/5221013/5592433/8f9f86aa-91d7-11e4-8b78-e82eccbc4775.PNG)"}},"public":true,"created_at":"2015-01-01T15:01:17Z","org":{"id":896873,"login":"thessrb","gravatar_id":"","url":"https://api.github.com/orgs/thessrb","avatar_url":"https://avatars.githubusercontent.com/u/896873?"}}
,{"id":"2489651680","type":"PushEvent","actor":{"id":9966277,"login":"mdt207","gravatar_id":"","url":"https://api.github.com/users/mdt207","avatar_url":"https://avatars.githubusercontent.com/u/9966277?"},"repo":{"id":28688526,"name":"mdt207/GDo-kon","url":"https://api.github.com/repos/mdt207/GDo-kon"},"payload":{"push_id":536864269,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aa58de709261b4a3ac0e7d40d9439c7220fe9938","before":"2333934e60ef09cbf636c698b49dfb40900aeaab","commits":[{"sha":"aa58de709261b4a3ac0e7d40d9439c7220fe9938","author":{"email":"cd28f5565289ed460fbe3a6d5b63448195cd90ae@gmail.com","name":"MDT"},"message":"Create main.cpp","distinct":true,"url":"https://api.github.com/repos/mdt207/GDo-kon/commits/aa58de709261b4a3ac0e7d40d9439c7220fe9938"}]},"public":true,"created_at":"2015-01-01T15:01:17Z"}
,{"id":"2489651685","type":"WatchEvent","actor":{"id":677030,"login":"Sleavely","gravatar_id":"","url":"https://api.github.com/users/Sleavely","avatar_url":"https://avatars.githubusercontent.com/u/677030?"},"repo":{"id":5543656,"name":"meltingice/psd.js","url":"https://api.github.com/repos/meltingice/psd.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:17Z"}
,{"id":"2489651687","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28496455,"name":"cdpython/cdpython.github.io","url":"https://api.github.com/repos/cdpython/cdpython.github.io"},"payload":{"push_id":536864273,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"047f64b8219162e85ec2e6b5555dd6f64ccbb5e3","before":"7f904656f835bb5f95531e7ba9dd5da713e32648","commits":[{"sha":"047f64b8219162e85ec2e6b5555dd6f64ccbb5e3","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월  2일 금요일 00시 01분 05초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/cdpython.github.io/commits/047f64b8219162e85ec2e6b5555dd6f64ccbb5e3"}]},"public":true,"created_at":"2015-01-01T15:01:17Z"}
,{"id":"2489651688","type":"IssueCommentEvent","actor":{"id":23058,"login":"davydotcom","gravatar_id":"","url":"https://api.github.com/users/davydotcom","avatar_url":"https://avatars.githubusercontent.com/u/23058?"},"repo":{"id":7763363,"name":"ratpack/ratpack","url":"https://api.github.com/repos/ratpack/ratpack"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/537","labels_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/labels{/name}","comments_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/comments","events_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/events","html_url":"https://github.com/ratpack/ratpack/issues/537","id":53108739,"number":537,"title":"Improved configurability of asset handler","user":{"login":"alkemist","id":17825,"avatar_url":"https://avatars.githubusercontent.com/u/17825?v=3","gravatar_id":"","url":"https://api.github.com/users/alkemist","html_url":"https://github.com/alkemist","followers_url":"https://api.github.com/users/alkemist/followers","following_url":"https://api.github.com/users/alkemist/following{/other_user}","gists_url":"https://api.github.com/users/alkemist/gists{/gist_id}","starred_url":"https://api.github.com/users/alkemist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alkemist/subscriptions","organizations_url":"https://api.github.com/users/alkemist/orgs","repos_url":"https://api.github.com/users/alkemist/repos","events_url":"https://api.github.com/users/alkemist/events{/privacy}","received_events_url":"https://api.github.com/users/alkemist/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/ratpack/ratpack/labels/good-first-contrib","name":"good-first-contrib","color":"00c5fe"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-30T11:08:31Z","updated_at":"2015-01-01T15:01:17Z","closed_at":null,"body":"Our asset handling is too simplistic. I'd like to change things around to make the asset handling more configurable, by introducing a builder for asset handlers.\r\n\r\nWe should introduce…\r\n\r\n```\r\npackage ratpack.file\r\n\r\ninterface AssetHandlerSpec {\r\n  AssetHandlerSpec compressionMinSize(int bytes)\r\n  AssetHandlerSpec indexFiles(String... indexFiles)\r\n  AssetHandlerSpec noCompress(String mimeTypes)\r\n}\r\n```\r\n\r\nThe asset handler method on `Handlers` and corresponding `Chain` method will change to…\r\n\r\n```\r\nHandler assets(LaunchConfig launchConfig, String path, Action<? super AssetHandlerSpec> config)\r\n```\r\n\r\nWe can then remove the related items from launch config.\r\n\r\nThis will also require some reworking of the file serving internals to support more decisions being made about how to render the file at the handler level instead of the internal transmitter.\r\n"},"comment":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/comments/68488518","html_url":"https://github.com/ratpack/ratpack/issues/537#issuecomment-68488518","issue_url":"https://api.github.com/repos/ratpack/ratpack/issues/537","id":68488518,"user":{"login":"davydotcom","id":23058,"avatar_url":"https://avatars.githubusercontent.com/u/23058?v=3","gravatar_id":"","url":"https://api.github.com/users/davydotcom","html_url":"https://github.com/davydotcom","followers_url":"https://api.github.com/users/davydotcom/followers","following_url":"https://api.github.com/users/davydotcom/following{/other_user}","gists_url":"https://api.github.com/users/davydotcom/gists{/gist_id}","starred_url":"https://api.github.com/users/davydotcom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davydotcom/subscriptions","organizations_url":"https://api.github.com/users/davydotcom/orgs","repos_url":"https://api.github.com/users/davydotcom/repos","events_url":"https://api.github.com/users/davydotcom/events{/privacy}","received_events_url":"https://api.github.com/users/davydotcom/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:17Z","updated_at":"2015-01-01T15:01:17Z","body":"gzipping*"}},"public":true,"created_at":"2015-01-01T15:01:18Z","org":{"id":3344496,"login":"ratpack","gravatar_id":"","url":"https://api.github.com/orgs/ratpack","avatar_url":"https://avatars.githubusercontent.com/u/3344496?"}}
,{"id":"2489651690","type":"PullRequestEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/chrisduan/mychat/pulls/3","id":26743779,"html_url":"https://github.com/chrisduan/mychat/pull/3","diff_url":"https://github.com/chrisduan/mychat/pull/3.diff","patch_url":"https://github.com/chrisduan/mychat/pull/3.patch","issue_url":"https://api.github.com/repos/chrisduan/mychat/issues/3","number":3,"state":"closed","locked":false,"title":"modify README.md,log develop plan","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:09Z","updated_at":"2015-01-01T15:01:18Z","closed_at":"2015-01-01T15:01:17Z","merged_at":"2015-01-01T15:01:17Z","merge_commit_sha":"da8dfd9ed1f00ec3436b9b74333d7699962908a9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits","review_comments_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments","review_comment_url":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","head":{"label":"chrisduan:task","ref":"task","sha":"016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:01:18Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"chrisduan:master","ref":"master","sha":"06d276764e280d653c89ac60cc5378615559aef8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:01:18Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3"},"html":{"href":"https://github.com/chrisduan/mychat/pull/3"},"issue":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3"},"comments":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":7,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651692","type":"PushEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"push_id":536864275,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"c83ea67f2ad277a0f2681f29f7031290474530ed","before":"06d276764e280d653c89ac60cc5378615559aef8","commits":[{"sha":"016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","author":{"email":"9e33b72f201b29a130675473741fc0fd66e1811e@ericsson.com","name":"UDM/CBC UPG"},"message":"modify README.md,log develop plan","distinct":false,"url":"https://api.github.com/repos/chrisduan/mychat/commits/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8"},{"sha":"c83ea67f2ad277a0f2681f29f7031290474530ed","author":{"email":"eda3851d811821b2227c5e552d0c38282607d63d@126.com","name":"chrisduan"},"message":"Merge pull request #3 from chrisduan/task\n\nmodify README.md,log develop plan","distinct":true,"url":"https://api.github.com/repos/chrisduan/mychat/commits/c83ea67f2ad277a0f2681f29f7031290474530ed"}]},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651693","type":"IssueCommentEvent","actor":{"id":1909317,"login":"Woseseltops","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","avatar_url":"https://avatars.githubusercontent.com/u/1909317?"},"repo":{"id":28224290,"name":"Woseseltops/signbank","url":"https://api.github.com/repos/Woseseltops/signbank"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/8","labels_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8/comments","events_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8/events","html_url":"https://github.com/Woseseltops/signbank/issues/8","id":52469838,"number":8,"title":"The field choices should be editable from the Django admin","user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Woseseltops/signbank/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-19T10:45:11Z","updated_at":"2015-01-01T15:01:18Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/comments/68488519","html_url":"https://github.com/Woseseltops/signbank/issues/8#issuecomment-68488519","issue_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8","id":68488519,"user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:18Z","updated_at":"2015-01-01T15:01:18Z","body":"Related to #7 "}},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651697","type":"CreateEvent","actor":{"id":1214951,"login":"shahzad-latif","gravatar_id":"","url":"https://api.github.com/users/shahzad-latif","avatar_url":"https://avatars.githubusercontent.com/u/1214951?"},"repo":{"id":28688619,"name":"shahzad-latif/testrepo","url":"https://api.github.com/repos/shahzad-latif/testrepo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Test repo","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651703","type":"ForkEvent","actor":{"id":3161587,"login":"mmdanggg2","gravatar_id":"","url":"https://api.github.com/users/mmdanggg2","avatar_url":"https://avatars.githubusercontent.com/u/3161587?"},"repo":{"id":8632474,"name":"jadar/DeveloperCapes","url":"https://api.github.com/repos/jadar/DeveloperCapes"},"payload":{"forkee":{"id":28688620,"name":"DeveloperCapes","full_name":"mmdanggg2/DeveloperCapes","owner":{"login":"mmdanggg2","id":3161587,"avatar_url":"https://avatars.githubusercontent.com/u/3161587?v=3","gravatar_id":"","url":"https://api.github.com/users/mmdanggg2","html_url":"https://github.com/mmdanggg2","followers_url":"https://api.github.com/users/mmdanggg2/followers","following_url":"https://api.github.com/users/mmdanggg2/following{/other_user}","gists_url":"https://api.github.com/users/mmdanggg2/gists{/gist_id}","starred_url":"https://api.github.com/users/mmdanggg2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmdanggg2/subscriptions","organizations_url":"https://api.github.com/users/mmdanggg2/orgs","repos_url":"https://api.github.com/users/mmdanggg2/repos","events_url":"https://api.github.com/users/mmdanggg2/events{/privacy}","received_events_url":"https://api.github.com/users/mmdanggg2/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mmdanggg2/DeveloperCapes","description":"A Minecraft modding library for adding Donor/Tester only capes!","fork":true,"url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes","forks_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/forks","keys_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/teams","hooks_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/hooks","issue_events_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/issues/events{/number}","events_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/events","assignees_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/assignees{/user}","branches_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/branches{/branch}","tags_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/tags","blobs_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/refs{/sha}","trees_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/statuses/{sha}","languages_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/languages","stargazers_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/stargazers","contributors_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/contributors","subscribers_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/subscribers","subscription_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/subscription","commits_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/commits{/sha}","git_commits_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/commits{/sha}","comments_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/comments{/number}","issue_comment_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/issues/comments/{number}","contents_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/contents/{+path}","compare_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/merges","archive_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/downloads","issues_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/issues{/number}","pulls_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/pulls{/number}","milestones_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/milestones{/number}","notifications_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/labels{/name}","releases_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/releases{/id}","created_at":"2015-01-01T15:01:19Z","updated_at":"2014-11-24T05:38:03Z","pushed_at":"2014-11-11T15:49:00Z","git_url":"git://github.com/mmdanggg2/DeveloperCapes.git","ssh_url":"git@github.com:mmdanggg2/DeveloperCapes.git","clone_url":"https://github.com/mmdanggg2/DeveloperCapes.git","svn_url":"https://github.com/mmdanggg2/DeveloperCapes","homepage":"","size":1106,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:20Z"}
,{"id":"2489651708","type":"PushEvent","actor":{"id":399120,"login":"andreastt","gravatar_id":"","url":"https://api.github.com/users/andreastt","avatar_url":"https://avatars.githubusercontent.com/u/399120?"},"repo":{"id":10590213,"name":"SeleniumHQ/docs","url":"https://api.github.com/repos/SeleniumHQ/docs"},"payload":{"push_id":536864279,"size":2,"distinct_size":2,"ref":"refs/heads/gh-pages","head":"99ca91e46acb76316e16b294d69ecd9d1c8787e2","before":"a54522998afc96d8595a8c5724c0cd77a4cf734e","commits":[{"sha":"91b9386a00c6830aec65dc2cd6514b0b07f78890","author":{"email":"dab4293f93c7233f547c2dcfbe48efb5ac3ee2f4@mozilla.com","name":"Andreas Tolfsen"},"message":"Use event listeners","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/docs/commits/91b9386a00c6830aec65dc2cd6514b0b07f78890"},{"sha":"99ca91e46acb76316e16b294d69ecd9d1c8787e2","author":{"email":"dab4293f93c7233f547c2dcfbe48efb5ac3ee2f4@mozilla.com","name":"Andreas Tolfsen"},"message":"Track current header in ToC","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/docs/commits/99ca91e46acb76316e16b294d69ecd9d1c8787e2"}]},"public":true,"created_at":"2015-01-01T15:01:20Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}}
,{"id":"2489651710","type":"PushEvent","actor":{"id":3495129,"login":"sundaymtn","gravatar_id":"","url":"https://api.github.com/users/sundaymtn","avatar_url":"https://avatars.githubusercontent.com/u/3495129?"},"repo":{"id":24147122,"name":"sundaymtn/waterline","url":"https://api.github.com/repos/sundaymtn/waterline"},"payload":{"push_id":536864281,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"928509483a908b0835930dc829d6972d688b99a2","before":"2a2ec35bfefb9341b1df2f213aad1dac804bc2ea","commits":[{"sha":"928509483a908b0835930dc829d6972d688b99a2","author":{"email":"7fbc091194a9488bfb16868527a7c3a8ba469dba@gmail.com","name":"Seth Carter"},"message":"[skip ci] updated waterline data","distinct":true,"url":"https://api.github.com/repos/sundaymtn/waterline/commits/928509483a908b0835930dc829d6972d688b99a2"}]},"public":true,"created_at":"2015-01-01T15:01:20Z"}
,{"id":"2489651711","type":"PullRequestEvent","actor":{"id":2664774,"login":"wheam","gravatar_id":"","url":"https://api.github.com/users/wheam","avatar_url":"https://avatars.githubusercontent.com/u/2664774?"},"repo":{"id":2281775,"name":"marcuswestin/WebViewJavascriptBridge","url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge"},"payload":{"action":"opened","number":117,"pull_request":{"url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117","id":26743780,"html_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117","diff_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117.diff","patch_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117.patch","issue_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117","number":117,"state":"open","locked":false,"title":"call Handler.handler() in ui thread and double escape messageJSON to javascript","user":{"login":"wheam","id":2664774,"avatar_url":"https://avatars.githubusercontent.com/u/2664774?v=3","gravatar_id":"","url":"https://api.github.com/users/wheam","html_url":"https://github.com/wheam","followers_url":"https://api.github.com/users/wheam/followers","following_url":"https://api.github.com/users/wheam/following{/other_user}","gists_url":"https://api.github.com/users/wheam/gists{/gist_id}","starred_url":"https://api.github.com/users/wheam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wheam/subscriptions","organizations_url":"https://api.github.com/users/wheam/orgs","repos_url":"https://api.github.com/users/wheam/repos","events_url":"https://api.github.com/users/wheam/events{/privacy}","received_events_url":"https://api.github.com/users/wheam/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:20Z","updated_at":"2015-01-01T15:01:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/commits","review_comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/comments","review_comment_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/comments/{number}","comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117/comments","statuses_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/4816d6a8100dc08e25b7d448c851174152eff633","head":{"label":"fangj:master","ref":"master","sha":"4816d6a8100dc08e25b7d448c851174152eff633","user":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"repo":{"id":12103692,"name":"WebViewJavascriptBridge","full_name":"fangj/WebViewJavascriptBridge","owner":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/fangj/WebViewJavascriptBridge","description":"An cross-platform bridge for sending messages between Obj-C/Java/Javascript and JavaScript in UIWebViews/WebViews","fork":true,"url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/releases{/id}","created_at":"2013-08-14T08:19:04Z","updated_at":"2014-12-23T15:58:50Z","pushed_at":"2014-03-27T09:05:49Z","git_url":"git://github.com/fangj/WebViewJavascriptBridge.git","ssh_url":"git@github.com:fangj/WebViewJavascriptBridge.git","clone_url":"https://github.com/fangj/WebViewJavascriptBridge.git","svn_url":"https://github.com/fangj/WebViewJavascriptBridge","homepage":"","size":763,"stargazers_count":11,"watchers_count":11,"language":"Objective-C","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":0,"forks":2,"open_issues":0,"watchers":11,"default_branch":"master"}},"base":{"label":"marcuswestin:master","ref":"master","sha":"52b91344dec20ac66ed4cd9275bde2245eab88bb","user":{"login":"marcuswestin","id":131967,"avatar_url":"https://avatars.githubusercontent.com/u/131967?v=3","gravatar_id":"","url":"https://api.github.com/users/marcuswestin","html_url":"https://github.com/marcuswestin","followers_url":"https://api.github.com/users/marcuswestin/followers","following_url":"https://api.github.com/users/marcuswestin/following{/other_user}","gists_url":"https://api.github.com/users/marcuswestin/gists{/gist_id}","starred_url":"https://api.github.com/users/marcuswestin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcuswestin/subscriptions","organizations_url":"https://api.github.com/users/marcuswestin/orgs","repos_url":"https://api.github.com/users/marcuswestin/repos","events_url":"https://api.github.com/users/marcuswestin/events{/privacy}","received_events_url":"https://api.github.com/users/marcuswestin/received_events","type":"User","site_admin":false},"repo":{"id":2281775,"name":"WebViewJavascriptBridge","full_name":"marcuswestin/WebViewJavascriptBridge","owner":{"login":"marcuswestin","id":131967,"avatar_url":"https://avatars.githubusercontent.com/u/131967?v=3","gravatar_id":"","url":"https://api.github.com/users/marcuswestin","html_url":"https://github.com/marcuswestin","followers_url":"https://api.github.com/users/marcuswestin/followers","following_url":"https://api.github.com/users/marcuswestin/following{/other_user}","gists_url":"https://api.github.com/users/marcuswestin/gists{/gist_id}","starred_url":"https://api.github.com/users/marcuswestin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcuswestin/subscriptions","organizations_url":"https://api.github.com/users/marcuswestin/orgs","repos_url":"https://api.github.com/users/marcuswestin/repos","events_url":"https://api.github.com/users/marcuswestin/events{/privacy}","received_events_url":"https://api.github.com/users/marcuswestin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/marcuswestin/WebViewJavascriptBridge","description":"An iOS/OSX bridge for sending messages between Obj-C and JavaScript in UIWebViews/WebViews","fork":false,"url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/releases{/id}","created_at":"2011-08-28T02:25:27Z","updated_at":"2015-01-01T04:00:35Z","pushed_at":"2014-11-05T17:26:00Z","git_url":"git://github.com/marcuswestin/WebViewJavascriptBridge.git","ssh_url":"git@github.com:marcuswestin/WebViewJavascriptBridge.git","clone_url":"https://github.com/marcuswestin/WebViewJavascriptBridge.git","svn_url":"https://github.com/marcuswestin/WebViewJavascriptBridge","homepage":"http://marcuswest.in","size":1288,"stargazers_count":2099,"watchers_count":2099,"language":"Objective-C","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":448,"mirror_url":null,"open_issues_count":12,"forks":448,"open_issues":12,"watchers":2099,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117"},"html":{"href":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117"},"issue":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117"},"comments":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117/comments"},"review_comments":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/comments"},"review_comment":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/commits"},"statuses":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/4816d6a8100dc08e25b7d448c851174152eff633"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":32,"additions":16320,"deletions":167,"changed_files":99}},"public":true,"created_at":"2015-01-01T15:01:20Z"}
,{"id":"2489651716","type":"PushEvent","actor":{"id":8203176,"login":"fermino","gravatar_id":"","url":"https://api.github.com/users/fermino","avatar_url":"https://avatars.githubusercontent.com/u/8203176?"},"repo":{"id":25943021,"name":"fermino/WhatsBot","url":"https://api.github.com/repos/fermino/WhatsBot"},"payload":{"push_id":536864282,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2df1c99759a842bb5895ee9103b07010ba7eccda","before":"120bfbf0e1268191ef70d2e19b71884b09353e48","commits":[{"sha":"2df1c99759a842bb5895ee9103b07010ba7eccda","author":{"email":"4e166e1d3b38307f39b02b98a5595c2f4fa90e0b@gmail.com","name":"Fermín Olaiz"},"message":"Updating WhatsBot (Arduino)\n\nCommand end char: 0x10 (New Line).\nCommands:\n* pmi <pin>: pinMode(Pin, INPUT);\n* pmo <pin>: pinMode(Pin, OUTPUT);\n* dwh <pin>: digitalWrite(Pin, HIGH);\n* dwl <pin>: digitalWrite(Pin, LOW);","distinct":true,"url":"https://api.github.com/repos/fermino/WhatsBot/commits/2df1c99759a842bb5895ee9103b07010ba7eccda"}]},"public":true,"created_at":"2015-01-01T15:01:22Z"}
,{"id":"2489651718","type":"PushEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"push_id":536864283,"size":1,"distinct_size":1,"ref":"refs/heads/final","head":"5cd1712df72a79bccdebfe073d82224404871fac","before":"fecf568375c53fd0bf03eb4e81c821214077f41c","commits":[{"sha":"5cd1712df72a79bccdebfe073d82224404871fac","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@mevlans-MacBook-Pro.local","name":"mevlan"},"message":"white space removed","distinct":true,"url":"https://api.github.com/repos/mevlan/script/commits/5cd1712df72a79bccdebfe073d82224404871fac"}]},"public":true,"created_at":"2015-01-01T15:01:22Z"}
,{"id":"2489651721","type":"CreateEvent","actor":{"id":10364620,"login":"quixing","gravatar_id":"","url":"https://api.github.com/users/quixing","avatar_url":"https://avatars.githubusercontent.com/u/10364620?"},"repo":{"id":28688601,"name":"quixing/help-me","url":"https://api.github.com/repos/quixing/help-me"},"payload":{"ref":"readme-edits","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651722","type":"PushEvent","actor":{"id":9201970,"login":"qdm","gravatar_id":"","url":"https://api.github.com/users/qdm","avatar_url":"https://avatars.githubusercontent.com/u/9201970?"},"repo":{"id":25173910,"name":"qdm/qdm.github.io","url":"https://api.github.com/repos/qdm/qdm.github.io"},"payload":{"push_id":536864285,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391","before":"03be73575aca370065b6ebd7da23a860e0eff070","commits":[{"sha":"43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651724","type":"PushEvent","actor":{"id":7281281,"login":"poliander","gravatar_id":"","url":"https://api.github.com/users/poliander","avatar_url":"https://avatars.githubusercontent.com/u/7281281?"},"repo":{"id":25121438,"name":"poliander/skeleton-sdcc-cpc","url":"https://api.github.com/repos/poliander/skeleton-sdcc-cpc"},"payload":{"push_id":536864286,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d5cf85780b15e3099ffc09f46a7bd07dd7358e1","before":"9704666412e4d03a1def4dba338bad30435358e4","commits":[{"sha":"4d5cf85780b15e3099ffc09f46a7bd07dd7358e1","author":{"email":"414ad89ad538463e0ddf73118b04c3f329e260aa@gmx.net","name":"poliander"},"message":"added default hardware I/O port definitions to cpc.h","distinct":true,"url":"https://api.github.com/repos/poliander/skeleton-sdcc-cpc/commits/4d5cf85780b15e3099ffc09f46a7bd07dd7358e1"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651728","type":"PushEvent","actor":{"id":463790,"login":"cmoulliard","gravatar_id":"","url":"https://api.github.com/users/cmoulliard","avatar_url":"https://avatars.githubusercontent.com/u/463790?"},"repo":{"id":23330642,"name":"astefanutti/camel-cdi","url":"https://api.github.com/repos/astefanutti/camel-cdi"},"payload":{"push_id":536864289,"size":1,"distinct_size":1,"ref":"refs/heads/quickstart-persistence","head":"085dbaa059eccfd622f9e6145eef81d34e97f3ac","before":"573f9e9d183eabe816f329764c2a5399b193da64","commits":[{"sha":"085dbaa059eccfd622f9e6145eef81d34e97f3ac","author":{"email":"5d68aadc7b86f4ec46829bcee9c27fce51e3abf5@gmail.com","name":"Charles Moulliard"},"message":"Investigate issues: injection point does not work with Application scoped excepted if we set an extension","distinct":true,"url":"https://api.github.com/repos/astefanutti/camel-cdi/commits/085dbaa059eccfd622f9e6145eef81d34e97f3ac"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651730","type":"PushEvent","actor":{"id":20723,"login":"audreyt","gravatar_id":"","url":"https://api.github.com/users/audreyt","avatar_url":"https://avatars.githubusercontent.com/u/20723?"},"repo":{"id":10243453,"name":"g0v/moedict-app","url":"https://api.github.com/repos/g0v/moedict-app"},"payload":{"push_id":536864290,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"f149cc5aac0636de10ea462b9db6bc4204c628a3","before":"a19cfb09b7fb3c7aea88b3d20554ad4ee0c700e0","commits":[{"sha":"f149cc5aac0636de10ea462b9db6bc4204c628a3","author":{"email":"809c9e962e12c9bd1840bfdfb8eee4210a983ced@audreyt.org","name":"Audrey Tang"},"message":"* 2014-12-15 upstream update.","distinct":true,"url":"https://api.github.com/repos/g0v/moedict-app/commits/f149cc5aac0636de10ea462b9db6bc4204c628a3"}]},"public":true,"created_at":"2015-01-01T15:01:23Z","org":{"id":2668086,"login":"g0v","gravatar_id":"","url":"https://api.github.com/orgs/g0v","avatar_url":"https://avatars.githubusercontent.com/u/2668086?"}}
,{"id":"2489651732","type":"PushEvent","actor":{"id":4444926,"login":"freeweibo","gravatar_id":"","url":"https://api.github.com/users/freeweibo","avatar_url":"https://avatars.githubusercontent.com/u/4444926?"},"repo":{"id":10095561,"name":"freeweibo/top","url":"https://api.github.com/repos/freeweibo/top"},"payload":{"push_id":536864292,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c72e57cea29009c578dfaddec03a593f04649c7a","before":"6979c2887ded9d3b8aa41a74a7f7d502b588abbd","commits":[{"sha":"c72e57cea29009c578dfaddec03a593f04649c7a","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@ec2-us-web2.(none)","name":"Ubuntu"},"message":"auto","distinct":true,"url":"https://api.github.com/repos/freeweibo/top/commits/c72e57cea29009c578dfaddec03a593f04649c7a"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651734","type":"CreateEvent","actor":{"id":523463,"login":"suprafly","gravatar_id":"","url":"https://api.github.com/users/suprafly","avatar_url":"https://avatars.githubusercontent.com/u/523463?"},"repo":{"id":28688587,"name":"suprafly/knodes","url":"https://api.github.com/repos/suprafly/knodes"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Knowledge Nodes app.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:24Z"}
,{"id":"2489651737","type":"CreateEvent","actor":{"id":7732667,"login":"lihechao","gravatar_id":"","url":"https://api.github.com/users/lihechao","avatar_url":"https://avatars.githubusercontent.com/u/7732667?"},"repo":{"id":28688622,"name":"lihechao/pl0Compiler","url":"https://api.github.com/repos/lihechao/pl0Compiler"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"高级PL0编译器","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:24Z"}
,{"id":"2489651742","type":"CommitCommentEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":8969224,"name":"peti/nixpkgs","url":"https://api.github.com/repos/peti/nixpkgs"},"payload":{"comment":{"url":"https://api.github.com/repos/peti/nixpkgs/comments/9132422","html_url":"https://github.com/peti/nixpkgs/commit/12c51681d322e02b4f3b9b0e77eda261720c8073#commitcomment-9132422","id":9132422,"user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"12c51681d322e02b4f3b9b0e77eda261720c8073","created_at":"2015-01-01T15:01:25Z","updated_at":"2015-01-01T15:01:25Z","body":"@vcunat link to a failed build log?"}},"public":true,"created_at":"2015-01-01T15:01:25Z"}
,{"id":"2489651744","type":"WatchEvent","actor":{"id":2070932,"login":"0xBADC0FFEE","gravatar_id":"","url":"https://api.github.com/users/0xBADC0FFEE","avatar_url":"https://avatars.githubusercontent.com/u/2070932?"},"repo":{"id":21438999,"name":"jeffbyrnes/alfred-pkgman-workflow","url":"https://api.github.com/repos/jeffbyrnes/alfred-pkgman-workflow"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:25Z"}
,{"id":"2489651748","type":"CreateEvent","actor":{"id":5804922,"login":"taukir4u","gravatar_id":"","url":"https://api.github.com/users/taukir4u","avatar_url":"https://avatars.githubusercontent.com/u/5804922?"},"repo":{"id":28688623,"name":"taukir4u/ResultUIApp","url":"https://api.github.com/repos/taukir4u/ResultUIApp"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:26Z"}
,{"id":"2489651752","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864298,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6c8437f7edc4665c70bcdd78749c94d03deb57f6","before":"d70741fcde9b233d93f25b3ece739774fe414280","commits":[{"sha":"6c8437f7edc4665c70bcdd78749c94d03deb57f6","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Delete IPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/6c8437f7edc4665c70bcdd78749c94d03deb57f6"}]},"public":true,"created_at":"2015-01-01T15:01:27Z"}
,{"id":"2489651756","type":"PushEvent","actor":{"id":993322,"login":"qiangxue","gravatar_id":"","url":"https://api.github.com/users/qiangxue","avatar_url":"https://avatars.githubusercontent.com/u/993322?"},"repo":{"id":14080265,"name":"yiisoft/yii2-bootstrap","url":"https://api.github.com/repos/yiisoft/yii2-bootstrap"},"payload":{"push_id":536864301,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43b808a9d799d9b08dca5790722d1b51196e7e25","before":"1b5ddfc0a5faa907b23add91bf8691fb041492f4","commits":[{"sha":"43b808a9d799d9b08dca5790722d1b51196e7e25","author":{"email":"4d681006a0a61cdec5c496212b1ec8571dd0b4c7@gmail.com","name":"Qiang Xue"},"message":"Fixes #6672: `yii\\bootstrap\\Dropdown` should register client event handlers","distinct":true,"url":"https://api.github.com/repos/yiisoft/yii2-bootstrap/commits/43b808a9d799d9b08dca5790722d1b51196e7e25"}]},"public":true,"created_at":"2015-01-01T15:01:27Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}}
,{"id":"2489651758","type":"PushEvent","actor":{"id":2338889,"login":"jzoldak","gravatar_id":"","url":"https://api.github.com/users/jzoldak","avatar_url":"https://avatars.githubusercontent.com/u/2338889?"},"repo":{"id":28165864,"name":"jzoldak/edx-platform","url":"https://api.github.com/repos/jzoldak/edx-platform"},"payload":{"push_id":536864302,"size":1,"distinct_size":1,"ref":"refs/heads/zoldak/travis","head":"ff8032c60c1a8184cd75071ebdf000463b0c647b","before":"3c1ec201ddf1ecf9f75ba3451f62e18ebdd506ab","commits":[{"sha":"ff8032c60c1a8184cd75071ebdf000463b0c647b","author":{"email":"07b9114d11c7ec659898bbb6d7e4ac930126bf6c@edx.org","name":"Jesse Zoldak"},"message":"Rerun video tests in bok-choy","distinct":true,"url":"https://api.github.com/repos/jzoldak/edx-platform/commits/ff8032c60c1a8184cd75071ebdf000463b0c647b"}]},"public":true,"created_at":"2015-01-01T15:01:27Z"}
,{"id":"2489651766","type":"PushEvent","actor":{"id":1064317,"login":"Jegp","gravatar_id":"","url":"https://api.github.com/users/Jegp","avatar_url":"https://avatars.githubusercontent.com/u/1064317?"},"repo":{"id":25170072,"name":"siigna/web","url":"https://api.github.com/repos/siigna/web"},"payload":{"push_id":536864305,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"74fe36b2d549e31f9e319a2df7dc48babf02aa25","before":"c39bc109aedbcd31fb4318f7b4922442410c1f72","commits":[{"sha":"944547015de9cc4621fb70ed12bb11a07f0fe68e","author":{"email":"57a9803b3cda36738e3b2e5920d6b657c2eed2fc@gmail.com","name":"Jens Egholm"},"message":"Added import statements","distinct":true,"url":"https://api.github.com/repos/siigna/web/commits/944547015de9cc4621fb70ed12bb11a07f0fe68e"},{"sha":"c8e78aaeb81d45cadd7bbe999e1c6a0cf89626eb","author":{"email":"57a9803b3cda36738e3b2e5920d6b657c2eed2fc@gmail.com","name":"Jens Egholm"},"message":"Fixed url","distinct":true,"url":"https://api.github.com/repos/siigna/web/commits/c8e78aaeb81d45cadd7bbe999e1c6a0cf89626eb"},{"sha":"74fe36b2d549e31f9e319a2df7dc48babf02aa25","author":{"email":"57a9803b3cda36738e3b2e5920d6b657c2eed2fc@gmail.com","name":"Jens Egholm"},"message":"Merge","distinct":true,"url":"https://api.github.com/repos/siigna/web/commits/74fe36b2d549e31f9e319a2df7dc48babf02aa25"}]},"public":true,"created_at":"2015-01-01T15:01:28Z","org":{"id":1710412,"login":"siigna","gravatar_id":"","url":"https://api.github.com/orgs/siigna","avatar_url":"https://avatars.githubusercontent.com/u/1710412?"}}
,{"id":"2489651767","type":"PushEvent","actor":{"id":5726519,"login":"Daverball","gravatar_id":"","url":"https://api.github.com/users/Daverball","avatar_url":"https://avatars.githubusercontent.com/u/5726519?"},"repo":{"id":28491445,"name":"Daverball/mkxp","url":"https://api.github.com/repos/Daverball/mkxp"},"payload":{"push_id":536864307,"size":1,"distinct_size":1,"ref":"refs/heads/lisa","head":"bfde60d93dea2b797e8cfe1400cefea8dd006113","before":"c490641f9be08ca4ac33d53379af44c321a04d56","commits":[{"sha":"bfde60d93dea2b797e8cfe1400cefea8dd006113","author":{"email":"bfcdf3e6ca6cef45543bfbb57509c92aec9a39fb@portablegaming.de","name":"David Salvisberg"},"message":"Changed default binds and the button descriptions.","distinct":true,"url":"https://api.github.com/repos/Daverball/mkxp/commits/bfde60d93dea2b797e8cfe1400cefea8dd006113"}]},"public":true,"created_at":"2015-01-01T15:01:28Z"}
,{"id":"2489651768","type":"PushEvent","actor":{"id":8841750,"login":"giorgia-amici","gravatar_id":"","url":"https://api.github.com/users/giorgia-amici","avatar_url":"https://avatars.githubusercontent.com/u/8841750?"},"repo":{"id":28663730,"name":"giorgia-amici/testing_angular_exmples","url":"https://api.github.com/repos/giorgia-amici/testing_angular_exmples"},"payload":{"push_id":536864308,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4cec8f79defc9b9f2d738d9e571a555b11a7e3ae","before":"6b676976a1bb6e3ec28073dcf6d68dc5d7264cf8","commits":[{"sha":"4cec8f79defc9b9f2d738d9e571a555b11a7e3ae","author":{"email":"6fac0037488835a7472109dab8130ba17c947554@gmail.com","name":"Giorgia"},"message":"to add $resource","distinct":true,"url":"https://api.github.com/repos/giorgia-amici/testing_angular_exmples/commits/4cec8f79defc9b9f2d738d9e571a555b11a7e3ae"}]},"public":true,"created_at":"2015-01-01T15:01:29Z"}
,{"id":"2489651770","type":"WatchEvent","actor":{"id":9958076,"login":"youngchullee","gravatar_id":"","url":"https://api.github.com/users/youngchullee","avatar_url":"https://avatars.githubusercontent.com/u/9958076?"},"repo":{"id":13590146,"name":"bardsoftware/ace","url":"https://api.github.com/repos/bardsoftware/ace"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:29Z","org":{"id":2625618,"login":"bardsoftware","gravatar_id":"","url":"https://api.github.com/orgs/bardsoftware","avatar_url":"https://avatars.githubusercontent.com/u/2625618?"}}
,{"id":"2489651771","type":"ForkEvent","actor":{"id":1218095,"login":"superzhang","gravatar_id":"","url":"https://api.github.com/users/superzhang","avatar_url":"https://avatars.githubusercontent.com/u/1218095?"},"repo":{"id":3261830,"name":"tommy351/Octopress-Theme-Slash","url":"https://api.github.com/repos/tommy351/Octopress-Theme-Slash"},"payload":{"forkee":{"id":28688624,"name":"Octopress-Theme-Slash","full_name":"superzhang/Octopress-Theme-Slash","owner":{"login":"superzhang","id":1218095,"avatar_url":"https://avatars.githubusercontent.com/u/1218095?v=3","gravatar_id":"","url":"https://api.github.com/users/superzhang","html_url":"https://github.com/superzhang","followers_url":"https://api.github.com/users/superzhang/followers","following_url":"https://api.github.com/users/superzhang/following{/other_user}","gists_url":"https://api.github.com/users/superzhang/gists{/gist_id}","starred_url":"https://api.github.com/users/superzhang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/superzhang/subscriptions","organizations_url":"https://api.github.com/users/superzhang/orgs","repos_url":"https://api.github.com/users/superzhang/repos","events_url":"https://api.github.com/users/superzhang/events{/privacy}","received_events_url":"https://api.github.com/users/superzhang/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/superzhang/Octopress-Theme-Slash","description":"Slash — a minimal theme for Octopress","fork":true,"url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash","forks_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/forks","keys_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/keys{/key_id}","collaborators_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/teams","hooks_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/hooks","issue_events_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/issues/events{/number}","events_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/events","assignees_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/assignees{/user}","branches_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/branches{/branch}","tags_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/tags","blobs_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/refs{/sha}","trees_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/trees{/sha}","statuses_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/statuses/{sha}","languages_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/languages","stargazers_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/stargazers","contributors_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/contributors","subscribers_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/subscribers","subscription_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/subscription","commits_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/commits{/sha}","git_commits_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/commits{/sha}","comments_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/comments{/number}","issue_comment_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/issues/comments/{number}","contents_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/contents/{+path}","compare_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/compare/{base}...{head}","merges_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/merges","archive_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/downloads","issues_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/issues{/number}","pulls_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/pulls{/number}","milestones_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/milestones{/number}","notifications_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/labels{/name}","releases_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/releases{/id}","created_at":"2015-01-01T15:01:29Z","updated_at":"2014-12-27T02:51:48Z","pushed_at":"2014-11-03T02:30:27Z","git_url":"git://github.com/superzhang/Octopress-Theme-Slash.git","ssh_url":"git@github.com:superzhang/Octopress-Theme-Slash.git","clone_url":"https://github.com/superzhang/Octopress-Theme-Slash.git","svn_url":"https://github.com/superzhang/Octopress-Theme-Slash","homepage":"zespia.tw/Octopress-Theme-Slash","size":702,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:29Z"}
,{"id":"2489651772","type":"PushEvent","actor":{"id":5591545,"login":"drjorgepolanco","gravatar_id":"","url":"https://api.github.com/users/drjorgepolanco","avatar_url":"https://avatars.githubusercontent.com/u/5591545?"},"repo":{"id":28620331,"name":"drjorgepolanco/depot","url":"https://api.github.com/repos/drjorgepolanco/depot"},"payload":{"push_id":536864310,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7","before":"36bbee955d1cc50f261570e2e0f4715f143de18b","commits":[{"sha":"4897d2cc80da285acbd5f65dedd304e060eb2d78","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add remote: true for AJAX","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/4897d2cc80da285acbd5f65dedd304e060eb2d78"},{"sha":"583cbeacb1cc0a8a5b0acb2497f7e8a2073acec5","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add formt.js to support AJAX","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/583cbeacb1cc0a8a5b0acb2497f7e8a2073acec5"},{"sha":"fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Create template to update cart using AJAX","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7"}]},"public":true,"created_at":"2015-01-01T15:01:29Z"}
,{"id":"2489651774","type":"PushEvent","actor":{"id":9466791,"login":"LukasGoetz","gravatar_id":"","url":"https://api.github.com/users/LukasGoetz","avatar_url":"https://avatars.githubusercontent.com/u/9466791?"},"repo":{"id":25974031,"name":"dorleosterode/gt-scaffold","url":"https://api.github.com/repos/dorleosterode/gt-scaffold"},"payload":{"push_id":536864311,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8d384afd03146e18c2481da41068cfd1a8f1ae30","before":"97c198e08643421de7bb5a79d869d7dd52201892","commits":[{"sha":"8d384afd03146e18c2481da41068cfd1a8f1ae30","author":{"email":"0d05806e6afb667c803401ebb2e8e6180854e6d0@studium.uni-hamburg.de","name":"Lukas G"},"message":"fixed bugs","distinct":true,"url":"https://api.github.com/repos/dorleosterode/gt-scaffold/commits/8d384afd03146e18c2481da41068cfd1a8f1ae30"}]},"public":true,"created_at":"2015-01-01T15:01:30Z"}
,{"id":"2489651776","type":"PushEvent","actor":{"id":1319330,"login":"prateekagr98","gravatar_id":"","url":"https://api.github.com/users/prateekagr98","avatar_url":"https://avatars.githubusercontent.com/u/1319330?"},"repo":{"id":24689724,"name":"prateekagr98/Fork-Read-Node","url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node"},"payload":{"push_id":536864312,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"db3d967e2c53fb21aac8d96b2165c3ce7a198591","before":"743cdb07e0798acb565437133adc2cb736f322b2","commits":[{"sha":"d16c5398b1d995801d25145e95490fdff566ba5d","author":{"email":"19de00c9cff63e88546050e79ed02691dc93c6a2@gmail.com","name":"Prateek Agarwal"},"message":"Changed OG image url","distinct":true,"url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node/commits/d16c5398b1d995801d25145e95490fdff566ba5d"},{"sha":"e8bd709bb92fb9b74946370af839078afd703ae7","author":{"email":"19de00c9cff63e88546050e79ed02691dc93c6a2@gmail.com","name":"Prateek Agarwal"},"message":"Add html param","distinct":true,"url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node/commits/e8bd709bb92fb9b74946370af839078afd703ae7"},{"sha":"db3d967e2c53fb21aac8d96b2165c3ce7a198591","author":{"email":"19de00c9cff63e88546050e79ed02691dc93c6a2@gmail.com","name":"Prateek Agarwal"},"message":"Add image dimension","distinct":true,"url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node/commits/db3d967e2c53fb21aac8d96b2165c3ce7a198591"}]},"public":true,"created_at":"2015-01-01T15:01:30Z"}
,{"id":"2489651777","type":"WatchEvent","actor":{"id":624975,"login":"ujuc","gravatar_id":"","url":"https://api.github.com/users/ujuc","avatar_url":"https://avatars.githubusercontent.com/u/624975?"},"repo":{"id":557980,"name":"Automattic/socket.io","url":"https://api.github.com/repos/Automattic/socket.io"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:30Z","org":{"id":887802,"login":"Automattic","gravatar_id":"","url":"https://api.github.com/orgs/Automattic","avatar_url":"https://avatars.githubusercontent.com/u/887802?"}}
,{"id":"2489651780","type":"IssueCommentEvent","actor":{"id":5571620,"login":"rhempel","gravatar_id":"","url":"https://api.github.com/users/rhempel","avatar_url":"https://avatars.githubusercontent.com/u/5571620?"},"repo":{"id":21779104,"name":"ev3dev/ev3dev.github.io","url":"https://api.github.com/repos/ev3dev/ev3dev.github.io"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37","labels_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37/labels{/name}","comments_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37/comments","events_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37/events","html_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37","id":53172964,"number":37,"title":"Add site news and associated atom feed","user":{"login":"WasabiFan","id":3310349,"avatar_url":"https://avatars.githubusercontent.com/u/3310349?v=3","gravatar_id":"","url":"https://api.github.com/users/WasabiFan","html_url":"https://github.com/WasabiFan","followers_url":"https://api.github.com/users/WasabiFan/followers","following_url":"https://api.github.com/users/WasabiFan/following{/other_user}","gists_url":"https://api.github.com/users/WasabiFan/gists{/gist_id}","starred_url":"https://api.github.com/users/WasabiFan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WasabiFan/subscriptions","organizations_url":"https://api.github.com/users/WasabiFan/orgs","repos_url":"https://api.github.com/users/WasabiFan/repos","events_url":"https://api.github.com/users/WasabiFan/events{/privacy}","received_events_url":"https://api.github.com/users/WasabiFan/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":14,"created_at":"2014-12-31T08:15:47Z","updated_at":"2015-01-01T15:01:31Z","closed_at":"2015-01-01T04:59:54Z","pull_request":{"url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/pulls/37","html_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37","diff_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37.diff","patch_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37.patch"},"body":"This PR adds a \"news\" page that displays a feed of posts (part of the discussion in ev3dev/ev3dev#109). There is also an atom feed of the same posts. I included a \"lorem ipsum\" news item to test with but we can (and probably should) replace it with an actual post before merging the PR.\r\n\r\nTo add this, there were a few larger things that I changed:\r\n- I added a \"community\" drop-down that includes the news, project gallery, and contributing menu items. If I had added another without collapsing these, the nav would have been much too wide for smaller screens.\r\n- I deleted the old `_posts` folder and moved the projects to a new `_posts` folder inside the existing projects folder. This both eliminates the need for explicit category definition (because Jekyll derives the set of categories by the directory structure above the posts) and allows us to add multiple post categories and keep them separate.\r\n\r\nNeither of these changes should break anything technically, although we will need to update the \"adding a project\" guide with the new path.\r\n\r\nMy `gh-pages` branch has been updated with these changes as well."},"comment":{"url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/comments/68488520","html_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37#issuecomment-68488520","issue_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37","id":68488520,"user":{"login":"rhempel","id":5571620,"avatar_url":"https://avatars.githubusercontent.com/u/5571620?v=3","gravatar_id":"","url":"https://api.github.com/users/rhempel","html_url":"https://github.com/rhempel","followers_url":"https://api.github.com/users/rhempel/followers","following_url":"https://api.github.com/users/rhempel/following{/other_user}","gists_url":"https://api.github.com/users/rhempel/gists{/gist_id}","starred_url":"https://api.github.com/users/rhempel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rhempel/subscriptions","organizations_url":"https://api.github.com/users/rhempel/orgs","repos_url":"https://api.github.com/users/rhempel/repos","events_url":"https://api.github.com/users/rhempel/events{/privacy}","received_events_url":"https://api.github.com/users/rhempel/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:31Z","updated_at":"2015-01-01T15:01:31Z","body":"Yes, thanks very much! It makes the site that much better for everyone."}},"public":true,"created_at":"2015-01-01T15:01:31Z","org":{"id":6878323,"login":"ev3dev","gravatar_id":"","url":"https://api.github.com/orgs/ev3dev","avatar_url":"https://avatars.githubusercontent.com/u/6878323?"}}
,{"id":"2489651783","type":"PushEvent","actor":{"id":6304475,"login":"thedman1361","gravatar_id":"","url":"https://api.github.com/users/thedman1361","avatar_url":"https://avatars.githubusercontent.com/u/6304475?"},"repo":{"id":27273059,"name":"Coders-Tree/tree-collab","url":"https://api.github.com/repos/Coders-Tree/tree-collab"},"payload":{"push_id":536864316,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e83935e297e2ccb6286fd280c9e61754eba1bce5","before":"375bf81b3bc9a7795b03e6e9c67b521cf1b944ae","commits":[{"sha":"e83935e297e2ccb6286fd280c9e61754eba1bce5","author":{"email":"4bde565915bcc7f2065135f533f62a84a737521f@yahoo.co.uk","name":"thedman1361"},"message":"Update files","distinct":true,"url":"https://api.github.com/repos/Coders-Tree/tree-collab/commits/e83935e297e2ccb6286fd280c9e61754eba1bce5"}]},"public":true,"created_at":"2015-01-01T15:01:32Z","org":{"id":9698976,"login":"Coders-Tree","gravatar_id":"","url":"https://api.github.com/orgs/Coders-Tree","avatar_url":"https://avatars.githubusercontent.com/u/9698976?"}}
,{"id":"2489651788","type":"PushEvent","actor":{"id":5772140,"login":"filip-daca","gravatar_id":"","url":"https://api.github.com/users/filip-daca","avatar_url":"https://avatars.githubusercontent.com/u/5772140?"},"repo":{"id":26588011,"name":"filip-daca/shimmer","url":"https://api.github.com/repos/filip-daca/shimmer"},"payload":{"push_id":536864318,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"72a71acb2796ac470c3247fcedd8a1f0c3e0a407","before":"3acd881d57c055ae3e66869b7dc943a72302ecfd","commits":[{"sha":"72a71acb2796ac470c3247fcedd8a1f0c3e0a407","author":{"email":"11cb1e5035043fa80727e16973dc59935baabebc@gmail.com","name":"Filip Daca"},"message":"Fixed Eclipse JSF integration:\n- tags autocomplete\n- JSF expressions autocomplete","distinct":true,"url":"https://api.github.com/repos/filip-daca/shimmer/commits/72a71acb2796ac470c3247fcedd8a1f0c3e0a407"}]},"public":true,"created_at":"2015-01-01T15:01:33Z"}
,{"id":"2489651794","type":"IssuesEvent","actor":{"id":756669,"login":"Mailaender","gravatar_id":"","url":"https://api.github.com/users/Mailaender","avatar_url":"https://avatars.githubusercontent.com/u/756669?"},"repo":{"id":1008670,"name":"slluis/cydin","url":"https://api.github.com/repos/slluis/cydin"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/slluis/cydin/issues/6","labels_url":"https://api.github.com/repos/slluis/cydin/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/slluis/cydin/issues/6/comments","events_url":"https://api.github.com/repos/slluis/cydin/issues/6/events","html_url":"https://github.com/slluis/cydin/issues/6","id":53221364,"number":6,"title":"More verbose error messages","user":{"login":"Mailaender","id":756669,"avatar_url":"https://avatars.githubusercontent.com/u/756669?v=3","gravatar_id":"","url":"https://api.github.com/users/Mailaender","html_url":"https://github.com/Mailaender","followers_url":"https://api.github.com/users/Mailaender/followers","following_url":"https://api.github.com/users/Mailaender/following{/other_user}","gists_url":"https://api.github.com/users/Mailaender/gists{/gist_id}","starred_url":"https://api.github.com/users/Mailaender/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Mailaender/subscriptions","organizations_url":"https://api.github.com/users/Mailaender/orgs","repos_url":"https://api.github.com/users/Mailaender/repos","events_url":"https://api.github.com/users/Mailaender/events{/privacy}","received_events_url":"https://api.github.com/users/Mailaender/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:01:34Z","updated_at":"2015-01-01T15:01:34Z","closed_at":null,"body":"I only get `The remote server returned an error: (500) Internal Server Error.` on a white page or `Server Error in '/' Application` where it seems Cydin itself crashed, because the log has not been created. That is really frustrating as you keep changing configuration settings and `addin-project.xml` randomly to finally find the flaw by guessing what is wrong."}},"public":true,"created_at":"2015-01-01T15:01:34Z"}
,{"id":"2489651796","type":"PushEvent","actor":{"id":5785031,"login":"ashishsanjayrao","gravatar_id":"","url":"https://api.github.com/users/ashishsanjayrao","avatar_url":"https://avatars.githubusercontent.com/u/5785031?"},"repo":{"id":28625671,"name":"Poornaprajna-Technologies/test","url":"https://api.github.com/repos/Poornaprajna-Technologies/test"},"payload":{"push_id":536864320,"size":1,"distinct_size":1,"ref":"refs/heads/test","head":"735ec29b8c3018560ee82661aa4165e789fddf2f","before":"1ef70b2d64fef77f1a0a1a01036d10bb4a865169","commits":[{"sha":"735ec29b8c3018560ee82661aa4165e789fddf2f","author":{"email":"e225f70e51a1c8b116ff8cab1ebd81c5cf6dacb1@gmail.com","name":"ashishsanjayrao"},"message":"trying to add the new folder","distinct":true,"url":"https://api.github.com/repos/Poornaprajna-Technologies/test/commits/735ec29b8c3018560ee82661aa4165e789fddf2f"}]},"public":true,"created_at":"2015-01-01T15:01:34Z","org":{"id":9415520,"login":"Poornaprajna-Technologies","gravatar_id":"","url":"https://api.github.com/orgs/Poornaprajna-Technologies","avatar_url":"https://avatars.githubusercontent.com/u/9415520?"}}
,{"id":"2489651797","type":"PushEvent","actor":{"id":1201409,"login":"zordius","gravatar_id":"","url":"https://api.github.com/users/zordius","avatar_url":"https://avatars.githubusercontent.com/u/1201409?"},"repo":{"id":28685419,"name":"zordius/gulp-github","url":"https://api.github.com/repos/zordius/gulp-github"},"payload":{"push_id":536864321,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","before":"e251ab3b94db7d6ea42974d607417cb8ff0fba94","commits":[{"sha":"ff67b872005f925146174211619be2d3b68185a1","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"update","distinct":true,"url":"https://api.github.com/repos/zordius/gulp-github/commits/ff67b872005f925146174211619be2d3b68185a1"},{"sha":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"test on travis","distinct":true,"url":"https://api.github.com/repos/zordius/gulp-github/commits/25e76bca2086e73d43a7259f089b0b7ca568ee4a"}]},"public":true,"created_at":"2015-01-01T15:01:34Z"}
,{"id":"2489651804","type":"PushEvent","actor":{"id":938567,"login":"abhardwaj","gravatar_id":"","url":"https://api.github.com/users/abhardwaj","avatar_url":"https://avatars.githubusercontent.com/u/938567?"},"repo":{"id":13134203,"name":"abhardwaj/datahub","url":"https://api.github.com/repos/abhardwaj/datahub"},"payload":{"push_id":536864324,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"123a619699a240e3cefae4187042dcd132888f31","before":"4d2bf81e4cb57999824b9149048b959d73edaea9","commits":[{"sha":"123a619699a240e3cefae4187042dcd132888f31","author":{"email":"04cd62effbece7d264364f151d3cb7040fe7e8f6@csail.mit.edu","name":"Anant Bhardwaj"},"message":"a little re-style","distinct":true,"url":"https://api.github.com/repos/abhardwaj/datahub/commits/123a619699a240e3cefae4187042dcd132888f31"}]},"public":true,"created_at":"2015-01-01T15:01:36Z"}
,{"id":"2489651806","type":"PushEvent","actor":{"id":1563093,"login":"lvyunyi","gravatar_id":"","url":"https://api.github.com/users/lvyunyi","avatar_url":"https://avatars.githubusercontent.com/u/1563093?"},"repo":{"id":23064298,"name":"lvyunyi/tutorial-ror","url":"https://api.github.com/repos/lvyunyi/tutorial-ror"},"payload":{"push_id":536864325,"size":1,"distinct_size":1,"ref":"refs/heads/new-updating-users","head":"13d6981b3726d166bef98fdda43ef7157d09d83b","before":"fe04e6e549326082d412fe9bcd839c24210d451c","commits":[{"sha":"13d6981b3726d166bef98fdda43ef7157d09d83b","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"完成编辑用户,准备开始9.2权限限制","distinct":true,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/13d6981b3726d166bef98fdda43ef7157d09d83b"}]},"public":true,"created_at":"2015-01-01T15:01:37Z"}
,{"id":"2489651807","type":"PushEvent","actor":{"id":1883165,"login":"manmyung","gravatar_id":"","url":"https://api.github.com/users/manmyung","avatar_url":"https://avatars.githubusercontent.com/u/1883165?"},"repo":{"id":27954898,"name":"manmyung/study-4clojure","url":"https://api.github.com/repos/manmyung/study-4clojure"},"payload":{"push_id":536864327,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ee822ce5f57f499ffa84806f36252259fb44728b","before":"ea5b24041e8ae66050028d4c9334491531f818ae","commits":[{"sha":"ee822ce5f57f499ffa84806f36252259fb44728b","author":{"email":"ab0de8a5debb5a0bc3c57846c2316b38f658d3f8@gmail.com","name":"manmyung"},"message":"~p40","distinct":true,"url":"https://api.github.com/repos/manmyung/study-4clojure/commits/ee822ce5f57f499ffa84806f36252259fb44728b"}]},"public":true,"created_at":"2015-01-01T15:01:37Z"}
,{"id":"2489651810","type":"WatchEvent","actor":{"id":655017,"login":"nikhildaga","gravatar_id":"","url":"https://api.github.com/users/nikhildaga","avatar_url":"https://avatars.githubusercontent.com/u/655017?"},"repo":{"id":16089035,"name":"yasaricli/metrello","url":"https://api.github.com/repos/yasaricli/metrello"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:37Z"}
,{"id":"2489651814","type":"IssueCommentEvent","actor":{"id":36227,"login":"tsloughter","gravatar_id":"","url":"https://api.github.com/users/tsloughter","avatar_url":"https://avatars.githubusercontent.com/u/36227?"},"repo":{"id":26610130,"name":"rebar/rebar3","url":"https://api.github.com/repos/rebar/rebar3"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rebar/rebar3/issues/83","labels_url":"https://api.github.com/repos/rebar/rebar3/issues/83/labels{/name}","comments_url":"https://api.github.com/repos/rebar/rebar3/issues/83/comments","events_url":"https://api.github.com/repos/rebar/rebar3/issues/83/events","html_url":"https://github.com/rebar/rebar3/pull/83","id":53153616,"number":83,"title":"overrides working except for transitive dep inheritance with lock file","user":{"login":"tsloughter","id":36227,"avatar_url":"https://avatars.githubusercontent.com/u/36227?v=3","gravatar_id":"","url":"https://api.github.com/users/tsloughter","html_url":"https://github.com/tsloughter","followers_url":"https://api.github.com/users/tsloughter/followers","following_url":"https://api.github.com/users/tsloughter/following{/other_user}","gists_url":"https://api.github.com/users/tsloughter/gists{/gist_id}","starred_url":"https://api.github.com/users/tsloughter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsloughter/subscriptions","organizations_url":"https://api.github.com/users/tsloughter/orgs","repos_url":"https://api.github.com/users/tsloughter/repos","events_url":"https://api.github.com/users/tsloughter/events{/privacy}","received_events_url":"https://api.github.com/users/tsloughter/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T22:43:25Z","updated_at":"2015-01-01T15:01:37Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rebar/rebar3/pulls/83","html_url":"https://github.com/rebar/rebar3/pull/83","diff_url":"https://github.com/rebar/rebar3/pull/83.diff","patch_url":"https://github.com/rebar/rebar3/pull/83.patch"},"body":"Not ready to merge, it doesn't work with a lock file. Opening for comment."},"comment":{"url":"https://api.github.com/repos/rebar/rebar3/issues/comments/68488524","html_url":"https://github.com/rebar/rebar3/pull/83#issuecomment-68488524","issue_url":"https://api.github.com/repos/rebar/rebar3/issues/83","id":68488524,"user":{"login":"tsloughter","id":36227,"avatar_url":"https://avatars.githubusercontent.com/u/36227?v=3","gravatar_id":"","url":"https://api.github.com/users/tsloughter","html_url":"https://github.com/tsloughter","followers_url":"https://api.github.com/users/tsloughter/followers","following_url":"https://api.github.com/users/tsloughter/following{/other_user}","gists_url":"https://api.github.com/users/tsloughter/gists{/gist_id}","starred_url":"https://api.github.com/users/tsloughter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsloughter/subscriptions","organizations_url":"https://api.github.com/users/tsloughter/orgs","repos_url":"https://api.github.com/users/tsloughter/repos","events_url":"https://api.github.com/users/tsloughter/events{/privacy}","received_events_url":"https://api.github.com/users/tsloughter/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:37Z","updated_at":"2015-01-01T15:01:37Z","body":"So maybe a new issue. Let's say you have a config with 1 dep `a` and `a` depends on `b`. Additionally you have some override in `a` for `b`. You run `compile` and get a lock file. Next time you run everything works as before, the override is properly run on `b` from `a`.\r\n\r\nBut if you add `b` to your top level config and run `compile` it will still use the lock file version of `b` but it will not use the override from `a`. This is because it uses the config file list to traverse deps even if there is a lock file, that way it gets the overrides correct (except in a case like this), and checks the locks for each dep when it hits it to use the right source."}},"public":true,"created_at":"2015-01-01T15:01:38Z","org":{"id":2651508,"login":"rebar","gravatar_id":"","url":"https://api.github.com/orgs/rebar","avatar_url":"https://avatars.githubusercontent.com/u/2651508?"}}
,{"id":"2489651830","type":"IssueCommentEvent","actor":{"id":506932,"login":"emersion","gravatar_id":"","url":"https://api.github.com/users/emersion","avatar_url":"https://avatars.githubusercontent.com/u/506932?"},"repo":{"id":27083785,"name":"emersion/bups","url":"https://api.github.com/repos/emersion/bups"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/emersion/bups/issues/4","labels_url":"https://api.github.com/repos/emersion/bups/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/emersion/bups/issues/4/comments","events_url":"https://api.github.com/repos/emersion/bups/issues/4/events","html_url":"https://github.com/emersion/bups/issues/4","id":52375392,"number":4,"title":"Systemd support","user":{"login":"Edenhofer","id":7541458,"avatar_url":"https://avatars.githubusercontent.com/u/7541458?v=3","gravatar_id":"","url":"https://api.github.com/users/Edenhofer","html_url":"https://github.com/Edenhofer","followers_url":"https://api.github.com/users/Edenhofer/followers","following_url":"https://api.github.com/users/Edenhofer/following{/other_user}","gists_url":"https://api.github.com/users/Edenhofer/gists{/gist_id}","starred_url":"https://api.github.com/users/Edenhofer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Edenhofer/subscriptions","organizations_url":"https://api.github.com/users/Edenhofer/orgs","repos_url":"https://api.github.com/users/Edenhofer/repos","events_url":"https://api.github.com/users/Edenhofer/events{/privacy}","received_events_url":"https://api.github.com/users/Edenhofer/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/emersion/bups/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-18T15:22:21Z","updated_at":"2015-01-01T15:01:38Z","closed_at":null,"body":"Since many major linux distributions heavily depend on systemd - if one likes it or not. It is usually preinstalled. Therefore I would suggest to include systemd-timer (https://wiki.archlinux.org/index.php/Systemd/Timers) support for the periodic backups instead or in supplement to anacron. "},"comment":{"url":"https://api.github.com/repos/emersion/bups/issues/comments/68488525","html_url":"https://github.com/emersion/bups/issues/4#issuecomment-68488525","issue_url":"https://api.github.com/repos/emersion/bups/issues/4","id":68488525,"user":{"login":"emersion","id":506932,"avatar_url":"https://avatars.githubusercontent.com/u/506932?v=3","gravatar_id":"","url":"https://api.github.com/users/emersion","html_url":"https://github.com/emersion","followers_url":"https://api.github.com/users/emersion/followers","following_url":"https://api.github.com/users/emersion/following{/other_user}","gists_url":"https://api.github.com/users/emersion/gists{/gist_id}","starred_url":"https://api.github.com/users/emersion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/emersion/subscriptions","organizations_url":"https://api.github.com/users/emersion/orgs","repos_url":"https://api.github.com/users/emersion/repos","events_url":"https://api.github.com/users/emersion/events{/privacy}","received_events_url":"https://api.github.com/users/emersion/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:38Z","updated_at":"2015-01-01T15:01:38Z","body":"Just added systemd timers support. There is an issue, you cannot control the backup frequency (it's weekly). You'll have to edit the systemd timer manually to change that.\r\n\r\nDo you know how to execute a systemd timer each `n` days?"}},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651848","type":"PushEvent","actor":{"id":5453359,"login":"xcatliu","gravatar_id":"","url":"https://api.github.com/users/xcatliu","avatar_url":"https://avatars.githubusercontent.com/u/5453359?"},"repo":{"id":23575850,"name":"xcatliu/xcat","url":"https://api.github.com/repos/xcatliu/xcat"},"payload":{"push_id":536864330,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dd0472689572ee5c5493e3f89449bdc052d225fd","before":"1d3aeae361e720bc060416ec1e64e4c2598d6bea","commits":[{"sha":"dd0472689572ee5c5493e3f89449bdc052d225fd","author":{"email":"444e05e21702ccf6b29ec3d3dde58eb1cd061705@gmail.com","name":"xcatliu"},"message":"try isomorphic","distinct":true,"url":"https://api.github.com/repos/xcatliu/xcat/commits/dd0472689572ee5c5493e3f89449bdc052d225fd"}]},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651849","type":"PushEvent","actor":{"id":785706,"login":"Sjeiti","gravatar_id":"","url":"https://api.github.com/users/Sjeiti","avatar_url":"https://avatars.githubusercontent.com/u/785706?"},"repo":{"id":4877664,"name":"Sjeiti/TinySort","url":"https://api.github.com/repos/Sjeiti/TinySort"},"payload":{"push_id":536864329,"size":1,"distinct_size":1,"ref":"refs/heads/AMDandCommonJS","head":"e03c49428829caa072af004c2e0f165897d6ee43","before":"671f7fcb985420b85c93c1868fb3e39a627fb8bc","commits":[{"sha":"e03c49428829caa072af004c2e0f165897d6ee43","author":{"email":"4ddb9d80ffb32a942910c2171767a19e3fa6f122@gmail.com","name":"Ron Valstar"},"message":"fixed tinysort amd as singleton","distinct":true,"url":"https://api.github.com/repos/Sjeiti/TinySort/commits/e03c49428829caa072af004c2e0f165897d6ee43"}]},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651851","type":"PushEvent","actor":{"id":3963029,"login":"aliaksandr-pasynkau","gravatar_id":"","url":"https://api.github.com/users/aliaksandr-pasynkau","avatar_url":"https://avatars.githubusercontent.com/u/3963029?"},"repo":{"id":28563733,"name":"aliaksandr-pasynkau/express-verifier","url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier"},"payload":{"push_id":536864331,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0125db7a3c6fe004ebde442a728f1e506e6b504c","before":"a91be49e31d8753b00deed306c00a9a50e2a5379","commits":[{"sha":"d20d14d98e511291868753bf7746477f94ea54e1","author":{"email":"802c66aee3b01f2026ef0a20c975be5768082e0a@gmail.com","name":"Aliaksandr Pasynkau"},"message":"fix links in readme","distinct":true,"url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier/commits/d20d14d98e511291868753bf7746477f94ea54e1"},{"sha":"0125db7a3c6fe004ebde442a728f1e506e6b504c","author":{"email":"802c66aee3b01f2026ef0a20c975be5768082e0a@gmail.com","name":"Aliaksandr Pasynkau"},"message":"version 0.2.5","distinct":true,"url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier/commits/0125db7a3c6fe004ebde442a728f1e506e6b504c"}]},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651852","type":"CreateEvent","actor":{"id":3963029,"login":"aliaksandr-pasynkau","gravatar_id":"","url":"https://api.github.com/users/aliaksandr-pasynkau","avatar_url":"https://avatars.githubusercontent.com/u/3963029?"},"repo":{"id":28563733,"name":"aliaksandr-pasynkau/express-verifier","url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier"},"payload":{"ref":"0.2.5","ref_type":"tag","master_branch":"master","description":"body, params, query verifier middleware for express framework (nodejs)","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651853","type":"ForkEvent","actor":{"id":56722,"login":"freidamachoi","gravatar_id":"","url":"https://api.github.com/users/freidamachoi","avatar_url":"https://avatars.githubusercontent.com/u/56722?"},"repo":{"id":24856478,"name":"zachsnow/ng-inline","url":"https://api.github.com/repos/zachsnow/ng-inline"},"payload":{"forkee":{"id":28688625,"name":"ng-inline","full_name":"freidamachoi/ng-inline","owner":{"login":"freidamachoi","id":56722,"avatar_url":"https://avatars.githubusercontent.com/u/56722?v=3","gravatar_id":"","url":"https://api.github.com/users/freidamachoi","html_url":"https://github.com/freidamachoi","followers_url":"https://api.github.com/users/freidamachoi/followers","following_url":"https://api.github.com/users/freidamachoi/following{/other_user}","gists_url":"https://api.github.com/users/freidamachoi/gists{/gist_id}","starred_url":"https://api.github.com/users/freidamachoi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/freidamachoi/subscriptions","organizations_url":"https://api.github.com/users/freidamachoi/orgs","repos_url":"https://api.github.com/users/freidamachoi/repos","events_url":"https://api.github.com/users/freidamachoi/events{/privacy}","received_events_url":"https://api.github.com/users/freidamachoi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/freidamachoi/ng-inline","description":"Faster template inclusion in AngularJS for simple usecases.","fork":true,"url":"https://api.github.com/repos/freidamachoi/ng-inline","forks_url":"https://api.github.com/repos/freidamachoi/ng-inline/forks","keys_url":"https://api.github.com/repos/freidamachoi/ng-inline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/freidamachoi/ng-inline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/freidamachoi/ng-inline/teams","hooks_url":"https://api.github.com/repos/freidamachoi/ng-inline/hooks","issue_events_url":"https://api.github.com/repos/freidamachoi/ng-inline/issues/events{/number}","events_url":"https://api.github.com/repos/freidamachoi/ng-inline/events","assignees_url":"https://api.github.com/repos/freidamachoi/ng-inline/assignees{/user}","branches_url":"https://api.github.com/repos/freidamachoi/ng-inline/branches{/branch}","tags_url":"https://api.github.com/repos/freidamachoi/ng-inline/tags","blobs_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/refs{/sha}","trees_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/freidamachoi/ng-inline/statuses/{sha}","languages_url":"https://api.github.com/repos/freidamachoi/ng-inline/languages","stargazers_url":"https://api.github.com/repos/freidamachoi/ng-inline/stargazers","contributors_url":"https://api.github.com/repos/freidamachoi/ng-inline/contributors","subscribers_url":"https://api.github.com/repos/freidamachoi/ng-inline/subscribers","subscription_url":"https://api.github.com/repos/freidamachoi/ng-inline/subscription","commits_url":"https://api.github.com/repos/freidamachoi/ng-inline/commits{/sha}","git_commits_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/commits{/sha}","comments_url":"https://api.github.com/repos/freidamachoi/ng-inline/comments{/number}","issue_comment_url":"https://api.github.com/repos/freidamachoi/ng-inline/issues/comments/{number}","contents_url":"https://api.github.com/repos/freidamachoi/ng-inline/contents/{+path}","compare_url":"https://api.github.com/repos/freidamachoi/ng-inline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/freidamachoi/ng-inline/merges","archive_url":"https://api.github.com/repos/freidamachoi/ng-inline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/freidamachoi/ng-inline/downloads","issues_url":"https://api.github.com/repos/freidamachoi/ng-inline/issues{/number}","pulls_url":"https://api.github.com/repos/freidamachoi/ng-inline/pulls{/number}","milestones_url":"https://api.github.com/repos/freidamachoi/ng-inline/milestones{/number}","notifications_url":"https://api.github.com/repos/freidamachoi/ng-inline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/freidamachoi/ng-inline/labels{/name}","releases_url":"https://api.github.com/repos/freidamachoi/ng-inline/releases{/id}","created_at":"2015-01-01T15:01:38Z","updated_at":"2014-12-17T23:15:57Z","pushed_at":"2014-12-17T23:16:51Z","git_url":"git://github.com/freidamachoi/ng-inline.git","ssh_url":"git@github.com:freidamachoi/ng-inline.git","clone_url":"https://github.com/freidamachoi/ng-inline.git","svn_url":"https://github.com/freidamachoi/ng-inline","homepage":null,"size":145,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651855","type":"PullRequestEvent","actor":{"id":1820007,"login":"msteiger","gravatar_id":"","url":"https://api.github.com/users/msteiger","avatar_url":"https://avatars.githubusercontent.com/u/1820007?"},"repo":{"id":1438007,"name":"MovingBlocks/Terasology","url":"https://api.github.com/repos/MovingBlocks/Terasology"},"payload":{"action":"opened","number":1479,"pull_request":{"url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479","id":26743781,"html_url":"https://github.com/MovingBlocks/Terasology/pull/1479","diff_url":"https://github.com/MovingBlocks/Terasology/pull/1479.diff","patch_url":"https://github.com/MovingBlocks/Terasology/pull/1479.patch","issue_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479","number":1479,"state":"open","locked":false,"title":"Support different camera reflection heights","user":{"login":"msteiger","id":1820007,"avatar_url":"https://avatars.githubusercontent.com/u/1820007?v=3","gravatar_id":"","url":"https://api.github.com/users/msteiger","html_url":"https://github.com/msteiger","followers_url":"https://api.github.com/users/msteiger/followers","following_url":"https://api.github.com/users/msteiger/following{/other_user}","gists_url":"https://api.github.com/users/msteiger/gists{/gist_id}","starred_url":"https://api.github.com/users/msteiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/msteiger/subscriptions","organizations_url":"https://api.github.com/users/msteiger/orgs","repos_url":"https://api.github.com/users/msteiger/repos","events_url":"https://api.github.com/users/msteiger/events{/privacy}","received_events_url":"https://api.github.com/users/msteiger/received_events","type":"User","site_admin":false},"body":"Currently a fixed height of 32 blocks is used to compute surface reflections. This PR makes this value flexible through a getter/setter in `Camera` and also uses a newly introduced sea level parameter to find meaningful values for this.\r\n\r\nEvery reflection level requires a rendering pass which is why only one reflection level is supported.\r\n\r\nAs the world generator defines this value, it must also be communicated to remote clients. This is done through the `ServerInfoMessage` class.\r\n\r\n","created_at":"2015-01-01T15:01:38Z","updated_at":"2015-01-01T15:01:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/commits","review_comments_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/comments","review_comment_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/comments/{number}","comments_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479/comments","statuses_url":"https://api.github.com/repos/MovingBlocks/Terasology/statuses/873428bb9e77a5f2ff224b32b7bad10a3f085c22","head":{"label":"msteiger:water_reflections","ref":"water_reflections","sha":"873428bb9e77a5f2ff224b32b7bad10a3f085c22","user":{"login":"msteiger","id":1820007,"avatar_url":"https://avatars.githubusercontent.com/u/1820007?v=3","gravatar_id":"","url":"https://api.github.com/users/msteiger","html_url":"https://github.com/msteiger","followers_url":"https://api.github.com/users/msteiger/followers","following_url":"https://api.github.com/users/msteiger/following{/other_user}","gists_url":"https://api.github.com/users/msteiger/gists{/gist_id}","starred_url":"https://api.github.com/users/msteiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/msteiger/subscriptions","organizations_url":"https://api.github.com/users/msteiger/orgs","repos_url":"https://api.github.com/users/msteiger/repos","events_url":"https://api.github.com/users/msteiger/events{/privacy}","received_events_url":"https://api.github.com/users/msteiger/received_events","type":"User","site_admin":false},"repo":{"id":15682556,"name":"Terasology","full_name":"msteiger/Terasology","owner":{"login":"msteiger","id":1820007,"avatar_url":"https://avatars.githubusercontent.com/u/1820007?v=3","gravatar_id":"","url":"https://api.github.com/users/msteiger","html_url":"https://github.com/msteiger","followers_url":"https://api.github.com/users/msteiger/followers","following_url":"https://api.github.com/users/msteiger/following{/other_user}","gists_url":"https://api.github.com/users/msteiger/gists{/gist_id}","starred_url":"https://api.github.com/users/msteiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/msteiger/subscriptions","organizations_url":"https://api.github.com/users/msteiger/orgs","repos_url":"https://api.github.com/users/msteiger/repos","events_url":"https://api.github.com/users/msteiger/events{/privacy}","received_events_url":"https://api.github.com/users/msteiger/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/msteiger/Terasology","description":"Terasology is an open source project started by Benjamin \"begla\" Glatzel to research procedural terrain generation and efficient rendering techniques in Java using the LWJGL. The engine uses a block-based voxel-like approach as seen in Minecraft.  After proving itself as a solid tech demo begla was joined at first by Anton \"small-jeeper\" Kireev and Rasmus \"Cervator\" Praestholm and a full-fledged game concept was born. Our goal is a game that pays ample tribute to Minecraft in initial look and origin, but stakes out its own niche by adopting the NPC-helper and caretaker feel from such games as Dwarf Fortress and Dungeon Keeper, while striving for added depth and sophistication in the foundation systems akin to DF.","fork":true,"url":"https://api.github.com/repos/msteiger/Terasology","forks_url":"https://api.github.com/repos/msteiger/Terasology/forks","keys_url":"https://api.github.com/repos/msteiger/Terasology/keys{/key_id}","collaborators_url":"https://api.github.com/repos/msteiger/Terasology/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/msteiger/Terasology/teams","hooks_url":"https://api.github.com/repos/msteiger/Terasology/hooks","issue_events_url":"https://api.github.com/repos/msteiger/Terasology/issues/events{/number}","events_url":"https://api.github.com/repos/msteiger/Terasology/events","assignees_url":"https://api.github.com/repos/msteiger/Terasology/assignees{/user}","branches_url":"https://api.github.com/repos/msteiger/Terasology/branches{/branch}","tags_url":"https://api.github.com/repos/msteiger/Terasology/tags","blobs_url":"https://api.github.com/repos/msteiger/Terasology/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/msteiger/Terasology/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/msteiger/Terasology/git/refs{/sha}","trees_url":"https://api.github.com/repos/msteiger/Terasology/git/trees{/sha}","statuses_url":"https://api.github.com/repos/msteiger/Terasology/statuses/{sha}","languages_url":"https://api.github.com/repos/msteiger/Terasology/languages","stargazers_url":"https://api.github.com/repos/msteiger/Terasology/stargazers","contributors_url":"https://api.github.com/repos/msteiger/Terasology/contributors","subscribers_url":"https://api.github.com/repos/msteiger/Terasology/subscribers","subscription_url":"https://api.github.com/repos/msteiger/Terasology/subscription","commits_url":"https://api.github.com/repos/msteiger/Terasology/commits{/sha}","git_commits_url":"https://api.github.com/repos/msteiger/Terasology/git/commits{/sha}","comments_url":"https://api.github.com/repos/msteiger/Terasology/comments{/number}","issue_comment_url":"https://api.github.com/repos/msteiger/Terasology/issues/comments/{number}","contents_url":"https://api.github.com/repos/msteiger/Terasology/contents/{+path}","compare_url":"https://api.github.com/repos/msteiger/Terasology/compare/{base}...{head}","merges_url":"https://api.github.com/repos/msteiger/Terasology/merges","archive_url":"https://api.github.com/repos/msteiger/Terasology/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/msteiger/Terasology/downloads","issues_url":"https://api.github.com/repos/msteiger/Terasology/issues{/number}","pulls_url":"https://api.github.com/repos/msteiger/Terasology/pulls{/number}","milestones_url":"https://api.github.com/repos/msteiger/Terasology/milestones{/number}","notifications_url":"https://api.github.com/repos/msteiger/Terasology/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/msteiger/Terasology/labels{/name}","releases_url":"https://api.github.com/repos/msteiger/Terasology/releases{/id}","created_at":"2014-01-06T19:12:52Z","updated_at":"2014-12-27T12:34:51Z","pushed_at":"2015-01-01T14:54:26Z","git_url":"git://github.com/msteiger/Terasology.git","ssh_url":"git@github.com:msteiger/Terasology.git","clone_url":"https://github.com/msteiger/Terasology.git","svn_url":"https://github.com/msteiger/Terasology","homepage":"http://terasology.org/","size":218815,"stargazers_count":1,"watchers_count":1,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":1,"default_branch":"develop"}},"base":{"label":"MovingBlocks:develop","ref":"develop","sha":"9f0640d613bbb7a38e91c5227063ea827ee1434b","user":{"login":"MovingBlocks","id":1292442,"avatar_url":"https://avatars.githubusercontent.com/u/1292442?v=3","gravatar_id":"","url":"https://api.github.com/users/MovingBlocks","html_url":"https://github.com/MovingBlocks","followers_url":"https://api.github.com/users/MovingBlocks/followers","following_url":"https://api.github.com/users/MovingBlocks/following{/other_user}","gists_url":"https://api.github.com/users/MovingBlocks/gists{/gist_id}","starred_url":"https://api.github.com/users/MovingBlocks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MovingBlocks/subscriptions","organizations_url":"https://api.github.com/users/MovingBlocks/orgs","repos_url":"https://api.github.com/users/MovingBlocks/repos","events_url":"https://api.github.com/users/MovingBlocks/events{/privacy}","received_events_url":"https://api.github.com/users/MovingBlocks/received_events","type":"Organization","site_admin":false},"repo":{"id":1438007,"name":"Terasology","full_name":"MovingBlocks/Terasology","owner":{"login":"MovingBlocks","id":1292442,"avatar_url":"https://avatars.githubusercontent.com/u/1292442?v=3","gravatar_id":"","url":"https://api.github.com/users/MovingBlocks","html_url":"https://github.com/MovingBlocks","followers_url":"https://api.github.com/users/MovingBlocks/followers","following_url":"https://api.github.com/users/MovingBlocks/following{/other_user}","gists_url":"https://api.github.com/users/MovingBlocks/gists{/gist_id}","starred_url":"https://api.github.com/users/MovingBlocks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MovingBlocks/subscriptions","organizations_url":"https://api.github.com/users/MovingBlocks/orgs","repos_url":"https://api.github.com/users/MovingBlocks/repos","events_url":"https://api.github.com/users/MovingBlocks/events{/privacy}","received_events_url":"https://api.github.com/users/MovingBlocks/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/MovingBlocks/Terasology","description":"Terasology is an open source project started by Benjamin \"begla\" Glatzel to research procedural terrain generation and efficient rendering techniques in Java using the LWJGL. The engine uses a block-based voxel-like approach as seen in Minecraft.  After proving itself as a solid tech demo begla was joined at first by Anton \"small-jeeper\" Kireev and Rasmus \"Cervator\" Praestholm and a full-fledged game concept was born. Our goal is a game that pays ample tribute to Minecraft in initial look and origin, but stakes out its own niche by adopting the NPC-helper and caretaker feel from such games as Dwarf Fortress and Dungeon Keeper, while striving for added depth and sophistication in the foundation systems akin to DF.","fork":false,"url":"https://api.github.com/repos/MovingBlocks/Terasology","forks_url":"https://api.github.com/repos/MovingBlocks/Terasology/forks","keys_url":"https://api.github.com/repos/MovingBlocks/Terasology/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MovingBlocks/Terasology/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MovingBlocks/Terasology/teams","hooks_url":"https://api.github.com/repos/MovingBlocks/Terasology/hooks","issue_events_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/events{/number}","events_url":"https://api.github.com/repos/MovingBlocks/Terasology/events","assignees_url":"https://api.github.com/repos/MovingBlocks/Terasology/assignees{/user}","branches_url":"https://api.github.com/repos/MovingBlocks/Terasology/branches{/branch}","tags_url":"https://api.github.com/repos/MovingBlocks/Terasology/tags","blobs_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/refs{/sha}","trees_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MovingBlocks/Terasology/statuses/{sha}","languages_url":"https://api.github.com/repos/MovingBlocks/Terasology/languages","stargazers_url":"https://api.github.com/repos/MovingBlocks/Terasology/stargazers","contributors_url":"https://api.github.com/repos/MovingBlocks/Terasology/contributors","subscribers_url":"https://api.github.com/repos/MovingBlocks/Terasology/subscribers","subscription_url":"https://api.github.com/repos/MovingBlocks/Terasology/subscription","commits_url":"https://api.github.com/repos/MovingBlocks/Terasology/commits{/sha}","git_commits_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/commits{/sha}","comments_url":"https://api.github.com/repos/MovingBlocks/Terasology/comments{/number}","issue_comment_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/comments/{number}","contents_url":"https://api.github.com/repos/MovingBlocks/Terasology/contents/{+path}","compare_url":"https://api.github.com/repos/MovingBlocks/Terasology/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MovingBlocks/Terasology/merges","archive_url":"https://api.github.com/repos/MovingBlocks/Terasology/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MovingBlocks/Terasology/downloads","issues_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues{/number}","pulls_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls{/number}","milestones_url":"https://api.github.com/repos/MovingBlocks/Terasology/milestones{/number}","notifications_url":"https://api.github.com/repos/MovingBlocks/Terasology/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MovingBlocks/Terasology/labels{/name}","releases_url":"https://api.github.com/repos/MovingBlocks/Terasology/releases{/id}","created_at":"2011-03-04T03:49:19Z","updated_at":"2015-01-01T13:48:59Z","pushed_at":"2015-01-01T06:41:15Z","git_url":"git://github.com/MovingBlocks/Terasology.git","ssh_url":"git@github.com:MovingBlocks/Terasology.git","clone_url":"https://github.com/MovingBlocks/Terasology.git","svn_url":"https://github.com/MovingBlocks/Terasology","homepage":"http://terasology.org/","size":275174,"stargazers_count":917,"watchers_count":917,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":393,"mirror_url":null,"open_issues_count":256,"forks":393,"open_issues":256,"watchers":917,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479"},"html":{"href":"https://github.com/MovingBlocks/Terasology/pull/1479"},"issue":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479"},"comments":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479/comments"},"review_comments":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/comments"},"review_comment":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/commits"},"statuses":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/statuses/873428bb9e77a5f2ff224b32b7bad10a3f085c22"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":3,"additions":180,"deletions":42,"changed_files":12}},"public":true,"created_at":"2015-01-01T15:01:39Z","org":{"id":1292442,"login":"MovingBlocks","gravatar_id":"","url":"https://api.github.com/orgs/MovingBlocks","avatar_url":"https://avatars.githubusercontent.com/u/1292442?"}}
,{"id":"2489651862","type":"PushEvent","actor":{"id":3788419,"login":"JoaoPedroPinheiro","gravatar_id":"","url":"https://api.github.com/users/JoaoPedroPinheiro","avatar_url":"https://avatars.githubusercontent.com/u/3788419?"},"repo":{"id":26856126,"name":"JoaoPedroPinheiro/laig1415","url":"https://api.github.com/repos/JoaoPedroPinheiro/laig1415"},"payload":{"push_id":536864333,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"ffabf2fed990b762a2d9299dd066c590520c5411","before":"925ee4e51c16ecc9bed6ea64764213836c1de517","commits":[{"sha":"ffabf2fed990b762a2d9299dd066c590520c5411","author":{"email":"a72ec68c730a049adcc94a625da6f63da45bbb42@gmail.com","name":"João Pedro Pinheiro"},"message":"Board Displaying, Pieces need animation","distinct":true,"url":"https://api.github.com/repos/JoaoPedroPinheiro/laig1415/commits/ffabf2fed990b762a2d9299dd066c590520c5411"}]},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651865","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864335,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4a7b8abb684c43cd6ace984534f82e612b9a20ec","before":"6c8437f7edc4665c70bcdd78749c94d03deb57f6","commits":[{"sha":"4a7b8abb684c43cd6ace984534f82e612b9a20ec","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Delete NumPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/4a7b8abb684c43cd6ace984534f82e612b9a20ec"}]},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651867","type":"WatchEvent","actor":{"id":1386930,"login":"takahirom","gravatar_id":"","url":"https://api.github.com/users/takahirom","avatar_url":"https://avatars.githubusercontent.com/u/1386930?"},"repo":{"id":24627119,"name":"xujiaao/AARLinkSources","url":"https://api.github.com/repos/xujiaao/AARLinkSources"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651868","type":"WatchEvent","actor":{"id":143771,"login":"ollym","gravatar_id":"","url":"https://api.github.com/users/ollym","avatar_url":"https://avatars.githubusercontent.com/u/143771?"},"repo":{"id":21108956,"name":"gorhill/uBlock","url":"https://api.github.com/repos/gorhill/uBlock"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651869","type":"PushEvent","actor":{"id":375965,"login":"silverpower","gravatar_id":"","url":"https://api.github.com/users/silverpower","avatar_url":"https://avatars.githubusercontent.com/u/375965?"},"repo":{"id":27519296,"name":"silverpower/comrade_erika","url":"https://api.github.com/repos/silverpower/comrade_erika"},"payload":{"push_id":536864337,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1bf83925de81ac28cf3439141ed84be67a739d87","before":"796db823e89e0fe7f766d6050f5f4a99b89ffdec","commits":[{"sha":"1bf83925de81ac28cf3439141ed84be67a739d87","author":{"email":"44b9c36ece3f0f4299dd2538cf632009acf974d1@gmail.com","name":"Michelle Darcy"},"message":"MP5A2 comment indicated that it still used the 900rpm figure, which is incorrect and does not reflect the code.","distinct":true,"url":"https://api.github.com/repos/silverpower/comrade_erika/commits/1bf83925de81ac28cf3439141ed84be67a739d87"}]},"public":true,"created_at":"2015-01-01T15:01:41Z"}
,{"id":"2489651877","type":"CreateEvent","actor":{"id":2164346,"login":"kelvintaywl","gravatar_id":"","url":"https://api.github.com/users/kelvintaywl","avatar_url":"https://avatars.githubusercontent.com/u/2164346?"},"repo":{"id":28684515,"name":"wheresmybento/runningman","url":"https://api.github.com/repos/wheresmybento/runningman"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"collection of crons for Benri, because they should be running 24/7. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:43Z","org":{"id":10000177,"login":"wheresmybento","gravatar_id":"","url":"https://api.github.com/orgs/wheresmybento","avatar_url":"https://avatars.githubusercontent.com/u/10000177?"}}
,{"id":"2489651878","type":"CreateEvent","actor":{"id":201138,"login":"exuperok","gravatar_id":"","url":"https://api.github.com/users/exuperok","avatar_url":"https://avatars.githubusercontent.com/u/201138?"},"repo":{"id":28685012,"name":"exuperok/dojo_rules","url":"https://api.github.com/repos/exuperok/dojo_rules"},"payload":{"ref":"release_branch_1.0","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:43Z"}
,{"id":"2489651887","type":"IssuesEvent","actor":{"id":759892,"login":"Trial-In-Error","gravatar_id":"","url":"https://api.github.com/users/Trial-In-Error","avatar_url":"https://avatars.githubusercontent.com/u/759892?"},"repo":{"id":28585802,"name":"Trial-In-Error/changes","url":"https://api.github.com/repos/Trial-In-Error/changes"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1","labels_url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1/comments","events_url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1/events","html_url":"https://github.com/Trial-In-Error/changes/issues/1","id":53221367,"number":1,"title":"Wildly inefficient SRAM usage...","user":{"login":"Trial-In-Error","id":759892,"avatar_url":"https://avatars.githubusercontent.com/u/759892?v=3","gravatar_id":"","url":"https://api.github.com/users/Trial-In-Error","html_url":"https://github.com/Trial-In-Error","followers_url":"https://api.github.com/users/Trial-In-Error/followers","following_url":"https://api.github.com/users/Trial-In-Error/following{/other_user}","gists_url":"https://api.github.com/users/Trial-In-Error/gists{/gist_id}","starred_url":"https://api.github.com/users/Trial-In-Error/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Trial-In-Error/subscriptions","organizations_url":"https://api.github.com/users/Trial-In-Error/orgs","repos_url":"https://api.github.com/users/Trial-In-Error/repos","events_url":"https://api.github.com/users/Trial-In-Error/events{/privacy}","received_events_url":"https://api.github.com/users/Trial-In-Error/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:01:44Z","updated_at":"2015-01-01T15:01:44Z","closed_at":null,"body":"... each"}},"public":true,"created_at":"2015-01-01T15:01:44Z"}
,{"id":"2489651888","type":"WatchEvent","actor":{"id":3014139,"login":"velarm","gravatar_id":"","url":"https://api.github.com/users/velarm","avatar_url":"https://avatars.githubusercontent.com/u/3014139?"},"repo":{"id":17522124,"name":"HakurouKen/douban.fm-api","url":"https://api.github.com/repos/HakurouKen/douban.fm-api"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:44Z"}
,{"id":"2489651891","type":"PushEvent","actor":{"id":1310758,"login":"daehyeok","gravatar_id":"","url":"https://api.github.com/users/daehyeok","avatar_url":"https://avatars.githubusercontent.com/u/1310758?"},"repo":{"id":23184152,"name":"somaopensource/docker","url":"https://api.github.com/repos/somaopensource/docker"},"payload":{"push_id":536864347,"size":1,"distinct_size":1,"ref":"refs/heads/warn_graphdriver_change","head":"3c03827e73647cad27a0656ce685c8aea8ed4d21","before":"9b572e7a1a8c5a4a739f549e008bfc0062c022f4","commits":[{"sha":"3c03827e73647cad27a0656ce685c8aea8ed4d21","author":{"email":"e33dbf06c8af724c95c831251b170f514d1b4f9c@daehyeokui-MacBook-Air.local","name":"daehyeok mun"},"message":"Add warnning log when other graphdrvier(storage driver) used before\nadded warnning log when other graphdrvier(storage driver) used before for feature request #8270\n\nSigned-off-by: Daehyeok Mun <daehyeok@gmail.com>","distinct":true,"url":"https://api.github.com/repos/somaopensource/docker/commits/3c03827e73647cad27a0656ce685c8aea8ed4d21"}]},"public":true,"created_at":"2015-01-01T15:01:44Z","org":{"id":8512873,"login":"somaopensource","gravatar_id":"","url":"https://api.github.com/orgs/somaopensource","avatar_url":"https://avatars.githubusercontent.com/u/8512873?"}}
,{"id":"2489651893","type":"PushEvent","actor":{"id":824542,"login":"blakgeek","gravatar_id":"","url":"https://api.github.com/users/blakgeek","avatar_url":"https://avatars.githubusercontent.com/u/824542?"},"repo":{"id":28686224,"name":"blakgeek/flurry-phonegap-plugin","url":"https://api.github.com/repos/blakgeek/flurry-phonegap-plugin"},"payload":{"push_id":536864348,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9f6b7865b8597795241fec507740536fe1284a7e","before":"b32ec476e8f42b7776964d05fd068da7cdfaebe1","commits":[{"sha":"9f6b7865b8597795241fec507740536fe1284a7e","author":{"email":"28eb2fb8238632feb03d778104388e3e5a97e35f@altisource.com","name":"Carlos Lawton"},"message":"Fixed bug in bool2ObjC","distinct":true,"url":"https://api.github.com/repos/blakgeek/flurry-phonegap-plugin/commits/9f6b7865b8597795241fec507740536fe1284a7e"}]},"public":true,"created_at":"2015-01-01T15:01:44Z"}
,{"id":"2489651898","type":"WatchEvent","actor":{"id":8203034,"login":"licg9999","gravatar_id":"","url":"https://api.github.com/users/licg9999","avatar_url":"https://avatars.githubusercontent.com/u/8203034?"},"repo":{"id":2626112,"name":"sickill/vim-monokai","url":"https://api.github.com/repos/sickill/vim-monokai"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:45Z"}
,{"id":"2489651900","type":"PushEvent","actor":{"id":1021199,"login":"piwi","gravatar_id":"","url":"https://api.github.com/users/piwi","avatar_url":"https://avatars.githubusercontent.com/u/1021199?"},"repo":{"id":9756641,"name":"atelierspierrot/assets-manager","url":"https://api.github.com/repos/atelierspierrot/assets-manager"},"payload":{"push_id":536864349,"size":33,"distinct_size":2,"ref":"refs/heads/dev","head":"99dd047459ad52dc3e59f1af3433b162420308cf","before":"97513d6494c1e1c9fca6adfd67b140ea580452e6","commits":[{"sha":"260442b4d0661494f0e5d7478c06817480d26ad3","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Avoid redundancy","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/260442b4d0661494f0e5d7478c06817480d26ad3"},{"sha":"47932ef801b7c5a11bf77ce332d83cc7496a64f8","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Avoid redundancy","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/47932ef801b7c5a11bf77ce332d83cc7496a64f8"},{"sha":"35be81f32df061b756dedb9331b684bbfd188889","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Adding methods to test if a package or a preset exists in the project","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/35be81f32df061b756dedb9331b684bbfd188889"},{"sha":"92fc99f56a59bbb2ada272427c0e954d91f132fd","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Adding methods to test if a package or a preset exists in the project","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/92fc99f56a59bbb2ada272427c0e954d91f132fd"},{"sha":"12f562616e6e7ce395f7b57f584934af219d7d49","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Renaming \"PieroWbmstr\" in lowercase","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/12f562616e6e7ce395f7b57f584934af219d7d49"},{"sha":"5fb16b545445491d35ef92a535edf3f85213a5cf","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Renaming \"PieroWbmstr\" in lowercase","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/5fb16b545445491d35ef92a535edf3f85213a5cf"},{"sha":"391a5d24f704567fe4f461569197094d4e1713a3","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new piwi github url + 2014 copyleft :(","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/391a5d24f704567fe4f461569197094d4e1713a3"},{"sha":"364f76428c13bbf82613a4d4e4f3252035b0f6f6","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new piwi github url + 2014 copyleft :(","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/364f76428c13bbf82613a4d4e4f3252035b0f6f6"},{"sha":"6e1ecdb125ad1a594dbfc9eca8f14b56fc02a765","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"cleanup & sources review","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/6e1ecdb125ad1a594dbfc9eca8f14b56fc02a765"},{"sha":"68f0d2410f4536cb0b9bd9b8eef9e6c58be06d53","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"cleanup & sources review","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/68f0d2410f4536cb0b9bd9b8eef9e6c58be06d53"},{"sha":"d85b119633ee5f26125535065df06aacdb8beb45","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"URL of assets can now have no-protocol","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/d85b119633ee5f26125535065df06aacdb8beb45"},{"sha":"e3fcd0abf9baa01d1f463c0de175d742722f30e8","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"URL of assets can now have no-protocol","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/e3fcd0abf9baa01d1f463c0de175d742722f30e8"},{"sha":"9cbe267b9397a6c25c70fdb0f072f618693f433e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new 'last' and 'first' positional assets info","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/9cbe267b9397a6c25c70fdb0f072f618693f433e"},{"sha":"871fc9876d81b5bdec7f61330cf117f56f6822e0","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"sources review + README re-writing","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/871fc9876d81b5bdec7f61330cf117f56f6822e0"},{"sha":"493fc8bf64985cf7f0eed4a251c75e3a4da0bb38","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new 'last' and 'first' positional assets info","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/493fc8bf64985cf7f0eed4a251c75e3a4da0bb38"},{"sha":"ee78b10d4e9952eb3f9dfe8f096bef275cc4fda1","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"sources review + README re-writing","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/ee78b10d4e9952eb3f9dfe8f096bef275cc4fda1"},{"sha":"95c3c1b80548d753bcd383a0402f259cc562ed22","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"wip with exceptions","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/95c3c1b80548d753bcd383a0402f259cc562ed22"},{"sha":"7544a43341bb7b08b9fb9ea490c9affc7a82dc70","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"correction in the JSON DB generation","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/7544a43341bb7b08b9fb9ea490c9affc7a82dc70"},{"sha":"d55e491936f8883d8507d7771c6ceef25ec225c7","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"working on the doc","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/d55e491936f8883d8507d7771c6ceef25ec225c7"},{"sha":"420e7f806b78d011e02ce143387aaae9913f9a1e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"correction in the JSON DB generation","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/420e7f806b78d011e02ce143387aaae9913f9a1e"}]},"public":true,"created_at":"2015-01-01T15:01:45Z","org":{"id":3798221,"login":"atelierspierrot","gravatar_id":"","url":"https://api.github.com/orgs/atelierspierrot","avatar_url":"https://avatars.githubusercontent.com/u/3798221?"}}
,{"id":"2489651902","type":"PushEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"push_id":536864351,"size":1,"distinct_size":1,"ref":"refs/heads/0.1","head":"590d14bfd9c3b06e3d9e49355d66ed13199e800d","before":"929628eb8600ad5eaa717b6fa1b816a42cfa5ea3","commits":[{"sha":"590d14bfd9c3b06e3d9e49355d66ed13199e800d","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Delete Configuration.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore/commits/590d14bfd9c3b06e3d9e49355d66ed13199e800d"}]},"public":true,"created_at":"2015-01-01T15:01:45Z"}
,{"id":"2489651905","type":"PushEvent","actor":{"id":133691,"login":"gurunars","gravatar_id":"","url":"https://api.github.com/users/gurunars","avatar_url":"https://avatars.githubusercontent.com/u/133691?"},"repo":{"id":26864615,"name":"gurunars/gurunars.github.io","url":"https://api.github.com/repos/gurunars/gurunars.github.io"},"payload":{"push_id":536864354,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b747ea81bd2e80c6381e0aae3c19e11ca147a27f","before":"edca0272121f8478d1cc4ef43e8ea9505c126921","commits":[{"sha":"b747ea81bd2e80c6381e0aae3c19e11ca147a27f","author":{"email":"2bae8075423fd09d34532d5328ba3cbe924763f0@gmail.com","name":"Anton Berezin"},"message":"Blog posts width","distinct":true,"url":"https://api.github.com/repos/gurunars/gurunars.github.io/commits/b747ea81bd2e80c6381e0aae3c19e11ca147a27f"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651906","type":"PushEvent","actor":{"id":1354987,"login":"d3rp","gravatar_id":"","url":"https://api.github.com/users/d3rp","avatar_url":"https://avatars.githubusercontent.com/u/1354987?"},"repo":{"id":28688529,"name":"d3rp/ansible-modules-core","url":"https://api.github.com/repos/d3rp/ansible-modules-core"},"payload":{"push_id":536864355,"size":1,"distinct_size":1,"ref":"refs/heads/devel","head":"21fedc87f1cff5daf87f28617857106718f9174a","before":"0d551d8d245e060e453cfdcd608eeca595efe760","commits":[{"sha":"21fedc87f1cff5daf87f28617857106718f9174a","author":{"email":"c8e45a5fcfadb8a5f04f88654f9e4152c16dd7b9@yandex-team.ru","name":"Andrey Trubachev"},"message":"Add support ipv6only to wait_for","distinct":true,"url":"https://api.github.com/repos/d3rp/ansible-modules-core/commits/21fedc87f1cff5daf87f28617857106718f9174a"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651909","type":"PushEvent","actor":{"id":174631,"login":"vincenthz","gravatar_id":"","url":"https://api.github.com/users/vincenthz","avatar_url":"https://avatars.githubusercontent.com/u/174631?"},"repo":{"id":23581485,"name":"vincenthz/hs-scraps","url":"https://api.github.com/repos/vincenthz/hs-scraps"},"payload":{"push_id":536864357,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"8717c51de474688a7a79710f22f6b33d9925a4fd","before":"66cffd26b61db19231aa143dd9161bfd596f7e81","commits":[{"sha":"e975d6595a92e510dfb21c2b50a6eb0af3a8f203","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@snarc.org","name":"Vincent Hanquez"},"message":"add simple String templating","distinct":true,"url":"https://api.github.com/repos/vincenthz/hs-scraps/commits/e975d6595a92e510dfb21c2b50a6eb0af3a8f203"},{"sha":"8717c51de474688a7a79710f22f6b33d9925a4fd","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@snarc.org","name":"Vincent Hanquez"},"message":"add .gitignore","distinct":true,"url":"https://api.github.com/repos/vincenthz/hs-scraps/commits/8717c51de474688a7a79710f22f6b33d9925a4fd"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651910","type":"PushEvent","actor":{"id":8683432,"login":"wkcool","gravatar_id":"","url":"https://api.github.com/users/wkcool","avatar_url":"https://avatars.githubusercontent.com/u/8683432?"},"repo":{"id":27059641,"name":"wkcool/wkcool.github.com","url":"https://api.github.com/repos/wkcool/wkcool.github.com"},"payload":{"push_id":536864358,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bb0fa257b0502ac3fdfdf322611a0539d909c1ad","before":"4ce104ec7d1ce0c8dd241f2fc6aacf95dd6b3080","commits":[{"sha":"bb0fa257b0502ac3fdfdf322611a0539d909c1ad","author":{"email":"ddd2d39a843d8ae129b2e2fc6f13669f44116bd1@gmail.com","name":"wenkrcool"},"message":"提交","distinct":true,"url":"https://api.github.com/repos/wkcool/wkcool.github.com/commits/bb0fa257b0502ac3fdfdf322611a0539d909c1ad"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651912","type":"PushEvent","actor":{"id":1193284,"login":"bborbe","gravatar_id":"","url":"https://api.github.com/users/bborbe","avatar_url":"https://avatars.githubusercontent.com/u/1193284?"},"repo":{"id":24144832,"name":"bborbe/prototype","url":"https://api.github.com/repos/bborbe/prototype"},"payload":{"push_id":536864359,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3b3ee511299e853c7ff26a549d96a408a3810711","before":"c71d996a270cad114542708d7358b40cb5afcc70","commits":[{"sha":"3b3ee511299e853c7ff26a549d96a408a3810711","author":{"email":"b433cf2733348698e7263ccfc3f315729d23acc5@rocketnews.de","name":"Benjamin Borbe"},"message":"update doc","distinct":true,"url":"https://api.github.com/repos/bborbe/prototype/commits/3b3ee511299e853c7ff26a549d96a408a3810711"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651915","type":"PushEvent","actor":{"id":2395320,"login":"khcr","gravatar_id":"","url":"https://api.github.com/users/khcr","avatar_url":"https://avatars.githubusercontent.com/u/2395320?"},"repo":{"id":27841861,"name":"khcr/coursesApp-doc","url":"https://api.github.com/repos/khcr/coursesApp-doc"},"payload":{"push_id":536864360,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"cdf7720d862a8e9f51a17faa6b63af8643e5dfff","before":"09033851d6cbc8f2c1a3056246889f6ca59bfdbb","commits":[{"sha":"f1d3f79b11e833d82ad9ac171449eeadce764277","author":{"email":"418e0f92c35f71155842bf8dd29d9dea8112e134@gmail.com","name":"khcr"},"message":"models","distinct":true,"url":"https://api.github.com/repos/khcr/coursesApp-doc/commits/f1d3f79b11e833d82ad9ac171449eeadce764277"},{"sha":"cdf7720d862a8e9f51a17faa6b63af8643e5dfff","author":{"email":"418e0f92c35f71155842bf8dd29d9dea8112e134@gmail.com","name":"khcr"},"message":"doctree","distinct":true,"url":"https://api.github.com/repos/khcr/coursesApp-doc/commits/cdf7720d862a8e9f51a17faa6b63af8643e5dfff"}]},"public":true,"created_at":"2015-01-01T15:01:47Z"}
,{"id":"2489651919","type":"PushEvent","actor":{"id":795866,"login":"Tonvin","gravatar_id":"","url":"https://api.github.com/users/Tonvin","avatar_url":"https://avatars.githubusercontent.com/u/795866?"},"repo":{"id":6069920,"name":"Tonvin/oh-my-zsh","url":"https://api.github.com/repos/Tonvin/oh-my-zsh"},"payload":{"push_id":536864363,"size":283,"distinct_size":283,"ref":"refs/heads/master","head":"224ea579d2db60f14b433f863996b1007585c028","before":"362daaa3078821e84e1c4c2eacaebdb0ae9d1f53","commits":[{"sha":"fdb3c0e68d36d20d1b75163755d568d42def5ac1","author":{"email":"f655be99d40b355fe9a8ebbf7f9e2442b0ee3e88@antone-3.desktop.amazon.com","name":"Anton Eicher"},"message":"Added check for .git directory in current, before wasting time querying git. This saves seconds on my pc.","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/fdb3c0e68d36d20d1b75163755d568d42def5ac1"},{"sha":"9674a96b5bc296a767c2560757626bf2bc3a9ad3","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@openminds.be","name":"Frank Louwers"},"message":"[pj-plugin] delete ugly ls -l | awk print $9 thing to use something not depending on date format + add support for projects with spaces in them","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/9674a96b5bc296a767c2560757626bf2bc3a9ad3"},{"sha":"df67f2ee30dbad61117e1886b0a4de326cb6daf7","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@openminds.be","name":"Frank Louwers"},"message":"[pj-plugin] avoid using basename. migth be (a lot?) faster","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/df67f2ee30dbad61117e1886b0a4de326cb6daf7"},{"sha":"a7c88c988a4be02b8883c06e57c6eb290c8fcb21","author":{"email":"74cb737ea0c60952e9dfa2f3ae3c9bdaf2fbf5b8@fakedomain.com","name":"Fräntz Miccoli"},"message":"Removed comments and other elements that might appear in the phing -l output. The current version doesn't work at all on my environment (OSX 10.7)","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/a7c88c988a4be02b8883c06e57c6eb290c8fcb21"},{"sha":"244533320062afd470e4aa6aab92e1532cf2fec3","author":{"email":"608e01334f5575f10813efa40ce0102f2dc0a75e@rimenes.net","name":"Rimenes Ribeiro"},"message":"Add reload and status alises to postgres","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/244533320062afd470e4aa6aab92e1532cf2fec3"},{"sha":"d608fbfc7fcabf9994f8064e67670e69130d2ee1","author":{"email":"bc3107fce01cd702eb1f5e5569cda6c9eda291d3@antevorte.org","name":"Riyad Preukschas"},"message":"Make the virtualenv plugin themable","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/d608fbfc7fcabf9994f8064e67670e69130d2ee1"},{"sha":"9b811fb625c03c30a766191cdf65a1c7c1fd96b2","author":{"email":"53787c78f7abb21ac0a50b247d81737fa8600e52@coxinc.com","name":"Michael Orr"},"message":"accidentally blew away a git config setting used for another purpose, renaming in order to distinguish","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/9b811fb625c03c30a766191cdf65a1c7c1fd96b2"},{"sha":"3976b93f3931a7ebc913576015ff395dcd495d95","author":{"email":"15ba641c8248aa8478f5c94808a2b37cac29d592@gmail.com","name":"Daniel Farrell"},"message":"Fixed which output at each new shell creation","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/3976b93f3931a7ebc913576015ff395dcd495d95"},{"sha":"b2ce306c4f49ebb1ef2bde5b86d553ce6ea674aa","author":{"email":"15ba641c8248aa8478f5c94808a2b37cac29d592@gmail.com","name":"Daniel Farrell"},"message":"Simplified gallois RPS1 setup using some helpful scripts","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/b2ce306c4f49ebb1ef2bde5b86d553ce6ea674aa"},{"sha":"b2ea7d3ec12152ab4d864c27c33d8b9396c68858","author":{"email":"c8cd21269bed0b1e5226ce25d7435eabcbcca136@ya.ru","name":"Stanislav Schultz"},"message":"Add Ruby 2.1.1 support to rvm plugin","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/b2ea7d3ec12152ab4d864c27c33d8b9396c68858"},{"sha":"73bf940c34fe359c27031a1144237ccaad7d2b9b","author":{"email":"092e29cd37ae31b9f9560115d5e4f6fc4b538e90@users.noreply.github.com","name":"Nicolas Brousse"},"message":"Update brew.plugin.zsh","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/73bf940c34fe359c27031a1144237ccaad7d2b9b"},{"sha":"3c485db8c73bfebf379f3e9382eb8f300b608bd8","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@walther-online.ch","name":"r3dDoX"},"message":"replaced hardcoded origin/{branch-name} with @{upstream} which gets the upstream branch since git 1.7.0","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/3c485db8c73bfebf379f3e9382eb8f300b608bd8"},{"sha":"59c8fcc712556a4c0b612898073e212877c21d60","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@walther-online.ch","name":"r3dDoX"},"message":"added new function to get number of commits ahead of remote","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/59c8fcc712556a4c0b612898073e212877c21d60"},{"sha":"514693125b12d4b4cd099dcb09174f7bfd9a5b0e","author":{"email":"1cd56a53740f8484de72ec3f48b0077a503c1116@users.noreply.github.com","name":"r3dDoX"},"message":"added prefix/suffix variable for customizability","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/514693125b12d4b4cd099dcb09174f7bfd9a5b0e"},{"sha":"b7f51bbbdd9f0d9ff9ef59b559e91b916d53cdf1","author":{"email":"81e1191ab7dc196fb9496172ecb9eca90e942252@gmail.com","name":"Josh Datko"},"message":"Adds itunes vol command.\n\nAdds itunes vol, which takes an argument from 0 to 100 to set the\nvolume from the shell.","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/b7f51bbbdd9f0d9ff9ef59b559e91b916d53cdf1"},{"sha":"bce74975d055529cbd186782e2fd99e6da840460","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@openminds.be","name":"Frank Louwers"},"message":"drop the foreach, make it even shorter. thanks Marc Cornellà!","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/bce74975d055529cbd186782e2fd99e6da840460"},{"sha":"9c11202fde61bf3db6755f4083c320d710fe3bd5","author":{"email":"74cb737ea0c60952e9dfa2f3ae3c9bdaf2fbf5b8@gmail.com","name":"frantzmiccoli"},"message":"fix `-nt` usage","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/9c11202fde61bf3db6755f4083c320d710fe3bd5"},{"sha":"45b61297113c7c2d2cb0eeb80537c8fa944865df","author":{"email":"454dedb4ae30b0d82977a9020d5adbfa85c32a1a@gmail.com","name":"willmendesneto"},"message":"Add new plugin: \"frontend-search\"","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/45b61297113c7c2d2cb0eeb80537c8fa944865df"},{"sha":"480ca2205846426c04fa46fb37e1f7246bba2b88","author":{"email":"6d82ba7aad82f88f215a2f0adf540efc9ac3974f@rausch.io","name":"Helge Rausch"},"message":"Make bundler plugin run binstubbed cmd if existing","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/480ca2205846426c04fa46fb37e1f7246bba2b88"},{"sha":"14ebcc83bec267859e2948f36f48cc69f5150def","author":{"email":"73675debcd8a436be48ec22211dcf44fe0df0a64@sommerlaune.com","name":"Ben Zörb"},"message":"#2893 generalized symfony2 console directory","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/14ebcc83bec267859e2948f36f48cc69f5150def"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651920","type":"PushEvent","actor":{"id":4656060,"login":"MattisLind","gravatar_id":"","url":"https://api.github.com/users/MattisLind","avatar_url":"https://avatars.githubusercontent.com/u/4656060?"},"repo":{"id":17089703,"name":"MattisLind/PC04Reader","url":"https://api.github.com/repos/MattisLind/PC04Reader"},"payload":{"push_id":536864364,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c66cd688f9068041b0a0dbff50866b287913955d","before":"dc1c92904c42f79b6d2f89869dcb0c1720a11809","commits":[{"sha":"c66cd688f9068041b0a0dbff50866b287913955d","author":{"email":"89ffbeb444c8a68b0b8a69d0bebfc9f52a8a3aef@mattisborgen.se","name":"Mattis Lind"},"message":"Fixed spelling","distinct":true,"url":"https://api.github.com/repos/MattisLind/PC04Reader/commits/c66cd688f9068041b0a0dbff50866b287913955d"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651921","type":"PushEvent","actor":{"id":3990778,"login":"buptjz","gravatar_id":"","url":"https://api.github.com/users/buptjz","avatar_url":"https://avatars.githubusercontent.com/u/3990778?"},"repo":{"id":27714948,"name":"buptjz/Pixel","url":"https://api.github.com/repos/buptjz/Pixel"},"payload":{"push_id":536864365,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c22e54dce9ee06ce06dda79fa45e3c2f72217c8b","before":"08023cd69895182a23935fcc79c93f05e6c570ef","commits":[{"sha":"c22e54dce9ee06ce06dda79fa45e3c2f72217c8b","author":{"email":"317c7c1ef217b4f2ad35892adef9a57fafb97e07@gmail.com","name":"buptjz"},"message":"图像分割 bug fix","distinct":true,"url":"https://api.github.com/repos/buptjz/Pixel/commits/c22e54dce9ee06ce06dda79fa45e3c2f72217c8b"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651922","type":"CreateEvent","actor":{"id":7732667,"login":"lihechao","gravatar_id":"","url":"https://api.github.com/users/lihechao","avatar_url":"https://avatars.githubusercontent.com/u/7732667?"},"repo":{"id":28688622,"name":"lihechao/pl0Compiler","url":"https://api.github.com/repos/lihechao/pl0Compiler"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"高级PL0编译器","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651923","type":"PushEvent","actor":{"id":10358743,"login":"weshellnet","gravatar_id":"","url":"https://api.github.com/users/weshellnet","avatar_url":"https://avatars.githubusercontent.com/u/10358743?"},"repo":{"id":28670754,"name":"weshellnet/weshellnet.github.io","url":"https://api.github.com/repos/weshellnet/weshellnet.github.io"},"payload":{"push_id":536864367,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"daadbac2241068c039f396a0e8ddb8e04409e10a","before":"0c2b7598f4eb17d96f5be15968e4ac4f9aa5a501","commits":[{"sha":"79d4843685b4e74d81c5d7c48afc5fc00d594399","author":{"email":"197afcde7a19cfc6854f5986f09cef0e7ba62fa2@qq.com","name":"weshell"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/weshellnet/weshellnet.github.io/commits/79d4843685b4e74d81c5d7c48afc5fc00d594399"},{"sha":"daadbac2241068c039f396a0e8ddb8e04409e10a","author":{"email":"197afcde7a19cfc6854f5986f09cef0e7ba62fa2@qq.com","name":"weshell"},"message":"Site updated: 2015-01-01 23:05:10","distinct":true,"url":"https://api.github.com/repos/weshellnet/weshellnet.github.io/commits/daadbac2241068c039f396a0e8ddb8e04409e10a"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651927","type":"PushEvent","actor":{"id":814471,"login":"swegener","gravatar_id":"","url":"https://api.github.com/users/swegener","avatar_url":"https://avatars.githubusercontent.com/u/814471?"},"repo":{"id":17971324,"name":"swegener/gentoo-portage","url":"https://api.github.com/repos/swegener/gentoo-portage"},"payload":{"push_id":536864369,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"edb4e41a724a34a4e0b58b54edddb31ccc922139","before":"dc9523c06a0a520843301eacdb6ff92ba2458f99","commits":[{"sha":"edb4e41a724a34a4e0b58b54edddb31ccc922139","author":{"email":"18dc2ed701c57df81c0b5498c13767c232eb398f@stealer.net","name":"Sven Wegener"},"message":"2015-01-01 14:36:52+00:00","distinct":true,"url":"https://api.github.com/repos/swegener/gentoo-portage/commits/edb4e41a724a34a4e0b58b54edddb31ccc922139"}]},"public":true,"created_at":"2015-01-01T15:01:50Z"}
,{"id":"2489651929","type":"PushEvent","actor":{"id":5811682,"login":"jokeewu","gravatar_id":"","url":"https://api.github.com/users/jokeewu","avatar_url":"https://avatars.githubusercontent.com/u/5811682?"},"repo":{"id":25424948,"name":"jokeewu/jokeewu.github.io","url":"https://api.github.com/repos/jokeewu/jokeewu.github.io"},"payload":{"push_id":536864370,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"968cb1d327adfbc61729e05ea40a3429c5e81280","before":"0c978c76f53155fc4e85d5744c645d19fd25c963","commits":[{"sha":"968cb1d327adfbc61729e05ea40a3429c5e81280","author":{"email":"9ac84f80f312592975c27c1b1c9a6611a52edaf1@gmail.com","name":"jokee"},"message":"test","distinct":true,"url":"https://api.github.com/repos/jokeewu/jokeewu.github.io/commits/968cb1d327adfbc61729e05ea40a3429c5e81280"}]},"public":true,"created_at":"2015-01-01T15:01:51Z"}
,{"id":"2489651936","type":"PullRequestEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/mevlan/script/pulls/3","id":26743766,"html_url":"https://github.com/mevlan/script/pull/3","diff_url":"https://github.com/mevlan/script/pull/3.diff","patch_url":"https://github.com/mevlan/script/pull/3.patch","issue_url":"https://api.github.com/repos/mevlan/script/issues/3","number":3,"state":"closed","locked":false,"title":"final function","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:07Z","updated_at":"2015-01-01T15:01:53Z","closed_at":"2015-01-01T15:01:53Z","merged_at":"2015-01-01T15:01:53Z","merge_commit_sha":"563aa7776a6bcc6b497a2ffc200809197d2db733","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mevlan/script/pulls/3/commits","review_comments_url":"https://api.github.com/repos/mevlan/script/pulls/3/comments","review_comment_url":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mevlan/script/issues/3/comments","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/5cd1712df72a79bccdebfe073d82224404871fac","head":{"label":"mevlan:final","ref":"final","sha":"5cd1712df72a79bccdebfe073d82224404871fac","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T15:01:53Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"mevlan:master","ref":"master","sha":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T15:01:53Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"},"html":{"href":"https://github.com/mevlan/script/pull/3"},"issue":{"href":"https://api.github.com/repos/mevlan/script/issues/3"},"comments":{"href":"https://api.github.com/repos/mevlan/script/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/mevlan/script/statuses/5cd1712df72a79bccdebfe073d82224404871fac"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"comments":0,"review_comments":1,"commits":2,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651937","type":"CreateEvent","actor":{"id":683817,"login":"Irkka","gravatar_id":"","url":"https://api.github.com/users/Irkka","avatar_url":"https://avatars.githubusercontent.com/u/683817?"},"repo":{"id":28688524,"name":"Irkka/botfarmd","url":"https://api.github.com/repos/Irkka/botfarmd"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"IRC Bot control daemon","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651938","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864375,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"344140511ffa3bdd4c22f7b6378d80abe16f6b31","before":"3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57","commits":[{"sha":"344140511ffa3bdd4c22f7b6378d80abe16f6b31","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124511933\n\nWfTX+BxOybQctJh4a0YCn7mVp/sBsTRRcPzkrtayrp4=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/344140511ffa3bdd4c22f7b6378d80abe16f6b31"}]},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651939","type":"PushEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"push_id":536864376,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"739b1e55a080871d5bd4f317fbcc7628efd25376","before":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","commits":[{"sha":"fecf568375c53fd0bf03eb4e81c821214077f41c","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@mevlans-MacBook-Pro.local","name":"mevlan"},"message":"final function","distinct":false,"url":"https://api.github.com/repos/mevlan/script/commits/fecf568375c53fd0bf03eb4e81c821214077f41c"},{"sha":"5cd1712df72a79bccdebfe073d82224404871fac","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@mevlans-MacBook-Pro.local","name":"mevlan"},"message":"white space removed","distinct":false,"url":"https://api.github.com/repos/mevlan/script/commits/5cd1712df72a79bccdebfe073d82224404871fac"},{"sha":"739b1e55a080871d5bd4f317fbcc7628efd25376","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@hotmail.com","name":"mevlan"},"message":"Merge pull request #3 from mevlan/final\n\nfinal function","distinct":true,"url":"https://api.github.com/repos/mevlan/script/commits/739b1e55a080871d5bd4f317fbcc7628efd25376"}]},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651940","type":"IssueCommentEvent","actor":{"id":10356336,"login":"architverma","gravatar_id":"","url":"https://api.github.com/users/architverma","avatar_url":"https://avatars.githubusercontent.com/u/10356336?"},"repo":{"id":907410,"name":"jquery/jquery-mobile","url":"https://api.github.com/repos/jquery/jquery-mobile"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431","labels_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431/labels{/name}","comments_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431/comments","events_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431/events","html_url":"https://github.com/jquery/jquery-mobile/issues/5431","id":9838764,"number":5431,"title":"Solution to flicker problem in jQuery mobile page transitions!","user":{"login":"hikalkan","id":1210527,"avatar_url":"https://avatars.githubusercontent.com/u/1210527?v=3","gravatar_id":"","url":"https://api.github.com/users/hikalkan","html_url":"https://github.com/hikalkan","followers_url":"https://api.github.com/users/hikalkan/followers","following_url":"https://api.github.com/users/hikalkan/following{/other_user}","gists_url":"https://api.github.com/users/hikalkan/gists{/gist_id}","starred_url":"https://api.github.com/users/hikalkan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hikalkan/subscriptions","organizations_url":"https://api.github.com/users/hikalkan/orgs","repos_url":"https://api.github.com/users/hikalkan/repos","events_url":"https://api.github.com/users/hikalkan/events{/privacy}","received_events_url":"https://api.github.com/users/hikalkan/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/jquery/jquery-mobile/labels/Component%3A+Transitions","name":"Component: Transitions","color":"DDDDDD"},{"url":"https://api.github.com/repos/jquery/jquery-mobile/labels/Tag%3A+Fixed+toolbars","name":"Tag: Fixed toolbars","color":"DDDDDD"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":46,"created_at":"2013-01-10T11:33:27Z","updated_at":"2015-01-01T15:01:53Z","closed_at":"2014-10-06T20:12:25Z","body":"I'm developing a mobile web site using jQuery mobile framework. When I use page transitions (like slide), it causes a flicking. Especially in default browser in android phones, flicking is really bad.\r\n\r\nI deeply investigate the jquery-mobile.js to understand when this flickering happens. After spending many hours, I found which code part causes the problem: Enabling/Disabling zoom on just before page transition!\r\n\r\nin jQuery mobile 1.2.0 source codes (line 7211 to 7234):\r\n\r\n$.mobile.zoom = $.extend( {}, {\r\n    enabled: !disabledInitially,\r\n    locked: false,\r\n    disable: function( lock ) {\r\n        if ( !disabledInitially && !$.mobile.zoom.locked ) {\r\n            meta.attr( \"content\", disabledZoom );\r\n            $.mobile.zoom.enabled = false;\r\n            $.mobile.zoom.locked = lock || false;\r\n        }\r\n    },\r\n    enable: function( unlock ) {\r\n        if ( !disabledInitially && ( !$.mobile.zoom.locked || unlock === true ) ) {\r\n            meta.attr( \"content\", enabledZoom );\r\n            $.mobile.zoom.enabled = true;\r\n            $.mobile.zoom.locked = false;\r\n        }\r\n    },\r\n    restore: function() {\r\n        if ( !disabledInitially ) {\r\n            meta.attr( \"content\", initialContent );\r\n            $.mobile.zoom.enabled = true;\r\n        }\r\n    }\r\n});\r\n\r\nI deleted the lines:\r\n\r\nmeta.attr( \"content\", disabledZoom );\r\n\r\nand\r\n\r\nmeta.attr( \"content\", enabledZoom );\r\n\r\n(lines 7216 and 7223)\r\n\r\nThen it worked smoothly without a problem! I don't know if it causes another problem but the problem was changing max-zoom in page transition. In my tests, it worked correctly without any problem.\r\n\r\nI wanted to inform you to consider this problem while changing zoom."},"comment":{"url":"https://api.github.com/repos/jquery/jquery-mobile/issues/comments/68488528","html_url":"https://github.com/jquery/jquery-mobile/issues/5431#issuecomment-68488528","issue_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431","id":68488528,"user":{"login":"architverma","id":10356336,"avatar_url":"https://avatars.githubusercontent.com/u/10356336?v=3","gravatar_id":"","url":"https://api.github.com/users/architverma","html_url":"https://github.com/architverma","followers_url":"https://api.github.com/users/architverma/followers","following_url":"https://api.github.com/users/architverma/following{/other_user}","gists_url":"https://api.github.com/users/architverma/gists{/gist_id}","starred_url":"https://api.github.com/users/architverma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/architverma/subscriptions","organizations_url":"https://api.github.com/users/architverma/orgs","repos_url":"https://api.github.com/users/architverma/repos","events_url":"https://api.github.com/users/architverma/events{/privacy}","received_events_url":"https://api.github.com/users/architverma/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:53Z","updated_at":"2015-01-01T15:01:53Z","body":"hi luigi please tell what you did so your 4.1.2 started working properly.\r\nmy android mobile is not working. and each service centre is saying you have touch screen problem."}},"public":true,"created_at":"2015-01-01T15:01:53Z","org":{"id":70142,"login":"jquery","gravatar_id":"","url":"https://api.github.com/orgs/jquery","avatar_url":"https://avatars.githubusercontent.com/u/70142?"}}
,{"id":"2489651943","type":"CreateEvent","actor":{"id":10364677,"login":"luogyong","gravatar_id":"","url":"https://api.github.com/users/luogyong","avatar_url":"https://avatars.githubusercontent.com/u/10364677?"},"repo":{"id":28688627,"name":"scut/fea-geotechnical-solver","url":"https://api.github.com/repos/scut/fea-geotechnical-solver"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:54Z","org":{"id":10364751,"login":"scut","gravatar_id":"","url":"https://api.github.com/orgs/scut","avatar_url":"https://avatars.githubusercontent.com/u/10364751?"}}
,{"id":"2489651948","type":"PushEvent","actor":{"id":46095,"login":"MeirKriheli","gravatar_id":"","url":"https://api.github.com/users/MeirKriheli","avatar_url":"https://avatars.githubusercontent.com/u/46095?"},"repo":{"id":1125942,"name":"hasadna/Open-Knesset","url":"https://api.github.com/repos/hasadna/Open-Knesset"},"payload":{"push_id":536864380,"size":14,"distinct_size":14,"ref":"refs/heads/master","head":"456e518e0b48e87c7137e40d7bba03823e173caa","before":"75714af1397dd841d40433ed1856c66338542ced","commits":[{"sha":"3c4e638529c53ec270d61bfd3e63679ac9b52a3f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Add a Committee property - `gender_presence`","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/3c4e638529c53ec270d61bfd3e63679ac9b52a3f"},{"sha":"fef18fd92990b08d5003a25d10206f9ff65e4c4c","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/fef18fd92990b08d5003a25d10206f9ff65e4c4c"},{"sha":"c89932c0ecbadff5c8f9959510d06997a6ed0fb3","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added scraper that gets events for an mk and stores in new mks.models.Event model","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/c89932c0ecbadff5c8f9959510d06997a6ed0fb3"},{"sha":"c360401e58f3d8b7f3ec1323814dfe579a80e0bb","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added color and updating of events","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/c360401e58f3d8b7f3ec1323814dfe579a80e0bb"},{"sha":"fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge commit 'c360401e58f3d8b7f3ec1323814dfe579a80e0bb'","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4"},{"sha":"a36b64fd04626f9d662135a25eea9e22fd155108","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/a36b64fd04626f9d662135a25eea9e22fd155108"},{"sha":"30872810bdd9d31a9b82a3bea5c5d558399f2f38","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface #279\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/30872810bdd9d31a9b82a3bea5c5d558399f2f38"},{"sha":"7db3cb347f0b5e85a798aabf495924c84b4d1949","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/7db3cb347f0b5e85a798aabf495924c84b4d1949"},{"sha":"1df2040e6e82a4bb14dfa60491945b171bdb2461","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/1df2040e6e82a4bb14dfa60491945b171bdb2461"},{"sha":"4541f36ffd4519c78683adcee7754611495eaa2f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"removing a deprecated debug toolbar setting","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/4541f36ffd4519c78683adcee7754611495eaa2f"},{"sha":"21ef3bfac0ebee5c0281045c19e9028efb28d767","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Remove the Plenum from the member API","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/21ef3bfac0ebee5c0281045c19e9028efb28d767"},{"sha":"c666d1315b224a87be7d9335eece426e0e8dd1a6","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/c666d1315b224a87be7d9335eece426e0e8dd1a6"},{"sha":"5cefdda3a0426a24d2a2c077587e311dbfdc317f","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Add API docs link to README","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/5cefdda3a0426a24d2a2c077587e311dbfdc317f"},{"sha":"456e518e0b48e87c7137e40d7bba03823e173caa","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Merge branch 'master' of https://github.com/daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/456e518e0b48e87c7137e40d7bba03823e173caa"}]},"public":true,"created_at":"2015-01-01T15:01:54Z","org":{"id":503639,"login":"hasadna","gravatar_id":"","url":"https://api.github.com/orgs/hasadna","avatar_url":"https://avatars.githubusercontent.com/u/503639?"}}
,{"id":"2489651949","type":"WatchEvent","actor":{"id":8203034,"login":"licg9999","gravatar_id":"","url":"https://api.github.com/users/licg9999","avatar_url":"https://avatars.githubusercontent.com/u/8203034?"},"repo":{"id":481220,"name":"kchmck/vim-coffee-script","url":"https://api.github.com/repos/kchmck/vim-coffee-script"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:55Z"}
,{"id":"2489651953","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864382,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b","before":"4a7b8abb684c43cd6ace984534f82e612b9a20ec","commits":[{"sha":"2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Delete StrPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b"}]},"public":true,"created_at":"2015-01-01T15:01:55Z"}
,{"id":"2489651957","type":"CreateEvent","actor":{"id":3757284,"login":"alfredessa","gravatar_id":"","url":"https://api.github.com/users/alfredessa","avatar_url":"https://avatars.githubusercontent.com/u/3757284?"},"repo":{"id":28688628,"name":"alfredessa/pythonda2015","url":"https://api.github.com/repos/alfredessa/pythonda2015"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:55Z"}
,{"id":"2489651959","type":"PullRequestEvent","actor":{"id":143206,"login":"makasim","gravatar_id":"","url":"https://api.github.com/users/makasim","avatar_url":"https://avatars.githubusercontent.com/u/143206?"},"repo":{"id":7016481,"name":"Payum/PayumBundle","url":"https://api.github.com/repos/Payum/PayumBundle"},"payload":{"action":"closed","number":223,"pull_request":{"url":"https://api.github.com/repos/Payum/PayumBundle/pulls/223","id":26725492,"html_url":"https://github.com/Payum/PayumBundle/pull/223","diff_url":"https://github.com/Payum/PayumBundle/pull/223.diff","patch_url":"https://github.com/Payum/PayumBundle/pull/223.patch","issue_url":"https://api.github.com/repos/Payum/PayumBundle/issues/223","number":223,"state":"closed","locked":false,"title":"[twig] automaticly add paths to twig bundle via prepend config","user":{"login":"makasim","id":143206,"avatar_url":"https://avatars.githubusercontent.com/u/143206?v=3","gravatar_id":"","url":"https://api.github.com/users/makasim","html_url":"https://github.com/makasim","followers_url":"https://api.github.com/users/makasim/followers","following_url":"https://api.github.com/users/makasim/following{/other_user}","gists_url":"https://api.github.com/users/makasim/gists{/gist_id}","starred_url":"https://api.github.com/users/makasim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/makasim/subscriptions","organizations_url":"https://api.github.com/users/makasim/orgs","repos_url":"https://api.github.com/users/makasim/repos","events_url":"https://api.github.com/users/makasim/events{/privacy}","received_events_url":"https://api.github.com/users/makasim/received_events","type":"User","site_admin":false},"body":"","created_at":"2014-12-31T14:29:23Z","updated_at":"2015-01-01T15:01:56Z","closed_at":"2015-01-01T15:01:56Z","merged_at":"2015-01-01T15:01:56Z","merge_commit_sha":"620da33b3eb3bace92156da04f48d236b061959e","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/commits","review_comments_url":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/comments","review_comment_url":"https://api.github.com/repos/Payum/PayumBundle/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Payum/PayumBundle/issues/223/comments","statuses_url":"https://api.github.com/repos/Payum/PayumBundle/statuses/d5bcd3289bb7c1506e04e8710bf78d1ff2097684","head":{"label":"formapro-forks:twig-prepend-paths","ref":"twig-prepend-paths","sha":"d5bcd3289bb7c1506e04e8710bf78d1ff2097684","user":{"login":"formapro-forks","id":5163809,"avatar_url":"https://avatars.githubusercontent.com/u/5163809?v=3","gravatar_id":"","url":"https://api.github.com/users/formapro-forks","html_url":"https://github.com/formapro-forks","followers_url":"https://api.github.com/users/formapro-forks/followers","following_url":"https://api.github.com/users/formapro-forks/following{/other_user}","gists_url":"https://api.github.com/users/formapro-forks/gists{/gist_id}","starred_url":"https://api.github.com/users/formapro-forks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/formapro-forks/subscriptions","organizations_url":"https://api.github.com/users/formapro-forks/orgs","repos_url":"https://api.github.com/users/formapro-forks/repos","events_url":"https://api.github.com/users/formapro-forks/events{/privacy}","received_events_url":"https://api.github.com/users/formapro-forks/received_events","type":"Organization","site_admin":false},"repo":{"id":20431944,"name":"PayumBundle","full_name":"formapro-forks/PayumBundle","owner":{"login":"formapro-forks","id":5163809,"avatar_url":"https://avatars.githubusercontent.com/u/5163809?v=3","gravatar_id":"","url":"https://api.github.com/users/formapro-forks","html_url":"https://github.com/formapro-forks","followers_url":"https://api.github.com/users/formapro-forks/followers","following_url":"https://api.github.com/users/formapro-forks/following{/other_user}","gists_url":"https://api.github.com/users/formapro-forks/gists{/gist_id}","starred_url":"https://api.github.com/users/formapro-forks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/formapro-forks/subscriptions","organizations_url":"https://api.github.com/users/formapro-forks/orgs","repos_url":"https://api.github.com/users/formapro-forks/repos","events_url":"https://api.github.com/users/formapro-forks/events{/privacy}","received_events_url":"https://api.github.com/users/formapro-forks/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/formapro-forks/PayumBundle","description":"Rich payment solutions for symfony2. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more","fork":true,"url":"https://api.github.com/repos/formapro-forks/PayumBundle","forks_url":"https://api.github.com/repos/formapro-forks/PayumBundle/forks","keys_url":"https://api.github.com/repos/formapro-forks/PayumBundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/formapro-forks/PayumBundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/formapro-forks/PayumBundle/teams","hooks_url":"https://api.github.com/repos/formapro-forks/PayumBundle/hooks","issue_events_url":"https://api.github.com/repos/formapro-forks/PayumBundle/issues/events{/number}","events_url":"https://api.github.com/repos/formapro-forks/PayumBundle/events","assignees_url":"https://api.github.com/repos/formapro-forks/PayumBundle/assignees{/user}","branches_url":"https://api.github.com/repos/formapro-forks/PayumBundle/branches{/branch}","tags_url":"https://api.github.com/repos/formapro-forks/PayumBundle/tags","blobs_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/formapro-forks/PayumBundle/statuses/{sha}","languages_url":"https://api.github.com/repos/formapro-forks/PayumBundle/languages","stargazers_url":"https://api.github.com/repos/formapro-forks/PayumBundle/stargazers","contributors_url":"https://api.github.com/repos/formapro-forks/PayumBundle/contributors","subscribers_url":"https://api.github.com/repos/formapro-forks/PayumBundle/subscribers","subscription_url":"https://api.github.com/repos/formapro-forks/PayumBundle/subscription","commits_url":"https://api.github.com/repos/formapro-forks/PayumBundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/formapro-forks/PayumBundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/formapro-forks/PayumBundle/issues/comments/{number}","contents_url":"https://api.github.com/repos/formapro-forks/PayumBundle/contents/{+path}","compare_url":"https://api.github.com/repos/formapro-forks/PayumBundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/formapro-forks/PayumBundle/merges","archive_url":"https://api.github.com/repos/formapro-forks/PayumBundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/formapro-forks/PayumBundle/downloads","issues_url":"https://api.github.com/repos/formapro-forks/PayumBundle/issues{/number}","pulls_url":"https://api.github.com/repos/formapro-forks/PayumBundle/pulls{/number}","milestones_url":"https://api.github.com/repos/formapro-forks/PayumBundle/milestones{/number}","notifications_url":"https://api.github.com/repos/formapro-forks/PayumBundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/formapro-forks/PayumBundle/labels{/name}","releases_url":"https://api.github.com/repos/formapro-forks/PayumBundle/releases{/id}","created_at":"2014-06-03T06:25:09Z","updated_at":"2014-09-03T10:25:41Z","pushed_at":"2015-01-01T14:53:42Z","git_url":"git://github.com/formapro-forks/PayumBundle.git","ssh_url":"git@github.com:formapro-forks/PayumBundle.git","clone_url":"https://github.com/formapro-forks/PayumBundle.git","svn_url":"https://github.com/formapro-forks/PayumBundle","homepage":"payum.forma-dev.com/documentation#PayumBundle","size":1250,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Payum:master","ref":"master","sha":"4017da9edc1a789aba650273c08bfa4790d4fadb","user":{"login":"Payum","id":2638697,"avatar_url":"https://avatars.githubusercontent.com/u/2638697?v=3","gravatar_id":"","url":"https://api.github.com/users/Payum","html_url":"https://github.com/Payum","followers_url":"https://api.github.com/users/Payum/followers","following_url":"https://api.github.com/users/Payum/following{/other_user}","gists_url":"https://api.github.com/users/Payum/gists{/gist_id}","starred_url":"https://api.github.com/users/Payum/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Payum/subscriptions","organizations_url":"https://api.github.com/users/Payum/orgs","repos_url":"https://api.github.com/users/Payum/repos","events_url":"https://api.github.com/users/Payum/events{/privacy}","received_events_url":"https://api.github.com/users/Payum/received_events","type":"Organization","site_admin":false},"repo":{"id":7016481,"name":"PayumBundle","full_name":"Payum/PayumBundle","owner":{"login":"Payum","id":2638697,"avatar_url":"https://avatars.githubusercontent.com/u/2638697?v=3","gravatar_id":"","url":"https://api.github.com/users/Payum","html_url":"https://github.com/Payum","followers_url":"https://api.github.com/users/Payum/followers","following_url":"https://api.github.com/users/Payum/following{/other_user}","gists_url":"https://api.github.com/users/Payum/gists{/gist_id}","starred_url":"https://api.github.com/users/Payum/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Payum/subscriptions","organizations_url":"https://api.github.com/users/Payum/orgs","repos_url":"https://api.github.com/users/Payum/repos","events_url":"https://api.github.com/users/Payum/events{/privacy}","received_events_url":"https://api.github.com/users/Payum/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Payum/PayumBundle","description":"Rich payment solutions for symfony2. Paypal, Stripe, Payex, Authorize.NET, Be2bill, Klarna, recurring paymens, instant notifications and many more","fork":false,"url":"https://api.github.com/repos/Payum/PayumBundle","forks_url":"https://api.github.com/repos/Payum/PayumBundle/forks","keys_url":"https://api.github.com/repos/Payum/PayumBundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Payum/PayumBundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Payum/PayumBundle/teams","hooks_url":"https://api.github.com/repos/Payum/PayumBundle/hooks","issue_events_url":"https://api.github.com/repos/Payum/PayumBundle/issues/events{/number}","events_url":"https://api.github.com/repos/Payum/PayumBundle/events","assignees_url":"https://api.github.com/repos/Payum/PayumBundle/assignees{/user}","branches_url":"https://api.github.com/repos/Payum/PayumBundle/branches{/branch}","tags_url":"https://api.github.com/repos/Payum/PayumBundle/tags","blobs_url":"https://api.github.com/repos/Payum/PayumBundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Payum/PayumBundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Payum/PayumBundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/Payum/PayumBundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Payum/PayumBundle/statuses/{sha}","languages_url":"https://api.github.com/repos/Payum/PayumBundle/languages","stargazers_url":"https://api.github.com/repos/Payum/PayumBundle/stargazers","contributors_url":"https://api.github.com/repos/Payum/PayumBundle/contributors","subscribers_url":"https://api.github.com/repos/Payum/PayumBundle/subscribers","subscription_url":"https://api.github.com/repos/Payum/PayumBundle/subscription","commits_url":"https://api.github.com/repos/Payum/PayumBundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/Payum/PayumBundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/Payum/PayumBundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/Payum/PayumBundle/issues/comments/{number}","contents_url":"https://api.github.com/repos/Payum/PayumBundle/contents/{+path}","compare_url":"https://api.github.com/repos/Payum/PayumBundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Payum/PayumBundle/merges","archive_url":"https://api.github.com/repos/Payum/PayumBundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Payum/PayumBundle/downloads","issues_url":"https://api.github.com/repos/Payum/PayumBundle/issues{/number}","pulls_url":"https://api.github.com/repos/Payum/PayumBundle/pulls{/number}","milestones_url":"https://api.github.com/repos/Payum/PayumBundle/milestones{/number}","notifications_url":"https://api.github.com/repos/Payum/PayumBundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Payum/PayumBundle/labels{/name}","releases_url":"https://api.github.com/repos/Payum/PayumBundle/releases{/id}","created_at":"2012-12-05T11:40:39Z","updated_at":"2014-12-31T12:15:31Z","pushed_at":"2015-01-01T15:01:56Z","git_url":"git://github.com/Payum/PayumBundle.git","ssh_url":"git@github.com:Payum/PayumBundle.git","clone_url":"https://github.com/Payum/PayumBundle.git","svn_url":"https://github.com/Payum/PayumBundle","homepage":"  http://payum.org/doc#PayumBundle","size":2803,"stargazers_count":122,"watchers_count":122,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":48,"mirror_url":null,"open_issues_count":11,"forks":48,"open_issues":11,"watchers":122,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/223"},"html":{"href":"https://github.com/Payum/PayumBundle/pull/223"},"issue":{"href":"https://api.github.com/repos/Payum/PayumBundle/issues/223"},"comments":{"href":"https://api.github.com/repos/Payum/PayumBundle/issues/223/comments"},"review_comments":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/comments"},"review_comment":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/commits"},"statuses":{"href":"https://api.github.com/repos/Payum/PayumBundle/statuses/d5bcd3289bb7c1506e04e8710bf78d1ff2097684"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"makasim","id":143206,"avatar_url":"https://avatars.githubusercontent.com/u/143206?v=3","gravatar_id":"","url":"https://api.github.com/users/makasim","html_url":"https://github.com/makasim","followers_url":"https://api.github.com/users/makasim/followers","following_url":"https://api.github.com/users/makasim/following{/other_user}","gists_url":"https://api.github.com/users/makasim/gists{/gist_id}","starred_url":"https://api.github.com/users/makasim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/makasim/subscriptions","organizations_url":"https://api.github.com/users/makasim/orgs","repos_url":"https://api.github.com/users/makasim/repos","events_url":"https://api.github.com/users/makasim/events{/privacy}","received_events_url":"https://api.github.com/users/makasim/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":11,"additions":32,"deletions":48,"changed_files":10}},"public":true,"created_at":"2015-01-01T15:01:56Z","org":{"id":2638697,"login":"Payum","gravatar_id":"","url":"https://api.github.com/orgs/Payum","avatar_url":"https://avatars.githubusercontent.com/u/2638697?"}}
,{"id":"2489651962","type":"CreateEvent","actor":{"id":5724186,"login":"abhinav-garg","gravatar_id":"","url":"https://api.github.com/users/abhinav-garg","avatar_url":"https://avatars.githubusercontent.com/u/5724186?"},"repo":{"id":28688629,"name":"abhinav-garg/web-page","url":"https://api.github.com/repos/abhinav-garg/web-page"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:56Z"}
,{"id":"2489651964","type":"PushEvent","actor":{"id":143206,"login":"makasim","gravatar_id":"","url":"https://api.github.com/users/makasim","avatar_url":"https://avatars.githubusercontent.com/u/143206?"},"repo":{"id":7016481,"name":"Payum/PayumBundle","url":"https://api.github.com/repos/Payum/PayumBundle"},"payload":{"push_id":536864386,"size":12,"distinct_size":12,"ref":"refs/heads/master","head":"d396b1341bc25058eda4f15af3491fcfe6e02588","before":"4017da9edc1a789aba650273c08bfa4790d4fadb","commits":[{"sha":"1ea9dd644256feb968478ffc9d3a42b357892f71","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"[twig] automaticly add paths to twig bundle via prepend config","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/1ea9dd644256feb968478ffc9d3a42b357892f71"},{"sha":"94d1ca85237ff3f07f44b4bb5f01c634bafaeba5","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix tests","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/94d1ca85237ff3f07f44b4bb5f01c634bafaeba5"},{"sha":"f8bec7aa50eaf0375ab56ad7e3cd42227cad80f6","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix tests","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/f8bec7aa50eaf0375ab56ad7e3cd42227cad80f6"},{"sha":"06cce6c98297f61d45d3449d484d1b74d6823634","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"update travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/06cce6c98297f61d45d3449d484d1b74d6823634"},{"sha":"688322bd930dd8fa71f9e00a5a792afa271f24d5","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/688322bd930dd8fa71f9e00a5a792afa271f24d5"},{"sha":"de6945b1c90c82fd8475b01172193be1618179da","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/de6945b1c90c82fd8475b01172193be1618179da"},{"sha":"3c6119cf7a47579972efb8a767606ed80208586c","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix traivs.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/3c6119cf7a47579972efb8a767606ed80208586c"},{"sha":"41b5d6c43b87c5368d88ec0a2f384fd45730dcc6","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/41b5d6c43b87c5368d88ec0a2f384fd45730dcc6"},{"sha":"74f72e98a78ffce83523142b6e90427c7e5ba39a","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/74f72e98a78ffce83523142b6e90427c7e5ba39a"},{"sha":"2e720565c32fabf75e24c24a8277182adf8c4aaa","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/2e720565c32fabf75e24c24a8277182adf8c4aaa"},{"sha":"d5bcd3289bb7c1506e04e8710bf78d1ff2097684","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/d5bcd3289bb7c1506e04e8710bf78d1ff2097684"},{"sha":"d396b1341bc25058eda4f15af3491fcfe6e02588","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Maksim Kotlyar"},"message":"Merge pull request #223 from formapro-forks/twig-prepend-paths\n\n[twig] automaticly add paths to twig bundle via prepend config","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/d396b1341bc25058eda4f15af3491fcfe6e02588"}]},"public":true,"created_at":"2015-01-01T15:01:56Z","org":{"id":2638697,"login":"Payum","gravatar_id":"","url":"https://api.github.com/orgs/Payum","avatar_url":"https://avatars.githubusercontent.com/u/2638697?"}}
,{"id":"2489651967","type":"CreateEvent","actor":{"id":5477252,"login":"callumW","gravatar_id":"","url":"https://api.github.com/users/callumW","avatar_url":"https://avatars.githubusercontent.com/u/5477252?"},"repo":{"id":28609540,"name":"callumW/map_generator","url":"https://api.github.com/repos/callumW/map_generator"},"payload":{"ref":"terrain_globberv2","ref_type":"tag","master_branch":"master","description":"code for creating a map, in a linux terminal, comprised of 1's and 0's ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:57Z"}
,{"id":"2489651968","type":"WatchEvent","actor":{"id":1089814,"login":"muhaha03","gravatar_id":"","url":"https://api.github.com/users/muhaha03","avatar_url":"https://avatars.githubusercontent.com/u/1089814?"},"repo":{"id":28517589,"name":"imgix/imgix-emacs","url":"https://api.github.com/repos/imgix/imgix-emacs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:57Z","org":{"id":2793044,"login":"imgix","gravatar_id":"","url":"https://api.github.com/orgs/imgix","avatar_url":"https://avatars.githubusercontent.com/u/2793044?"}}
,{"id":"2489651974","type":"DeleteEvent","actor":{"id":143206,"login":"makasim","gravatar_id":"","url":"https://api.github.com/users/makasim","avatar_url":"https://avatars.githubusercontent.com/u/143206?"},"repo":{"id":20431944,"name":"formapro-forks/PayumBundle","url":"https://api.github.com/repos/formapro-forks/PayumBundle"},"payload":{"ref":"twig-prepend-paths","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:57Z","org":{"id":5163809,"login":"formapro-forks","gravatar_id":"","url":"https://api.github.com/orgs/formapro-forks","avatar_url":"https://avatars.githubusercontent.com/u/5163809?"}}
,{"id":"2489651975","type":"WatchEvent","actor":{"id":1089814,"login":"muhaha03","gravatar_id":"","url":"https://api.github.com/users/muhaha03","avatar_url":"https://avatars.githubusercontent.com/u/1089814?"},"repo":{"id":14081437,"name":"LnxPrgr3/crossfeed","url":"https://api.github.com/repos/LnxPrgr3/crossfeed"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651977","type":"CreateEvent","actor":{"id":2033346,"login":"DalekVoid","gravatar_id":"","url":"https://api.github.com/users/DalekVoid","avatar_url":"https://avatars.githubusercontent.com/u/2033346?"},"repo":{"id":28688630,"name":"DalekVoid/Compass-And-Straightedge-Construction","url":"https://api.github.com/repos/DalekVoid/Compass-And-Straightedge-Construction"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Design with compass and straightedge constructions, the basis geometric technique, with Sketch. WIP.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651978","type":"CreateEvent","actor":{"id":7836683,"login":"lucasayat","gravatar_id":"","url":"https://api.github.com/users/lucasayat","avatar_url":"https://avatars.githubusercontent.com/u/7836683?"},"repo":{"id":28688631,"name":"lucasayat/jardinor","url":"https://api.github.com/repos/lucasayat/jardinor"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651981","type":"PullRequestEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"action":"opened","number":4,"pull_request":{"url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4","id":26743782,"html_url":"https://github.com/deeperx/dojo_rules/pull/4","diff_url":"https://github.com/deeperx/dojo_rules/pull/4.diff","patch_url":"https://github.com/deeperx/dojo_rules/pull/4.patch","issue_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4","number":4,"state":"open","locked":false,"title":"add: programmers to kill list fixes #3","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:58Z","updated_at":"2015-01-01T15:01:58Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits","review_comments_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments","review_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f","head":{"label":"deeperx:kill_list","ref":"kill_list","sha":"c81ce0de1788f8a5fafdecc155654733be41587f","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:00:18Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"deeperx:master","ref":"master","sha":"2913bd18d5d8648ee4b1f38eaaa42075a606f853","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:00:18Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4"},"html":{"href":"https://github.com/deeperx/dojo_rules/pull/4"},"issue":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4"},"comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651982","type":"PushEvent","actor":{"id":3386499,"login":"Antinomy","gravatar_id":"","url":"https://api.github.com/users/Antinomy","avatar_url":"https://avatars.githubusercontent.com/u/3386499?"},"repo":{"id":7832046,"name":"Antinomy/Tech-Doc","url":"https://api.github.com/repos/Antinomy/Tech-Doc"},"payload":{"push_id":536864392,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b113c65e9dc8445cfe7d637100f9589a8ab1b274","before":"a67caf50eeb8333e8790dd6b3c971162f0762dc2","commits":[{"sha":"b113c65e9dc8445cfe7d637100f9589a8ab1b274","author":{"email":"acd74532b0e480c777ff151bc82d7553aa971a3f@126.com","name":"antinomy"},"message":"2015-01-01-Org with Freemind lisp backup","distinct":true,"url":"https://api.github.com/repos/Antinomy/Tech-Doc/commits/b113c65e9dc8445cfe7d637100f9589a8ab1b274"}]},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651984","type":"PushEvent","actor":{"id":911764,"login":"alexz202","gravatar_id":"","url":"https://api.github.com/users/alexz202","avatar_url":"https://avatars.githubusercontent.com/u/911764?"},"repo":{"id":27656543,"name":"alexz202/dedetozp","url":"https://api.github.com/repos/alexz202/dedetozp"},"payload":{"push_id":536864393,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1e8ae5505c53e0819d4e1abdc81fffd5e9099d56","before":"cff09ed694da214ca438557e2ad13547f62cd0bb","commits":[{"sha":"1e8ae5505c53e0819d4e1abdc81fffd5e9099d56","author":{"email":"5a77cbafd4b2f0f44c6ebad0685da789be2a2c0b@transmension.com","name":"jyzhu"},"message":"complete suggest and talk","distinct":true,"url":"https://api.github.com/repos/alexz202/dedetozp/commits/1e8ae5505c53e0819d4e1abdc81fffd5e9099d56"}]},"public":true,"created_at":"2015-01-01T15:01:59Z"}
,{"id":"2489651985","type":"PullRequestEvent","actor":{"id":378279,"login":"oblador","gravatar_id":"","url":"https://api.github.com/users/oblador","avatar_url":"https://avatars.githubusercontent.com/u/378279?"},"repo":{"id":17359035,"name":"expressjs/errorhandler","url":"https://api.github.com/repos/expressjs/errorhandler"},"payload":{"action":"opened","number":10,"pull_request":{"url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10","id":26743783,"html_url":"https://github.com/expressjs/errorhandler/pull/10","diff_url":"https://github.com/expressjs/errorhandler/pull/10.diff","patch_url":"https://github.com/expressjs/errorhandler/pull/10.patch","issue_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10","number":10,"state":"open","locked":false,"title":"Whole stack trace is outputted in the headline","user":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"body":"When viewing errors as HTML/in browser the whole stack trace is outputted twice. A regression that I believe was introduced in https://github.com/expressjs/errorhandler/commit/9ae818155de261ef9af74a480a35071b8c1951f4","created_at":"2015-01-01T15:01:59Z","updated_at":"2015-01-01T15:01:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/commits","review_comments_url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/comments","review_comment_url":"https://api.github.com/repos/expressjs/errorhandler/pulls/comments/{number}","comments_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/comments","statuses_url":"https://api.github.com/repos/expressjs/errorhandler/statuses/56cf134cf819d52db8b8b01d881c412b640ef755","head":{"label":"oblador:master","ref":"master","sha":"56cf134cf819d52db8b8b01d881c412b640ef755","user":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"repo":{"id":28688431,"name":"errorhandler","full_name":"oblador/errorhandler","owner":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/oblador/errorhandler","description":"Development-only error handler middleware","fork":true,"url":"https://api.github.com/repos/oblador/errorhandler","forks_url":"https://api.github.com/repos/oblador/errorhandler/forks","keys_url":"https://api.github.com/repos/oblador/errorhandler/keys{/key_id}","collaborators_url":"https://api.github.com/repos/oblador/errorhandler/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/oblador/errorhandler/teams","hooks_url":"https://api.github.com/repos/oblador/errorhandler/hooks","issue_events_url":"https://api.github.com/repos/oblador/errorhandler/issues/events{/number}","events_url":"https://api.github.com/repos/oblador/errorhandler/events","assignees_url":"https://api.github.com/repos/oblador/errorhandler/assignees{/user}","branches_url":"https://api.github.com/repos/oblador/errorhandler/branches{/branch}","tags_url":"https://api.github.com/repos/oblador/errorhandler/tags","blobs_url":"https://api.github.com/repos/oblador/errorhandler/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/oblador/errorhandler/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/oblador/errorhandler/git/refs{/sha}","trees_url":"https://api.github.com/repos/oblador/errorhandler/git/trees{/sha}","statuses_url":"https://api.github.com/repos/oblador/errorhandler/statuses/{sha}","languages_url":"https://api.github.com/repos/oblador/errorhandler/languages","stargazers_url":"https://api.github.com/repos/oblador/errorhandler/stargazers","contributors_url":"https://api.github.com/repos/oblador/errorhandler/contributors","subscribers_url":"https://api.github.com/repos/oblador/errorhandler/subscribers","subscription_url":"https://api.github.com/repos/oblador/errorhandler/subscription","commits_url":"https://api.github.com/repos/oblador/errorhandler/commits{/sha}","git_commits_url":"https://api.github.com/repos/oblador/errorhandler/git/commits{/sha}","comments_url":"https://api.github.com/repos/oblador/errorhandler/comments{/number}","issue_comment_url":"https://api.github.com/repos/oblador/errorhandler/issues/comments/{number}","contents_url":"https://api.github.com/repos/oblador/errorhandler/contents/{+path}","compare_url":"https://api.github.com/repos/oblador/errorhandler/compare/{base}...{head}","merges_url":"https://api.github.com/repos/oblador/errorhandler/merges","archive_url":"https://api.github.com/repos/oblador/errorhandler/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/oblador/errorhandler/downloads","issues_url":"https://api.github.com/repos/oblador/errorhandler/issues{/number}","pulls_url":"https://api.github.com/repos/oblador/errorhandler/pulls{/number}","milestones_url":"https://api.github.com/repos/oblador/errorhandler/milestones{/number}","notifications_url":"https://api.github.com/repos/oblador/errorhandler/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/oblador/errorhandler/labels{/name}","releases_url":"https://api.github.com/repos/oblador/errorhandler/releases{/id}","created_at":"2015-01-01T14:49:31Z","updated_at":"2015-01-01T14:58:04Z","pushed_at":"2015-01-01T14:58:03Z","git_url":"git://github.com/oblador/errorhandler.git","ssh_url":"git@github.com:oblador/errorhandler.git","clone_url":"https://github.com/oblador/errorhandler.git","svn_url":"https://github.com/oblador/errorhandler","homepage":"","size":482,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"expressjs:master","ref":"master","sha":"7247e256e2fa43176b6b3ab987735bee5121c9ae","user":{"login":"expressjs","id":5658226,"avatar_url":"https://avatars.githubusercontent.com/u/5658226?v=3","gravatar_id":"","url":"https://api.github.com/users/expressjs","html_url":"https://github.com/expressjs","followers_url":"https://api.github.com/users/expressjs/followers","following_url":"https://api.github.com/users/expressjs/following{/other_user}","gists_url":"https://api.github.com/users/expressjs/gists{/gist_id}","starred_url":"https://api.github.com/users/expressjs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/expressjs/subscriptions","organizations_url":"https://api.github.com/users/expressjs/orgs","repos_url":"https://api.github.com/users/expressjs/repos","events_url":"https://api.github.com/users/expressjs/events{/privacy}","received_events_url":"https://api.github.com/users/expressjs/received_events","type":"Organization","site_admin":false},"repo":{"id":17359035,"name":"errorhandler","full_name":"expressjs/errorhandler","owner":{"login":"expressjs","id":5658226,"avatar_url":"https://avatars.githubusercontent.com/u/5658226?v=3","gravatar_id":"","url":"https://api.github.com/users/expressjs","html_url":"https://github.com/expressjs","followers_url":"https://api.github.com/users/expressjs/followers","following_url":"https://api.github.com/users/expressjs/following{/other_user}","gists_url":"https://api.github.com/users/expressjs/gists{/gist_id}","starred_url":"https://api.github.com/users/expressjs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/expressjs/subscriptions","organizations_url":"https://api.github.com/users/expressjs/orgs","repos_url":"https://api.github.com/users/expressjs/repos","events_url":"https://api.github.com/users/expressjs/events{/privacy}","received_events_url":"https://api.github.com/users/expressjs/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/expressjs/errorhandler","description":"Development-only error handler middleware","fork":false,"url":"https://api.github.com/repos/expressjs/errorhandler","forks_url":"https://api.github.com/repos/expressjs/errorhandler/forks","keys_url":"https://api.github.com/repos/expressjs/errorhandler/keys{/key_id}","collaborators_url":"https://api.github.com/repos/expressjs/errorhandler/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/expressjs/errorhandler/teams","hooks_url":"https://api.github.com/repos/expressjs/errorhandler/hooks","issue_events_url":"https://api.github.com/repos/expressjs/errorhandler/issues/events{/number}","events_url":"https://api.github.com/repos/expressjs/errorhandler/events","assignees_url":"https://api.github.com/repos/expressjs/errorhandler/assignees{/user}","branches_url":"https://api.github.com/repos/expressjs/errorhandler/branches{/branch}","tags_url":"https://api.github.com/repos/expressjs/errorhandler/tags","blobs_url":"https://api.github.com/repos/expressjs/errorhandler/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/expressjs/errorhandler/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/expressjs/errorhandler/git/refs{/sha}","trees_url":"https://api.github.com/repos/expressjs/errorhandler/git/trees{/sha}","statuses_url":"https://api.github.com/repos/expressjs/errorhandler/statuses/{sha}","languages_url":"https://api.github.com/repos/expressjs/errorhandler/languages","stargazers_url":"https://api.github.com/repos/expressjs/errorhandler/stargazers","contributors_url":"https://api.github.com/repos/expressjs/errorhandler/contributors","subscribers_url":"https://api.github.com/repos/expressjs/errorhandler/subscribers","subscription_url":"https://api.github.com/repos/expressjs/errorhandler/subscription","commits_url":"https://api.github.com/repos/expressjs/errorhandler/commits{/sha}","git_commits_url":"https://api.github.com/repos/expressjs/errorhandler/git/commits{/sha}","comments_url":"https://api.github.com/repos/expressjs/errorhandler/comments{/number}","issue_comment_url":"https://api.github.com/repos/expressjs/errorhandler/issues/comments/{number}","contents_url":"https://api.github.com/repos/expressjs/errorhandler/contents/{+path}","compare_url":"https://api.github.com/repos/expressjs/errorhandler/compare/{base}...{head}","merges_url":"https://api.github.com/repos/expressjs/errorhandler/merges","archive_url":"https://api.github.com/repos/expressjs/errorhandler/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/expressjs/errorhandler/downloads","issues_url":"https://api.github.com/repos/expressjs/errorhandler/issues{/number}","pulls_url":"https://api.github.com/repos/expressjs/errorhandler/pulls{/number}","milestones_url":"https://api.github.com/repos/expressjs/errorhandler/milestones{/number}","notifications_url":"https://api.github.com/repos/expressjs/errorhandler/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/expressjs/errorhandler/labels{/name}","releases_url":"https://api.github.com/repos/expressjs/errorhandler/releases{/id}","created_at":"2014-03-03T07:58:51Z","updated_at":"2014-12-31T16:32:44Z","pushed_at":"2014-12-31T16:32:45Z","git_url":"git://github.com/expressjs/errorhandler.git","ssh_url":"git@github.com:expressjs/errorhandler.git","clone_url":"https://github.com/expressjs/errorhandler.git","svn_url":"https://github.com/expressjs/errorhandler","homepage":"","size":482,"stargazers_count":50,"watchers_count":50,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":11,"mirror_url":null,"open_issues_count":1,"forks":11,"open_issues":1,"watchers":50,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/10"},"html":{"href":"https://github.com/expressjs/errorhandler/pull/10"},"issue":{"href":"https://api.github.com/repos/expressjs/errorhandler/issues/10"},"comments":{"href":"https://api.github.com/repos/expressjs/errorhandler/issues/10/comments"},"review_comments":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/comments"},"review_comment":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/commits"},"statuses":{"href":"https://api.github.com/repos/expressjs/errorhandler/statuses/56cf134cf819d52db8b8b01d881c412b640ef755"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:59Z","org":{"id":5658226,"login":"expressjs","gravatar_id":"","url":"https://api.github.com/orgs/expressjs","avatar_url":"https://avatars.githubusercontent.com/u/5658226?"}}
,{"id":"2489651990","type":"CreateEvent","actor":{"id":10364582,"login":"AxelRL","gravatar_id":"","url":"https://api.github.com/users/AxelRL","avatar_url":"https://avatars.githubusercontent.com/u/10364582?"},"repo":{"id":28688617,"name":"AxelRL/AxelRL.github.io","url":"https://api.github.com/repos/AxelRL/AxelRL.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Min hemsida","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651991","type":"WatchEvent","actor":{"id":445920,"login":"gnarmis","gravatar_id":"","url":"https://api.github.com/users/gnarmis","avatar_url":"https://avatars.githubusercontent.com/u/445920?"},"repo":{"id":3278889,"name":"ddollar/heroku-buildpack-multi","url":"https://api.github.com/repos/ddollar/heroku-buildpack-multi"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651992","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28260344,"name":"cdpython/blog","url":"https://api.github.com/repos/cdpython/blog"},"payload":{"push_id":536864397,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0561a607cbcb0acde87786929531a75d0b55b6f0","before":"9ebf416a1e3e195dcbf1067d312f7e222c2b803d","commits":[{"sha":"0561a607cbcb0acde87786929531a75d0b55b6f0","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월  2일 금요일 00시 01분 56초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/blog/commits/0561a607cbcb0acde87786929531a75d0b55b6f0"}]},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651993","type":"PushEvent","actor":{"id":3353932,"login":"nouon","gravatar_id":"","url":"https://api.github.com/users/nouon","avatar_url":"https://avatars.githubusercontent.com/u/3353932?"},"repo":{"id":27077255,"name":"nouon/weiyi","url":"https://api.github.com/repos/nouon/weiyi"},"payload":{"push_id":536864399,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a36c8b2cf97643057911af39e75ab68eb3b5f79","before":"cb3a1385760a271268717eb7177852d680dc922e","commits":[{"sha":"9a36c8b2cf97643057911af39e75ab68eb3b5f79","author":{"email":"c989e75850a1ccf59d56ede81e5eb3503bb790c1@163.com","name":"nouon"},"message":"添加...","distinct":true,"url":"https://api.github.com/repos/nouon/weiyi/commits/9a36c8b2cf97643057911af39e75ab68eb3b5f79"}]},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651994","type":"PushEvent","actor":{"id":1547799,"login":"poletti-marco","gravatar_id":"","url":"https://api.github.com/users/poletti-marco","avatar_url":"https://avatars.githubusercontent.com/u/1547799?"},"repo":{"id":20900043,"name":"google/fruit","url":"https://api.github.com/repos/google/fruit"},"payload":{"push_id":536864398,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ced78a6ff33e6a360f0c3e2616d9a8ad62ad058","before":"d8943a8dbf2748ba6933d4f3f3985e46b4ae4790","commits":[{"sha":"3ced78a6ff33e6a360f0c3e2616d9a8ad62ad058","author":{"email":"5c48946a92a70191d9167ad4317a677296eb6df5@gmail.com","name":"Marco Poletti"},"message":"Fix expected error message in the type_already_bound2 test. The reported error changed due to the now-deferred registerConstructor() binding.","distinct":true,"url":"https://api.github.com/repos/google/fruit/commits/3ced78a6ff33e6a360f0c3e2616d9a8ad62ad058"}]},"public":true,"created_at":"2015-01-01T15:02:00Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}}
,{"id":"2489651997","type":"WatchEvent","actor":{"id":86844,"login":"hkf","gravatar_id":"","url":"https://api.github.com/users/hkf","avatar_url":"https://avatars.githubusercontent.com/u/86844?"},"repo":{"id":28229924,"name":"inf0rmer/blanket","url":"https://api.github.com/repos/inf0rmer/blanket"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:01Z"}
,{"id":"2489651999","type":"IssuesEvent","actor":{"id":110953,"login":"addyosmani","gravatar_id":"","url":"https://api.github.com/users/addyosmani","avatar_url":"https://avatars.githubusercontent.com/u/110953?"},"repo":{"id":25126737,"name":"addyosmani/a11y","url":"https://api.github.com/repos/addyosmani/a11y"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/addyosmani/a11y/issues/26","labels_url":"https://api.github.com/repos/addyosmani/a11y/issues/26/labels{/name}","comments_url":"https://api.github.com/repos/addyosmani/a11y/issues/26/comments","events_url":"https://api.github.com/repos/addyosmani/a11y/issues/26/events","html_url":"https://github.com/addyosmani/a11y/issues/26","id":53221371,"number":26,"title":"Improve auditing for webapps","user":{"login":"addyosmani","id":110953,"avatar_url":"https://avatars.githubusercontent.com/u/110953?v=3","gravatar_id":"","url":"https://api.github.com/users/addyosmani","html_url":"https://github.com/addyosmani","followers_url":"https://api.github.com/users/addyosmani/followers","following_url":"https://api.github.com/users/addyosmani/following{/other_user}","gists_url":"https://api.github.com/users/addyosmani/gists{/gist_id}","starred_url":"https://api.github.com/users/addyosmani/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/addyosmani/subscriptions","organizations_url":"https://api.github.com/users/addyosmani/orgs","repos_url":"https://api.github.com/users/addyosmani/repos","events_url":"https://api.github.com/users/addyosmani/events{/privacy}","received_events_url":"https://api.github.com/users/addyosmani/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:02:01Z","updated_at":"2015-01-01T15:02:01Z","closed_at":null,"body":"When using the Chrome Accessibility DevTools extension, pages such as [this Angular Todo](http://todomvc.com/examples/angularjs/#/) app will display severity issues that are not reported by A11y when conducting an audit.\r\n\r\nExample: \r\n![](http://i.imgur.com/wROYEW7.png)\r\n\r\nvs:\r\n\r\n![](http://i.imgur.com/iCs2pet.png)\r\n\r\nMy current theory is that we're not giving the page sufficient time to complete JS execution so not all content is present and in an auditable state.\r\n\r\nAfter experimenting with adding a custom timeout (similar to [this](https://github.com/kevva/screenshot-stream/blob/681d34fd0c5e9be0a894397e8d9a1f6841953810/lib/index.js#L156)) and playing with timeouts of differing values, this doesn't appear to improve our ability to report back on such issues.\r\n\r\nThese issues aren't specific to this module (as far as I can tell). I've been able to repro the same with https://github.com/GoogleChrome/accessibility-developer-tools. Looking into this further."}},"public":true,"created_at":"2015-01-01T15:02:01Z"}
,{"id":"2489652006","type":"PushEvent","actor":{"id":9640405,"login":"kslesik","gravatar_id":"","url":"https://api.github.com/users/kslesik","avatar_url":"https://avatars.githubusercontent.com/u/9640405?"},"repo":{"id":26402386,"name":"SlowlyTeam/BulletinBoard","url":"https://api.github.com/repos/SlowlyTeam/BulletinBoard"},"payload":{"push_id":536864404,"size":1,"distinct_size":1,"ref":"refs/heads/client","head":"35e7783373a25ad0112f57d196e11a007f6137b7","before":"0fe1ce2cf69a88aff9cc9b98f5331f56194b0afd","commits":[{"sha":"35e7783373a25ad0112f57d196e11a007f6137b7","author":{"email":"929d7eff56a9d4d371ecc704adae6b3bba60762d@gmail.com","name":"Maxym"},"message":"Dodane automatyczne pobieranie ogłoszeń z ostatnio przeglądanej przez użytkownika kategorii.","distinct":true,"url":"https://api.github.com/repos/SlowlyTeam/BulletinBoard/commits/35e7783373a25ad0112f57d196e11a007f6137b7"}]},"public":true,"created_at":"2015-01-01T15:02:02Z","org":{"id":9589825,"login":"SlowlyTeam","gravatar_id":"","url":"https://api.github.com/orgs/SlowlyTeam","avatar_url":"https://avatars.githubusercontent.com/u/9589825?"}}
,{"id":"2489652009","type":"PushEvent","actor":{"id":2002879,"login":"sunilrebel","gravatar_id":"","url":"https://api.github.com/users/sunilrebel","avatar_url":"https://avatars.githubusercontent.com/u/2002879?"},"repo":{"id":24765340,"name":"sunilrebel/spann-jira","url":"https://api.github.com/repos/sunilrebel/spann-jira"},"payload":{"push_id":536864405,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fe2877c49fc640a7b1e97dca878c399da3dca4b4","before":"545d8896469040711d86d5d1ed5a57b0df827cc7","commits":[{"sha":"fe2877c49fc640a7b1e97dca878c399da3dca4b4","author":{"email":"c772f21077cfc2e869c8f28543e85420b1160f2b@gmail.com","name":"Sunil Kumar"},"message":"Added custom fields, extraction logic, list page listener, & UI buttons. Corrected separated list processing algo.","distinct":true,"url":"https://api.github.com/repos/sunilrebel/spann-jira/commits/fe2877c49fc640a7b1e97dca878c399da3dca4b4"}]},"public":true,"created_at":"2015-01-01T15:02:02Z"}
,{"id":"2489652010","type":"WatchEvent","actor":{"id":1089814,"login":"muhaha03","gravatar_id":"","url":"https://api.github.com/users/muhaha03","avatar_url":"https://avatars.githubusercontent.com/u/1089814?"},"repo":{"id":13645881,"name":"drrb/java-rust-example","url":"https://api.github.com/repos/drrb/java-rust-example"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:02Z"}
,{"id":"2489652011","type":"WatchEvent","actor":{"id":2334552,"login":"mattfelsen","gravatar_id":"","url":"https://api.github.com/users/mattfelsen","avatar_url":"https://avatars.githubusercontent.com/u/2334552?"},"repo":{"id":26779760,"name":"raspberry-node/node-rpi-ws281x-native","url":"https://api.github.com/repos/raspberry-node/node-rpi-ws281x-native"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:03Z","org":{"id":9833414,"login":"raspberry-node","gravatar_id":"","url":"https://api.github.com/orgs/raspberry-node","avatar_url":"https://avatars.githubusercontent.com/u/9833414?"}}
,{"id":"2489652012","type":"IssueCommentEvent","actor":{"id":114942,"login":"adamkennedy","gravatar_id":"","url":"https://api.github.com/users/adamkennedy","avatar_url":"https://avatars.githubusercontent.com/u/114942?"},"repo":{"id":15040249,"name":"adamkennedy/PPI","url":"https://api.github.com/repos/adamkennedy/PPI"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/adamkennedy/PPI/issues/158","labels_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158/comments","events_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158/events","html_url":"https://github.com/adamkennedy/PPI/issues/158","id":53169287,"number":158,"title":"whitespace not allowed between sigil and identifier","user":{"login":"moregan","id":799139,"avatar_url":"https://avatars.githubusercontent.com/u/799139?v=3","gravatar_id":"","url":"https://api.github.com/users/moregan","html_url":"https://github.com/moregan","followers_url":"https://api.github.com/users/moregan/followers","following_url":"https://api.github.com/users/moregan/following{/other_user}","gists_url":"https://api.github.com/users/moregan/gists{/gist_id}","starred_url":"https://api.github.com/users/moregan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moregan/subscriptions","organizations_url":"https://api.github.com/users/moregan/orgs","repos_url":"https://api.github.com/users/moregan/repos","events_url":"https://api.github.com/users/moregan/events{/privacy}","received_events_url":"https://api.github.com/users/moregan/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/adamkennedy/PPI/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/adamkennedy/PPI/labels/misparse","name":"misparse","color":"5319e7"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T06:17:56Z","updated_at":"2015-01-01T15:02:03Z","closed_at":null,"body":"Perl allows whitespace between a sigil and its identifier, but PPI doesn't support it. ``@ foo`` is the same as ``@foo`` and should parse as PPI::Token::Symbol, but doesn't:\r\n\r\n```\r\n$ ppidump '@ foo'\r\n                    PPI::Document\r\n                      PPI::Statement\r\n[    1,   1,   1 ]     PPI::Token::Cast         '@'\r\n[    1,   3,   3 ]     PPI::Token::Word         'foo'\r\n```"},"comment":{"url":"https://api.github.com/repos/adamkennedy/PPI/issues/comments/68488530","html_url":"https://github.com/adamkennedy/PPI/issues/158#issuecomment-68488530","issue_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158","id":68488530,"user":{"login":"adamkennedy","id":114942,"avatar_url":"https://avatars.githubusercontent.com/u/114942?v=3","gravatar_id":"","url":"https://api.github.com/users/adamkennedy","html_url":"https://github.com/adamkennedy","followers_url":"https://api.github.com/users/adamkennedy/followers","following_url":"https://api.github.com/users/adamkennedy/following{/other_user}","gists_url":"https://api.github.com/users/adamkennedy/gists{/gist_id}","starred_url":"https://api.github.com/users/adamkennedy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamkennedy/subscriptions","organizations_url":"https://api.github.com/users/adamkennedy/orgs","repos_url":"https://api.github.com/users/adamkennedy/repos","events_url":"https://api.github.com/users/adamkennedy/events{/privacy}","received_events_url":"https://api.github.com/users/adamkennedy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:03Z","updated_at":"2015-01-01T15:02:03Z","body":"Probably. There are other modern equivalents, I think dagolden has a cpan\r\nscanner and then I wrote a derivative of it. So it might have a different\r\nname\r\nOn Jan 1, 2015 5:54 AM, \"moregan\" <notifications@github.com> wrote:\r\n\r\n> Had to go to backpan to find PPI::Tinderbox, and the latest there is 0.08.\r\n> Was that the last release (January 2005)?\r\n>\r\n> —\r\n> Reply to this email directly or view it on GitHub\r\n> <https://github.com/adamkennedy/PPI/issues/158#issuecomment-68461760>.\r\n>"}},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652013","type":"PushEvent","actor":{"id":5728403,"login":"patrick-hudson","gravatar_id":"","url":"https://api.github.com/users/patrick-hudson","avatar_url":"https://avatars.githubusercontent.com/u/5728403?"},"repo":{"id":25392255,"name":"patrick-hudson/EggDrop","url":"https://api.github.com/repos/patrick-hudson/EggDrop"},"payload":{"push_id":536864406,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8806028a516de60cbbcbee90bcef66080540a826","before":"a1328169c4a3e15352c9a4d643364441ffe5bc9d","commits":[{"sha":"8806028a516de60cbbcbee90bcef66080540a826","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@hudson.bz","name":"Patrick Hudson"},"message":"Scripted auto-commit on change (2015-01-01 10:02:00) by gitwatch.sh","distinct":true,"url":"https://api.github.com/repos/patrick-hudson/EggDrop/commits/8806028a516de60cbbcbee90bcef66080540a826"}]},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652015","type":"PushEvent","actor":{"id":10330245,"login":"gnenbu","gravatar_id":"","url":"https://api.github.com/users/gnenbu","avatar_url":"https://avatars.githubusercontent.com/u/10330245?"},"repo":{"id":28562100,"name":"gnenbu/gn_enbu_chs","url":"https://api.github.com/repos/gnenbu/gn_enbu_chs"},"payload":{"push_id":536864407,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6253d8186fc72d75a793bc065efa77186b81371","before":"d5e9341fb275756d8b03040e8347510e0ccd007e","commits":[{"sha":"b6253d8186fc72d75a793bc065efa77186b81371","author":{"email":"6b83eded995a0663a8581c4317a76bfbfaf34437@xiaoshitou1","name":"xiaoshitou"},"message":"Translated by 土妹子","distinct":true,"url":"https://api.github.com/repos/gnenbu/gn_enbu_chs/commits/b6253d8186fc72d75a793bc065efa77186b81371"}]},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652017","type":"PushEvent","actor":{"id":5010245,"login":"shimbara","gravatar_id":"","url":"https://api.github.com/users/shimbara","avatar_url":"https://avatars.githubusercontent.com/u/5010245?"},"repo":{"id":28655609,"name":"shimbara/jersey_rest_ws","url":"https://api.github.com/repos/shimbara/jersey_rest_ws"},"payload":{"push_id":536864409,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"905a5a52ea5f193c1a3ca3181801f78d0f643bd2","before":"655b1232742f0cc6ecd63e4d9b33ed22ebe680cb","commits":[{"sha":"905a5a52ea5f193c1a3ca3181801f78d0f643bd2","author":{"email":"665b1e12a2c358d92cffe557d2cb0f0638ff2cfc@mac.com","name":"Tomoyuki Shimbara"},"message":"実行可能WarでのJersey動作確認が取れた","distinct":true,"url":"https://api.github.com/repos/shimbara/jersey_rest_ws/commits/905a5a52ea5f193c1a3ca3181801f78d0f643bd2"}]},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652018","type":"PushEvent","actor":{"id":972584,"login":"jquast","gravatar_id":"","url":"https://api.github.com/users/jquast","avatar_url":"https://avatars.githubusercontent.com/u/972584?"},"repo":{"id":2188099,"name":"jquast/x84","url":"https://api.github.com/repos/jquast/x84"},"payload":{"push_id":536864410,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d584abbd7fbb76ad62050a432aba74cacd912814","before":"06d777699130f1aceacb62c3e34ff419b4a5a654","commits":[{"sha":"d584abbd7fbb76ad62050a432aba74cacd912814","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@jeffquast.com","name":"jquast"},"message":"bin/x84 should just honor virtualenv, use vanilla 'python'","distinct":true,"url":"https://api.github.com/repos/jquast/x84/commits/d584abbd7fbb76ad62050a432aba74cacd912814"}]},"public":true,"created_at":"2015-01-01T15:02:04Z"}
,{"id":"2489652019","type":"PushEvent","actor":{"id":6860925,"login":"quattor-releaser","gravatar_id":"","url":"https://api.github.com/users/quattor-releaser","avatar_url":"https://avatars.githubusercontent.com/u/6860925?"},"repo":{"id":6455642,"name":"quattor/release","url":"https://api.github.com/repos/quattor/release"},"payload":{"push_id":536864411,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c8549b8c6d54df39083a555b6298c557243ce001","before":"b84ffcbb7a148691f3f73dbb62ed80c158c4edd5","commits":[{"sha":"c8549b8c6d54df39083a555b6298c557243ce001","author":{"email":"0c186edac981671c5ec170ef64290f0bec540151@users.noreply.github.com","name":"Quattor Releaser"},"message":"Updating backlog","distinct":true,"url":"https://api.github.com/repos/quattor/release/commits/c8549b8c6d54df39083a555b6298c557243ce001"}]},"public":true,"created_at":"2015-01-01T15:02:04Z","org":{"id":1557169,"login":"quattor","gravatar_id":"","url":"https://api.github.com/orgs/quattor","avatar_url":"https://avatars.githubusercontent.com/u/1557169?"}}
,{"id":"2489652021","type":"CommitCommentEvent","actor":{"id":1277095,"login":"Dmitry-Me","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","avatar_url":"https://avatars.githubusercontent.com/u/1277095?"},"repo":{"id":26190201,"name":"JayXon/tinyxml2","url":"https://api.github.com/repos/JayXon/tinyxml2"},"payload":{"comment":{"url":"https://api.github.com/repos/JayXon/tinyxml2/comments/9132424","html_url":"https://github.com/JayXon/tinyxml2/commit/b026d464ab5876824b23becfb2745ef7fdddd420#commitcomment-9132424","id":9132424,"user":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"position":82,"line":896,"path":"tinyxml2.cpp","commit_id":"b026d464ab5876824b23becfb2745ef7fdddd420","created_at":"2015-01-01T15:02:05Z","updated_at":"2015-01-01T15:02:05Z","body":"The original idea of making an if-else chain was good, but your change was converting the originally unnatural checks sequence into another unnatural checks sequence. I submitted another PR which puts checks in a more optimistic order https://github.com/leethomason/tinyxml2/pull/260 Thanks for the idea."}},"public":true,"created_at":"2015-01-01T15:02:05Z"}
,{"id":"2489652024","type":"PushEvent","actor":{"id":4377685,"login":"danielgp","gravatar_id":"","url":"https://api.github.com/users/danielgp","avatar_url":"https://avatars.githubusercontent.com/u/4377685?"},"repo":{"id":28688005,"name":"danielgp/salariu","url":"https://api.github.com/repos/danielgp/salariu"},"payload":{"push_id":536864412,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"58c022e313ecedae1f6df589472b2a43e5f8a6ec","before":"afa80655eab2ec4139b8015da8b6de002ec28baa","commits":[{"sha":"c7b2eb1104c0f6078f83d4c6f38f140390e565aa","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"just added few test for code compliance","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/c7b2eb1104c0f6078f83d4c6f38f140390e565aa"},{"sha":"cab35bbe5f6c7e09b9b711f29a5c1ea14fe6c005","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"replace e_reg with preg_match and re-run the tests","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/cab35bbe5f6c7e09b9b711f29a5c1ea14fe6c005"},{"sha":"36775129052c5be530fe05323459eade2ea425d3","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"added a composer file","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/36775129052c5be530fe05323459eade2ea425d3"},{"sha":"53ccee25b7d87b5ebac28f81a3cca4588b0555e4","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"adjusted a few EOL to unix style","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/53ccee25b7d87b5ebac28f81a3cca4588b0555e4"},{"sha":"2c37c600b2df8fb15c4a5fb40be52c1aafa9e945","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"Merge branch 'master' of https://github.com/danielgp/salariu","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/2c37c600b2df8fb15c4a5fb40be52c1aafa9e945"},{"sha":"58c022e313ecedae1f6df589472b2a43e5f8a6ec","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"added a GIT ignore file","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/58c022e313ecedae1f6df589472b2a43e5f8a6ec"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652025","type":"CreateEvent","actor":{"id":2870672,"login":"MrWitt","gravatar_id":"","url":"https://api.github.com/users/MrWitt","avatar_url":"https://avatars.githubusercontent.com/u/2870672?"},"repo":{"id":28688146,"name":"MrWitt/floatingCar","url":"https://api.github.com/repos/MrWitt/floatingCar"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"sense emergency brakes with accelerometer","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652028","type":"PushEvent","actor":{"id":3117345,"login":"domhnallohanlon","gravatar_id":"","url":"https://api.github.com/users/domhnallohanlon","avatar_url":"https://avatars.githubusercontent.com/u/3117345?"},"repo":{"id":26559048,"name":"domhnallohanlon/ctyiweb","url":"https://api.github.com/repos/domhnallohanlon/ctyiweb"},"payload":{"push_id":536864415,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"71bafe94fc4fe3e7bbd4e44c56ec4ea765c7ed6e","before":"95ea9c7d053e50a333165ee0e32a61ce3b7862fc","commits":[{"sha":"71bafe94fc4fe3e7bbd4e44c56ec4ea765c7ed6e","author":{"email":"f275d306152dec5fcdedf4ec28eab57372fca7b8@gmail.com","name":"Domhnall O Hanlon"},"message":"tidying up code snippets","distinct":true,"url":"https://api.github.com/repos/domhnallohanlon/ctyiweb/commits/71bafe94fc4fe3e7bbd4e44c56ec4ea765c7ed6e"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652030","type":"PushEvent","actor":{"id":127232,"login":"mmakowski","gravatar_id":"","url":"https://api.github.com/users/mmakowski","avatar_url":"https://avatars.githubusercontent.com/u/127232?"},"repo":{"id":5829803,"name":"mmakowski/wikidata","url":"https://api.github.com/repos/mmakowski/wikidata"},"payload":{"push_id":536864416,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"608e0e4ce126a47f5e3eb69b4cd16170b051c138","before":"9b39a7c162060e15c5b39134a2476e20af0a72d8","commits":[{"sha":"608e0e4ce126a47f5e3eb69b4cd16170b051c138","author":{"email":"ae2f50d1a2c2b8573753fa742ddd1c24adf6c08f@gmail.com","name":"mmakowski"},"message":"todo","distinct":true,"url":"https://api.github.com/repos/mmakowski/wikidata/commits/608e0e4ce126a47f5e3eb69b4cd16170b051c138"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652032","type":"PushEvent","actor":{"id":7472151,"login":"qinwf","gravatar_id":"","url":"https://api.github.com/users/qinwf","avatar_url":"https://avatars.githubusercontent.com/u/7472151?"},"repo":{"id":28625538,"name":"qinwf/Chinese.jl","url":"https://api.github.com/repos/qinwf/Chinese.jl"},"payload":{"push_id":536864418,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fadd3e9936ea6872c9206a0b3fbff10ec81a031f","before":"dcd483c46b2013794fe2fa988d7d295c518e63cd","commits":[{"sha":"fadd3e9936ea6872c9206a0b3fbff10ec81a031f","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@qinwenfeng.com","name":"qinwf"},"message":"more Base","distinct":true,"url":"https://api.github.com/repos/qinwf/Chinese.jl/commits/fadd3e9936ea6872c9206a0b3fbff10ec81a031f"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652034","type":"PushEvent","actor":{"id":1301531,"login":"stgm","gravatar_id":"","url":"https://api.github.com/users/stgm","avatar_url":"https://avatars.githubusercontent.com/u/1301531?"},"repo":{"id":7255193,"name":"uva/course-site","url":"https://api.github.com/repos/uva/course-site"},"payload":{"push_id":536864419,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d23ce22be8a59a83c1b2ae2128c03313ade4a445","before":"a9bd5dc8c2180cdbc5278b913313af68869b5efe","commits":[{"sha":"d23ce22be8a59a83c1b2ae2128c03313ade4a445","author":{"email":"10ae63b69ae5ab71b07f9e64004a0207f53fea34@stgm.nl","name":"Martijn Stegeman"},"message":"mailer settings from env","distinct":true,"url":"https://api.github.com/repos/uva/course-site/commits/d23ce22be8a59a83c1b2ae2128c03313ade4a445"}]},"public":true,"created_at":"2015-01-01T15:02:07Z","org":{"id":1375415,"login":"uva","gravatar_id":"","url":"https://api.github.com/orgs/uva","avatar_url":"https://avatars.githubusercontent.com/u/1375415?"}}
,{"id":"2489652035","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28496455,"name":"cdpython/cdpython.github.io","url":"https://api.github.com/repos/cdpython/cdpython.github.io"},"payload":{"push_id":536864420,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3dd0947cb4c87b47261123124f174c8c7bab232f","before":"047f64b8219162e85ec2e6b5555dd6f64ccbb5e3","commits":[{"sha":"3dd0947cb4c87b47261123124f174c8c7bab232f","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월  2일 금요일 00시 01분 56초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/cdpython.github.io/commits/3dd0947cb4c87b47261123124f174c8c7bab232f"}]},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652036","type":"PullRequestEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"action":"closed","number":807,"pull_request":{"url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807","id":26737931,"html_url":"https://github.com/andreasgal/j2me.js/pull/807","diff_url":"https://github.com/andreasgal/j2me.js/pull/807.diff","patch_url":"https://github.com/andreasgal/j2me.js/pull/807.patch","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/807","number":807,"state":"closed","locked":false,"title":"enable FileConnection TCK tests in automation","user":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"body":"This branch enables the FileConnection TCK unit tests in automation, excluding those tests that don't yet pass because we haven't implemented the functionality they test or because they require manual interaction.\r\n","created_at":"2014-12-31T23:00:34Z","updated_at":"2015-01-01T15:02:07Z","closed_at":"2015-01-01T15:02:07Z","merged_at":"2015-01-01T15:02:07Z","merge_commit_sha":"e81389b9f60fe68b99c5fdf2a750059c7a2e788b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/commits","review_comments_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/comments","review_comment_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/807/comments","statuses_url":"https://api.github.com/repos/andreasgal/j2me.js/statuses/ffb2f7de89c0fb2dfe06e9b05968dcec717159f3","head":{"label":"mykmelez:enable-fc-tck-tests","ref":"enable-fc-tck-tests","sha":"ffb2f7de89c0fb2dfe06e9b05968dcec717159f3","user":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"repo":{"id":22497156,"name":"j2me.js","full_name":"mykmelez/j2me.js","owner":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mykmelez/j2me.js","description":"J2ME VM in JavaScript","fork":true,"url":"https://api.github.com/repos/mykmelez/j2me.js","forks_url":"https://api.github.com/repos/mykmelez/j2me.js/forks","keys_url":"https://api.github.com/repos/mykmelez/j2me.js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mykmelez/j2me.js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mykmelez/j2me.js/teams","hooks_url":"https://api.github.com/repos/mykmelez/j2me.js/hooks","issue_events_url":"https://api.github.com/repos/mykmelez/j2me.js/issues/events{/number}","events_url":"https://api.github.com/repos/mykmelez/j2me.js/events","assignees_url":"https://api.github.com/repos/mykmelez/j2me.js/assignees{/user}","branches_url":"https://api.github.com/repos/mykmelez/j2me.js/branches{/branch}","tags_url":"https://api.github.com/repos/mykmelez/j2me.js/tags","blobs_url":"https://api.github.com/repos/mykmelez/j2me.js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mykmelez/j2me.js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mykmelez/j2me.js/git/refs{/sha}","trees_url":"https://api.github.com/repos/mykmelez/j2me.js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mykmelez/j2me.js/statuses/{sha}","languages_url":"https://api.github.com/repos/mykmelez/j2me.js/languages","stargazers_url":"https://api.github.com/repos/mykmelez/j2me.js/stargazers","contributors_url":"https://api.github.com/repos/mykmelez/j2me.js/contributors","subscribers_url":"https://api.github.com/repos/mykmelez/j2me.js/subscribers","subscription_url":"https://api.github.com/repos/mykmelez/j2me.js/subscription","commits_url":"https://api.github.com/repos/mykmelez/j2me.js/commits{/sha}","git_commits_url":"https://api.github.com/repos/mykmelez/j2me.js/git/commits{/sha}","comments_url":"https://api.github.com/repos/mykmelez/j2me.js/comments{/number}","issue_comment_url":"https://api.github.com/repos/mykmelez/j2me.js/issues/comments/{number}","contents_url":"https://api.github.com/repos/mykmelez/j2me.js/contents/{+path}","compare_url":"https://api.github.com/repos/mykmelez/j2me.js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mykmelez/j2me.js/merges","archive_url":"https://api.github.com/repos/mykmelez/j2me.js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mykmelez/j2me.js/downloads","issues_url":"https://api.github.com/repos/mykmelez/j2me.js/issues{/number}","pulls_url":"https://api.github.com/repos/mykmelez/j2me.js/pulls{/number}","milestones_url":"https://api.github.com/repos/mykmelez/j2me.js/milestones{/number}","notifications_url":"https://api.github.com/repos/mykmelez/j2me.js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mykmelez/j2me.js/labels{/name}","releases_url":"https://api.github.com/repos/mykmelez/j2me.js/releases{/id}","created_at":"2014-08-01T06:02:22Z","updated_at":"2014-12-31T17:56:15Z","pushed_at":"2015-01-01T00:12:17Z","git_url":"git://github.com/mykmelez/j2me.js.git","ssh_url":"git@github.com:mykmelez/j2me.js.git","clone_url":"https://github.com/mykmelez/j2me.js.git","svn_url":"https://github.com/mykmelez/j2me.js","homepage":null,"size":13399,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"andreasgal:master","ref":"master","sha":"3992498a5ebcaae3287e810bfec889e0a21f3a56","user":{"login":"andreasgal","id":313748,"avatar_url":"https://avatars.githubusercontent.com/u/313748?v=3","gravatar_id":"","url":"https://api.github.com/users/andreasgal","html_url":"https://github.com/andreasgal","followers_url":"https://api.github.com/users/andreasgal/followers","following_url":"https://api.github.com/users/andreasgal/following{/other_user}","gists_url":"https://api.github.com/users/andreasgal/gists{/gist_id}","starred_url":"https://api.github.com/users/andreasgal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreasgal/subscriptions","organizations_url":"https://api.github.com/users/andreasgal/orgs","repos_url":"https://api.github.com/users/andreasgal/repos","events_url":"https://api.github.com/users/andreasgal/events{/privacy}","received_events_url":"https://api.github.com/users/andreasgal/received_events","type":"User","site_admin":false},"repo":{"id":21724513,"name":"j2me.js","full_name":"andreasgal/j2me.js","owner":{"login":"andreasgal","id":313748,"avatar_url":"https://avatars.githubusercontent.com/u/313748?v=3","gravatar_id":"","url":"https://api.github.com/users/andreasgal","html_url":"https://github.com/andreasgal","followers_url":"https://api.github.com/users/andreasgal/followers","following_url":"https://api.github.com/users/andreasgal/following{/other_user}","gists_url":"https://api.github.com/users/andreasgal/gists{/gist_id}","starred_url":"https://api.github.com/users/andreasgal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreasgal/subscriptions","organizations_url":"https://api.github.com/users/andreasgal/orgs","repos_url":"https://api.github.com/users/andreasgal/repos","events_url":"https://api.github.com/users/andreasgal/events{/privacy}","received_events_url":"https://api.github.com/users/andreasgal/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andreasgal/j2me.js","description":"J2ME VM in JavaScript","fork":false,"url":"https://api.github.com/repos/andreasgal/j2me.js","forks_url":"https://api.github.com/repos/andreasgal/j2me.js/forks","keys_url":"https://api.github.com/repos/andreasgal/j2me.js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andreasgal/j2me.js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andreasgal/j2me.js/teams","hooks_url":"https://api.github.com/repos/andreasgal/j2me.js/hooks","issue_events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/events{/number}","events_url":"https://api.github.com/repos/andreasgal/j2me.js/events","assignees_url":"https://api.github.com/repos/andreasgal/j2me.js/assignees{/user}","branches_url":"https://api.github.com/repos/andreasgal/j2me.js/branches{/branch}","tags_url":"https://api.github.com/repos/andreasgal/j2me.js/tags","blobs_url":"https://api.github.com/repos/andreasgal/j2me.js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andreasgal/j2me.js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andreasgal/j2me.js/git/refs{/sha}","trees_url":"https://api.github.com/repos/andreasgal/j2me.js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andreasgal/j2me.js/statuses/{sha}","languages_url":"https://api.github.com/repos/andreasgal/j2me.js/languages","stargazers_url":"https://api.github.com/repos/andreasgal/j2me.js/stargazers","contributors_url":"https://api.github.com/repos/andreasgal/j2me.js/contributors","subscribers_url":"https://api.github.com/repos/andreasgal/j2me.js/subscribers","subscription_url":"https://api.github.com/repos/andreasgal/j2me.js/subscription","commits_url":"https://api.github.com/repos/andreasgal/j2me.js/commits{/sha}","git_commits_url":"https://api.github.com/repos/andreasgal/j2me.js/git/commits{/sha}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/comments{/number}","issue_comment_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/comments/{number}","contents_url":"https://api.github.com/repos/andreasgal/j2me.js/contents/{+path}","compare_url":"https://api.github.com/repos/andreasgal/j2me.js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andreasgal/j2me.js/merges","archive_url":"https://api.github.com/repos/andreasgal/j2me.js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andreasgal/j2me.js/downloads","issues_url":"https://api.github.com/repos/andreasgal/j2me.js/issues{/number}","pulls_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls{/number}","milestones_url":"https://api.github.com/repos/andreasgal/j2me.js/milestones{/number}","notifications_url":"https://api.github.com/repos/andreasgal/j2me.js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/labels{/name}","releases_url":"https://api.github.com/repos/andreasgal/j2me.js/releases{/id}","created_at":"2014-07-11T06:23:27Z","updated_at":"2014-12-31T17:55:30Z","pushed_at":"2015-01-01T15:02:07Z","git_url":"git://github.com/andreasgal/j2me.js.git","ssh_url":"git@github.com:andreasgal/j2me.js.git","clone_url":"https://github.com/andreasgal/j2me.js.git","svn_url":"https://github.com/andreasgal/j2me.js","homepage":null,"size":17670,"stargazers_count":47,"watchers_count":47,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":14,"mirror_url":null,"open_issues_count":110,"forks":14,"open_issues":110,"watchers":47,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807"},"html":{"href":"https://github.com/andreasgal/j2me.js/pull/807"},"issue":{"href":"https://api.github.com/repos/andreasgal/j2me.js/issues/807"},"comments":{"href":"https://api.github.com/repos/andreasgal/j2me.js/issues/807/comments"},"review_comments":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/comments"},"review_comment":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/commits"},"statuses":{"href":"https://api.github.com/repos/andreasgal/j2me.js/statuses/ffb2f7de89c0fb2dfe06e9b05968dcec717159f3"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"marco-c","id":1616846,"avatar_url":"https://avatars.githubusercontent.com/u/1616846?v=3","gravatar_id":"","url":"https://api.github.com/users/marco-c","html_url":"https://github.com/marco-c","followers_url":"https://api.github.com/users/marco-c/followers","following_url":"https://api.github.com/users/marco-c/following{/other_user}","gists_url":"https://api.github.com/users/marco-c/gists{/gist_id}","starred_url":"https://api.github.com/users/marco-c/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marco-c/subscriptions","organizations_url":"https://api.github.com/users/marco-c/orgs","repos_url":"https://api.github.com/users/marco-c/repos","events_url":"https://api.github.com/users/marco-c/events{/privacy}","received_events_url":"https://api.github.com/users/marco-c/received_events","type":"User","site_admin":false},"comments":2,"review_comments":0,"commits":2,"additions":71,"deletions":69,"changed_files":8}},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652038","type":"PushEvent","actor":{"id":163093,"login":"anlutro","gravatar_id":"","url":"https://api.github.com/users/anlutro","avatar_url":"https://avatars.githubusercontent.com/u/163093?"},"repo":{"id":18376778,"name":"autarky/framework","url":"https://api.github.com/repos/autarky/framework"},"payload":{"push_id":536864422,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"f72cbf91a5ae0119fd43c7d0e6e9fb041bc12bcf","before":"7543ea3a9e0c5711cc92c8a1883ab4c7954805a2","commits":[{"sha":"f72cbf91a5ae0119fd43c7d0e6e9fb041bc12bcf","author":{"email":"f8d193463ee93f1fef7df38733cc62b4129558f4@gmail.com","name":"Andreas Lutro"},"message":"tweak and clean up reflection factory code","distinct":true,"url":"https://api.github.com/repos/autarky/framework/commits/f72cbf91a5ae0119fd43c7d0e6e9fb041bc12bcf"}]},"public":true,"created_at":"2015-01-01T15:02:07Z","org":{"id":7142032,"login":"autarky","gravatar_id":"","url":"https://api.github.com/orgs/autarky","avatar_url":"https://avatars.githubusercontent.com/u/7142032?"}}
,{"id":"2489652039","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22572270,"name":"hex7c0/logger-request-cli","url":"https://api.github.com/repos/hex7c0/logger-request-cli"},"payload":{"push_id":536864423,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"bc76863b2eb9f2562a8c0cfcdaea2065c6adf294","before":"18d6ae35c8eba2b6f04e00fe5ed40cd5ef62c3b7","commits":[{"sha":"d0131faab6e81b1ca111b53d28ad776f964fbb7d","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/d0131faab6e81b1ca111b53d28ad776f964fbb7d"},{"sha":"bc76863b2eb9f2562a8c0cfcdaea2065c6adf294","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/bc76863b2eb9f2562a8c0cfcdaea2065c6adf294"}]},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652043","type":"PushEvent","actor":{"id":3641677,"login":"SaifJerbi","gravatar_id":"","url":"https://api.github.com/users/SaifJerbi","avatar_url":"https://avatars.githubusercontent.com/u/3641677?"},"repo":{"id":26950022,"name":"Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App","url":"https://api.github.com/repos/Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App"},"payload":{"push_id":536864424,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ebf9a15cdad4adb102a4e8e482b002116fef0341","before":"36fa6d6599ebcc58f0f0f1ce320031ebe0f48fc6","commits":[{"sha":"4ae988739dc48f3c9f5e6bef4f2a4819107e69bb","author":{"email":"86c861d76d99d7d818f3d1247f06babe4efeea36@gmail.com","name":"SaifJerbi"},"message":"Fix sonar violations\nremove unused type\n\nSigned-off-by: SaifJerbi <m.jerbi.saif@gmail.com>","distinct":true,"url":"https://api.github.com/repos/Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App/commits/4ae988739dc48f3c9f5e6bef4f2a4819107e69bb"},{"sha":"ebf9a15cdad4adb102a4e8e482b002116fef0341","author":{"email":"86c861d76d99d7d818f3d1247f06babe4efeea36@gmail.com","name":"SaifJerbi"},"message":"adding prototype files","distinct":true,"url":"https://api.github.com/repos/Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App/commits/ebf9a15cdad4adb102a4e8e482b002116fef0341"}]},"public":true,"created_at":"2015-01-01T15:02:07Z","org":{"id":8834968,"login":"Vaadin-Tunis-Meetup-Group","gravatar_id":"","url":"https://api.github.com/orgs/Vaadin-Tunis-Meetup-Group","avatar_url":"https://avatars.githubusercontent.com/u/8834968?"}}
,{"id":"2489652046","type":"PushEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"push_id":536864426,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"26dc481162c00104934620d8daa7490158af2fb8","before":"3992498a5ebcaae3287e810bfec889e0a21f3a56","commits":[{"sha":"fc5a53a8f057082220755554629a63f24c0859a1","author":{"email":"06a661d8656af919ab1a27e1bef78119ec5c6f9f@mozilla.org","name":"Myk Melez"},"message":"enable FileConnection TCK tests in automation","distinct":true,"url":"https://api.github.com/repos/andreasgal/j2me.js/commits/fc5a53a8f057082220755554629a63f24c0859a1"},{"sha":"ffb2f7de89c0fb2dfe06e9b05968dcec717159f3","author":{"email":"06a661d8656af919ab1a27e1bef78119ec5c6f9f@mozilla.org","name":"Myk Melez"},"message":"refactor fs.js tests to use fs test harness, not run redundantly","distinct":true,"url":"https://api.github.com/repos/andreasgal/j2me.js/commits/ffb2f7de89c0fb2dfe06e9b05968dcec717159f3"},{"sha":"26dc481162c00104934620d8daa7490158af2fb8","author":{"email":"8e8803dd70e002f901c0b96b30e84a790baae37f@studenti.unina.it","name":"Marco"},"message":"Merge pull request #807 from mykmelez/enable-fc-tck-tests\n\nenable FileConnection TCK tests in automation","distinct":true,"url":"https://api.github.com/repos/andreasgal/j2me.js/commits/26dc481162c00104934620d8daa7490158af2fb8"}]},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652048","type":"IssueCommentEvent","actor":{"id":206724,"login":"guspower","gravatar_id":"","url":"https://api.github.com/users/guspower","avatar_url":"https://avatars.githubusercontent.com/u/206724?"},"repo":{"id":9346373,"name":"aestasit/sshoogr","url":"https://api.github.com/repos/aestasit/sshoogr"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/aestasit/sshoogr/issues/8","labels_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8/comments","events_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8/events","html_url":"https://github.com/aestasit/sshoogr/issues/8","id":26237097,"number":8,"title":"Allow JSCH debug logging","user":{"login":"aadamovich","id":2787794,"avatar_url":"https://avatars.githubusercontent.com/u/2787794?v=3","gravatar_id":"","url":"https://api.github.com/users/aadamovich","html_url":"https://github.com/aadamovich","followers_url":"https://api.github.com/users/aadamovich/followers","following_url":"https://api.github.com/users/aadamovich/following{/other_user}","gists_url":"https://api.github.com/users/aadamovich/gists{/gist_id}","starred_url":"https://api.github.com/users/aadamovich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aadamovich/subscriptions","organizations_url":"https://api.github.com/users/aadamovich/orgs","repos_url":"https://api.github.com/users/aadamovich/repos","events_url":"https://api.github.com/users/aadamovich/events{/privacy}","received_events_url":"https://api.github.com/users/aadamovich/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/aestasit/sshoogr/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-01-24T12:17:00Z","updated_at":"2015-01-01T15:02:08Z","closed_at":null,"body":"Add ability to enable JSCH debug logging to debug SSH related problems"},"comment":{"url":"https://api.github.com/repos/aestasit/sshoogr/issues/comments/68488531","html_url":"https://github.com/aestasit/sshoogr/issues/8#issuecomment-68488531","issue_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8","id":68488531,"user":{"login":"guspower","id":206724,"avatar_url":"https://avatars.githubusercontent.com/u/206724?v=3","gravatar_id":"","url":"https://api.github.com/users/guspower","html_url":"https://github.com/guspower","followers_url":"https://api.github.com/users/guspower/followers","following_url":"https://api.github.com/users/guspower/following{/other_user}","gists_url":"https://api.github.com/users/guspower/gists{/gist_id}","starred_url":"https://api.github.com/users/guspower/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guspower/subscriptions","organizations_url":"https://api.github.com/users/guspower/orgs","repos_url":"https://api.github.com/users/guspower/repos","events_url":"https://api.github.com/users/guspower/events{/privacy}","received_events_url":"https://api.github.com/users/guspower/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:08Z","updated_at":"2015-01-01T15:02:08Z","body":"+1 I'm currently seeing an algorithm fail as per http://stackoverflow.com/questions/6263630/jschexception-algorithm-negotiation-fail so the ability to enable debug logging on the underlying JSCH library would be really helpful."}},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":718467,"login":"aestasit","gravatar_id":"","url":"https://api.github.com/orgs/aestasit","avatar_url":"https://avatars.githubusercontent.com/u/718467?"}}
,{"id":"2489652049","type":"IssueCommentEvent","actor":{"id":256041,"login":"nikosdion","gravatar_id":"","url":"https://api.github.com/users/nikosdion","avatar_url":"https://avatars.githubusercontent.com/u/256041?"},"repo":{"id":14451140,"name":"akeeba/akeebasubs","url":"https://api.github.com/repos/akeeba/akeebasubs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82","labels_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82/labels{/name}","comments_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82/comments","events_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82/events","html_url":"https://github.com/akeeba/akeebasubs/issues/82","id":53112112,"number":82,"title":"Reports -> expiration by week?","user":{"login":"compojoom","id":693770,"avatar_url":"https://avatars.githubusercontent.com/u/693770?v=3","gravatar_id":"","url":"https://api.github.com/users/compojoom","html_url":"https://github.com/compojoom","followers_url":"https://api.github.com/users/compojoom/followers","following_url":"https://api.github.com/users/compojoom/following{/other_user}","gists_url":"https://api.github.com/users/compojoom/gists{/gist_id}","starred_url":"https://api.github.com/users/compojoom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/compojoom/subscriptions","organizations_url":"https://api.github.com/users/compojoom/orgs","repos_url":"https://api.github.com/users/compojoom/repos","events_url":"https://api.github.com/users/compojoom/events{/privacy}","received_events_url":"https://api.github.com/users/compojoom/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-30T12:18:48Z","updated_at":"2015-01-01T15:02:08Z","closed_at":"2014-12-31T13:34:14Z","body":"Is this report working for any of you? It has always generated a js error in the jplot script. I decided to replace it with the non-minified version to see what's going on, but I'm not any cleverer now:\r\nTypeError: this._plotData[j][k] is undefined\r\nvar prevval = this._plotData[j][k][sidx];\r\n\r\nI see that the ajax request for the data is generating a correct json, so not sure what's going on here?\r\n\t"},"comment":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/comments/68488532","html_url":"https://github.com/akeeba/akeebasubs/issues/82#issuecomment-68488532","issue_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82","id":68488532,"user":{"login":"nikosdion","id":256041,"avatar_url":"https://avatars.githubusercontent.com/u/256041?v=3","gravatar_id":"","url":"https://api.github.com/users/nikosdion","html_url":"https://github.com/nikosdion","followers_url":"https://api.github.com/users/nikosdion/followers","following_url":"https://api.github.com/users/nikosdion/following{/other_user}","gists_url":"https://api.github.com/users/nikosdion/gists{/gist_id}","starred_url":"https://api.github.com/users/nikosdion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikosdion/subscriptions","organizations_url":"https://api.github.com/users/nikosdion/orgs","repos_url":"https://api.github.com/users/nikosdion/repos","events_url":"https://api.github.com/users/nikosdion/events{/privacy}","received_events_url":"https://api.github.com/users/nikosdion/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:08Z","updated_at":"2015-01-01T15:02:08Z","body":"I could not find a different cause. If you are luckier debugging this feel free to submit a PR. FYI it works fine on local host.\r\n\r\nNicholas K. Dionysopoulos\r\nLead developer and owner, Akeeba Ltd. \r\n\r\nSent from my iPhone. Please excuse my brevity. \r\n\r\n1 Ιαν 2015, 16:15, ο/η Daniel Dimitrov <notifications@github.com> έγραψε:\r\n\r\n> Nick, are you sure that this is really the problem? Event with the changed from the latest commit - it doesn't work for me. I still get the same error:\r\n> \r\n> —\r\n> Reply to this email directly or view it on GitHub.\r\n> "}},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":4135934,"login":"akeeba","gravatar_id":"","url":"https://api.github.com/orgs/akeeba","avatar_url":"https://avatars.githubusercontent.com/u/4135934?"}}
,{"id":"2489652051","type":"ForkEvent","actor":{"id":2238502,"login":"weiguo21","gravatar_id":"","url":"https://api.github.com/users/weiguo21","avatar_url":"https://avatars.githubusercontent.com/u/2238502?"},"repo":{"id":22127255,"name":"sunhang/fileserver","url":"https://api.github.com/repos/sunhang/fileserver"},"payload":{"forkee":{"id":28688632,"name":"fileserver","full_name":"weiguo21/fileserver","owner":{"login":"weiguo21","id":2238502,"avatar_url":"https://avatars.githubusercontent.com/u/2238502?v=3","gravatar_id":"","url":"https://api.github.com/users/weiguo21","html_url":"https://github.com/weiguo21","followers_url":"https://api.github.com/users/weiguo21/followers","following_url":"https://api.github.com/users/weiguo21/following{/other_user}","gists_url":"https://api.github.com/users/weiguo21/gists{/gist_id}","starred_url":"https://api.github.com/users/weiguo21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weiguo21/subscriptions","organizations_url":"https://api.github.com/users/weiguo21/orgs","repos_url":"https://api.github.com/users/weiguo21/repos","events_url":"https://api.github.com/users/weiguo21/events{/privacy}","received_events_url":"https://api.github.com/users/weiguo21/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/weiguo21/fileserver","description":"上传图片的服务器代码","fork":true,"url":"https://api.github.com/repos/weiguo21/fileserver","forks_url":"https://api.github.com/repos/weiguo21/fileserver/forks","keys_url":"https://api.github.com/repos/weiguo21/fileserver/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/fileserver/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/fileserver/teams","hooks_url":"https://api.github.com/repos/weiguo21/fileserver/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/fileserver/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/fileserver/events","assignees_url":"https://api.github.com/repos/weiguo21/fileserver/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/fileserver/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/fileserver/tags","blobs_url":"https://api.github.com/repos/weiguo21/fileserver/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/fileserver/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/fileserver/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/fileserver/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/fileserver/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/fileserver/languages","stargazers_url":"https://api.github.com/repos/weiguo21/fileserver/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/fileserver/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/fileserver/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/fileserver/subscription","commits_url":"https://api.github.com/repos/weiguo21/fileserver/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/fileserver/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/fileserver/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/fileserver/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/fileserver/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/fileserver/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/fileserver/merges","archive_url":"https://api.github.com/repos/weiguo21/fileserver/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/fileserver/downloads","issues_url":"https://api.github.com/repos/weiguo21/fileserver/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/fileserver/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/fileserver/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/fileserver/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/fileserver/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/fileserver/releases{/id}","created_at":"2015-01-01T15:02:08Z","updated_at":"2014-07-23T01:25:42Z","pushed_at":"2014-07-23T01:25:42Z","git_url":"git://github.com/weiguo21/fileserver.git","ssh_url":"git@github.com:weiguo21/fileserver.git","clone_url":"https://github.com/weiguo21/fileserver.git","svn_url":"https://github.com/weiguo21/fileserver","homepage":null,"size":804,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:08Z"}
,{"id":"2489652052","type":"IssueCommentEvent","actor":{"id":10351177,"login":"flyingsheep1433","gravatar_id":"","url":"https://api.github.com/users/flyingsheep1433","avatar_url":"https://avatars.githubusercontent.com/u/10351177?"},"repo":{"id":16182383,"name":"Wynncraft/Issues","url":"https://api.github.com/repos/Wynncraft/Issues"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432","labels_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432/labels{/name}","comments_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432/comments","events_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432/events","html_url":"https://github.com/Wynncraft/Issues/issues/1432","id":53220740,"number":1432,"title":"WynnCraft Forums VIP","user":{"login":"TheCelo","id":10364562,"avatar_url":"https://avatars.githubusercontent.com/u/10364562?v=3","gravatar_id":"","url":"https://api.github.com/users/TheCelo","html_url":"https://github.com/TheCelo","followers_url":"https://api.github.com/users/TheCelo/followers","following_url":"https://api.github.com/users/TheCelo/following{/other_user}","gists_url":"https://api.github.com/users/TheCelo/gists{/gist_id}","starred_url":"https://api.github.com/users/TheCelo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheCelo/subscriptions","organizations_url":"https://api.github.com/users/TheCelo/orgs","repos_url":"https://api.github.com/users/TheCelo/repos","events_url":"https://api.github.com/users/TheCelo/events{/privacy}","received_events_url":"https://api.github.com/users/TheCelo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:28:42Z","updated_at":"2015-01-01T15:02:08Z","closed_at":null,"body":"Hello, i just bought VIP some days ago, when i do /forum TheCelo(My Username) It says \"We can't autrhorize this account, Try Again Later\" i did it again some days later and it still doesn't Work, says the same thing ..."},"comment":{"url":"https://api.github.com/repos/Wynncraft/Issues/issues/comments/68488533","html_url":"https://github.com/Wynncraft/Issues/issues/1432#issuecomment-68488533","issue_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432","id":68488533,"user":{"login":"flyingsheep1433","id":10351177,"avatar_url":"https://avatars.githubusercontent.com/u/10351177?v=3","gravatar_id":"","url":"https://api.github.com/users/flyingsheep1433","html_url":"https://github.com/flyingsheep1433","followers_url":"https://api.github.com/users/flyingsheep1433/followers","following_url":"https://api.github.com/users/flyingsheep1433/following{/other_user}","gists_url":"https://api.github.com/users/flyingsheep1433/gists{/gist_id}","starred_url":"https://api.github.com/users/flyingsheep1433/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/flyingsheep1433/subscriptions","organizations_url":"https://api.github.com/users/flyingsheep1433/orgs","repos_url":"https://api.github.com/users/flyingsheep1433/repos","events_url":"https://api.github.com/users/flyingsheep1433/events{/privacy}","received_events_url":"https://api.github.com/users/flyingsheep1433/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:08Z","updated_at":"2015-01-01T15:02:08Z","body":"The same thing for me... I have no idea what to do.\r\n\r\nSent from my iPod\r\n\r\n> On Jan 1, 2015, at 9:28 AM, TheCelo <notifications@github.com> wrote:\r\n> \r\n> Hello, i just bought VIP some days ago, when i do /forum TheCelo(My Username) It says \"We can't autrhorize this account, Try Again Later\" i did it again some days later and it still doesn't Work, says the same thing ...\r\n> \r\n> —\r\n> Reply to this email directly or view it on GitHub.\r\n> \r\n"}},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":5337644,"login":"Wynncraft","gravatar_id":"","url":"https://api.github.com/orgs/Wynncraft","avatar_url":"https://avatars.githubusercontent.com/u/5337644?"}}
,{"id":"2489652053","type":"PushEvent","actor":{"id":1395245,"login":"ogarbe","gravatar_id":"","url":"https://api.github.com/users/ogarbe","avatar_url":"https://avatars.githubusercontent.com/u/1395245?"},"repo":{"id":28688179,"name":"vpg/titon.cache","url":"https://api.github.com/repos/vpg/titon.cache"},"payload":{"push_id":536864428,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e3d6c4cc5e0a32c6bdd7b0dae6d2bd06647a8b7c","before":"eb81b20bde4f61386324541ada5ebf264ede030e","commits":[{"sha":"e3d6c4cc5e0a32c6bdd7b0dae6d2bd06647a8b7c","author":{"email":"dfe68425c2abed43f6ab793333cc1723b2cd41f8@voyageprive.com","name":"Olivier Garbé"},"message":"Fix composer","distinct":true,"url":"https://api.github.com/repos/vpg/titon.cache/commits/e3d6c4cc5e0a32c6bdd7b0dae6d2bd06647a8b7c"}]},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}}
,{"id":"2489652054","type":"PushEvent","actor":{"id":7809746,"login":"LaChal","gravatar_id":"","url":"https://api.github.com/users/LaChal","avatar_url":"https://avatars.githubusercontent.com/u/7809746?"},"repo":{"id":24035169,"name":"Khroki/MCEdit-Unified","url":"https://api.github.com/repos/Khroki/MCEdit-Unified"},"payload":{"push_id":536864429,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7c2d93789591edf324eace3479039a6a76c75d62","before":"5851d9cfbc140bae3105ca525c933b7c0627aada","commits":[{"sha":"7c2d93789591edf324eace3479039a6a76c75d62","author":{"email":"68c71e1b4dc241497b5072b05404c20972777990@laposte.net","name":"LaChal"},"message":"Custom brushes translation support.","distinct":true,"url":"https://api.github.com/repos/Khroki/MCEdit-Unified/commits/7c2d93789591edf324eace3479039a6a76c75d62"}]},"public":true,"created_at":"2015-01-01T15:02:08Z"}
,{"id":"2489652056","type":"WatchEvent","actor":{"id":22917,"login":"lantins","gravatar_id":"","url":"https://api.github.com/users/lantins","avatar_url":"https://avatars.githubusercontent.com/u/22917?"},"repo":{"id":27446531,"name":"alexedwards/stack","url":"https://api.github.com/repos/alexedwards/stack"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:09Z"}
,{"id":"2489652060","type":"PushEvent","actor":{"id":9416016,"login":"5aurabhK","gravatar_id":"","url":"https://api.github.com/users/5aurabhK","avatar_url":"https://avatars.githubusercontent.com/u/9416016?"},"repo":{"id":28529102,"name":"5aurabhK/keepingfit","url":"https://api.github.com/repos/5aurabhK/keepingfit"},"payload":{"push_id":536864432,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"900f3f2e22cb0da1db22bc10a697b265b6c5427b","before":"502c44af911edbe207fa531d30f743332ef6409f","commits":[{"sha":"900f3f2e22cb0da1db22bc10a697b265b6c5427b","author":{"email":"f95eec723805367c948bb244273f7ff20cfc9c50@gmail.com","name":"5aurabhK"},"message":"modi","distinct":true,"url":"https://api.github.com/repos/5aurabhK/keepingfit/commits/900f3f2e22cb0da1db22bc10a697b265b6c5427b"}]},"public":true,"created_at":"2015-01-01T15:02:09Z"}
,{"id":"2489652064","type":"PushEvent","actor":{"id":1866543,"login":"idok","gravatar_id":"","url":"https://api.github.com/users/idok","avatar_url":"https://avatars.githubusercontent.com/u/1866543?"},"repo":{"id":28684581,"name":"wix/hello-react-templates","url":"https://api.github.com/repos/wix/hello-react-templates"},"payload":{"push_id":536864434,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f6f0bf9d7c879563e523e7e8824a7b8f25a07515","before":"bffd300d9746d247402208add988443ee44dfd44","commits":[{"sha":"910ca6e02013f20640bf9ad9b719ae07fcdf95bd","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"link to react-templates","distinct":true,"url":"https://api.github.com/repos/wix/hello-react-templates/commits/910ca6e02013f20640bf9ad9b719ae07fcdf95bd"},{"sha":"f6f0bf9d7c879563e523e7e8824a7b8f25a07515","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/wix/hello-react-templates/commits/f6f0bf9d7c879563e523e7e8824a7b8f25a07515"}]},"public":true,"created_at":"2015-01-01T15:02:11Z","org":{"id":686511,"login":"wix","gravatar_id":"","url":"https://api.github.com/orgs/wix","avatar_url":"https://avatars.githubusercontent.com/u/686511?"}}
,{"id":"2489652065","type":"ForkEvent","actor":{"id":5938334,"login":"bluebird88","gravatar_id":"","url":"https://api.github.com/users/bluebird88","avatar_url":"https://avatars.githubusercontent.com/u/5938334?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"forkee":{"id":28688633,"name":"awesome-android-ui","full_name":"bluebird88/awesome-android-ui","owner":{"login":"bluebird88","id":5938334,"avatar_url":"https://avatars.githubusercontent.com/u/5938334?v=3","gravatar_id":"","url":"https://api.github.com/users/bluebird88","html_url":"https://github.com/bluebird88","followers_url":"https://api.github.com/users/bluebird88/followers","following_url":"https://api.github.com/users/bluebird88/following{/other_user}","gists_url":"https://api.github.com/users/bluebird88/gists{/gist_id}","starred_url":"https://api.github.com/users/bluebird88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bluebird88/subscriptions","organizations_url":"https://api.github.com/users/bluebird88/orgs","repos_url":"https://api.github.com/users/bluebird88/repos","events_url":"https://api.github.com/users/bluebird88/events{/privacy}","received_events_url":"https://api.github.com/users/bluebird88/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bluebird88/awesome-android-ui","description":"A curated list of awesome Android UI/UX libraries","fork":true,"url":"https://api.github.com/repos/bluebird88/awesome-android-ui","forks_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/forks","keys_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/teams","hooks_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/hooks","issue_events_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/issues/events{/number}","events_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/events","assignees_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/assignees{/user}","branches_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/branches{/branch}","tags_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/tags","blobs_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/refs{/sha}","trees_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/statuses/{sha}","languages_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/languages","stargazers_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/stargazers","contributors_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/contributors","subscribers_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/subscribers","subscription_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/subscription","commits_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/commits{/sha}","git_commits_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/commits{/sha}","comments_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/comments{/number}","issue_comment_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/issues/comments/{number}","contents_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/contents/{+path}","compare_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/merges","archive_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/downloads","issues_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/issues{/number}","pulls_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/pulls{/number}","milestones_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/milestones{/number}","notifications_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/labels{/name}","releases_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/releases{/id}","created_at":"2015-01-01T15:02:09Z","updated_at":"2015-01-01T14:52:36Z","pushed_at":"2015-01-01T13:23:20Z","git_url":"git://github.com/bluebird88/awesome-android-ui.git","ssh_url":"git@github.com:bluebird88/awesome-android-ui.git","clone_url":"https://github.com/bluebird88/awesome-android-ui.git","svn_url":"https://github.com/bluebird88/awesome-android-ui","homepage":"https://twitter.com/wasabeef_jp","size":201396,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:11Z"}
,{"id":"2489652070","type":"WatchEvent","actor":{"id":5316595,"login":"jeremykohn","gravatar_id":"","url":"https://api.github.com/users/jeremykohn","avatar_url":"https://avatars.githubusercontent.com/u/5316595?"},"repo":{"id":1604947,"name":"sharat87/keyboard-fu","url":"https://api.github.com/repos/sharat87/keyboard-fu"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:11Z"}
,{"id":"2489652071","type":"PushEvent","actor":{"id":3321281,"login":"mmattel","gravatar_id":"","url":"https://api.github.com/users/mmattel","avatar_url":"https://avatars.githubusercontent.com/u/3321281?"},"repo":{"id":27933146,"name":"mmattel/documentation","url":"https://api.github.com/repos/mmattel/documentation"},"payload":{"push_id":536864436,"size":1,"distinct_size":1,"ref":"refs/heads/add_double_backticks_to_$user","head":"dc43d4fe85828394858fc435823d7ed4daae3325","before":"926a54b15865cbe3af524d4f50abde92c214d638","commits":[{"sha":"dc43d4fe85828394858fc435823d7ed4daae3325","author":{"email":"3fb208d44b5ebee7f271b9730dfaf416595f9add@diemattels.at","name":"Martin"},"message":"add double backticks to $user in config/smb to have the same look as in stable7","distinct":true,"url":"https://api.github.com/repos/mmattel/documentation/commits/dc43d4fe85828394858fc435823d7ed4daae3325"}]},"public":true,"created_at":"2015-01-01T15:02:11Z"}
,{"id":"2489652072","type":"PushEvent","actor":{"id":3627529,"login":"otrsbot","gravatar_id":"","url":"https://api.github.com/users/otrsbot","avatar_url":"https://avatars.githubusercontent.com/u/3627529?"},"repo":{"id":16276216,"name":"OTRS/otrs","url":"https://api.github.com/repos/OTRS/otrs"},"payload":{"push_id":536864437,"size":1,"distinct_size":1,"ref":"refs/heads/rel-4_0","head":"e505154f2bfb3be8b817d8a02e36d7cd1aaf3420","before":"9524a902a09d36b6232891d21bfd0fb054cb1354","commits":[{"sha":"e505154f2bfb3be8b817d8a02e36d7cd1aaf3420","author":{"email":"2497d761a8fe182513acbb1aafe37a7278b43d72@otrs.com","name":"Manuel Hecht"},"message":"Updated copyright date.","distinct":true,"url":"https://api.github.com/repos/OTRS/otrs/commits/e505154f2bfb3be8b817d8a02e36d7cd1aaf3420"}]},"public":true,"created_at":"2015-01-01T15:02:12Z","org":{"id":3065906,"login":"OTRS","gravatar_id":"","url":"https://api.github.com/orgs/OTRS","avatar_url":"https://avatars.githubusercontent.com/u/3065906?"}}
,{"id":"2489652074","type":"PushEvent","actor":{"id":4762842,"login":"IanDarwin","gravatar_id":"","url":"https://api.github.com/users/IanDarwin","avatar_url":"https://avatars.githubusercontent.com/u/4762842?"},"repo":{"id":13549187,"name":"IanDarwin/darwinsys-api","url":"https://api.github.com/repos/IanDarwin/darwinsys-api"},"payload":{"push_id":536864439,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"391514dbc106d239d1babda884cdd4aef8921cbe","before":"7edc362fb86a0f859d40b926aa674038f4c9d00c","commits":[{"sha":"391514dbc106d239d1babda884cdd4aef8921cbe","author":{"email":"57a33a5496950fec8433e4dd83347673459dcdfc@darwinsys.com","name":"Ian Darwin"},"message":"Yet more javadoc issues","distinct":true,"url":"https://api.github.com/repos/IanDarwin/darwinsys-api/commits/391514dbc106d239d1babda884cdd4aef8921cbe"}]},"public":true,"created_at":"2015-01-01T15:02:12Z"}
,{"id":"2489652077","type":"PushEvent","actor":{"id":4961280,"login":"alaviss","gravatar_id":"","url":"https://api.github.com/users/alaviss","avatar_url":"https://avatars.githubusercontent.com/u/4961280?"},"repo":{"id":28482184,"name":"alaviss/pascal-stuff","url":"https://api.github.com/repos/alaviss/pascal-stuff"},"payload":{"push_id":536864441,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7c3ea35a18223b2bdcc96eaf82993b8f7faaf09f","before":"529cd11ba815cd51d58e514e3323012a9d11bdf6","commits":[{"sha":"7c3ea35a18223b2bdcc96eaf82993b8f7faaf09f","author":{"email":"047c60a2759a82c45545c3d43f3d3e3b61e4128d@users.noreply.github.com","name":"Leorize"},"message":"Playing around with stuff","distinct":true,"url":"https://api.github.com/repos/alaviss/pascal-stuff/commits/7c3ea35a18223b2bdcc96eaf82993b8f7faaf09f"}]},"public":true,"created_at":"2015-01-01T15:02:12Z"}
,{"id":"2489652079","type":"PushEvent","actor":{"id":73937,"login":"viz3","gravatar_id":"","url":"https://api.github.com/users/viz3","avatar_url":"https://avatars.githubusercontent.com/u/73937?"},"repo":{"id":3569353,"name":"viz3/viz3.github.com","url":"https://api.github.com/repos/viz3/viz3.github.com"},"payload":{"push_id":536864442,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"140afc4326f1d0fa2e55966e423664b8225a5d85","before":"2460588ce161021c1ff1c285f58133a2c6f6c5eb","commits":[{"sha":"140afc4326f1d0fa2e55966e423664b8225a5d85","author":{"email":"87400bba45b8439b910c3212f867893a0efd48b3@gmail.com","name":"Yusuke Odate"},"message":"update rss2.xml","distinct":true,"url":"https://api.github.com/repos/viz3/viz3.github.com/commits/140afc4326f1d0fa2e55966e423664b8225a5d85"}]},"public":true,"created_at":"2015-01-01T15:02:12Z"}
,{"id":"2489652080","type":"CreateEvent","actor":{"id":5436451,"login":"DavidGeek","gravatar_id":"","url":"https://api.github.com/users/DavidGeek","avatar_url":"https://avatars.githubusercontent.com/u/5436451?"},"repo":{"id":28688634,"name":"DavidGeek/Website","url":"https://api.github.com/repos/DavidGeek/Website"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A learn and code website","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:13Z"}
,{"id":"2489652087","type":"PushEvent","actor":{"id":4353077,"login":"robin1501","gravatar_id":"","url":"https://api.github.com/users/robin1501","avatar_url":"https://avatars.githubusercontent.com/u/4353077?"},"repo":{"id":26765137,"name":"robin1501/LevelUp","url":"https://api.github.com/repos/robin1501/LevelUp"},"payload":{"push_id":536864445,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"86d41c80a58f883b6d2a17aa80649217712eccd4","before":"62e5ee81ddda8bd46bcb47a0a5a9b6d7c30095fc","commits":[{"sha":"86d41c80a58f883b6d2a17aa80649217712eccd4","author":{"email":"a8c2dd94bb639a7348d3708a3ba3e37a383f99eb@dhbw-loerrach.de","name":"Robin Krietsch"},"message":"workout vorlagen","distinct":true,"url":"https://api.github.com/repos/robin1501/LevelUp/commits/86d41c80a58f883b6d2a17aa80649217712eccd4"}]},"public":true,"created_at":"2015-01-01T15:02:14Z"}
,{"id":"2489652090","type":"CreateEvent","actor":{"id":5684688,"login":"toubou91","gravatar_id":"","url":"https://api.github.com/users/toubou91","avatar_url":"https://avatars.githubusercontent.com/u/5684688?"},"repo":{"id":28688635,"name":"toubou91/Android-Application-Programming-with-OpenCV","url":"https://api.github.com/repos/toubou91/Android-Application-Programming-with-OpenCV"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652092","type":"CreateEvent","actor":{"id":2898638,"login":"gpedro","gravatar_id":"","url":"https://api.github.com/users/gpedro","avatar_url":"https://avatars.githubusercontent.com/u/2898638?"},"repo":{"id":28688636,"name":"TibiaJS/tibia-flags","url":"https://api.github.com/repos/TibiaJS/tibia-flags"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Generate or Parse Tibia Flags to use","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:16Z","org":{"id":10197512,"login":"TibiaJS","gravatar_id":"","url":"https://api.github.com/orgs/TibiaJS","avatar_url":"https://avatars.githubusercontent.com/u/10197512?"}}
,{"id":"2489652093","type":"IssueCommentEvent","actor":{"id":1573299,"login":"rovo89","gravatar_id":"","url":"https://api.github.com/users/rovo89","avatar_url":"https://avatars.githubusercontent.com/u/1573299?"},"repo":{"id":3911317,"name":"rovo89/XposedInstaller","url":"https://api.github.com/repos/rovo89/XposedInstaller"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201","labels_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201/labels{/name}","comments_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201/comments","events_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201/events","html_url":"https://github.com/rovo89/XposedInstaller/issues/201","id":35693261,"number":201,"title":"No notification buttons for sideloaded module","user":{"login":"pylerSM","id":3438489,"avatar_url":"https://avatars.githubusercontent.com/u/3438489?v=3","gravatar_id":"","url":"https://api.github.com/users/pylerSM","html_url":"https://github.com/pylerSM","followers_url":"https://api.github.com/users/pylerSM/followers","following_url":"https://api.github.com/users/pylerSM/following{/other_user}","gists_url":"https://api.github.com/users/pylerSM/gists{/gist_id}","starred_url":"https://api.github.com/users/pylerSM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pylerSM/subscriptions","organizations_url":"https://api.github.com/users/pylerSM/orgs","repos_url":"https://api.github.com/users/pylerSM/repos","events_url":"https://api.github.com/users/pylerSM/events{/privacy}","received_events_url":"https://api.github.com/users/pylerSM/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-06-13T17:58:59Z","updated_at":"2015-01-01T15:02:16Z","closed_at":null,"body":"I am just playing with Xposed, developing small module and I have just realized that notification about new/updated sideloaded module (APK from exclipse) do not include notification buttons (Reboot and activate). There is no such buttons for sideloaded modules.\r\n\r\nCan you add these buttons, please?"},"comment":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/comments/68488535","html_url":"https://github.com/rovo89/XposedInstaller/issues/201#issuecomment-68488535","issue_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201","id":68488535,"user":{"login":"rovo89","id":1573299,"avatar_url":"https://avatars.githubusercontent.com/u/1573299?v=3","gravatar_id":"","url":"https://api.github.com/users/rovo89","html_url":"https://github.com/rovo89","followers_url":"https://api.github.com/users/rovo89/followers","following_url":"https://api.github.com/users/rovo89/following{/other_user}","gists_url":"https://api.github.com/users/rovo89/gists{/gist_id}","starred_url":"https://api.github.com/users/rovo89/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rovo89/subscriptions","organizations_url":"https://api.github.com/users/rovo89/orgs","repos_url":"https://api.github.com/users/rovo89/repos","events_url":"https://api.github.com/users/rovo89/events{/privacy}","received_events_url":"https://api.github.com/users/rovo89/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:16Z","updated_at":"2015-01-01T15:02:16Z","body":"Sorry, no idea what you mean. BigTextStyle just means that we can use different texts for the expanded notification versus the collapsed notifcation. The buttons should be independent of that. Whether they are shown or not is indeed controlled by Android - only the top notification shows the buttons. I don't think we should interfere with that on app-level. If you don't like it, there might be an Xposed module which can always show them. "}},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652094","type":"PushEvent","actor":{"id":4582835,"login":"hamini","gravatar_id":"","url":"https://api.github.com/users/hamini","avatar_url":"https://avatars.githubusercontent.com/u/4582835?"},"repo":{"id":28688513,"name":"hamini/sqlalchem","url":"https://api.github.com/repos/hamini/sqlalchem"},"payload":{"push_id":536864447,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"814c0dd6a66c9987998be314e13e4aa19d19994d","before":"58527233d610608cd6ac9492f35cbdae0508833d","commits":[{"sha":"ec9ddfc5eae5fd302c72faf9b50f60d42e539148","author":{"email":"f44e77edbd869fff0a564f864944cde5b10d166e@gmail.com","name":"hamed"},"message":"first","distinct":true,"url":"https://api.github.com/repos/hamini/sqlalchem/commits/ec9ddfc5eae5fd302c72faf9b50f60d42e539148"},{"sha":"814c0dd6a66c9987998be314e13e4aa19d19994d","author":{"email":"f44e77edbd869fff0a564f864944cde5b10d166e@gmail.com","name":"hamed"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/hamini/sqlalchem/commits/814c0dd6a66c9987998be314e13e4aa19d19994d"}]},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652095","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18328345,"name":"cloudify-cosmo/cloudify-bash-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-bash-plugin"},"payload":{"push_id":536864448,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"f36ca27d9911f5a4bfa05c85e3cbc5025b2f370c","before":"a2f73bd1801deda0a12bb8b3ccc31dfe6eb9fbb7","commits":[{"sha":"f36ca27d9911f5a4bfa05c85e3cbc5025b2f370c","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-bash-plugin/commits/f36ca27d9911f5a4bfa05c85e3cbc5025b2f370c"}]},"public":true,"created_at":"2015-01-01T15:02:16Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652097","type":"PushEvent","actor":{"id":10252673,"login":"quhezheng","gravatar_id":"","url":"https://api.github.com/users/quhezheng","avatar_url":"https://avatars.githubusercontent.com/u/10252673?"},"repo":{"id":28398342,"name":"quhezheng/HomeIP","url":"https://api.github.com/repos/quhezheng/HomeIP"},"payload":{"push_id":536864450,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"be239644a06f031e9e16ca02f6918cbc88bebde1","before":"494d351b663ab026ddb2d6d39003a24eb8346e7c","commits":[{"sha":"be239644a06f031e9e16ca02f6918cbc88bebde1","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/be239644a06f031e9e16ca02f6918cbc88bebde1"}]},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652100","type":"ForkEvent","actor":{"id":570037,"login":"jeffutter","gravatar_id":"","url":"https://api.github.com/users/jeffutter","avatar_url":"https://avatars.githubusercontent.com/u/570037?"},"repo":{"id":451490,"name":"digitalBush/jquery.maskedinput","url":"https://api.github.com/repos/digitalBush/jquery.maskedinput"},"payload":{"forkee":{"id":28688637,"name":"jquery.maskedinput","full_name":"jeffutter/jquery.maskedinput","owner":{"login":"jeffutter","id":570037,"avatar_url":"https://avatars.githubusercontent.com/u/570037?v=3","gravatar_id":"","url":"https://api.github.com/users/jeffutter","html_url":"https://github.com/jeffutter","followers_url":"https://api.github.com/users/jeffutter/followers","following_url":"https://api.github.com/users/jeffutter/following{/other_user}","gists_url":"https://api.github.com/users/jeffutter/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffutter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffutter/subscriptions","organizations_url":"https://api.github.com/users/jeffutter/orgs","repos_url":"https://api.github.com/users/jeffutter/repos","events_url":"https://api.github.com/users/jeffutter/events{/privacy}","received_events_url":"https://api.github.com/users/jeffutter/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jeffutter/jquery.maskedinput","description":"jQuery Masked Input Plugin","fork":true,"url":"https://api.github.com/repos/jeffutter/jquery.maskedinput","forks_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/forks","keys_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/teams","hooks_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/hooks","issue_events_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/issues/events{/number}","events_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/events","assignees_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/assignees{/user}","branches_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/branches{/branch}","tags_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/tags","blobs_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/refs{/sha}","trees_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/statuses/{sha}","languages_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/languages","stargazers_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/stargazers","contributors_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/contributors","subscribers_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/subscribers","subscription_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/subscription","commits_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/commits{/sha}","git_commits_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/git/commits{/sha}","comments_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/comments{/number}","issue_comment_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/issues/comments/{number}","contents_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/contents/{+path}","compare_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/merges","archive_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/downloads","issues_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/issues{/number}","pulls_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/pulls{/number}","milestones_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/milestones{/number}","notifications_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/labels{/name}","releases_url":"https://api.github.com/repos/jeffutter/jquery.maskedinput/releases{/id}","created_at":"2015-01-01T15:02:16Z","updated_at":"2014-12-31T17:50:45Z","pushed_at":"2014-12-30T14:52:27Z","git_url":"git://github.com/jeffutter/jquery.maskedinput.git","ssh_url":"git@github.com:jeffutter/jquery.maskedinput.git","clone_url":"https://github.com/jeffutter/jquery.maskedinput.git","svn_url":"https://github.com/jeffutter/jquery.maskedinput","homepage":"http://digitalbush.com/projects/masked-input-plugin/","size":1954,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652102","type":"ReleaseEvent","actor":{"id":1395245,"login":"ogarbe","gravatar_id":"","url":"https://api.github.com/users/ogarbe","avatar_url":"https://avatars.githubusercontent.com/u/1395245?"},"repo":{"id":28688179,"name":"vpg/titon.cache","url":"https://api.github.com/repos/vpg/titon.cache"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/vpg/titon.cache/releases/818679","assets_url":"https://api.github.com/repos/vpg/titon.cache/releases/818679/assets","upload_url":"https://uploads.github.com/repos/vpg/titon.cache/releases/818679/assets{?name}","html_url":"https://github.com/vpg/titon.cache/releases/tag/v1.0","id":818679,"tag_name":"v1.0","target_commitish":"master","name":"","draft":false,"author":{"login":"ogarbe","id":1395245,"avatar_url":"https://avatars.githubusercontent.com/u/1395245?v=3","gravatar_id":"","url":"https://api.github.com/users/ogarbe","html_url":"https://github.com/ogarbe","followers_url":"https://api.github.com/users/ogarbe/followers","following_url":"https://api.github.com/users/ogarbe/following{/other_user}","gists_url":"https://api.github.com/users/ogarbe/gists{/gist_id}","starred_url":"https://api.github.com/users/ogarbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ogarbe/subscriptions","organizations_url":"https://api.github.com/users/ogarbe/orgs","repos_url":"https://api.github.com/users/ogarbe/repos","events_url":"https://api.github.com/users/ogarbe/events{/privacy}","received_events_url":"https://api.github.com/users/ogarbe/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:02:02Z","published_at":"2015-01-01T15:02:17Z","assets":[],"tarball_url":"https://api.github.com/repos/vpg/titon.cache/tarball/v1.0","zipball_url":"https://api.github.com/repos/vpg/titon.cache/zipball/v1.0","body":""}},"public":true,"created_at":"2015-01-01T15:02:17Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}}
,{"id":"2489652104","type":"CreateEvent","actor":{"id":1395245,"login":"ogarbe","gravatar_id":"","url":"https://api.github.com/users/ogarbe","avatar_url":"https://avatars.githubusercontent.com/u/1395245?"},"repo":{"id":28688179,"name":"vpg/titon.cache","url":"https://api.github.com/repos/vpg/titon.cache"},"payload":{"ref":"v1.0","ref_type":"tag","master_branch":"master","description":"duplicate old titon cache","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:17Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}}
,{"id":"2489652106","type":"PushEvent","actor":{"id":3520055,"login":"casfire","gravatar_id":"","url":"https://api.github.com/users/casfire","avatar_url":"https://avatars.githubusercontent.com/u/3520055?"},"repo":{"id":26129782,"name":"casfire/RG","url":"https://api.github.com/repos/casfire/RG"},"payload":{"push_id":536864453,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2a780a2cfdad5f3131ed9a023037befa86b733c","before":"c6f980143b5a6b9cf3f9e4d4ee1bb64a726a5940","commits":[{"sha":"a2a780a2cfdad5f3131ed9a023037befa86b733c","author":{"email":"d033e22ae348aeb5660fc2140aec35850c4da997@casfire.com","name":"Casfire"},"message":"Add Asset::NotFoundException","distinct":true,"url":"https://api.github.com/repos/casfire/RG/commits/a2a780a2cfdad5f3131ed9a023037befa86b733c"}]},"public":true,"created_at":"2015-01-01T15:02:17Z"}
,{"id":"2489652108","type":"PushEvent","actor":{"id":8471261,"login":"Corrax","gravatar_id":"","url":"https://api.github.com/users/Corrax","avatar_url":"https://avatars.githubusercontent.com/u/8471261?"},"repo":{"id":28341311,"name":"Corrax/sushiplate","url":"https://api.github.com/repos/Corrax/sushiplate"},"payload":{"push_id":536864455,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b5c4a39b32df870b004d4e1ca53b41f903841026","before":"1e579dc08daddc3178d73b39ee47ee5b79335df7","commits":[{"sha":"b5c4a39b32df870b004d4e1ca53b41f903841026","author":{"email":"2c8e98728097c5a5dbda905592f0938c3150ec60@outlook.com","name":"Jian Xiang"},"message":"Reinit","distinct":true,"url":"https://api.github.com/repos/Corrax/sushiplate/commits/b5c4a39b32df870b004d4e1ca53b41f903841026"}]},"public":true,"created_at":"2015-01-01T15:02:17Z"}
,{"id":"2489652118","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22572270,"name":"hex7c0/logger-request-cli","url":"https://api.github.com/repos/hex7c0/logger-request-cli"},"payload":{"push_id":536864458,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"12d8972d9f48393e00a962eef7904c5330dc8ea1","before":"bc76863b2eb9f2562a8c0cfcdaea2065c6adf294","commits":[{"sha":"12d8972d9f48393e00a962eef7904c5330dc8ea1","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"grunt","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/12d8972d9f48393e00a962eef7904c5330dc8ea1"}]},"public":true,"created_at":"2015-01-01T15:02:18Z"}
,{"id":"2489652120","type":"PullRequestReviewCommentEvent","actor":{"id":7882662,"login":"codeschool-kiddo","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","avatar_url":"https://avatars.githubusercontent.com/u/7882662?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/22400094","id":22400094,"diff_hunk":"@@ -5,3 +5,4 @@ Kill List\n * Unformatted code","path":"kill_list.md","position":1,"original_position":1,"commit_id":"c81ce0de1788f8a5fafdecc155654733be41587f","original_commit_id":"c81ce0de1788f8a5fafdecc155654733be41587f","user":{"login":"codeschool-kiddo","id":7882662,"avatar_url":"https://avatars.githubusercontent.com/u/7882662?v=3","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","html_url":"https://github.com/codeschool-kiddo","followers_url":"https://api.github.com/users/codeschool-kiddo/followers","following_url":"https://api.github.com/users/codeschool-kiddo/following{/other_user}","gists_url":"https://api.github.com/users/codeschool-kiddo/gists{/gist_id}","starred_url":"https://api.github.com/users/codeschool-kiddo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codeschool-kiddo/subscriptions","organizations_url":"https://api.github.com/users/codeschool-kiddo/orgs","repos_url":"https://api.github.com/users/codeschool-kiddo/repos","events_url":"https://api.github.com/users/codeschool-kiddo/events{/privacy}","received_events_url":"https://api.github.com/users/codeschool-kiddo/received_events","type":"User","site_admin":false},"body":"Awesome job! Go ahead and merge this back into master.","created_at":"2015-01-01T15:02:18Z","updated_at":"2015-01-01T15:02:18Z","html_url":"https://github.com/deeperx/dojo_rules/pull/4#discussion_r22400094","pull_request_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4","_links":{"self":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/22400094"},"html":{"href":"https://github.com/deeperx/dojo_rules/pull/4#discussion_r22400094"},"pull_request":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4"}}},"pull_request":{"url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4","id":26743782,"html_url":"https://github.com/deeperx/dojo_rules/pull/4","diff_url":"https://github.com/deeperx/dojo_rules/pull/4.diff","patch_url":"https://github.com/deeperx/dojo_rules/pull/4.patch","issue_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4","number":4,"state":"open","locked":false,"title":"add: programmers to kill list fixes #3","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:58Z","updated_at":"2015-01-01T15:02:18Z","closed_at":null,"merged_at":null,"merge_commit_sha":"885f6ba4f21b24105c93424a47612729548d1fe9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits","review_comments_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments","review_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f","head":{"label":"deeperx:kill_list","ref":"kill_list","sha":"c81ce0de1788f8a5fafdecc155654733be41587f","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:00:18Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"deeperx:master","ref":"master","sha":"2913bd18d5d8648ee4b1f38eaaa42075a606f853","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:00:18Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4"},"html":{"href":"https://github.com/deeperx/dojo_rules/pull/4"},"issue":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4"},"comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f"}}}},"public":true,"created_at":"2015-01-01T15:02:18Z"}
,{"id":"2489652124","type":"PushEvent","actor":{"id":1793416,"login":"apascual89","gravatar_id":"","url":"https://api.github.com/users/apascual89","avatar_url":"https://avatars.githubusercontent.com/u/1793416?"},"repo":{"id":28508293,"name":"apascual89/packages_apps_Settings","url":"https://api.github.com/repos/apascual89/packages_apps_Settings"},"payload":{"push_id":536864461,"size":2,"distinct_size":2,"ref":"refs/heads/lp5.0","head":"cd6c2546f67d72fc3de61c583d657eb475eb61d6","before":"8875e3b8a0ff16614016cbbc0a1be7c9ef0b0958","commits":[{"sha":"440385bfe87fbce427fff68b4a568a5280d4a948","author":{"email":"9c2685e721eb5199b8725c1d8fa5d3daff1f3ae6@gmx.co.uk","name":"XXMrHyde"},"message":"Settings: Material Black\n\nLiquid Edit: Remove DarkKat Branding\n\nChange-Id: I8fd49b6ad89036edbb5b7a0679b0ecddf5cd66dc","distinct":true,"url":"https://api.github.com/repos/apascual89/packages_apps_Settings/commits/440385bfe87fbce427fff68b4a568a5280d4a948"},{"sha":"cd6c2546f67d72fc3de61c583d657eb475eb61d6","author":{"email":"3abb84728bc5f2f8a63de3259ee09ad86fb2f26f@gmail.com","name":"lichti1901"},"message":"theme missing settings to material dark\n\nChange-Id: I916c4dfb7253d3390f8f07f71630fa06c1509ce1","distinct":true,"url":"https://api.github.com/repos/apascual89/packages_apps_Settings/commits/cd6c2546f67d72fc3de61c583d657eb475eb61d6"}]},"public":true,"created_at":"2015-01-01T15:02:19Z"}
,{"id":"2489652125","type":"PushEvent","actor":{"id":1311964,"login":"Jeija","gravatar_id":"","url":"https://api.github.com/users/Jeija","avatar_url":"https://avatars.githubusercontent.com/u/1311964?"},"repo":{"id":28002060,"name":"Jeija/schulealsstaat","url":"https://api.github.com/repos/Jeija/schulealsstaat"},"payload":{"push_id":536864463,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ec026986c8addbae90fb311622c2269f608ff32c","before":"ba0609f232b17ef8e8efefee7031dca4f56f0a73","commits":[{"sha":"ec026986c8addbae90fb311622c2269f608ff32c","author":{"email":"e55e1b75c63841272ebb9aa31ab5c64aeb882e65@gmail.com","name":"Jeija"},"message":"Add script that auto-generates random certificates and hashes","distinct":true,"url":"https://api.github.com/repos/Jeija/schulealsstaat/commits/ec026986c8addbae90fb311622c2269f608ff32c"}]},"public":true,"created_at":"2015-01-01T15:02:19Z"}
,{"id":"2489652127","type":"PushEvent","actor":{"id":1742761,"login":"heavenboya","gravatar_id":"","url":"https://api.github.com/users/heavenboya","avatar_url":"https://avatars.githubusercontent.com/u/1742761?"},"repo":{"id":28686976,"name":"heavenboya/TextEditor","url":"https://api.github.com/repos/heavenboya/TextEditor"},"payload":{"push_id":536864464,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0453dbf394a24fdd3f05a9975372141bef1286a7","before":"56f504519fc59b93535d1e44ba4fdd3c186dd1e7","commits":[{"sha":"0453dbf394a24fdd3f05a9975372141bef1286a7","author":{"email":"232846b5f85e118cea8517cdd466f11113fbcbe7@163.com","name":"zhaoxiang"},"message":"Add Accelerator","distinct":true,"url":"https://api.github.com/repos/heavenboya/TextEditor/commits/0453dbf394a24fdd3f05a9975372141bef1286a7"}]},"public":true,"created_at":"2015-01-01T15:02:19Z"}
,{"id":"2489652131","type":"IssuesEvent","actor":{"id":4000059,"login":"jerauf","gravatar_id":"","url":"https://api.github.com/users/jerauf","avatar_url":"https://avatars.githubusercontent.com/u/4000059?"},"repo":{"id":16423255,"name":"rydurham/Sentinel","url":"https://api.github.com/repos/rydurham/Sentinel"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/rydurham/Sentinel/issues/121","labels_url":"https://api.github.com/repos/rydurham/Sentinel/issues/121/labels{/name}","comments_url":"https://api.github.com/repos/rydurham/Sentinel/issues/121/comments","events_url":"https://api.github.com/repos/rydurham/Sentinel/issues/121/events","html_url":"https://github.com/rydurham/Sentinel/issues/121","id":53221375,"number":121,"title":"Giving a group access to part of a page","user":{"login":"jerauf","id":4000059,"avatar_url":"https://avatars.githubusercontent.com/u/4000059?v=3","gravatar_id":"","url":"https://api.github.com/users/jerauf","html_url":"https://github.com/jerauf","followers_url":"https://api.github.com/users/jerauf/followers","following_url":"https://api.github.com/users/jerauf/following{/other_user}","gists_url":"https://api.github.com/users/jerauf/gists{/gist_id}","starred_url":"https://api.github.com/users/jerauf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jerauf/subscriptions","organizations_url":"https://api.github.com/users/jerauf/orgs","repos_url":"https://api.github.com/users/jerauf/repos","events_url":"https://api.github.com/users/jerauf/events{/privacy}","received_events_url":"https://api.github.com/users/jerauf/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:02:20Z","updated_at":"2015-01-01T15:02:20Z","closed_at":null,"body":"I know that I can use this to give access to part of a page by permission level:\r\n\r\nSentry::getUser()->hasAccess('admin')\r\n\r\nBut what if I have a group called 'editor' that has permission \"users\" but I need to restrict part of a page so that only the 'editor' group can see it?"}},"public":true,"created_at":"2015-01-01T15:02:21Z"}
,{"id":"2489652133","type":"PushEvent","actor":{"id":4002921,"login":"LucasZheng","gravatar_id":"","url":"https://api.github.com/users/LucasZheng","avatar_url":"https://avatars.githubusercontent.com/u/4002921?"},"repo":{"id":28431894,"name":"LucasZheng/LucasZheng.github.io","url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io"},"payload":{"push_id":536864465,"size":1,"distinct_size":1,"ref":"refs/heads/source_code","head":"29ca4fabb4de147dfff04529bd777dddac209e05","before":"ae167088de2a0e49599121cd5b1cd1e74dffb864","commits":[{"sha":"29ca4fabb4de147dfff04529bd777dddac209e05","author":{"email":"becca14b8729f2c8609f074c547c436bd940ceed@activenetwork.com","name":"LucasZheng"},"message":"add favicon","distinct":true,"url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io/commits/29ca4fabb4de147dfff04529bd777dddac209e05"}]},"public":true,"created_at":"2015-01-01T15:02:21Z"}
,{"id":"2489652134","type":"CreateEvent","actor":{"id":6939141,"login":"zjjzyl","gravatar_id":"","url":"https://api.github.com/users/zjjzyl","avatar_url":"https://avatars.githubusercontent.com/u/6939141?"},"repo":{"id":27857251,"name":"zjjzyl/zjjtest","url":"https://api.github.com/repos/zjjzyl/zjjtest"},"payload":{"ref":"feature-five","ref_type":"branch","master_branch":"master","description":"test git","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:21Z"}
,{"id":"2489652135","type":"PushEvent","actor":{"id":1436383,"login":"vandres","gravatar_id":"","url":"https://api.github.com/users/vandres","avatar_url":"https://avatars.githubusercontent.com/u/1436383?"},"repo":{"id":28674120,"name":"vandres/angularjs-google-maps","url":"https://api.github.com/repos/vandres/angularjs-google-maps"},"payload":{"push_id":536864468,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ddb9115a8e226e613bee108db68cb6717a82b22a","before":"248199be4d2e5b42e2595748776223e32ec49071","commits":[{"sha":"ddb9115a8e226e613bee108db68cb6717a82b22a","author":{"email":"cd9a58b39b52b0d92d3d28beed878dd31ed4cb0f@dachcom.ch","name":"Volker Andres"},"message":"automatic center works now with dynamic markers","distinct":true,"url":"https://api.github.com/repos/vandres/angularjs-google-maps/commits/ddb9115a8e226e613bee108db68cb6717a82b22a"}]},"public":true,"created_at":"2015-01-01T15:02:21Z"}
,{"id":"2489652136","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327658,"name":"cloudify-cosmo/cloudify-plugin-template","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template"},"payload":{"push_id":536864466,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"ca0c0aca5bb8c6e8458f1aa9522f44deb7dbb9eb","before":"3a5afb082786c36d8bde1d9f85b79ebdf5e43f44","commits":[{"sha":"ca0c0aca5bb8c6e8458f1aa9522f44deb7dbb9eb","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template/commits/ca0c0aca5bb8c6e8458f1aa9522f44deb7dbb9eb"}]},"public":true,"created_at":"2015-01-01T15:02:21Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652138","type":"PushEvent","actor":{"id":8717689,"login":"freealong","gravatar_id":"","url":"https://api.github.com/users/freealong","avatar_url":"https://avatars.githubusercontent.com/u/8717689?"},"repo":{"id":28686909,"name":"freealong/freealong.github.io","url":"https://api.github.com/repos/freealong/freealong.github.io"},"payload":{"push_id":536864470,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4267131aa53d00d912b472c8adfe7a06e4b474ae","before":"26f7c7528c2f5a7a19a2e16fdb9da16fabbf3175","commits":[{"sha":"4267131aa53d00d912b472c8adfe7a06e4b474ae","author":{"email":"d8a3ee52423c55db971631327d765cad3953aa8d@yahoo.com","name":"yongqi"},"message":"Site updated: 2015-01-01 23:02:17","distinct":true,"url":"https://api.github.com/repos/freealong/freealong.github.io/commits/4267131aa53d00d912b472c8adfe7a06e4b474ae"}]},"public":true,"created_at":"2015-01-01T15:02:21Z"}
,{"id":"2489652139","type":"PushEvent","actor":{"id":3260579,"login":"hwmay","gravatar_id":"","url":"https://api.github.com/users/hwmay","avatar_url":"https://avatars.githubusercontent.com/u/3260579?"},"repo":{"id":18949241,"name":"hwmay/pordb3","url":"https://api.github.com/repos/hwmay/pordb3"},"payload":{"push_id":536864471,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0efb5d564ebc423729848af133a451e730ac03d3","before":"2bd42bcddc612c45514d97055af43a8b97693214","commits":[{"sha":"0efb5d564ebc423729848af133a451e730ac03d3","author":{"email":"ad1d2262814b717be45f77ed8bc451df8712557d@netcologne.de","name":"Hans Werner May"},"message":"Refactoring","distinct":true,"url":"https://api.github.com/repos/hwmay/pordb3/commits/0efb5d564ebc423729848af133a451e730ac03d3"}]},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652141","type":"PushEvent","actor":{"id":6685542,"login":"lummax","gravatar_id":"","url":"https://api.github.com/users/lummax","avatar_url":"https://avatars.githubusercontent.com/u/6685542?"},"repo":{"id":28688540,"name":"lummax/librcimimxcons","url":"https://api.github.com/repos/lummax/librcimimxcons"},"payload":{"push_id":536864472,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e2eb98dfc7e3ff64cb1731686768eab549799627","before":"512b1b95173bdff2ec9e9decf92864f0f1871170","commits":[{"sha":"e2eb98dfc7e3ff64cb1731686768eab549799627","author":{"email":"d11d775f9afa9d792151336d360f7bb8e3aa3b6b@googlemail.com","name":"lummax"},"message":"Add .travis.yml","distinct":true,"url":"https://api.github.com/repos/lummax/librcimimxcons/commits/e2eb98dfc7e3ff64cb1731686768eab549799627"}]},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652142","type":"PullRequestEvent","actor":{"id":1450716,"login":"luigino","gravatar_id":"","url":"https://api.github.com/users/luigino","avatar_url":"https://avatars.githubusercontent.com/u/1450716?"},"repo":{"id":21553713,"name":"u8sand/Baka-MPlayer","url":"https://api.github.com/repos/u8sand/Baka-MPlayer"},"payload":{"action":"opened","number":62,"pull_request":{"url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62","id":26743785,"html_url":"https://github.com/u8sand/Baka-MPlayer/pull/62","diff_url":"https://github.com/u8sand/Baka-MPlayer/pull/62.diff","patch_url":"https://github.com/u8sand/Baka-MPlayer/pull/62.patch","issue_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62","number":62,"state":"open","locked":false,"title":"Added Italian translation","user":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:02:22Z","updated_at":"2015-01-01T15:02:22Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/commits","review_comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/comments","review_comment_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/comments/{number}","comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62/comments","statuses_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/statuses/a489b190099429657d97209261eafb8713e11f8b","head":{"label":"luigino:master","ref":"master","sha":"a489b190099429657d97209261eafb8713e11f8b","user":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"repo":{"id":28688404,"name":"Baka-MPlayer","full_name":"luigino/Baka-MPlayer","owner":{"login":"luigino","id":1450716,"avatar_url":"https://avatars.githubusercontent.com/u/1450716?v=3","gravatar_id":"","url":"https://api.github.com/users/luigino","html_url":"https://github.com/luigino","followers_url":"https://api.github.com/users/luigino/followers","following_url":"https://api.github.com/users/luigino/following{/other_user}","gists_url":"https://api.github.com/users/luigino/gists{/gist_id}","starred_url":"https://api.github.com/users/luigino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luigino/subscriptions","organizations_url":"https://api.github.com/users/luigino/orgs","repos_url":"https://api.github.com/users/luigino/repos","events_url":"https://api.github.com/users/luigino/events{/privacy}","received_events_url":"https://api.github.com/users/luigino/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/luigino/Baka-MPlayer","description":"The libmpv based media player","fork":true,"url":"https://api.github.com/repos/luigino/Baka-MPlayer","forks_url":"https://api.github.com/repos/luigino/Baka-MPlayer/forks","keys_url":"https://api.github.com/repos/luigino/Baka-MPlayer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/luigino/Baka-MPlayer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/luigino/Baka-MPlayer/teams","hooks_url":"https://api.github.com/repos/luigino/Baka-MPlayer/hooks","issue_events_url":"https://api.github.com/repos/luigino/Baka-MPlayer/issues/events{/number}","events_url":"https://api.github.com/repos/luigino/Baka-MPlayer/events","assignees_url":"https://api.github.com/repos/luigino/Baka-MPlayer/assignees{/user}","branches_url":"https://api.github.com/repos/luigino/Baka-MPlayer/branches{/branch}","tags_url":"https://api.github.com/repos/luigino/Baka-MPlayer/tags","blobs_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/refs{/sha}","trees_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/luigino/Baka-MPlayer/statuses/{sha}","languages_url":"https://api.github.com/repos/luigino/Baka-MPlayer/languages","stargazers_url":"https://api.github.com/repos/luigino/Baka-MPlayer/stargazers","contributors_url":"https://api.github.com/repos/luigino/Baka-MPlayer/contributors","subscribers_url":"https://api.github.com/repos/luigino/Baka-MPlayer/subscribers","subscription_url":"https://api.github.com/repos/luigino/Baka-MPlayer/subscription","commits_url":"https://api.github.com/repos/luigino/Baka-MPlayer/commits{/sha}","git_commits_url":"https://api.github.com/repos/luigino/Baka-MPlayer/git/commits{/sha}","comments_url":"https://api.github.com/repos/luigino/Baka-MPlayer/comments{/number}","issue_comment_url":"https://api.github.com/repos/luigino/Baka-MPlayer/issues/comments/{number}","contents_url":"https://api.github.com/repos/luigino/Baka-MPlayer/contents/{+path}","compare_url":"https://api.github.com/repos/luigino/Baka-MPlayer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/luigino/Baka-MPlayer/merges","archive_url":"https://api.github.com/repos/luigino/Baka-MPlayer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/luigino/Baka-MPlayer/downloads","issues_url":"https://api.github.com/repos/luigino/Baka-MPlayer/issues{/number}","pulls_url":"https://api.github.com/repos/luigino/Baka-MPlayer/pulls{/number}","milestones_url":"https://api.github.com/repos/luigino/Baka-MPlayer/milestones{/number}","notifications_url":"https://api.github.com/repos/luigino/Baka-MPlayer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/luigino/Baka-MPlayer/labels{/name}","releases_url":"https://api.github.com/repos/luigino/Baka-MPlayer/releases{/id}","created_at":"2015-01-01T14:48:23Z","updated_at":"2015-01-01T15:00:10Z","pushed_at":"2015-01-01T15:00:10Z","git_url":"git://github.com/luigino/Baka-MPlayer.git","ssh_url":"git@github.com:luigino/Baka-MPlayer.git","clone_url":"https://github.com/luigino/Baka-MPlayer.git","svn_url":"https://github.com/luigino/Baka-MPlayer","homepage":"http://bakamplayer.u8sand.net/","size":49742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"u8sand:master","ref":"master","sha":"abe4f865d05d63b194227b41210fa53fbe6f56f9","user":{"login":"u8sand","id":1341861,"avatar_url":"https://avatars.githubusercontent.com/u/1341861?v=3","gravatar_id":"","url":"https://api.github.com/users/u8sand","html_url":"https://github.com/u8sand","followers_url":"https://api.github.com/users/u8sand/followers","following_url":"https://api.github.com/users/u8sand/following{/other_user}","gists_url":"https://api.github.com/users/u8sand/gists{/gist_id}","starred_url":"https://api.github.com/users/u8sand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/u8sand/subscriptions","organizations_url":"https://api.github.com/users/u8sand/orgs","repos_url":"https://api.github.com/users/u8sand/repos","events_url":"https://api.github.com/users/u8sand/events{/privacy}","received_events_url":"https://api.github.com/users/u8sand/received_events","type":"User","site_admin":false},"repo":{"id":21553713,"name":"Baka-MPlayer","full_name":"u8sand/Baka-MPlayer","owner":{"login":"u8sand","id":1341861,"avatar_url":"https://avatars.githubusercontent.com/u/1341861?v=3","gravatar_id":"","url":"https://api.github.com/users/u8sand","html_url":"https://github.com/u8sand","followers_url":"https://api.github.com/users/u8sand/followers","following_url":"https://api.github.com/users/u8sand/following{/other_user}","gists_url":"https://api.github.com/users/u8sand/gists{/gist_id}","starred_url":"https://api.github.com/users/u8sand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/u8sand/subscriptions","organizations_url":"https://api.github.com/users/u8sand/orgs","repos_url":"https://api.github.com/users/u8sand/repos","events_url":"https://api.github.com/users/u8sand/events{/privacy}","received_events_url":"https://api.github.com/users/u8sand/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/u8sand/Baka-MPlayer","description":"The libmpv based media player","fork":false,"url":"https://api.github.com/repos/u8sand/Baka-MPlayer","forks_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/forks","keys_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/teams","hooks_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/hooks","issue_events_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/events{/number}","events_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/events","assignees_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/assignees{/user}","branches_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/branches{/branch}","tags_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/tags","blobs_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/refs{/sha}","trees_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/statuses/{sha}","languages_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/languages","stargazers_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/stargazers","contributors_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/contributors","subscribers_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/subscribers","subscription_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/subscription","commits_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/commits{/sha}","git_commits_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/git/commits{/sha}","comments_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/comments{/number}","issue_comment_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/comments/{number}","contents_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/contents/{+path}","compare_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/merges","archive_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/downloads","issues_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues{/number}","pulls_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls{/number}","milestones_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/milestones{/number}","notifications_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/labels{/name}","releases_url":"https://api.github.com/repos/u8sand/Baka-MPlayer/releases{/id}","created_at":"2014-07-07T02:33:55Z","updated_at":"2015-01-01T14:31:05Z","pushed_at":"2015-01-01T14:31:05Z","git_url":"git://github.com/u8sand/Baka-MPlayer.git","ssh_url":"git@github.com:u8sand/Baka-MPlayer.git","clone_url":"https://github.com/u8sand/Baka-MPlayer.git","svn_url":"https://github.com/u8sand/Baka-MPlayer","homepage":"http://bakamplayer.u8sand.net/","size":49742,"stargazers_count":13,"watchers_count":13,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":8,"mirror_url":null,"open_issues_count":9,"forks":8,"open_issues":9,"watchers":13,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62"},"html":{"href":"https://github.com/u8sand/Baka-MPlayer/pull/62"},"issue":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62"},"comments":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/issues/62/comments"},"review_comments":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/comments"},"review_comment":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/pulls/62/commits"},"statuses":{"href":"https://api.github.com/repos/u8sand/Baka-MPlayer/statuses/a489b190099429657d97209261eafb8713e11f8b"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1349,"deletions":2,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652143","type":"CreateEvent","actor":{"id":292693,"login":"mikemoraned","gravatar_id":"","url":"https://api.github.com/users/mikemoraned","avatar_url":"https://avatars.githubusercontent.com/u/292693?"},"repo":{"id":28688640,"name":"mikemoraned/spark-play-sbt","url":"https://api.github.com/repos/mikemoraned/spark-play-sbt"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Playing around with Spark, using SBT","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652144","type":"CreateEvent","actor":{"id":8283768,"login":"evelynting610","gravatar_id":"","url":"https://api.github.com/users/evelynting610","avatar_url":"https://avatars.githubusercontent.com/u/8283768?"},"repo":{"id":28688641,"name":"evelynting610/yolunchme","url":"https://api.github.com/repos/evelynting610/yolunchme"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"The Front-End design of the App","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652146","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"push_id":536864473,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"b02a6730fb7a3d5ae9efbc9f5040c39812b42734","before":"e6df778b06bd22bad5218e288784085fab3e5d2f","commits":[{"sha":"b02a6730fb7a3d5ae9efbc9f5040c39812b42734","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager/commits/b02a6730fb7a3d5ae9efbc9f5040c39812b42734"}]},"public":true,"created_at":"2015-01-01T15:02:22Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652148","type":"CreateEvent","actor":{"id":3493763,"login":"shubhamd","gravatar_id":"","url":"https://api.github.com/users/shubhamd","avatar_url":"https://avatars.githubusercontent.com/u/3493763?"},"repo":{"id":28688297,"name":"shubhamd/shubhamd.github.io","url":"https://api.github.com/repos/shubhamd/shubhamd.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652150","type":"WatchEvent","actor":{"id":2328496,"login":"mrdaios","gravatar_id":"","url":"https://api.github.com/users/mrdaios","avatar_url":"https://avatars.githubusercontent.com/u/2328496?"},"repo":{"id":2331509,"name":"pooriaazimi/BetterDictionary","url":"https://api.github.com/repos/pooriaazimi/BetterDictionary"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:22Z"}
,{"id":"2489652151","type":"PushEvent","actor":{"id":90007,"login":"lukasmueller","gravatar_id":"","url":"https://api.github.com/users/lukasmueller","avatar_url":"https://avatars.githubusercontent.com/u/90007?"},"repo":{"id":11846582,"name":"solgenomics/gbs","url":"https://api.github.com/repos/solgenomics/gbs"},"payload":{"push_id":536864477,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"33de0cef45644c944ddc8e47c7b53f8f063eb325","before":"f9eb037cb87eadf6c81aa822c6487095c9528418","commits":[{"sha":"33de0cef45644c944ddc8e47c7b53f8f063eb325","author":{"email":"d9224b331176d2e198ac5218b7415e2f1956ab1a@cornell.edu","name":"Lukas Mueller"},"message":"improve output format.","distinct":true,"url":"https://api.github.com/repos/solgenomics/gbs/commits/33de0cef45644c944ddc8e47c7b53f8f063eb325"}]},"public":true,"created_at":"2015-01-01T15:02:23Z","org":{"id":260757,"login":"solgenomics","gravatar_id":"","url":"https://api.github.com/orgs/solgenomics","avatar_url":"https://avatars.githubusercontent.com/u/260757?"}}
,{"id":"2489652152","type":"PushEvent","actor":{"id":79195,"login":"kgish","gravatar_id":"","url":"https://api.github.com/users/kgish","avatar_url":"https://avatars.githubusercontent.com/u/79195?"},"repo":{"id":28479041,"name":"kgish/ember-hal-template","url":"https://api.github.com/repos/kgish/ember-hal-template"},"payload":{"push_id":536864478,"size":1,"distinct_size":1,"ref":"refs/heads/authentication","head":"82a5f54f0efe9b5970b2c0dc61b6920d30ba4dda","before":"ee4148eab08eed1a84fda2f8ceb28ccc4cfbe720","commits":[{"sha":"82a5f54f0efe9b5970b2c0dc61b6920d30ba4dda","author":{"email":"e1b8df71c768d938d37e6d0ef0591fc3f494458b@planet.nl","name":"Kiffin Gish"},"message":"Initial version for the login page.","distinct":true,"url":"https://api.github.com/repos/kgish/ember-hal-template/commits/82a5f54f0efe9b5970b2c0dc61b6920d30ba4dda"}]},"public":true,"created_at":"2015-01-01T15:02:23Z"}
,{"id":"2489652153","type":"PushEvent","actor":{"id":4610612,"login":"Wall-Dough","gravatar_id":"","url":"https://api.github.com/users/Wall-Dough","avatar_url":"https://avatars.githubusercontent.com/u/4610612?"},"repo":{"id":27177551,"name":"Wall-Dough/infinite-monkeys","url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys"},"payload":{"push_id":536864479,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"49c1cfcb35ce0359fabfed5f1466e0c57c47617c","before":"d5b71f6a5eed9f3d3136f7a9a37e31f48f231a15","commits":[{"sha":"49c1cfcb35ce0359fabfed5f1466e0c57c47617c","author":{"email":"623372bcd722ceb16f7e85d758f89088b76f922e@gmail.com","name":"Wall-Dough"},"message":"Update code.js","distinct":true,"url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys/commits/49c1cfcb35ce0359fabfed5f1466e0c57c47617c"}]},"public":true,"created_at":"2015-01-01T15:02:23Z"}
,{"id":"2489652155","type":"PushEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"push_id":536864481,"size":1,"distinct_size":1,"ref":"refs/heads/0.1","head":"b64bacaca806cb8f3ef0284966cf0a2b7fe20057","before":"590d14bfd9c3b06e3d9e49355d66ed13199e800d","commits":[{"sha":"b64bacaca806cb8f3ef0284966cf0a2b7fe20057","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Update Connection.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore/commits/b64bacaca806cb8f3ef0284966cf0a2b7fe20057"}]},"public":true,"created_at":"2015-01-01T15:02:23Z"}
,{"id":"2489652158","type":"WatchEvent","actor":{"id":1730702,"login":"mquandalle","gravatar_id":"","url":"https://api.github.com/users/mquandalle","avatar_url":"https://avatars.githubusercontent.com/u/1730702?"},"repo":{"id":24194652,"name":"ManuelDeLeon/viewmodel","url":"https://api.github.com/repos/ManuelDeLeon/viewmodel"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:24Z"}
,{"id":"2489652160","type":"CreateEvent","actor":{"id":10364748,"login":"floggingdolly","gravatar_id":"","url":"https://api.github.com/users/floggingdolly","avatar_url":"https://avatars.githubusercontent.com/u/10364748?"},"repo":{"id":28688569,"name":"floggingdolly/floggingdolly.github.io","url":"https://api.github.com/repos/floggingdolly/floggingdolly.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:24Z"}
,{"id":"2489652167","type":"PushEvent","actor":{"id":8610838,"login":"Teveillan","gravatar_id":"","url":"https://api.github.com/users/Teveillan","avatar_url":"https://avatars.githubusercontent.com/u/8610838?"},"repo":{"id":28685888,"name":"Teveillan/Teveillan.github.io","url":"https://api.github.com/repos/Teveillan/Teveillan.github.io"},"payload":{"push_id":536864485,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bcb8eb6c62ade0e1a1235cef6d48396d0baa160b","before":"dff95fe867b635be553dd3e7384c3640ac3eeb18","commits":[{"sha":"bcb8eb6c62ade0e1a1235cef6d48396d0baa160b","author":{"email":"61552775e06499f2cbdb1456b68360e582c10402@gmail.com","name":"Teveillan"},"message":"Site updated: 2015-01-01 23:02:06","distinct":true,"url":"https://api.github.com/repos/Teveillan/Teveillan.github.io/commits/bcb8eb6c62ade0e1a1235cef6d48396d0baa160b"}]},"public":true,"created_at":"2015-01-01T15:02:25Z"}
,{"id":"2489652169","type":"PushEvent","actor":{"id":10085190,"login":"ctgboy2010","gravatar_id":"","url":"https://api.github.com/users/ctgboy2010","avatar_url":"https://avatars.githubusercontent.com/u/10085190?"},"repo":{"id":28670425,"name":"ctgboy2010/php_file","url":"https://api.github.com/repos/ctgboy2010/php_file"},"payload":{"push_id":536864486,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a35cbe8e69d363ab057e8a95488a3552aafd7fe3","before":"3e39d7dc8956cac1adf8dfd466f0cf7ffbeb8ac6","commits":[{"sha":"a35cbe8e69d363ab057e8a95488a3552aafd7fe3","author":{"email":"50027342132eb7b639d7cb650c25d5be470ebd1f@gmail.com","name":"shajed"},"message":"PHP File functions","distinct":true,"url":"https://api.github.com/repos/ctgboy2010/php_file/commits/a35cbe8e69d363ab057e8a95488a3552aafd7fe3"}]},"public":true,"created_at":"2015-01-01T15:02:25Z"}
,{"id":"2489652173","type":"WatchEvent","actor":{"id":1811118,"login":"rodolfobandeira","gravatar_id":"","url":"https://api.github.com/users/rodolfobandeira","avatar_url":"https://avatars.githubusercontent.com/u/1811118?"},"repo":{"id":23622727,"name":"digitalocean/godo","url":"https://api.github.com/repos/digitalocean/godo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:25Z","org":{"id":4650108,"login":"digitalocean","gravatar_id":"","url":"https://api.github.com/orgs/digitalocean","avatar_url":"https://avatars.githubusercontent.com/u/4650108?"}}
,{"id":"2489652175","type":"PushEvent","actor":{"id":8175575,"login":"jackfirth","gravatar_id":"","url":"https://api.github.com/users/jackfirth","avatar_url":"https://avatars.githubusercontent.com/u/8175575?"},"repo":{"id":28682642,"name":"jackfirth/point-free","url":"https://api.github.com/repos/jackfirth/point-free"},"payload":{"push_id":536864489,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0c96ceb8021ca362aa7466aef69a0a8e5269fd4f","before":"af8fea91fde1a5c9b710f082bd8a708645583642","commits":[{"sha":"0c96ceb8021ca362aa7466aef69a0a8e5269fd4f","author":{"email":"1631de321268a0a34106df6e1a8ab338f1fbfbf2@gmail.com","name":"JackFirth"},"message":"Thrush\n\nRename","distinct":true,"url":"https://api.github.com/repos/jackfirth/point-free/commits/0c96ceb8021ca362aa7466aef69a0a8e5269fd4f"}]},"public":true,"created_at":"2015-01-01T15:02:26Z"}
,{"id":"2489652177","type":"PushEvent","actor":{"id":3824954,"login":"jshawl","gravatar_id":"","url":"https://api.github.com/users/jshawl","avatar_url":"https://avatars.githubusercontent.com/u/3824954?"},"repo":{"id":28678748,"name":"jshawl/sassbit.es","url":"https://api.github.com/repos/jshawl/sassbit.es"},"payload":{"push_id":536864490,"size":2,"distinct_size":2,"ref":"refs/heads/gh-pages","head":"f37cf7324cff16354764f366eb6c0d604f74f881","before":"eafa5b4eca61d09a971ff3de1c5cfc37785c84b0","commits":[{"sha":"75b720b36945423e25586c52b6d23f732f26dd12","author":{"email":"a5c95b3d7cb4d0ae05a15c79c79ab458dc2c8f9e@jshawl.com","name":"Jesse Shawl"},"message":"remove posts","distinct":true,"url":"https://api.github.com/repos/jshawl/sassbit.es/commits/75b720b36945423e25586c52b6d23f732f26dd12"},{"sha":"f37cf7324cff16354764f366eb6c0d604f74f881","author":{"email":"a5c95b3d7cb4d0ae05a15c79c79ab458dc2c8f9e@jshawl.com","name":"Jesse Shawl"},"message":"add posts","distinct":true,"url":"https://api.github.com/repos/jshawl/sassbit.es/commits/f37cf7324cff16354764f366eb6c0d604f74f881"}]},"public":true,"created_at":"2015-01-01T15:02:26Z"}
,{"id":"2489652179","type":"PushEvent","actor":{"id":8022656,"login":"tarma","gravatar_id":"","url":"https://api.github.com/users/tarma","avatar_url":"https://avatars.githubusercontent.com/u/8022656?"},"repo":{"id":28661052,"name":"tarma/WSN","url":"https://api.github.com/repos/tarma/WSN"},"payload":{"push_id":536864491,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8c8242e56e01feb1703a0b16fd4b0c24970c5ad","before":"82ba5a857f434f38952644df522b7afd625b1da9","commits":[{"sha":"a8c8242e56e01feb1703a0b16fd4b0c24970c5ad","author":{"email":"ae6eeee9dfdfc6dbefe1e230be52e56c07824876@hotmail.com","name":"tarma"},"message":"Delete README.md","distinct":true,"url":"https://api.github.com/repos/tarma/WSN/commits/a8c8242e56e01feb1703a0b16fd4b0c24970c5ad"}]},"public":true,"created_at":"2015-01-01T15:02:27Z"}
,{"id":"2489652182","type":"IssueCommentEvent","actor":{"id":189796,"login":"cebe","gravatar_id":"","url":"https://api.github.com/users/cebe","avatar_url":"https://avatars.githubusercontent.com/u/189796?"},"repo":{"id":3451238,"name":"yiisoft/yii","url":"https://api.github.com/repos/yiisoft/yii"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yiisoft/yii/issues/3686","labels_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/labels{/name}","comments_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/comments","events_url":"https://api.github.com/repos/yiisoft/yii/issues/3686/events","html_url":"https://github.com/yiisoft/yii/issues/3686","id":53185746,"number":3686,"title":"Remove inline style in CForm.php","user":{"login":"alaabadran","id":1215589,"avatar_url":"https://avatars.githubusercontent.com/u/1215589?v=3","gravatar_id":"","url":"https://api.github.com/users/alaabadran","html_url":"https://github.com/alaabadran","followers_url":"https://api.github.com/users/alaabadran/followers","following_url":"https://api.github.com/users/alaabadran/following{/other_user}","gists_url":"https://api.github.com/users/alaabadran/gists{/gist_id}","starred_url":"https://api.github.com/users/alaabadran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alaabadran/subscriptions","organizations_url":"https://api.github.com/users/alaabadran/orgs","repos_url":"https://api.github.com/users/alaabadran/repos","events_url":"https://api.github.com/users/alaabadran/events{/privacy}","received_events_url":"https://api.github.com/users/alaabadran/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/yiisoft/yii/labels/severity%3Aminor","name":"severity:minor","color":"444444"},{"url":"https://api.github.com/repos/yiisoft/yii/labels/type%3Aenhancement","name":"type:enhancement","color":"d7e102"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T14:19:15Z","updated_at":"2015-01-01T15:02:26Z","closed_at":null,"body":"Using \r\n` style=\"visibility:hidden\" ` in both\r\nrenderElement() and renderBegin() is wrong.   \r\nThey should be replaced at least with ` style=\"display:none\"`   \r\nor removed completely (recommended)"},"comment":{"url":"https://api.github.com/repos/yiisoft/yii/issues/comments/68488536","html_url":"https://github.com/yiisoft/yii/issues/3686#issuecomment-68488536","issue_url":"https://api.github.com/repos/yiisoft/yii/issues/3686","id":68488536,"user":{"login":"cebe","id":189796,"avatar_url":"https://avatars.githubusercontent.com/u/189796?v=3","gravatar_id":"","url":"https://api.github.com/users/cebe","html_url":"https://github.com/cebe","followers_url":"https://api.github.com/users/cebe/followers","following_url":"https://api.github.com/users/cebe/following{/other_user}","gists_url":"https://api.github.com/users/cebe/gists{/gist_id}","starred_url":"https://api.github.com/users/cebe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cebe/subscriptions","organizations_url":"https://api.github.com/users/cebe/orgs","repos_url":"https://api.github.com/users/cebe/repos","events_url":"https://api.github.com/users/cebe/events{/privacy}","received_events_url":"https://api.github.com/users/cebe/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:26Z","updated_at":"2015-01-01T15:02:26Z","body":"so chaning to `display:none` would solve your issue, right? I think this is the best way to keep BC."}},"public":true,"created_at":"2015-01-01T15:02:27Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}}
,{"id":"2489652187","type":"WatchEvent","actor":{"id":2641587,"login":"ScottDuke","gravatar_id":"","url":"https://api.github.com/users/ScottDuke","avatar_url":"https://avatars.githubusercontent.com/u/2641587?"},"repo":{"id":2139017,"name":"sstephenson/rbenv","url":"https://api.github.com/repos/sstephenson/rbenv"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:28Z"}
,{"id":"2489652189","type":"PushEvent","actor":{"id":5276943,"login":"orbingol","gravatar_id":"","url":"https://api.github.com/users/orbingol","avatar_url":"https://avatars.githubusercontent.com/u/5276943?"},"repo":{"id":12971781,"name":"orbingol/orbingol.github.io","url":"https://api.github.com/repos/orbingol/orbingol.github.io"},"payload":{"push_id":536864496,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0d706dc0666f321b455777c4f9963cd4fba682b7","before":"d7599522b884bf8bc770043288ca241e2f7f7958","commits":[{"sha":"0d706dc0666f321b455777c4f9963cd4fba682b7","author":{"email":"08590e5270f49f521b62cba13259209c122fe9bc@gmail.com","name":"Onur Rauf Bingol"},"message":"Updated \"AB15 Drupal Kurs Icerigi\" post.","distinct":true,"url":"https://api.github.com/repos/orbingol/orbingol.github.io/commits/0d706dc0666f321b455777c4f9963cd4fba682b7"}]},"public":true,"created_at":"2015-01-01T15:02:28Z"}
,{"id":"2489652190","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327646,"name":"cloudify-cosmo/cloudify-plugins-common","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common"},"payload":{"push_id":536864497,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"726da73ef006278bdb3cc3be8c6cbbd222e50017","before":"9c57b963f121441a4de92ffaf8d6a98268995d30","commits":[{"sha":"726da73ef006278bdb3cc3be8c6cbbd222e50017","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common/commits/726da73ef006278bdb3cc3be8c6cbbd222e50017"}]},"public":true,"created_at":"2015-01-01T15:02:28Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652203","type":"PushEvent","actor":{"id":6825362,"login":"Aymenworks","gravatar_id":"","url":"https://api.github.com/users/Aymenworks","avatar_url":"https://avatars.githubusercontent.com/u/6825362?"},"repo":{"id":28316236,"name":"Aymenworks/EmptyApp","url":"https://api.github.com/repos/Aymenworks/EmptyApp"},"payload":{"push_id":536864503,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"33657cde32af67209e185969bd3c89f0b34d6ccd","before":"1fe15e6ff77511a3162a280581e1cc30c2e117ed","commits":[{"sha":"33657cde32af67209e185969bd3c89f0b34d6ccd","author":{"email":"c4ef171a48d78f662bcce391783b9132c95d617d@gmail.com","name":"Rebouh Aymen"},"message":"fix circle yml","distinct":true,"url":"https://api.github.com/repos/Aymenworks/EmptyApp/commits/33657cde32af67209e185969bd3c89f0b34d6ccd"}]},"public":true,"created_at":"2015-01-01T15:02:31Z"}
,{"id":"2489652205","type":"PushEvent","actor":{"id":10351099,"login":"yangnuri","gravatar_id":"","url":"https://api.github.com/users/yangnuri","avatar_url":"https://avatars.githubusercontent.com/u/10351099?"},"repo":{"id":28683302,"name":"yangnuri/yangnuri.github.io","url":"https://api.github.com/repos/yangnuri/yangnuri.github.io"},"payload":{"push_id":536864504,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db41abc23aa7826020051ac085006f24683b7a8c","before":"5853ef98dcd99d17630f6a212b42559308b2c88d","commits":[{"sha":"db41abc23aa7826020051ac085006f24683b7a8c","author":{"email":"d19294121d393899624648c460bc0b6750613ec3@hanmail.net","name":"seung hwan Shin"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/yangnuri/yangnuri.github.io/commits/db41abc23aa7826020051ac085006f24683b7a8c"}]},"public":true,"created_at":"2015-01-01T15:02:31Z"}
,{"id":"2489652206","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327753,"name":"cloudify-cosmo/cloudify-chef-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin"},"payload":{"push_id":536864505,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"dc4ab71e78f549500fb0157936f7c5cbc475067a","before":"3efd71559f6ef71dfdf8ed6465cacd900affbcb0","commits":[{"sha":"dc4ab71e78f549500fb0157936f7c5cbc475067a","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin/commits/dc4ab71e78f549500fb0157936f7c5cbc475067a"}]},"public":true,"created_at":"2015-01-01T15:02:31Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652208","type":"PushEvent","actor":{"id":9965,"login":"sbooth","gravatar_id":"","url":"https://api.github.com/users/sbooth","avatar_url":"https://avatars.githubusercontent.com/u/9965?"},"repo":{"id":1679183,"name":"sbooth/SFBPopovers","url":"https://api.github.com/repos/sbooth/SFBPopovers"},"payload":{"push_id":536864506,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2f5d31e4d91bca94c96549f0661a30af8115e00e","before":"344cd621c4dc2e666b5df1fd1a2e8ff8a4c1e49c","commits":[{"sha":"2f5d31e4d91bca94c96549f0661a30af8115e00e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@sbooth.org","name":"Stephen F. Booth"},"message":"Use NS_ENUM","distinct":true,"url":"https://api.github.com/repos/sbooth/SFBPopovers/commits/2f5d31e4d91bca94c96549f0661a30af8115e00e"}]},"public":true,"created_at":"2015-01-01T15:02:31Z"}
,{"id":"2489652209","type":"PushEvent","actor":{"id":1197137,"login":"jsm174","gravatar_id":"","url":"https://api.github.com/users/jsm174","avatar_url":"https://avatars.githubusercontent.com/u/1197137?"},"repo":{"id":20755007,"name":"jsm174/vpinball","url":"https://api.github.com/repos/jsm174/vpinball"},"payload":{"push_id":536864507,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c1d651ee7b8944db70b2ea4fb8f1d85b83ecf1a8","before":"b226ea9fcb0940a1fc86b0b6c5419a2ae1a8579a","commits":[{"sha":"c1d651ee7b8944db70b2ea4fb8f1d85b83ecf1a8","author":{"email":"4251d243cfe617bfec44b514962296c6f38ba57b@14438d79-0ffd-4333-8ae7-ea2bdd901387","name":"fuzzelhjb"},"message":"ramp normals smoothed and wire physics updated","distinct":true,"url":"https://api.github.com/repos/jsm174/vpinball/commits/c1d651ee7b8944db70b2ea4fb8f1d85b83ecf1a8"}]},"public":true,"created_at":"2015-01-01T15:02:32Z"}
,{"id":"2489652210","type":"WatchEvent","actor":{"id":466238,"login":"Paulf-999","gravatar_id":"","url":"https://api.github.com/users/Paulf-999","avatar_url":"https://avatars.githubusercontent.com/u/466238?"},"repo":{"id":23622031,"name":"luisperezphd/ngModule","url":"https://api.github.com/repos/luisperezphd/ngModule"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:32Z"}
,{"id":"2489652211","type":"PushEvent","actor":{"id":659036,"login":"torgtaitai","gravatar_id":"","url":"https://api.github.com/users/torgtaitai","avatar_url":"https://avatars.githubusercontent.com/u/659036?"},"repo":{"id":2233930,"name":"torgtaitai/BCDice","url":"https://api.github.com/repos/torgtaitai/BCDice"},"payload":{"push_id":536864508,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"32d72cace50ccce09652892459b6359666c676da","before":"13791edc0ec4699f9a0f82abac38caf1633c7af3","commits":[{"sha":"32d72cace50ccce09652892459b6359666c676da","author":{"email":"4f26aeafdb2367620a393c973eddbe8f8b846ebd@torgtaitai.com","name":"torgtaitai"},"message":"Ver2.02.28 2015/01/02\n・ダイスボットに同人ゲームのガラコと破界の塔を追加。anony403さん、ブラフマンさんありがとうっ!!","distinct":true,"url":"https://api.github.com/repos/torgtaitai/BCDice/commits/32d72cace50ccce09652892459b6359666c676da"}]},"public":true,"created_at":"2015-01-01T15:02:32Z"}
,{"id":"2489652216","type":"PushEvent","actor":{"id":6641648,"login":"Stormatree","gravatar_id":"","url":"https://api.github.com/users/Stormatree","avatar_url":"https://avatars.githubusercontent.com/u/6641648?"},"repo":{"id":28686748,"name":"Stormatree/Garry-s-Mall-2","url":"https://api.github.com/repos/Stormatree/Garry-s-Mall-2"},"payload":{"push_id":536864510,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"73b822ead0129b30a863fda73dc65f50347774b5","before":"442b12ad1550c4de4a4326f4f0362bf972adb291","commits":[{"sha":"73b822ead0129b30a863fda73dc65f50347774b5","author":{"email":"87160d1871361ac766e97654b8a80a197c8436ed@googlemail.com","name":"Elliott Slingsby"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/Stormatree/Garry-s-Mall-2/commits/73b822ead0129b30a863fda73dc65f50347774b5"}]},"public":true,"created_at":"2015-01-01T15:02:32Z"}
,{"id":"2489652217","type":"PushEvent","actor":{"id":8464489,"login":"markusorngren","gravatar_id":"","url":"https://api.github.com/users/markusorngren","avatar_url":"https://avatars.githubusercontent.com/u/8464489?"},"repo":{"id":25523874,"name":"MyRobotLab/pyrobotlab","url":"https://api.github.com/repos/MyRobotLab/pyrobotlab"},"payload":{"push_id":536864511,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9c11065ac1480fa054b70d65cd2feb26a67acd6e","before":"2011fa54d1368fd2f2eeae2e4bef3362233c15a1","commits":[{"sha":"9c11065ac1480fa054b70d65cd2feb26a67acd6e","author":{"email":"5c84e5f571b1e9ab19ab493ee8d9a3dcdab7fb5a@gmail.com","name":"markusorngren"},"message":"Create Robynmiconoff.py","distinct":true,"url":"https://api.github.com/repos/MyRobotLab/pyrobotlab/commits/9c11065ac1480fa054b70d65cd2feb26a67acd6e"}]},"public":true,"created_at":"2015-01-01T15:02:32Z","org":{"id":6167429,"login":"MyRobotLab","gravatar_id":"","url":"https://api.github.com/orgs/MyRobotLab","avatar_url":"https://avatars.githubusercontent.com/u/6167429?"}}
,{"id":"2489652224","type":"CreateEvent","actor":{"id":292693,"login":"mikemoraned","gravatar_id":"","url":"https://api.github.com/users/mikemoraned","avatar_url":"https://avatars.githubusercontent.com/u/292693?"},"repo":{"id":28688640,"name":"mikemoraned/spark-play-sbt","url":"https://api.github.com/repos/mikemoraned/spark-play-sbt"},"payload":{"ref":"feature/twitter-play-geohash-geohash","ref_type":"branch","master_branch":"feature/twitter-play-geohash-geohash","description":"Playing around with Spark, using SBT","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:33Z"}
,{"id":"2489652225","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phphost/issues/3","labels_url":"https://api.github.com/repos/phphost/phphost/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phphost/issues/3/comments","events_url":"https://api.github.com/repos/phphost/phphost/issues/3/events","html_url":"https://github.com/phphost/phphost/issues/3","id":53221382,"number":3,"title":"check validity of domain","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:02:33Z","updated_at":"2015-01-01T15:02:33Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:02:33Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}}
,{"id":"2489652228","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327738,"name":"cloudify-cosmo/cloudify-openstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin"},"payload":{"push_id":536864515,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"0f769a2b6e0ed0b96caf86933eb6ed0bedaefd36","before":"72e105461cb96415847abbd5255260f41c6b70d3","commits":[{"sha":"0f769a2b6e0ed0b96caf86933eb6ed0bedaefd36","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin/commits/0f769a2b6e0ed0b96caf86933eb6ed0bedaefd36"}]},"public":true,"created_at":"2015-01-01T15:02:33Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652230","type":"CreateEvent","actor":{"id":3028941,"login":"alexwzk","gravatar_id":"","url":"https://api.github.com/users/alexwzk","avatar_url":"https://avatars.githubusercontent.com/u/3028941?"},"repo":{"id":22000093,"name":"alexwzk/bitcoin","url":"https://api.github.com/repos/alexwzk/bitcoin"},"payload":{"ref":"dev-prm","ref_type":"branch","master_branch":"permacoin","description":"Bitcoin Core integration/staging tree","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:34Z"}
,{"id":"2489652234","type":"IssueCommentEvent","actor":{"id":48054,"login":"mpapis","gravatar_id":"","url":"https://api.github.com/users/mpapis","avatar_url":"https://avatars.githubusercontent.com/u/48054?"},"repo":{"id":1420493,"name":"travis-ci/travis-ci","url":"https://api.github.com/repos/travis-ci/travis-ci"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987","labels_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987/labels{/name}","comments_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987/comments","events_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987/events","html_url":"https://github.com/travis-ci/travis-ci/issues/2987","id":50073037,"number":2987,"title":"Ruby 2.2.0-preview1 in OSX machines","user":{"login":"deivid-rodriguez","id":2887858,"avatar_url":"https://avatars.githubusercontent.com/u/2887858?v=3","gravatar_id":"","url":"https://api.github.com/users/deivid-rodriguez","html_url":"https://github.com/deivid-rodriguez","followers_url":"https://api.github.com/users/deivid-rodriguez/followers","following_url":"https://api.github.com/users/deivid-rodriguez/following{/other_user}","gists_url":"https://api.github.com/users/deivid-rodriguez/gists{/gist_id}","starred_url":"https://api.github.com/users/deivid-rodriguez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deivid-rodriguez/subscriptions","organizations_url":"https://api.github.com/users/deivid-rodriguez/orgs","repos_url":"https://api.github.com/users/deivid-rodriguez/repos","events_url":"https://api.github.com/users/deivid-rodriguez/events{/privacy}","received_events_url":"https://api.github.com/users/deivid-rodriguez/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-11-25T19:33:04Z","updated_at":"2015-01-01T15:02:34Z","closed_at":"2015-01-01T14:48:31Z","body":"I'm specifiying\r\n\r\n    rvm:\r\n      - 2.0.0\r\n      - 2.1\r\n      - 2.2\r\n      - ruby-head\r\n\r\nAnd it's failing for `2.2` in OSX because it can't find the Ruby installation.  In #2816 it is mentioned that `2.2.0-preview1` is installed in the OSX VMs so maybe it's just the link from `2.2` to `2.2.0-preview`1 that's not properly configured?\r\n\r\nThanks!"},"comment":{"url":"https://api.github.com/repos/travis-ci/travis-ci/issues/comments/68488537","html_url":"https://github.com/travis-ci/travis-ci/issues/2987#issuecomment-68488537","issue_url":"https://api.github.com/repos/travis-ci/travis-ci/issues/2987","id":68488537,"user":{"login":"mpapis","id":48054,"avatar_url":"https://avatars.githubusercontent.com/u/48054?v=3","gravatar_id":"","url":"https://api.github.com/users/mpapis","html_url":"https://github.com/mpapis","followers_url":"https://api.github.com/users/mpapis/followers","following_url":"https://api.github.com/users/mpapis/following{/other_user}","gists_url":"https://api.github.com/users/mpapis/gists{/gist_id}","starred_url":"https://api.github.com/users/mpapis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpapis/subscriptions","organizations_url":"https://api.github.com/users/mpapis/orgs","repos_url":"https://api.github.com/users/mpapis/repos","events_url":"https://api.github.com/users/mpapis/events{/privacy}","received_events_url":"https://api.github.com/users/mpapis/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:34Z","updated_at":"2015-01-01T15:02:34Z","body":"you can make it permanent with:\r\n```bash\r\necho rvm_fuzzy_flag=1 >> ~/.rvmrc\r\n```\r\nI had it for some time although ended up removing it, using `--fuzzy` when I do not have time to install exact ruby version and there is similar one (patchlevel difference for `1.8`-`2.0`, teeny version difference for `2.1`+)"}},"public":true,"created_at":"2015-01-01T15:02:34Z","org":{"id":639823,"login":"travis-ci","gravatar_id":"","url":"https://api.github.com/orgs/travis-ci","avatar_url":"https://avatars.githubusercontent.com/u/639823?"}}
,{"id":"2489652235","type":"PushEvent","actor":{"id":4711416,"login":"Rannie","gravatar_id":"","url":"https://api.github.com/users/Rannie","avatar_url":"https://avatars.githubusercontent.com/u/4711416?"},"repo":{"id":26004980,"name":"Rannie/Rannie.github.io","url":"https://api.github.com/repos/Rannie/Rannie.github.io"},"payload":{"push_id":536864518,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3d55634ccb213fc63f5e967713c35f4cb7c865ef","before":"0248f821604af5064b27793b164548ad78bcd814","commits":[{"sha":"3d55634ccb213fc63f5e967713c35f4cb7c865ef","author":{"email":"f56ae11060471a41add17fc0ece7d0bdb0f0084a@163.com","name":"Hanran Liu"},"message":"image","distinct":true,"url":"https://api.github.com/repos/Rannie/Rannie.github.io/commits/3d55634ccb213fc63f5e967713c35f4cb7c865ef"}]},"public":true,"created_at":"2015-01-01T15:02:34Z"}
,{"id":"2489652238","type":"PushEvent","actor":{"id":1712548,"login":"Narazaka","gravatar_id":"","url":"https://api.github.com/users/Narazaka","avatar_url":"https://avatars.githubusercontent.com/u/1712548?"},"repo":{"id":27251593,"name":"Ikagaka/Ikagaka.demo","url":"https://api.github.com/repos/Ikagaka/Ikagaka.demo"},"payload":{"push_id":536864519,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"5faf504772280a3f1c8c15434ed3dd35eb3bcf34","before":"003e07a348d9774e1385c4fafd9ee7b14f166889","commits":[{"sha":"5faf504772280a3f1c8c15434ed3dd35eb3bcf34","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@narazaka.net","name":"Narazaka"},"message":"nar","distinct":true,"url":"https://api.github.com/repos/Ikagaka/Ikagaka.demo/commits/5faf504772280a3f1c8c15434ed3dd35eb3bcf34"}]},"public":true,"created_at":"2015-01-01T15:02:34Z","org":{"id":9678499,"login":"Ikagaka","gravatar_id":"","url":"https://api.github.com/orgs/Ikagaka","avatar_url":"https://avatars.githubusercontent.com/u/9678499?"}}
,{"id":"2489652242","type":"PushEvent","actor":{"id":10364203,"login":"gladwinbobby","gravatar_id":"","url":"https://api.github.com/users/gladwinbobby","avatar_url":"https://avatars.githubusercontent.com/u/10364203?"},"repo":{"id":28687073,"name":"gladwinbobby/Confession-App","url":"https://api.github.com/repos/gladwinbobby/Confession-App"},"payload":{"push_id":536864522,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8b9d76a1eb4fdf6c13c26476b60903e754d22341","before":"2a3b71b79ea031462d982364f14eef4854950283","commits":[{"sha":"8b9d76a1eb4fdf6c13c26476b60903e754d22341","author":{"email":"e292b451491da8bc716210e75644dde391673c71@gmail.com","name":"Gladwin Henald"},"message":"Update db_functions.php","distinct":true,"url":"https://api.github.com/repos/gladwinbobby/Confession-App/commits/8b9d76a1eb4fdf6c13c26476b60903e754d22341"}]},"public":true,"created_at":"2015-01-01T15:02:36Z"}
,{"id":"2489652244","type":"PushEvent","actor":{"id":236569,"login":"mink365","gravatar_id":"","url":"https://api.github.com/users/mink365","avatar_url":"https://avatars.githubusercontent.com/u/236569?"},"repo":{"id":17405087,"name":"mink365/RacingEngine","url":"https://api.github.com/repos/mink365/RacingEngine"},"payload":{"push_id":536864524,"size":10,"distinct_size":10,"ref":"refs/heads/master","head":"6251ee12cdb9e901439a56e66768437b3b94d8c4","before":"5f19314b905177eb586f77b934fc087690b8a7c9","commits":[{"sha":"0b915e7a1348817ea7dfd87db79bf304d44af97e","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix FileSystem for android asset","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/0b915e7a1348817ea7dfd87db79bf304d44af97e"},{"sha":"287783dc56d3d09ec6362beaa04b3d808d3e935f","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"use asset resource in android","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/287783dc56d3d09ec6362beaa04b3d808d3e935f"},{"sha":"989ab75d726ecee4351fa3982d671916c2783b27","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"add code of audio system","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/989ab75d726ecee4351fa3982d671916c2783b27"},{"sha":"f0bfac1f690d4a5d549840cc06d445b80ec1a90f","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"improve audio system","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/f0bfac1f690d4a5d549840cc06d445b80ec1a90f"},{"sha":"cf2b4c571a8f6f08a1e92c48f593ce819e45d091","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"add add Audio Test","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/cf2b4c571a8f6f08a1e92c48f593ce819e45d091"},{"sha":"cab566accdd3df289ef054e3f60a7a068b41858e","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix android file","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/cab566accdd3df289ef054e3f60a7a068b41858e"},{"sha":"e2d510ec4462fc5a5a0b361cc47ebca6ec53e990","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix OpenAL error","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/e2d510ec4462fc5a5a0b361cc47ebca6ec53e990"},{"sha":"f9e97976cc9dcd54d24c2ed6eeaec236025d048f","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"fix error of calc vertex count, use vertex buffer data directly","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/f9e97976cc9dcd54d24c2ed6eeaec236025d048f"},{"sha":"aebb9258385d366725d5138d7dd507a06351c424","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"simple transform index buffer from uint to short","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/aebb9258385d366725d5138d7dd507a06351c424"},{"sha":"6251ee12cdb9e901439a56e66768437b3b94d8c4","author":{"email":"ab8e82689f76e6b89ccc6ff4f6ce230c868ef530@gmail.com","name":"mink365"},"message":"add audio system to Android.mk","distinct":true,"url":"https://api.github.com/repos/mink365/RacingEngine/commits/6251ee12cdb9e901439a56e66768437b3b94d8c4"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652246","type":"CreateEvent","actor":{"id":6325631,"login":"pirej","gravatar_id":"","url":"https://api.github.com/users/pirej","avatar_url":"https://avatars.githubusercontent.com/u/6325631?"},"repo":{"id":27979491,"name":"lollipoop/android_vendor_omni","url":"https://api.github.com/repos/lollipoop/android_vendor_omni"},"payload":{"ref":"m4","ref_type":"branch","master_branch":"m","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:37Z","org":{"id":10051895,"login":"lollipoop","gravatar_id":"","url":"https://api.github.com/orgs/lollipoop","avatar_url":"https://avatars.githubusercontent.com/u/10051895?"}}
,{"id":"2489652249","type":"PushEvent","actor":{"id":5215572,"login":"DaHofa","gravatar_id":"","url":"https://api.github.com/users/DaHofa","avatar_url":"https://avatars.githubusercontent.com/u/5215572?"},"repo":{"id":28300383,"name":"DaHofa/ProjectX","url":"https://api.github.com/repos/DaHofa/ProjectX"},"payload":{"push_id":536864526,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfe6f5ee6c7036fbaf029a92db3f5e0f36020527","before":"ae82d4e2f8dfc6344417bc5b367c699dd158489e","commits":[{"sha":"cfe6f5ee6c7036fbaf029a92db3f5e0f36020527","author":{"email":"2dc08cd05178f8a6fae4aab401580c292e15fd9d@liwest.at","name":"DaHofa"},"message":"small improvement of code structure.","distinct":true,"url":"https://api.github.com/repos/DaHofa/ProjectX/commits/cfe6f5ee6c7036fbaf029a92db3f5e0f36020527"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652252","type":"PushEvent","actor":{"id":223335,"login":"jettify","gravatar_id":"","url":"https://api.github.com/users/jettify","avatar_url":"https://avatars.githubusercontent.com/u/223335?"},"repo":{"id":22174212,"name":"jettify/aiogibson","url":"https://api.github.com/repos/jettify/aiogibson"},"payload":{"push_id":536864530,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f","before":"d6343b722ea2af476a81a9f17956dceb42403e3a","commits":[{"sha":"59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f","author":{"email":"eb4210615e6f7d8633151b39d3bf3b0924fddbc7@yahoo.com","name":"Nickolai Novik"},"message":"move to nose","distinct":true,"url":"https://api.github.com/repos/jettify/aiogibson/commits/59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652253","type":"WatchEvent","actor":{"id":970964,"login":"x1957","gravatar_id":"","url":"https://api.github.com/users/x1957","avatar_url":"https://avatars.githubusercontent.com/u/970964?"},"repo":{"id":16363880,"name":"tomprimozic/type-systems","url":"https://api.github.com/repos/tomprimozic/type-systems"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652255","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19340336,"name":"cloudify-cosmo/cloudify-puppet-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin"},"payload":{"push_id":536864529,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"a71032d3590107d5b6c82ce101034ebfbba54495","before":"f5958528e8d4bb2444a9b7d13511e220c6a71536","commits":[{"sha":"a71032d3590107d5b6c82ce101034ebfbba54495","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin/commits/a71032d3590107d5b6c82ce101034ebfbba54495"}]},"public":true,"created_at":"2015-01-01T15:02:37Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652257","type":"PushEvent","actor":{"id":181719,"login":"tuvokki","gravatar_id":"","url":"https://api.github.com/users/tuvokki","avatar_url":"https://avatars.githubusercontent.com/u/181719?"},"repo":{"id":27592694,"name":"tuvokki/locals","url":"https://api.github.com/repos/tuvokki/locals"},"payload":{"push_id":536864531,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"201a73478124ba7fb569a2e21d89a3fb8968966a","before":"c9a9ec7af37f7b23dc7584a4955dffa4436a4315","commits":[{"sha":"201a73478124ba7fb569a2e21d89a3fb8968966a","author":{"email":"551dc3238f358fff847af6267cef3cee20066362@gmail.com","name":"Wouter"},"message":"Use $route for resolving","distinct":true,"url":"https://api.github.com/repos/tuvokki/locals/commits/201a73478124ba7fb569a2e21d89a3fb8968966a"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652258","type":"PushEvent","actor":{"id":4319954,"login":"hermanwahyudi","gravatar_id":"","url":"https://api.github.com/users/hermanwahyudi","avatar_url":"https://avatars.githubusercontent.com/u/4319954?"},"repo":{"id":27826205,"name":"hermanwahyudi/selenium","url":"https://api.github.com/repos/hermanwahyudi/selenium"},"payload":{"push_id":536864532,"size":1,"distinct_size":1,"ref":"refs/heads/br_herman","head":"9abf9375103bfcc66167e15a96e939d8232667a8","before":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","commits":[{"sha":"9abf9375103bfcc66167e15a96e939d8232667a8","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Push br_herman","distinct":true,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/9abf9375103bfcc66167e15a96e939d8232667a8"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652259","type":"PushEvent","actor":{"id":914337,"login":"briangaid","gravatar_id":"","url":"https://api.github.com/users/briangaid","avatar_url":"https://avatars.githubusercontent.com/u/914337?"},"repo":{"id":10535450,"name":"briangaid/briangaid.github.io","url":"https://api.github.com/repos/briangaid/briangaid.github.io"},"payload":{"push_id":536864533,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3dd34aa60098d26f8216fbd08eed4561bbcb4d7e","before":"89252f7a761aa5ec847a42b907085fbec1d9a086","commits":[{"sha":"3dd34aa60098d26f8216fbd08eed4561bbcb4d7e","author":{"email":"0d212fa24a03354e8bb9a9c2e4138446e4e601cf@users.noreply.github.com","name":"Brian Gaid"},"message":"add stories category","distinct":true,"url":"https://api.github.com/repos/briangaid/briangaid.github.io/commits/3dd34aa60098d26f8216fbd08eed4561bbcb4d7e"}]},"public":true,"created_at":"2015-01-01T15:02:37Z"}
,{"id":"2489652271","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864538,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"34b160373f3f3c724d2e19d86b64fae26fe24224","before":"344140511ffa3bdd4c22f7b6378d80abe16f6b31","commits":[{"sha":"34b160373f3f3c724d2e19d86b64fae26fe24224","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124557301\n\nDJntyfNVKXzbgTe5EnsKPgxokqISWTbYK+g+HS5Bl8I=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/34b160373f3f3c724d2e19d86b64fae26fe24224"}]},"public":true,"created_at":"2015-01-01T15:02:38Z"}
,{"id":"2489652272","type":"PushEvent","actor":{"id":6837204,"login":"slerpy","gravatar_id":"","url":"https://api.github.com/users/slerpy","avatar_url":"https://avatars.githubusercontent.com/u/6837204?"},"repo":{"id":27869864,"name":"slerpy/ilikepy","url":"https://api.github.com/repos/slerpy/ilikepy"},"payload":{"push_id":536864539,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"affb870083f4caa4739874343eea3d85f6de8d26","before":"0ca4eafc59532384d2e036f4b7aea8159b5c6946","commits":[{"sha":"affb870083f4caa4739874343eea3d85f6de8d26","author":{"email":"b22ee841b1e87311f316c255ce1156a4ddc9a4a5@riseup.net","name":"slerpy"},"message":"omnomnom","distinct":true,"url":"https://api.github.com/repos/slerpy/ilikepy/commits/affb870083f4caa4739874343eea3d85f6de8d26"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"}
,{"id":"2489652273","type":"GollumEvent","actor":{"id":661798,"login":"baldurk","gravatar_id":"","url":"https://api.github.com/users/baldurk","avatar_url":"https://avatars.githubusercontent.com/u/661798?"},"repo":{"id":17253131,"name":"baldurk/renderdoc","url":"https://api.github.com/repos/baldurk/renderdoc"},"payload":{"pages":[{"page_name":"OpenGL","title":"OpenGL","summary":null,"action":"edited","sha":"8d779505d198db9e552c7f630cdb1fe78c477930","html_url":"https://github.com/baldurk/renderdoc/wiki/OpenGL"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"}
,{"id":"2489652274","type":"IssueCommentEvent","actor":{"id":7955276,"login":"EmmanuelCharpentier","gravatar_id":"","url":"https://api.github.com/users/EmmanuelCharpentier","avatar_url":"https://avatars.githubusercontent.com/u/7955276?"},"repo":{"id":2594513,"name":"yihui/knitr","url":"https://api.github.com/repos/yihui/knitr"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/yihui/knitr/issues/225","labels_url":"https://api.github.com/repos/yihui/knitr/issues/225/labels{/name}","comments_url":"https://api.github.com/repos/yihui/knitr/issues/225/comments","events_url":"https://api.github.com/repos/yihui/knitr/issues/225/events","html_url":"https://github.com/yihui/knitr/issues/225","id":4463198,"number":225,"title":"concordance for child documents","user":{"login":"yihui","id":163582,"avatar_url":"https://avatars.githubusercontent.com/u/163582?v=3","gravatar_id":"","url":"https://api.github.com/users/yihui","html_url":"https://github.com/yihui","followers_url":"https://api.github.com/users/yihui/followers","following_url":"https://api.github.com/users/yihui/following{/other_user}","gists_url":"https://api.github.com/users/yihui/gists{/gist_id}","starred_url":"https://api.github.com/users/yihui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yihui/subscriptions","organizations_url":"https://api.github.com/users/yihui/orgs","repos_url":"https://api.github.com/users/yihui/repos","events_url":"https://api.github.com/users/yihui/events{/privacy}","received_events_url":"https://api.github.com/users/yihui/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/yihui/knitr/labels/Feature","name":"Feature","color":"02e10c"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/yihui/knitr/milestones/8","labels_url":"https://api.github.com/repos/yihui/knitr/milestones/8/labels","id":113410,"number":8,"title":"v0.6","description":"Google summer of code!","creator":{"login":"yihui","id":163582,"avatar_url":"https://avatars.githubusercontent.com/u/163582?v=3","gravatar_id":"","url":"https://api.github.com/users/yihui","html_url":"https://github.com/yihui","followers_url":"https://api.github.com/users/yihui/followers","following_url":"https://api.github.com/users/yihui/following{/other_user}","gists_url":"https://api.github.com/users/yihui/gists{/gist_id}","starred_url":"https://api.github.com/users/yihui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yihui/subscriptions","organizations_url":"https://api.github.com/users/yihui/orgs","repos_url":"https://api.github.com/users/yihui/repos","events_url":"https://api.github.com/users/yihui/events{/privacy}","received_events_url":"https://api.github.com/users/yihui/received_events","type":"User","site_admin":false},"open_issues":0,"closed_issues":45,"state":"closed","created_at":"2012-04-29T05:22:49Z","updated_at":"2012-06-11T01:19:04Z","due_on":"2012-06-08T07:00:00Z","closed_at":"2012-06-11T01:19:04Z"},"comments":3,"created_at":"2012-05-07T21:50:28Z","updated_at":"2015-01-01T15:02:39Z","closed_at":"2012-06-07T15:20:13Z","body":"the infrastructure functions are in `concordance.R`; just need time to arrange the line numbers appropriately"},"comment":{"url":"https://api.github.com/repos/yihui/knitr/issues/comments/68488538","html_url":"https://github.com/yihui/knitr/issues/225#issuecomment-68488538","issue_url":"https://api.github.com/repos/yihui/knitr/issues/225","id":68488538,"user":{"login":"EmmanuelCharpentier","id":7955276,"avatar_url":"https://avatars.githubusercontent.com/u/7955276?v=3","gravatar_id":"","url":"https://api.github.com/users/EmmanuelCharpentier","html_url":"https://github.com/EmmanuelCharpentier","followers_url":"https://api.github.com/users/EmmanuelCharpentier/followers","following_url":"https://api.github.com/users/EmmanuelCharpentier/following{/other_user}","gists_url":"https://api.github.com/users/EmmanuelCharpentier/gists{/gist_id}","starred_url":"https://api.github.com/users/EmmanuelCharpentier/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/EmmanuelCharpentier/subscriptions","organizations_url":"https://api.github.com/users/EmmanuelCharpentier/orgs","repos_url":"https://api.github.com/users/EmmanuelCharpentier/repos","events_url":"https://api.github.com/users/EmmanuelCharpentier/events{/privacy}","received_events_url":"https://api.github.com/users/EmmanuelCharpentier/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:39Z","updated_at":"2015-01-01T15:02:39Z","body":"I'm afraid I have to support jalvesaq's suggestion.\r\n\r\nJan Gleixner [solved](https://github.com/jan-glx/patchKnitrSynctex) the problem of patching foo.synctex.gz with information out of foo-concordance.tex. After slight corrections, an R package has been [prepared](https://github.com/EmmanuelCharpentier/patchSynctex), to be submitted to CRAN (pending Jan's review), whose use has been tested with emacs and Eclipse+StatET.\r\n\r\nThe abllity to use the same chunks in different documents is especially important in a lot of Knitr use cases. The use of the concordance information to go back and forth between source .Rnw and target PDF is a HUGE help to debugging and refining such reports. To be able to have both wold be a huge boon in many complicated use cases.\r\nWhat would it take to support bth concordance and children documents ?\r\n\r\nSincerely,"}},"public":true,"created_at":"2015-01-01T15:02:39Z"}
,{"id":"2489652275","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536864540,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5dfb1df3b6b89b7fbae33ed472250584847f4444","before":"20a2e80ddb59f32f2001cce3dbacda9efcfbec07","commits":[{"sha":"5dfb1df3b6b89b7fbae33ed472250584847f4444","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/5dfb1df3b6b89b7fbae33ed472250584847f4444"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"}
,{"id":"2489652278","type":"PushEvent","actor":{"id":10223630,"login":"tanvirpathan","gravatar_id":"","url":"https://api.github.com/users/tanvirpathan","avatar_url":"https://avatars.githubusercontent.com/u/10223630?"},"repo":{"id":28428571,"name":"tanvirpathan/tanvirpathan.github.io","url":"https://api.github.com/repos/tanvirpathan/tanvirpathan.github.io"},"payload":{"push_id":536864542,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fbe9d6a32788419b0f8fe72ae4ba46e655f49528","before":"0fbed16e36e689bf07a37bd65809439d14fa27b5","commits":[{"sha":"fbe9d6a32788419b0f8fe72ae4ba46e655f49528","author":{"email":"7093d3eba14a0fb8b43f4d5466a49ee84493fcbd@gmail.com","name":"tanvirpathan"},"message":"parallax background","distinct":true,"url":"https://api.github.com/repos/tanvirpathan/tanvirpathan.github.io/commits/fbe9d6a32788419b0f8fe72ae4ba46e655f49528"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"}
,{"id":"2489652280","type":"PushEvent","actor":{"id":9217349,"login":"yishn","gravatar_id":"","url":"https://api.github.com/users/yishn","avatar_url":"https://avatars.githubusercontent.com/u/9217349?"},"repo":{"id":27235844,"name":"yishn/Trail","url":"https://api.github.com/repos/yishn/Trail"},"payload":{"push_id":536864543,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6011def39f1c017829e28b1ccc969e74521746ad","before":"85b2bd943ca3ada372bc4572b8453866844e8b9f","commits":[{"sha":"6011def39f1c017829e28b1ccc969e74521746ad","author":{"email":"79d43d7d478b1ef1952012a66b8e6f1704e1a0be@gmail.com","name":"yishn"},"message":"Update ItemsIconQueue","distinct":true,"url":"https://api.github.com/repos/yishn/Trail/commits/6011def39f1c017829e28b1ccc969e74521746ad"}]},"public":true,"created_at":"2015-01-01T15:02:39Z"}
,{"id":"2489652281","type":"WatchEvent","actor":{"id":6682527,"login":"niepiekm","gravatar_id":"","url":"https://api.github.com/users/niepiekm","avatar_url":"https://avatars.githubusercontent.com/u/6682527?"},"repo":{"id":14914289,"name":"mranostay/ws28xx-lighting-pru","url":"https://api.github.com/repos/mranostay/ws28xx-lighting-pru"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:41Z"}
,{"id":"2489652284","type":"CommitCommentEvent","actor":{"id":228456,"login":"hannesm","gravatar_id":"","url":"https://api.github.com/users/hannesm","avatar_url":"https://avatars.githubusercontent.com/u/228456?"},"repo":{"id":4755520,"name":"mirage/mirage-www","url":"https://api.github.com/repos/mirage/mirage-www"},"payload":{"comment":{"url":"https://api.github.com/repos/mirage/mirage-www/comments/9132425","html_url":"https://github.com/mirage/mirage-www/commit/0f9737b3528bc985f20f81e502bc6100bf550f76#commitcomment-9132425","id":9132425,"user":{"login":"hannesm","id":228456,"avatar_url":"https://avatars.githubusercontent.com/u/228456?v=3","gravatar_id":"","url":"https://api.github.com/users/hannesm","html_url":"https://github.com/hannesm","followers_url":"https://api.github.com/users/hannesm/followers","following_url":"https://api.github.com/users/hannesm/following{/other_user}","gists_url":"https://api.github.com/users/hannesm/gists{/gist_id}","starred_url":"https://api.github.com/users/hannesm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hannesm/subscriptions","organizations_url":"https://api.github.com/users/hannesm/orgs","repos_url":"https://api.github.com/users/hannesm/repos","events_url":"https://api.github.com/users/hannesm/events{/privacy}","received_events_url":"https://api.github.com/users/hannesm/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"0f9737b3528bc985f20f81e502bc6100bf550f76","created_at":"2015-01-01T15:02:40Z","updated_at":"2015-01-01T15:02:40Z","body":":D this will never happen again ;)"}},"public":true,"created_at":"2015-01-01T15:02:40Z","org":{"id":131943,"login":"mirage","gravatar_id":"","url":"https://api.github.com/orgs/mirage","avatar_url":"https://avatars.githubusercontent.com/u/131943?"}}
,{"id":"2489652287","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23050575,"name":"cloudify-cosmo/cloudify-script-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin"},"payload":{"push_id":536864545,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"412ef190151ce8ba0b17b01ded88ed8d71b8f805","before":"12d44ee876b576de519a9accf1938ee365f02e3d","commits":[{"sha":"412ef190151ce8ba0b17b01ded88ed8d71b8f805","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin/commits/412ef190151ce8ba0b17b01ded88ed8d71b8f805"}]},"public":true,"created_at":"2015-01-01T15:02:41Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652302","type":"IssueCommentEvent","actor":{"id":10336333,"login":"maruinen","gravatar_id":"","url":"https://api.github.com/users/maruinen","avatar_url":"https://avatars.githubusercontent.com/u/10336333?"},"repo":{"id":20966361,"name":"DrScKAWAMOTO/FullereneViewer","url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86","labels_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86/labels{/name}","comments_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86/comments","events_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86/events","html_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86","id":53084114,"number":86,"title":"Contributorへの追加申請","user":{"login":"maruinen","id":10336333,"avatar_url":"https://avatars.githubusercontent.com/u/10336333?v=3","gravatar_id":"","url":"https://api.github.com/users/maruinen","html_url":"https://github.com/maruinen","followers_url":"https://api.github.com/users/maruinen/followers","following_url":"https://api.github.com/users/maruinen/following{/other_user}","gists_url":"https://api.github.com/users/maruinen/gists{/gist_id}","starred_url":"https://api.github.com/users/maruinen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maruinen/subscriptions","organizations_url":"https://api.github.com/users/maruinen/orgs","repos_url":"https://api.github.com/users/maruinen/repos","events_url":"https://api.github.com/users/maruinen/events{/privacy}","received_events_url":"https://api.github.com/users/maruinen/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-30T00:36:52Z","updated_at":"2015-01-01T15:02:42Z","closed_at":"2015-01-01T06:19:41Z","pull_request":{"url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/pulls/86","html_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86","diff_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86.diff","patch_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86.patch"},"body":"恐縮です。\r\n\r\nところで、もう1つ報告事項があります。\r\n\r\nWindowsXP + VMWare 5.5 + FreeBSD 9.3 の環境で、`pkg install qt5 libGLU povray37`として\r\n(a) `gmake CC=clang CXX=clang++ Qt`\r\n(b) `gmake Qt`\r\nすると、以下2点の問題が起こりました。\r\n\r\n・(a)(b)共に、/usr/local/includeがINCLUDE_PATHに入ってなくて 'GL/gl.h' file not found に、\r\n /usr/local/libがLIBRARY_PATHに入ってなくて-lGLUがリンクエラーになりました。\r\n src/Qt/FullereneViewer.pro の!macx:unix{}の所を\r\n    INCLUDEPATH += /usr/local/include\r\n    LIBS += -L/usr/local/lib -lGLU\r\n にすると、コンパイルが通りました。\r\n \r\n・(a)でできた実行ファイルは、起動時にBus errorで落ちました。\r\n gdbで止めてみましたが、シンボル付きの実行ファイルなのにシンボルが一切表示されず、何も分かりませんでした。\r\n (b)でできた実行ファイルは、正常に起動しました。\r\n\r\n以上、Mac + VirtualBox + FreeBSD 9.3でも、同じでした。\r\n別件なので、Issue #49には書きませんでした。\r\n\r\nよろしくお願い致します。"},"comment":{"url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/comments/68488539","html_url":"https://github.com/DrScKAWAMOTO/FullereneViewer/pull/86#issuecomment-68488539","issue_url":"https://api.github.com/repos/DrScKAWAMOTO/FullereneViewer/issues/86","id":68488539,"user":{"login":"maruinen","id":10336333,"avatar_url":"https://avatars.githubusercontent.com/u/10336333?v=3","gravatar_id":"","url":"https://api.github.com/users/maruinen","html_url":"https://github.com/maruinen","followers_url":"https://api.github.com/users/maruinen/followers","following_url":"https://api.github.com/users/maruinen/following{/other_user}","gists_url":"https://api.github.com/users/maruinen/gists{/gist_id}","starred_url":"https://api.github.com/users/maruinen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maruinen/subscriptions","organizations_url":"https://api.github.com/users/maruinen/orgs","repos_url":"https://api.github.com/users/maruinen/repos","events_url":"https://api.github.com/users/maruinen/events{/privacy}","received_events_url":"https://api.github.com/users/maruinen/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:42Z","updated_at":"2015-01-01T15:02:42Z","body":"謹んで新年のお慶びを申し上げます。\r\nすいません、そういうことだとは思わなかったので、書かなかったのですが、\r\n`gmake CC=clang CXX=clang++ LINK=clang Qt`\r\nとして、clangでlinkされるようにしても、やはりBus errorとなります。\r\n今年もよろしくお願い致します。"}},"public":true,"created_at":"2015-01-01T15:02:42Z"}
,{"id":"2489652307","type":"PushEvent","actor":{"id":7315383,"login":"jaromanda","gravatar_id":"","url":"https://api.github.com/users/jaromanda","avatar_url":"https://avatars.githubusercontent.com/u/7315383?"},"repo":{"id":28639232,"name":"jaromanda/RioCast","url":"https://api.github.com/repos/jaromanda/RioCast"},"payload":{"push_id":536864547,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d5b33dfa0270fcb0ab1b00416bb66f322938182","before":"a22874de522c3a07d58e919a987d4d9b3b8bfa9a","commits":[{"sha":"1d5b33dfa0270fcb0ab1b00416bb66f322938182","author":{"email":"f69c6761b81ce575e03c7dff5aa15a192de25113@gmail.com","name":"jaromanda"},"message":"Update README","distinct":true,"url":"https://api.github.com/repos/jaromanda/RioCast/commits/1d5b33dfa0270fcb0ab1b00416bb66f322938182"}]},"public":true,"created_at":"2015-01-01T15:02:42Z"}
,{"id":"2489652314","type":"PullRequestEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"action":"closed","number":58,"pull_request":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58","id":26630407,"html_url":"https://github.com/Dica-Developer/generator-node-webkit/pull/58","diff_url":"https://github.com/Dica-Developer/generator-node-webkit/pull/58.diff","patch_url":"https://github.com/Dica-Developer/generator-node-webkit/pull/58.patch","issue_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58","number":58,"state":"closed","locked":false,"title":"Modified app/_Gruntfile to make the createLinuxApp step copy over the ic...","user":{"login":"arminhammer","id":1311990,"avatar_url":"https://avatars.githubusercontent.com/u/1311990?v=3","gravatar_id":"","url":"https://api.github.com/users/arminhammer","html_url":"https://github.com/arminhammer","followers_url":"https://api.github.com/users/arminhammer/followers","following_url":"https://api.github.com/users/arminhammer/following{/other_user}","gists_url":"https://api.github.com/users/arminhammer/gists{/gist_id}","starred_url":"https://api.github.com/users/arminhammer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arminhammer/subscriptions","organizations_url":"https://api.github.com/users/arminhammer/orgs","repos_url":"https://api.github.com/users/arminhammer/repos","events_url":"https://api.github.com/users/arminhammer/events{/privacy}","received_events_url":"https://api.github.com/users/arminhammer/received_events","type":"User","site_admin":false},"body":"This is a proposed fix for issue 57, 'issue when running dist application on ubuntu 64'\r\n\r\nI receive a similar error after running 'grunt dist-linux' and trying to start the application:\r\n\r\n$ ./node-webkit app.nw/\r\n[7651:1228/204657:FATAL:content_main_runner.cc(751)] Check failed: base::i18n::InitializeICU(). \r\nfish: Job 1, “./node-webkit app.nw/” terminated by signal SIGABRT (Abort)\r\n\r\nThe error signature is a little different than what was reported in the issue, but the main problem is the same: the icudtl.dat file is not being copied over from resources/node-webkit/Linux64/ to the dist/Linux64 folder.  If the file is copied over, the application will launch as expected.\r\n\r\nThis pull request makes a simple change in the Gruntfile so that the icudtl.dat is copied over every time that 'grunt dist-linux' is run.","created_at":"2014-12-29T02:17:03Z","updated_at":"2015-01-01T15:02:43Z","closed_at":"2015-01-01T15:02:43Z","merged_at":"2015-01-01T15:02:43Z","merge_commit_sha":"859ebad4c758c397dbbcfee4efc38f0d2456cb03","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/commits","review_comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/comments","review_comment_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58/comments","statuses_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/statuses/018c435a85e98760d98ff78d22e56ff301cf9f4a","head":{"label":"arminhammer:issue57proposedFix","ref":"issue57proposedFix","sha":"018c435a85e98760d98ff78d22e56ff301cf9f4a","user":{"login":"arminhammer","id":1311990,"avatar_url":"https://avatars.githubusercontent.com/u/1311990?v=3","gravatar_id":"","url":"https://api.github.com/users/arminhammer","html_url":"https://github.com/arminhammer","followers_url":"https://api.github.com/users/arminhammer/followers","following_url":"https://api.github.com/users/arminhammer/following{/other_user}","gists_url":"https://api.github.com/users/arminhammer/gists{/gist_id}","starred_url":"https://api.github.com/users/arminhammer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arminhammer/subscriptions","organizations_url":"https://api.github.com/users/arminhammer/orgs","repos_url":"https://api.github.com/users/arminhammer/repos","events_url":"https://api.github.com/users/arminhammer/events{/privacy}","received_events_url":"https://api.github.com/users/arminhammer/received_events","type":"User","site_admin":false},"repo":{"id":28577003,"name":"generator-node-webkit","full_name":"arminhammer/generator-node-webkit","owner":{"login":"arminhammer","id":1311990,"avatar_url":"https://avatars.githubusercontent.com/u/1311990?v=3","gravatar_id":"","url":"https://api.github.com/users/arminhammer","html_url":"https://github.com/arminhammer","followers_url":"https://api.github.com/users/arminhammer/followers","following_url":"https://api.github.com/users/arminhammer/following{/other_user}","gists_url":"https://api.github.com/users/arminhammer/gists{/gist_id}","starred_url":"https://api.github.com/users/arminhammer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arminhammer/subscriptions","organizations_url":"https://api.github.com/users/arminhammer/orgs","repos_url":"https://api.github.com/users/arminhammer/repos","events_url":"https://api.github.com/users/arminhammer/events{/privacy}","received_events_url":"https://api.github.com/users/arminhammer/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/arminhammer/generator-node-webkit","description":"Yeoman generator for node-webkit applications","fork":true,"url":"https://api.github.com/repos/arminhammer/generator-node-webkit","forks_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/forks","keys_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/teams","hooks_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/hooks","issue_events_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/issues/events{/number}","events_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/events","assignees_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/assignees{/user}","branches_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/branches{/branch}","tags_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/tags","blobs_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/refs{/sha}","trees_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/statuses/{sha}","languages_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/languages","stargazers_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/stargazers","contributors_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/contributors","subscribers_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/subscribers","subscription_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/subscription","commits_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/commits{/sha}","git_commits_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/git/commits{/sha}","comments_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/comments{/number}","issue_comment_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/issues/comments/{number}","contents_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/contents/{+path}","compare_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/merges","archive_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/downloads","issues_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/issues{/number}","pulls_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/pulls{/number}","milestones_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/milestones{/number}","notifications_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/labels{/name}","releases_url":"https://api.github.com/repos/arminhammer/generator-node-webkit/releases{/id}","created_at":"2014-12-29T02:07:23Z","updated_at":"2014-12-29T02:07:23Z","pushed_at":"2014-12-29T02:14:30Z","git_url":"git://github.com/arminhammer/generator-node-webkit.git","ssh_url":"git@github.com:arminhammer/generator-node-webkit.git","clone_url":"https://github.com/arminhammer/generator-node-webkit.git","svn_url":"https://github.com/arminhammer/generator-node-webkit","homepage":"","size":668,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Dica-Developer:master","ref":"master","sha":"a40b0a3335f13dce1d91b29f1674ac217b240350","user":{"login":"Dica-Developer","id":1409907,"avatar_url":"https://avatars.githubusercontent.com/u/1409907?v=3","gravatar_id":"","url":"https://api.github.com/users/Dica-Developer","html_url":"https://github.com/Dica-Developer","followers_url":"https://api.github.com/users/Dica-Developer/followers","following_url":"https://api.github.com/users/Dica-Developer/following{/other_user}","gists_url":"https://api.github.com/users/Dica-Developer/gists{/gist_id}","starred_url":"https://api.github.com/users/Dica-Developer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dica-Developer/subscriptions","organizations_url":"https://api.github.com/users/Dica-Developer/orgs","repos_url":"https://api.github.com/users/Dica-Developer/repos","events_url":"https://api.github.com/users/Dica-Developer/events{/privacy}","received_events_url":"https://api.github.com/users/Dica-Developer/received_events","type":"Organization","site_admin":false},"repo":{"id":13252497,"name":"generator-node-webkit","full_name":"Dica-Developer/generator-node-webkit","owner":{"login":"Dica-Developer","id":1409907,"avatar_url":"https://avatars.githubusercontent.com/u/1409907?v=3","gravatar_id":"","url":"https://api.github.com/users/Dica-Developer","html_url":"https://github.com/Dica-Developer","followers_url":"https://api.github.com/users/Dica-Developer/followers","following_url":"https://api.github.com/users/Dica-Developer/following{/other_user}","gists_url":"https://api.github.com/users/Dica-Developer/gists{/gist_id}","starred_url":"https://api.github.com/users/Dica-Developer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dica-Developer/subscriptions","organizations_url":"https://api.github.com/users/Dica-Developer/orgs","repos_url":"https://api.github.com/users/Dica-Developer/repos","events_url":"https://api.github.com/users/Dica-Developer/events{/privacy}","received_events_url":"https://api.github.com/users/Dica-Developer/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Dica-Developer/generator-node-webkit","description":"Yeoman generator for node-webkit applications","fork":false,"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit","forks_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/forks","keys_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/teams","hooks_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/hooks","issue_events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/events{/number}","events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/events","assignees_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/assignees{/user}","branches_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/branches{/branch}","tags_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/tags","blobs_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/refs{/sha}","trees_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/statuses/{sha}","languages_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/languages","stargazers_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/stargazers","contributors_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/contributors","subscribers_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/subscribers","subscription_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/subscription","commits_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/commits{/sha}","git_commits_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/git/commits{/sha}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/comments{/number}","issue_comment_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/comments/{number}","contents_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/contents/{+path}","compare_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/merges","archive_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/downloads","issues_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues{/number}","pulls_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls{/number}","milestones_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/milestones{/number}","notifications_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/labels{/name}","releases_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/releases{/id}","created_at":"2013-10-01T18:52:00Z","updated_at":"2015-01-01T07:55:03Z","pushed_at":"2015-01-01T15:02:43Z","git_url":"git://github.com/Dica-Developer/generator-node-webkit.git","ssh_url":"git@github.com:Dica-Developer/generator-node-webkit.git","clone_url":"https://github.com/Dica-Developer/generator-node-webkit.git","svn_url":"https://github.com/Dica-Developer/generator-node-webkit","homepage":"","size":2175,"stargazers_count":165,"watchers_count":165,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":24,"mirror_url":null,"open_issues_count":10,"forks":24,"open_issues":10,"watchers":165,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58"},"html":{"href":"https://github.com/Dica-Developer/generator-node-webkit/pull/58"},"issue":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58"},"comments":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/58/comments"},"review_comments":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/comments"},"review_comment":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/pulls/58/commits"},"statuses":{"href":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/statuses/018c435a85e98760d98ff78d22e56ff301cf9f4a"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"mschaaf","id":703355,"avatar_url":"https://avatars.githubusercontent.com/u/703355?v=3","gravatar_id":"","url":"https://api.github.com/users/mschaaf","html_url":"https://github.com/mschaaf","followers_url":"https://api.github.com/users/mschaaf/followers","following_url":"https://api.github.com/users/mschaaf/following{/other_user}","gists_url":"https://api.github.com/users/mschaaf/gists{/gist_id}","starred_url":"https://api.github.com/users/mschaaf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mschaaf/subscriptions","organizations_url":"https://api.github.com/users/mschaaf/orgs","repos_url":"https://api.github.com/users/mschaaf/repos","events_url":"https://api.github.com/users/mschaaf/events{/privacy}","received_events_url":"https://api.github.com/users/mschaaf/received_events","type":"User","site_admin":false},"comments":1,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:02:43Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}}
,{"id":"2489652316","type":"PushEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"push_id":536864549,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6ab4d92f06cae2644f79bd9dd023fddce586fb31","before":"a40b0a3335f13dce1d91b29f1674ac217b240350","commits":[{"sha":"018c435a85e98760d98ff78d22e56ff301cf9f4a","author":{"email":"c771b48e570d5ea0f8eba9ccab69e52dfafa6f28@gmail.com","name":"arminhammer"},"message":"Modified app/_Gruntfile to make the createLinuxApp step copy over the icudtl.dat file to the dist/Linux64 folder.","distinct":true,"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/commits/018c435a85e98760d98ff78d22e56ff301cf9f4a"},{"sha":"6ab4d92f06cae2644f79bd9dd023fddce586fb31","author":{"email":"437ba095d01066942d56fcfdde2df2d133f2e87a@datameer.com","name":"Schaaf, Martin"},"message":"Merge pull request #58 from arminhammer/issue57proposedFix\n\nModified app/_Gruntfile to make the createLinuxApp step copy over the ic...","distinct":true,"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/commits/6ab4d92f06cae2644f79bd9dd023fddce586fb31"}]},"public":true,"created_at":"2015-01-01T15:02:43Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}}
,{"id":"2489652320","type":"PushEvent","actor":{"id":3313924,"login":"rampage644","gravatar_id":"","url":"https://api.github.com/users/rampage644","avatar_url":"https://avatars.githubusercontent.com/u/3313924?"},"repo":{"id":28094740,"name":"rampage644/collectd-blueflood-tests","url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests"},"payload":{"push_id":536864551,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"4d7bdf67baeb5e9d27de49a0eb230db0e50ed7d9","before":"5853237987817458655c273a7d5b938f372b625b","commits":[{"sha":"3ff129123aea208276c61f536498c286f853e3ee","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Replace abundant auth json reply","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/3ff129123aea208276c61f536498c286f853e3ee"},{"sha":"b7d2a0bedb4a600239823b9e876005a17f2e2e34","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Refactor handler\n\nDefine behaviour in runtime instead of rigid logic","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/b7d2a0bedb4a600239823b9e876005a17f2e2e34"},{"sha":"9ab660c698c8129b235fd75f602c9cc6c6873f4d","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Don't add AuthURL key if no auth url is present","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/9ab660c698c8129b235fd75f602c9cc6c6873f4d"},{"sha":"3331a19f20435f8d49cfb8541c0dd2bb6dbe5d2d","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Refactoring, update tests to new write_blueflood version\n\nUse new http mock handlers, skip blueflood test if there is no\nblueflood server","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/3331a19f20435f8d49cfb8541c0dd2bb6dbe5d2d"},{"sha":"4d7bdf67baeb5e9d27de49a0eb230db0e50ed7d9","author":{"email":"69690a3255d503c73cb50fbd58f702bb58cd7799@gmail.com","name":"Sergei Turukin"},"message":"Kill `collectd` process if waiting  for terminate more than 5 seconds","distinct":true,"url":"https://api.github.com/repos/rampage644/collectd-blueflood-tests/commits/4d7bdf67baeb5e9d27de49a0eb230db0e50ed7d9"}]},"public":true,"created_at":"2015-01-01T15:02:44Z"}
,{"id":"2489652324","type":"PushEvent","actor":{"id":7600809,"login":"petrovaliev95","gravatar_id":"","url":"https://api.github.com/users/petrovaliev95","avatar_url":"https://avatars.githubusercontent.com/u/7600809?"},"repo":{"id":28605875,"name":"Ads-Project/Ads","url":"https://api.github.com/repos/Ads-Project/Ads"},"payload":{"push_id":536864553,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ac747a87423be2f104a90a30b59d592cae11b476","before":"109a4275884d658cea0dd35d2b68575a6c81a47b","commits":[{"sha":"5bb7b0e48d36c1a3077449fb5534a5282eb1fb73","author":{"email":"ef1cc7c841e7b926e0b613e7b1a18e7306103183@abv.bg","name":"petrovaliev95"},"message":"added animations for ads and views on app and login view","distinct":true,"url":"https://api.github.com/repos/Ads-Project/Ads/commits/5bb7b0e48d36c1a3077449fb5534a5282eb1fb73"},{"sha":"ac747a87423be2f104a90a30b59d592cae11b476","author":{"email":"ef1cc7c841e7b926e0b613e7b1a18e7306103183@abv.bg","name":"petrovaliev95"},"message":"added pagination. Bug fixes.","distinct":true,"url":"https://api.github.com/repos/Ads-Project/Ads/commits/ac747a87423be2f104a90a30b59d592cae11b476"}]},"public":true,"created_at":"2015-01-01T15:02:44Z","org":{"id":10343050,"login":"Ads-Project","gravatar_id":"","url":"https://api.github.com/orgs/Ads-Project","avatar_url":"https://avatars.githubusercontent.com/u/10343050?"}}
,{"id":"2489652328","type":"CreateEvent","actor":{"id":10364719,"login":"AnastasiaTamazlykar","gravatar_id":"","url":"https://api.github.com/users/AnastasiaTamazlykar","avatar_url":"https://avatars.githubusercontent.com/u/10364719?"},"repo":{"id":28688642,"name":"AnastasiaTamazlykar/PhillipsHardyInspirers","url":"https://api.github.com/repos/AnastasiaTamazlykar/PhillipsHardyInspirers"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:45Z"}
,{"id":"2489652340","type":"WatchEvent","actor":{"id":3171146,"login":"xracz","gravatar_id":"","url":"https://api.github.com/users/xracz","avatar_url":"https://avatars.githubusercontent.com/u/3171146?"},"repo":{"id":2603622,"name":"tomtung/Learning-Machine-Learning","url":"https://api.github.com/repos/tomtung/Learning-Machine-Learning"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:45Z"}
,{"id":"2489652341","type":"PullRequestEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"action":"closed","number":4,"pull_request":{"url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4","id":26743782,"html_url":"https://github.com/deeperx/dojo_rules/pull/4","diff_url":"https://github.com/deeperx/dojo_rules/pull/4.diff","patch_url":"https://github.com/deeperx/dojo_rules/pull/4.patch","issue_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4","number":4,"state":"closed","locked":false,"title":"add: programmers to kill list fixes #3","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:58Z","updated_at":"2015-01-01T15:02:45Z","closed_at":"2015-01-01T15:02:45Z","merged_at":"2015-01-01T15:02:45Z","merge_commit_sha":"885f6ba4f21b24105c93424a47612729548d1fe9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits","review_comments_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments","review_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f","head":{"label":"deeperx:kill_list","ref":"kill_list","sha":"c81ce0de1788f8a5fafdecc155654733be41587f","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:02:45Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"deeperx:master","ref":"master","sha":"2913bd18d5d8648ee4b1f38eaaa42075a606f853","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:02:45Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4"},"html":{"href":"https://github.com/deeperx/dojo_rules/pull/4"},"issue":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4"},"comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"comments":0,"review_comments":1,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:02:45Z"}
,{"id":"2489652342","type":"PushEvent","actor":{"id":76055,"login":"yllan","gravatar_id":"","url":"https://api.github.com/users/yllan","avatar_url":"https://avatars.githubusercontent.com/u/76055?"},"repo":{"id":23321731,"name":"yllan/PerfumeWorld","url":"https://api.github.com/repos/yllan/PerfumeWorld"},"payload":{"push_id":536864558,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"67617300084691174ebeff7ffae2645c66247681","before":"e6dee45957613e1e310ca588eb0f3e6812a869ad","commits":[{"sha":"67617300084691174ebeff7ffae2645c66247681","author":{"email":"e0f85a3508a4c657b943558546ab9713dfcf8e7e@me.com","name":"yllan"},"message":"Periodically mirror","distinct":true,"url":"https://api.github.com/repos/yllan/PerfumeWorld/commits/67617300084691174ebeff7ffae2645c66247681"}]},"public":true,"created_at":"2015-01-01T15:02:46Z"}
,{"id":"2489652343","type":"PullRequestEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"action":"closed","number":5,"pull_request":{"url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5","id":26743776,"html_url":"https://github.com/gocardless/activejob-retry/pull/5","diff_url":"https://github.com/gocardless/activejob-retry/pull/5.diff","patch_url":"https://github.com/gocardless/activejob-retry/pull/5.patch","issue_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/5","number":5,"state":"closed","locked":false,"title":"Check adapter is supported","user":{"login":"greysteil","id":1144873,"avatar_url":"https://avatars.githubusercontent.com/u/1144873?v=3","gravatar_id":"","url":"https://api.github.com/users/greysteil","html_url":"https://github.com/greysteil","followers_url":"https://api.github.com/users/greysteil/followers","following_url":"https://api.github.com/users/greysteil/following{/other_user}","gists_url":"https://api.github.com/users/greysteil/gists{/gist_id}","starred_url":"https://api.github.com/users/greysteil/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/greysteil/subscriptions","organizations_url":"https://api.github.com/users/greysteil/orgs","repos_url":"https://api.github.com/users/greysteil/repos","events_url":"https://api.github.com/users/greysteil/events{/privacy}","received_events_url":"https://api.github.com/users/greysteil/received_events","type":"User","site_admin":false},"body":"Cleans up previous implementation so specs pass.","created_at":"2015-01-01T15:00:59Z","updated_at":"2015-01-01T15:02:45Z","closed_at":"2015-01-01T15:02:45Z","merged_at":"2015-01-01T15:02:45Z","merge_commit_sha":"a21d59fc69b736c8c2205bd3ce2cd91838772e73","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/commits","review_comments_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/comments","review_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/comments/{number}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/5/comments","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","head":{"label":"gocardless:check-adapter-supported","ref":"check-adapter-supported","sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","user":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"repo":{"id":28648149,"name":"activejob-retry","full_name":"gocardless/activejob-retry","owner":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gocardless/activejob-retry","description":"Automatic retries for ActiveJob","fork":false,"url":"https://api.github.com/repos/gocardless/activejob-retry","forks_url":"https://api.github.com/repos/gocardless/activejob-retry/forks","keys_url":"https://api.github.com/repos/gocardless/activejob-retry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gocardless/activejob-retry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gocardless/activejob-retry/teams","hooks_url":"https://api.github.com/repos/gocardless/activejob-retry/hooks","issue_events_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/events{/number}","events_url":"https://api.github.com/repos/gocardless/activejob-retry/events","assignees_url":"https://api.github.com/repos/gocardless/activejob-retry/assignees{/user}","branches_url":"https://api.github.com/repos/gocardless/activejob-retry/branches{/branch}","tags_url":"https://api.github.com/repos/gocardless/activejob-retry/tags","blobs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gocardless/activejob-retry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/refs{/sha}","trees_url":"https://api.github.com/repos/gocardless/activejob-retry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/{sha}","languages_url":"https://api.github.com/repos/gocardless/activejob-retry/languages","stargazers_url":"https://api.github.com/repos/gocardless/activejob-retry/stargazers","contributors_url":"https://api.github.com/repos/gocardless/activejob-retry/contributors","subscribers_url":"https://api.github.com/repos/gocardless/activejob-retry/subscribers","subscription_url":"https://api.github.com/repos/gocardless/activejob-retry/subscription","commits_url":"https://api.github.com/repos/gocardless/activejob-retry/commits{/sha}","git_commits_url":"https://api.github.com/repos/gocardless/activejob-retry/git/commits{/sha}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/comments{/number}","issue_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/comments/{number}","contents_url":"https://api.github.com/repos/gocardless/activejob-retry/contents/{+path}","compare_url":"https://api.github.com/repos/gocardless/activejob-retry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gocardless/activejob-retry/merges","archive_url":"https://api.github.com/repos/gocardless/activejob-retry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gocardless/activejob-retry/downloads","issues_url":"https://api.github.com/repos/gocardless/activejob-retry/issues{/number}","pulls_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls{/number}","milestones_url":"https://api.github.com/repos/gocardless/activejob-retry/milestones{/number}","notifications_url":"https://api.github.com/repos/gocardless/activejob-retry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gocardless/activejob-retry/labels{/name}","releases_url":"https://api.github.com/repos/gocardless/activejob-retry/releases{/id}","created_at":"2014-12-30T22:46:41Z","updated_at":"2015-01-01T14:31:50Z","pushed_at":"2015-01-01T15:02:45Z","git_url":"git://github.com/gocardless/activejob-retry.git","ssh_url":"git@github.com:gocardless/activejob-retry.git","clone_url":"https://github.com/gocardless/activejob-retry.git","svn_url":"https://github.com/gocardless/activejob-retry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"gocardless:master","ref":"master","sha":"26f1f1fb98b689a9c72f62ab81fbd86b555e9650","user":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"repo":{"id":28648149,"name":"activejob-retry","full_name":"gocardless/activejob-retry","owner":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gocardless/activejob-retry","description":"Automatic retries for ActiveJob","fork":false,"url":"https://api.github.com/repos/gocardless/activejob-retry","forks_url":"https://api.github.com/repos/gocardless/activejob-retry/forks","keys_url":"https://api.github.com/repos/gocardless/activejob-retry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gocardless/activejob-retry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gocardless/activejob-retry/teams","hooks_url":"https://api.github.com/repos/gocardless/activejob-retry/hooks","issue_events_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/events{/number}","events_url":"https://api.github.com/repos/gocardless/activejob-retry/events","assignees_url":"https://api.github.com/repos/gocardless/activejob-retry/assignees{/user}","branches_url":"https://api.github.com/repos/gocardless/activejob-retry/branches{/branch}","tags_url":"https://api.github.com/repos/gocardless/activejob-retry/tags","blobs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gocardless/activejob-retry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/refs{/sha}","trees_url":"https://api.github.com/repos/gocardless/activejob-retry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/{sha}","languages_url":"https://api.github.com/repos/gocardless/activejob-retry/languages","stargazers_url":"https://api.github.com/repos/gocardless/activejob-retry/stargazers","contributors_url":"https://api.github.com/repos/gocardless/activejob-retry/contributors","subscribers_url":"https://api.github.com/repos/gocardless/activejob-retry/subscribers","subscription_url":"https://api.github.com/repos/gocardless/activejob-retry/subscription","commits_url":"https://api.github.com/repos/gocardless/activejob-retry/commits{/sha}","git_commits_url":"https://api.github.com/repos/gocardless/activejob-retry/git/commits{/sha}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/comments{/number}","issue_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/comments/{number}","contents_url":"https://api.github.com/repos/gocardless/activejob-retry/contents/{+path}","compare_url":"https://api.github.com/repos/gocardless/activejob-retry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gocardless/activejob-retry/merges","archive_url":"https://api.github.com/repos/gocardless/activejob-retry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gocardless/activejob-retry/downloads","issues_url":"https://api.github.com/repos/gocardless/activejob-retry/issues{/number}","pulls_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls{/number}","milestones_url":"https://api.github.com/repos/gocardless/activejob-retry/milestones{/number}","notifications_url":"https://api.github.com/repos/gocardless/activejob-retry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gocardless/activejob-retry/labels{/name}","releases_url":"https://api.github.com/repos/gocardless/activejob-retry/releases{/id}","created_at":"2014-12-30T22:46:41Z","updated_at":"2015-01-01T14:31:50Z","pushed_at":"2015-01-01T15:02:45Z","git_url":"git://github.com/gocardless/activejob-retry.git","ssh_url":"git@github.com:gocardless/activejob-retry.git","clone_url":"https://github.com/gocardless/activejob-retry.git","svn_url":"https://github.com/gocardless/activejob-retry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5"},"html":{"href":"https://github.com/gocardless/activejob-retry/pull/5"},"issue":{"href":"https://api.github.com/repos/gocardless/activejob-retry/issues/5"},"comments":{"href":"https://api.github.com/repos/gocardless/activejob-retry/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/gocardless/activejob-retry/statuses/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"isaacseymour","id":1834049,"avatar_url":"https://avatars.githubusercontent.com/u/1834049?v=3","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","html_url":"https://github.com/isaacseymour","followers_url":"https://api.github.com/users/isaacseymour/followers","following_url":"https://api.github.com/users/isaacseymour/following{/other_user}","gists_url":"https://api.github.com/users/isaacseymour/gists{/gist_id}","starred_url":"https://api.github.com/users/isaacseymour/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/isaacseymour/subscriptions","organizations_url":"https://api.github.com/users/isaacseymour/orgs","repos_url":"https://api.github.com/users/isaacseymour/repos","events_url":"https://api.github.com/users/isaacseymour/events{/privacy}","received_events_url":"https://api.github.com/users/isaacseymour/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":15,"deletions":11,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:02:46Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489652349","type":"PushEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":27592919,"name":"littleguy77/mupen64plus-ae","url":"https://api.github.com/repos/littleguy77/mupen64plus-ae"},"payload":{"push_id":536864559,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"762b18e2b1d77ee2536537c85ba64064e92c0318","before":"80438bcba13e3e1a78999208d01b58a729703949","commits":[{"sha":"42b1e73ea5c312210947479e5661c5a6ced0990e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 863fb3c.\n\nhttps://github.com/mupen64plus-ae/mupen64plus-audio-sdl/commit/863fb3c\n\n* 863fb3c Remove Android Edition customizations.","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/42b1e73ea5c312210947479e5661c5a6ced0990e"},{"sha":"5b3d2acde758ba5be899cd20cf35a8137a05bc19","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"tools: Switch to vanilla upstream for audio-sdl.","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/5b3d2acde758ba5be899cd20cf35a8137a05bc19"},{"sha":"577cabb59fd7623639b4d599c17fb42926f7972e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 8cf8f17.\n\nhttps://github.com/mupen64plus/mupen64plus-audio-sdl/commit/8cf8f17","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/577cabb59fd7623639b4d599c17fb42926f7972e"},{"sha":"6fc1a2651c32b0dffd69258a74ac30390f9615ce","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"build: Remove obsolete build flags from audio-sdl.","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/6fc1a2651c32b0dffd69258a74ac30390f9615ce"},{"sha":"762b18e2b1d77ee2536537c85ba64064e92c0318","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"Merge branch 'sync-audio-upstream'","distinct":true,"url":"https://api.github.com/repos/littleguy77/mupen64plus-ae/commits/762b18e2b1d77ee2536537c85ba64064e92c0318"}]},"public":true,"created_at":"2015-01-01T15:02:46Z"}
,{"id":"2489652354","type":"IssuesEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3/comments","events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/3/events","html_url":"https://github.com/deeperx/dojo_rules/issues/3","id":53221294,"number":3,"title":"Contribute to the Kill List","user":{"login":"codeschool-kiddo","id":7882662,"avatar_url":"https://avatars.githubusercontent.com/u/7882662?v=3","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","html_url":"https://github.com/codeschool-kiddo","followers_url":"https://api.github.com/users/codeschool-kiddo/followers","following_url":"https://api.github.com/users/codeschool-kiddo/following{/other_user}","gists_url":"https://api.github.com/users/codeschool-kiddo/gists{/gist_id}","starred_url":"https://api.github.com/users/codeschool-kiddo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codeschool-kiddo/subscriptions","organizations_url":"https://api.github.com/users/codeschool-kiddo/orgs","repos_url":"https://api.github.com/users/codeschool-kiddo/repos","events_url":"https://api.github.com/users/codeschool-kiddo/events{/privacy}","received_events_url":"https://api.github.com/users/codeschool-kiddo/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/deeperx/dojo_rules/labels/mastering-github","name":"mastering-github","color":"ededed"}],"state":"closed","locked":false,"assignee":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-01-01T14:58:17Z","updated_at":"2015-01-01T15:02:47Z","closed_at":"2015-01-01T15:02:47Z","body":"To add a bit of a personal touch, add a programmer grievance of your own to the \"kill_list.md\" file."}},"public":true,"created_at":"2015-01-01T15:02:47Z"}
,{"id":"2489652356","type":"DeleteEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"ref":"check-adapter-supported","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489652357","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23067055,"name":"cloudify-cosmo/cloudify-diamond-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin"},"payload":{"push_id":536864561,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"bc0301298f32ca7d7592b7b6d25db47075012d01","before":"6c4c5434b1ca104b042f714f5c0164cfdeee5382","commits":[{"sha":"bc0301298f32ca7d7592b7b6d25db47075012d01","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin/commits/bc0301298f32ca7d7592b7b6d25db47075012d01"}]},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652358","type":"PushEvent","actor":{"id":1834049,"login":"isaacseymour","gravatar_id":"","url":"https://api.github.com/users/isaacseymour","avatar_url":"https://avatars.githubusercontent.com/u/1834049?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"push_id":536864562,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"e9b24cedeff29821abafb6bfa6c5833f5c2256da","before":"26f1f1fb98b689a9c72f62ab81fbd86b555e9650","commits":[{"sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Check adapter is supported","distinct":true,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"},{"sha":"e9b24cedeff29821abafb6bfa6c5833f5c2256da","author":{"email":"6229a3e4f86172a005a6eaab5029d1bd13acce1f@gocardless.com","name":"Isaac Seymour"},"message":"Merge pull request #5 from gocardless/check-adapter-supported\n\nCheck adapter is supported","distinct":true,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/e9b24cedeff29821abafb6bfa6c5833f5c2256da"}]},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489652359","type":"PushEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"push_id":536864563,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"23bdc051de257bd68cd32d03a694ff2340f1ef85","before":"2913bd18d5d8648ee4b1f38eaaa42075a606f853","commits":[{"sha":"c81ce0de1788f8a5fafdecc155654733be41587f","author":{"email":"c31de36f4d86ab747f3cf9fe5f7674a77c651866@pixenka.com","name":"Inanc Gumus"},"message":"add: programmers to kill list fixes #3","distinct":false,"url":"https://api.github.com/repos/deeperx/dojo_rules/commits/c81ce0de1788f8a5fafdecc155654733be41587f"},{"sha":"23bdc051de257bd68cd32d03a694ff2340f1ef85","author":{"email":"ac12fe72600cb004ae32ce344ab74a9d66bc906b@users.noreply.github.com","name":"deeperx"},"message":"Merge pull request #4 from deeperx/kill_list\n\nadd: programmers to kill list fixes #3","distinct":true,"url":"https://api.github.com/repos/deeperx/dojo_rules/commits/23bdc051de257bd68cd32d03a694ff2340f1ef85"}]},"public":true,"created_at":"2015-01-01T15:02:47Z"}
,{"id":"2489652360","type":"PushEvent","actor":{"id":10096301,"login":"oscar124","gravatar_id":"","url":"https://api.github.com/users/oscar124","avatar_url":"https://avatars.githubusercontent.com/u/10096301?"},"repo":{"id":27740061,"name":"PortalsForDevoloping/Zelda-Clone","url":"https://api.github.com/repos/PortalsForDevoloping/Zelda-Clone"},"payload":{"push_id":536864564,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6c099e675b5dc1ad7b197ab818c27639ad52d2c2","before":"b8eddd08bf1b6bc1874fda79bd071976a1f740d5","commits":[{"sha":"2abfc405b60c73e550d5d00137696f65a6db6bf0","author":{"email":"f18980333e1c6ace079fb87f81c7ed3ceb55b7f8@gmail.com","name":"oscar124"},"message":"-","distinct":true,"url":"https://api.github.com/repos/PortalsForDevoloping/Zelda-Clone/commits/2abfc405b60c73e550d5d00137696f65a6db6bf0"},{"sha":"6c099e675b5dc1ad7b197ab818c27639ad52d2c2","author":{"email":"f18980333e1c6ace079fb87f81c7ed3ceb55b7f8@gmail.com","name":"oscar124"},"message":"Merge branch 'master' of https://github.com/PortalsForDevoloping/Zelda-Clone","distinct":true,"url":"https://api.github.com/repos/PortalsForDevoloping/Zelda-Clone/commits/6c099e675b5dc1ad7b197ab818c27639ad52d2c2"}]},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":10122624,"login":"PortalsForDevoloping","gravatar_id":"","url":"https://api.github.com/orgs/PortalsForDevoloping","avatar_url":"https://avatars.githubusercontent.com/u/10122624?"}}
,{"id":"2489652363","type":"CreateEvent","actor":{"id":343795,"login":"Depicus","gravatar_id":"","url":"https://api.github.com/users/Depicus","avatar_url":"https://avatars.githubusercontent.com/u/343795?"},"repo":{"id":28688644,"name":"Depicus/ghost-gumby-theme","url":"https://api.github.com/repos/Depicus/ghost-gumby-theme"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A theme for Ghost based on Gumby CSS Framework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:47Z"}
,{"id":"2489652362","type":"PullRequestReviewCommentEvent","actor":{"id":576796,"login":"chrismccord","gravatar_id":"","url":"https://api.github.com/users/chrismccord","avatar_url":"https://avatars.githubusercontent.com/u/576796?"},"repo":{"id":16072585,"name":"phoenixframework/phoenix","url":"https://api.github.com/repos/phoenixframework/phoenix"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/22400096","id":22400096,"diff_hunk":"@@ -704,4 +704,16 @@ defmodule Phoenix.Controller do\n   defp persist_flash(conn, value) do\n     put_private(conn, :phoenix_flash, value)\n   end\n+\n+  @doc \"\"\"\n+  Invokes the controller plug and calls its action\n+\n+  ## Examples\n+\n+      iex> Controller.call_action(conn, MyApp.MyController, :index)\n+\n+  \"\"\"\n+  def call_action(conn, controller, action) do","path":"lib/phoenix/controller.ex","position":13,"original_position":13,"commit_id":"a3c9681cff1e99e87149fc4069f050309fdbb433","original_commit_id":"a3c9681cff1e99e87149fc4069f050309fdbb433","user":{"login":"chrismccord","id":576796,"avatar_url":"https://avatars.githubusercontent.com/u/576796?v=3","gravatar_id":"","url":"https://api.github.com/users/chrismccord","html_url":"https://github.com/chrismccord","followers_url":"https://api.github.com/users/chrismccord/followers","following_url":"https://api.github.com/users/chrismccord/following{/other_user}","gists_url":"https://api.github.com/users/chrismccord/gists{/gist_id}","starred_url":"https://api.github.com/users/chrismccord/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrismccord/subscriptions","organizations_url":"https://api.github.com/users/chrismccord/orgs","repos_url":"https://api.github.com/users/chrismccord/repos","events_url":"https://api.github.com/users/chrismccord/events{/privacy}","received_events_url":"https://api.github.com/users/chrismccord/received_events","type":"User","site_admin":false},"body":"I agree. We just had a bit of duplication, but it's hardly any work to invoke ourselves, so I'll remove.","created_at":"2015-01-01T15:02:47Z","updated_at":"2015-01-01T15:02:47Z","html_url":"https://github.com/phoenixframework/phoenix/pull/570#discussion_r22400096","pull_request_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570","_links":{"self":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/22400096"},"html":{"href":"https://github.com/phoenixframework/phoenix/pull/570#discussion_r22400096"},"pull_request":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570"}}},"pull_request":{"url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570","id":26732191,"html_url":"https://github.com/phoenixframework/phoenix/pull/570","diff_url":"https://github.com/phoenixframework/phoenix/pull/570.diff","patch_url":"https://github.com/phoenixframework/phoenix/pull/570.patch","issue_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/570","number":570,"state":"open","locked":false,"title":"Refactor Channel Layer","user":{"login":"chrismccord","id":576796,"avatar_url":"https://avatars.githubusercontent.com/u/576796?v=3","gravatar_id":"","url":"https://api.github.com/users/chrismccord","html_url":"https://github.com/chrismccord","followers_url":"https://api.github.com/users/chrismccord/followers","following_url":"https://api.github.com/users/chrismccord/following{/other_user}","gists_url":"https://api.github.com/users/chrismccord/gists{/gist_id}","starred_url":"https://api.github.com/users/chrismccord/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrismccord/subscriptions","organizations_url":"https://api.github.com/users/chrismccord/orgs","repos_url":"https://api.github.com/users/chrismccord/repos","events_url":"https://api.github.com/users/chrismccord/events{/privacy}","received_events_url":"https://api.github.com/users/chrismccord/received_events","type":"User","site_admin":false},"body":"I believe I have addressed everything discussed in #478. @josevalim please take a thorough look once you have a chance because it ended up being less rework than I thought. The Publisher (PubSub) API remained exactly the same and is implemented per your description. Notable changes:\r\n\r\n1. `socket` API in the router. Socket endpoints are now configured via the `socket` macro and house the channel definitions. Channels can also now be scoped based on transport, i.e.:\r\n\r\n```elixir\r\n  defmodule MyApp.Router do\r\n    use Phoenix.Router\r\n\r\n    socket \"/ws\", MyApp do\r\n      channel \"topic1:*\",  MyChannel\r\n      channel \"baretopic\", MyChannel\r\n      channel \"wsonly:*\",  MyChannel, via: [Phoenix.Transports.WebSocket]\r\n      channel \"lponly:*\",  MyChannel, via: [Phoenix.Transports.LongPoller]\r\n    end\r\n    ...\r\n\r\n```\r\n\r\n2. The \"topic\" abstraction is now *only a string identifier*. We used to conflate the channel name and topic names. Now `channel \"foo:*\"` refers to the topic \"foo\" and any pattern following \"foo:\". By convention, we use \"topic:subtopic\", but the splat \"*\" does not require a colon.\r\n\r\n3. Likewise, in the channel callbacks, you now match on the topic directly:\r\n\r\n```elixir\r\n# router\r\nchannel \"rooms:*\", RoomChannel\r\n\r\n# channel\r\ndef join(\"rooms:lobby\", message, socket) do ...\r\ndef join(\"rooms:\" <> room_id, message, socket) do ...\r\n```\r\n\r\n4. All channel callbacks now accept `socket` as the last argument to more closely follow a GenServer API where the state is held in the last arg and the message is matched int he first.\r\n\r\n5. Transports now use two flavors of messages, `{:socket_reply, %Message{...}}` and `{:socket_broadcast, %Message{...})` to differentiate replies from broadcasts. This was required to support `outgoing` callbacks.\r\n\r\n6. `event` has been renamed to `incoming` and now channel callbacks can filter/intercept/modify broadcasts with an `outgoing` callback for per-socket customization, i.e.:\r\n\r\n```elixir\r\ndef incoming(\"new:msg\", %{\"from_id\" => from_id, \"body\" => body}, socket) do\r\n  # broadcast incoming new message to all subscribers\r\n  broadcast socket, \"new:msg\", %{body: body, from_id: from_id}\r\nend\r\n\r\n# each socket's outgoing callback will be triggered for per-socket\r\n# customization of broadcast. Sockets can also not reply to filter broadcasts\r\n# from being relayed.\r\ndef outgoing(\"new:msg\", msg, socket) do\r\n  user = socket.assigns[:user]\r\n\r\n  reply socket, \"new:msg\", Dict.merge(msg,\r\n    is_editable: can_edit?(user, msg.from_id),\r\n    is_friend: is_friend?(user, msg.from_id)\r\n  )\r\nend\r\n\r\n# by default just forward reply\r\ndef outgoing(event, msg, socket) do\r\n  reply socket, event, msg \r\nend\r\n```\r\n\r\n### Points of discussion for the 0.8.0 release:\r\n\r\n- Should incoming/outgoing be renamed to a more GenServer'esque API? i.e. `handle_incoming`, `handle_outgoing`? I prefer the current naming, but `handle_` could be more welcoming to newcomers who would find it more familiar to GenServer style.\r\n- Should we embed the `node()` my default in the message to allow per-node filtering? I opted not to since end-users can attach their `node()` themselves in the broadcasted message if they need per-node handling. Subscribers can pick up the message the compare their node().\r\n- Others?\r\n\r\n\r\n### Points of discussion for 0.9.0+:\r\n\r\nAs discussed on IRC, we need to tackle handling missed messages with a configurable backend. Today, the LongPoller requires a cookie session, and clustered nodes. The PubSub also requires clustering. We would like to move towards a configurable store with `last_seen_id` tracking of messages, for replaying messages between client drops, as well as a solution to non-clustered pubsub servers.\r\n\r\nLet me know how it looks! Thanks","created_at":"2014-12-31T18:50:27Z","updated_at":"2015-01-01T15:02:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/commits","review_comments_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/comments","review_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/{number}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/570/comments","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/a3c9681cff1e99e87149fc4069f050309fdbb433","head":{"label":"phoenixframework:cm-channels-next","ref":"cm-channels-next","sha":"a3c9681cff1e99e87149fc4069f050309fdbb433","user":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"repo":{"id":16072585,"name":"phoenix","full_name":"phoenixframework/phoenix","owner":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/phoenixframework/phoenix","description":"Elixir Web Framework","fork":false,"url":"https://api.github.com/repos/phoenixframework/phoenix","forks_url":"https://api.github.com/repos/phoenixframework/phoenix/forks","keys_url":"https://api.github.com/repos/phoenixframework/phoenix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/phoenixframework/phoenix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/phoenixframework/phoenix/teams","hooks_url":"https://api.github.com/repos/phoenixframework/phoenix/hooks","issue_events_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/events{/number}","events_url":"https://api.github.com/repos/phoenixframework/phoenix/events","assignees_url":"https://api.github.com/repos/phoenixframework/phoenix/assignees{/user}","branches_url":"https://api.github.com/repos/phoenixframework/phoenix/branches{/branch}","tags_url":"https://api.github.com/repos/phoenixframework/phoenix/tags","blobs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/phoenixframework/phoenix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/refs{/sha}","trees_url":"https://api.github.com/repos/phoenixframework/phoenix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/{sha}","languages_url":"https://api.github.com/repos/phoenixframework/phoenix/languages","stargazers_url":"https://api.github.com/repos/phoenixframework/phoenix/stargazers","contributors_url":"https://api.github.com/repos/phoenixframework/phoenix/contributors","subscribers_url":"https://api.github.com/repos/phoenixframework/phoenix/subscribers","subscription_url":"https://api.github.com/repos/phoenixframework/phoenix/subscription","commits_url":"https://api.github.com/repos/phoenixframework/phoenix/commits{/sha}","git_commits_url":"https://api.github.com/repos/phoenixframework/phoenix/git/commits{/sha}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/comments{/number}","issue_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/comments/{number}","contents_url":"https://api.github.com/repos/phoenixframework/phoenix/contents/{+path}","compare_url":"https://api.github.com/repos/phoenixframework/phoenix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/phoenixframework/phoenix/merges","archive_url":"https://api.github.com/repos/phoenixframework/phoenix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/phoenixframework/phoenix/downloads","issues_url":"https://api.github.com/repos/phoenixframework/phoenix/issues{/number}","pulls_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls{/number}","milestones_url":"https://api.github.com/repos/phoenixframework/phoenix/milestones{/number}","notifications_url":"https://api.github.com/repos/phoenixframework/phoenix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/phoenixframework/phoenix/labels{/name}","releases_url":"https://api.github.com/repos/phoenixframework/phoenix/releases{/id}","created_at":"2014-01-20T14:14:11Z","updated_at":"2015-01-01T04:17:53Z","pushed_at":"2014-12-31T18:59:11Z","git_url":"git://github.com/phoenixframework/phoenix.git","ssh_url":"git@github.com:phoenixframework/phoenix.git","clone_url":"https://github.com/phoenixframework/phoenix.git","svn_url":"https://github.com/phoenixframework/phoenix","homepage":"","size":5577,"stargazers_count":1788,"watchers_count":1788,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":159,"mirror_url":null,"open_issues_count":19,"forks":159,"open_issues":19,"watchers":1788,"default_branch":"master"}},"base":{"label":"phoenixframework:master","ref":"master","sha":"191909d97511ab99f9bbcc776cba9988c8b07596","user":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"repo":{"id":16072585,"name":"phoenix","full_name":"phoenixframework/phoenix","owner":{"login":"phoenixframework","id":6510388,"avatar_url":"https://avatars.githubusercontent.com/u/6510388?v=3","gravatar_id":"","url":"https://api.github.com/users/phoenixframework","html_url":"https://github.com/phoenixframework","followers_url":"https://api.github.com/users/phoenixframework/followers","following_url":"https://api.github.com/users/phoenixframework/following{/other_user}","gists_url":"https://api.github.com/users/phoenixframework/gists{/gist_id}","starred_url":"https://api.github.com/users/phoenixframework/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/phoenixframework/subscriptions","organizations_url":"https://api.github.com/users/phoenixframework/orgs","repos_url":"https://api.github.com/users/phoenixframework/repos","events_url":"https://api.github.com/users/phoenixframework/events{/privacy}","received_events_url":"https://api.github.com/users/phoenixframework/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/phoenixframework/phoenix","description":"Elixir Web Framework","fork":false,"url":"https://api.github.com/repos/phoenixframework/phoenix","forks_url":"https://api.github.com/repos/phoenixframework/phoenix/forks","keys_url":"https://api.github.com/repos/phoenixframework/phoenix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/phoenixframework/phoenix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/phoenixframework/phoenix/teams","hooks_url":"https://api.github.com/repos/phoenixframework/phoenix/hooks","issue_events_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/events{/number}","events_url":"https://api.github.com/repos/phoenixframework/phoenix/events","assignees_url":"https://api.github.com/repos/phoenixframework/phoenix/assignees{/user}","branches_url":"https://api.github.com/repos/phoenixframework/phoenix/branches{/branch}","tags_url":"https://api.github.com/repos/phoenixframework/phoenix/tags","blobs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/phoenixframework/phoenix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/phoenixframework/phoenix/git/refs{/sha}","trees_url":"https://api.github.com/repos/phoenixframework/phoenix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/phoenixframework/phoenix/statuses/{sha}","languages_url":"https://api.github.com/repos/phoenixframework/phoenix/languages","stargazers_url":"https://api.github.com/repos/phoenixframework/phoenix/stargazers","contributors_url":"https://api.github.com/repos/phoenixframework/phoenix/contributors","subscribers_url":"https://api.github.com/repos/phoenixframework/phoenix/subscribers","subscription_url":"https://api.github.com/repos/phoenixframework/phoenix/subscription","commits_url":"https://api.github.com/repos/phoenixframework/phoenix/commits{/sha}","git_commits_url":"https://api.github.com/repos/phoenixframework/phoenix/git/commits{/sha}","comments_url":"https://api.github.com/repos/phoenixframework/phoenix/comments{/number}","issue_comment_url":"https://api.github.com/repos/phoenixframework/phoenix/issues/comments/{number}","contents_url":"https://api.github.com/repos/phoenixframework/phoenix/contents/{+path}","compare_url":"https://api.github.com/repos/phoenixframework/phoenix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/phoenixframework/phoenix/merges","archive_url":"https://api.github.com/repos/phoenixframework/phoenix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/phoenixframework/phoenix/downloads","issues_url":"https://api.github.com/repos/phoenixframework/phoenix/issues{/number}","pulls_url":"https://api.github.com/repos/phoenixframework/phoenix/pulls{/number}","milestones_url":"https://api.github.com/repos/phoenixframework/phoenix/milestones{/number}","notifications_url":"https://api.github.com/repos/phoenixframework/phoenix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/phoenixframework/phoenix/labels{/name}","releases_url":"https://api.github.com/repos/phoenixframework/phoenix/releases{/id}","created_at":"2014-01-20T14:14:11Z","updated_at":"2015-01-01T04:17:53Z","pushed_at":"2014-12-31T18:59:11Z","git_url":"git://github.com/phoenixframework/phoenix.git","ssh_url":"git@github.com:phoenixframework/phoenix.git","clone_url":"https://github.com/phoenixframework/phoenix.git","svn_url":"https://github.com/phoenixframework/phoenix","homepage":"","size":5577,"stargazers_count":1788,"watchers_count":1788,"language":"Elixir","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":159,"mirror_url":null,"open_issues_count":19,"forks":159,"open_issues":19,"watchers":1788,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570"},"html":{"href":"https://github.com/phoenixframework/phoenix/pull/570"},"issue":{"href":"https://api.github.com/repos/phoenixframework/phoenix/issues/570"},"comments":{"href":"https://api.github.com/repos/phoenixframework/phoenix/issues/570/comments"},"review_comments":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/comments"},"review_comment":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/phoenixframework/phoenix/pulls/570/commits"},"statuses":{"href":"https://api.github.com/repos/phoenixframework/phoenix/statuses/a3c9681cff1e99e87149fc4069f050309fdbb433"}}}},"public":true,"created_at":"2015-01-01T15:02:47Z","org":{"id":6510388,"login":"phoenixframework","gravatar_id":"","url":"https://api.github.com/orgs/phoenixframework","avatar_url":"https://avatars.githubusercontent.com/u/6510388?"}}
,{"id":"2489652364","type":"IssueCommentEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/events","html_url":"https://github.com/andreasgal/j2me.js/issues/791","id":53074451,"number":791,"title":"run JSR-075 TCK tests in automation","user":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/andreasgal/j2me.js/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T21:46:56Z","updated_at":"2015-01-01T15:02:47Z","closed_at":"2015-01-01T15:02:47Z","body":"#790 adds tests from IBM's JSR-075 TCK, but it doesn't run them in automation. We should run them in automation, fixing the test failures (or marking them \"todo\") in the process.\r\n"},"comment":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/comments/68488540","html_url":"https://github.com/andreasgal/j2me.js/issues/791#issuecomment-68488540","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791","id":68488540,"user":{"login":"marco-c","id":1616846,"avatar_url":"https://avatars.githubusercontent.com/u/1616846?v=3","gravatar_id":"","url":"https://api.github.com/users/marco-c","html_url":"https://github.com/marco-c","followers_url":"https://api.github.com/users/marco-c/followers","following_url":"https://api.github.com/users/marco-c/following{/other_user}","gists_url":"https://api.github.com/users/marco-c/gists{/gist_id}","starred_url":"https://api.github.com/users/marco-c/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marco-c/subscriptions","organizations_url":"https://api.github.com/users/marco-c/orgs","repos_url":"https://api.github.com/users/marco-c/repos","events_url":"https://api.github.com/users/marco-c/events{/privacy}","received_events_url":"https://api.github.com/users/marco-c/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:47Z","updated_at":"2015-01-01T15:02:47Z","body":"Fixed by #807."}},"public":true,"created_at":"2015-01-01T15:02:47Z"}
,{"id":"2489652365","type":"IssuesEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/791/events","html_url":"https://github.com/andreasgal/j2me.js/issues/791","id":53074451,"number":791,"title":"run JSR-075 TCK tests in automation","user":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/andreasgal/j2me.js/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T21:46:56Z","updated_at":"2015-01-01T15:02:47Z","closed_at":"2015-01-01T15:02:47Z","body":"#790 adds tests from IBM's JSR-075 TCK, but it doesn't run them in automation. We should run them in automation, fixing the test failures (or marking them \"todo\") in the process.\r\n"}},"public":true,"created_at":"2015-01-01T15:02:47Z"}
,{"id":"2489652367","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536864565,"size":15,"distinct_size":1,"ref":"refs/heads/AWS","head":"58ed9bded7f5b156cd85abd0ccf9644444fc4447","before":"5fb2f5dd4099fffb23f1ae531bbe38e13ecbb979","commits":[{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"},{"sha":"58ed9bded7f5b156cd85abd0ccf9644444fc4447","author":{"email":"ddfd60baa0a2e8344a754280059462322796b4da@gmail.com","name":"Alam Arias"},"message":"Merge branch 'master' into AWS","distinct":true,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/58ed9bded7f5b156cd85abd0ccf9644444fc4447"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"}
,{"id":"2489652369","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536864566,"size":14,"distinct_size":0,"ref":"refs/heads/master","head":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","before":"06d575cbc3f93f801eee3b01a34f6f9eb5ea47df","commits":[{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"}
,{"id":"2489652370","type":"PushEvent","actor":{"id":188068,"login":"alama","gravatar_id":"","url":"https://api.github.com/users/alama","avatar_url":"https://avatars.githubusercontent.com/u/188068?"},"repo":{"id":22131621,"name":"alama/PSO2Proxy","url":"https://api.github.com/repos/alama/PSO2Proxy"},"payload":{"push_id":536864567,"size":14,"distinct_size":0,"ref":"refs/heads/wip-EQ_Notice","head":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","before":"06d575cbc3f93f801eee3b01a34f6f9eb5ea47df","commits":[{"sha":"2f217f18bbac3845fe8ce81f664313ed6f382007","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"Update GlobalChat.py\n\nhttps://github.com/cyberkitsune/PSO2Proxy/issues/126","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/2f217f18bbac3845fe8ce81f664313ed6f382007"},{"sha":"294403ac3ff29cdcb43efc08d3af2827ba054afa","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"oops added too many extra lines","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/294403ac3ff29cdcb43efc08d3af2827ba054afa"},{"sha":"5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2","author":{"email":"8cc50ce46513b6ddee59a7e3b0e5fa247ab8c11d@users.noreply.github.com","name":"acffordyce973"},"message":"Merge pull request #128 from alama/master\n\nlog is needed here, oops","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/5fd9ab14fcd9ea9b245753f1a2af99f77f5b52d2"},{"sha":"abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"more graceful way to slice\n\n[0] doesn't slice to well unlike [:1]","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/abc2c33d6793e5be1cf1a0e4efa5ae24d6b5f999"},{"sha":"03309632c32ae148a519c3dc82a28cc4ba0c8fed","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fix based on rfc standards for irc","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/03309632c32ae148a519c3dc82a28cc4ba0c8fed"},{"sha":"69a4572c581fbaa193561d08d8e7aa3c1de7acb4","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"moved exception to when it actually tries to join \n\ndue to multiple prefixes its simply better for it to not join at all if it doesn't have one of the 4 prefixes specified by rfc 2811","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/69a4572c581fbaa193561d08d8e7aa3c1de7acb4"},{"sha":"890cb21bf7b36447fb85f1144bc44c44603e9deb","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"fixed some indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/890cb21bf7b36447fb85f1144bc44c44603e9deb"},{"sha":"c434167e706a211f233aa7cd6b85e8ce43b84943","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/c434167e706a211f233aa7cd6b85e8ce43b84943"},{"sha":"d446161f3c00841c369c29857e1fe1e176a40012","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"indentation last try","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/d446161f3c00841c369c29857e1fe1e176a40012"},{"sha":"1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"this is not javascript LOL\n\nstupid me used `.index()` instead of `in`","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1913cd9de6adb3ddcb52c7fe0a68cfea17020bb7"},{"sha":"1d8811add1ba30c80133b0961095e7b07fba93da","author":{"email":"10feb8c78a56b167113ac52ad5eb21b429d1e92b@gmail.com","name":"kamijoutouma"},"message":"english grammar issue","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/1d8811add1ba30c80133b0961095e7b07fba93da"},{"sha":"ad81be93b3618c69a8bff241b345be313530b8b8","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Debian Wheezy has no sudo","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/ad81be93b3618c69a8bff241b345be313530b8b8"},{"sha":"35dd3d56c422ef82b0e7b3be4df338d03a6b2a65","author":{"email":"49b8d532592346d99aaea34660d99198118fa6db@users.noreply.github.com","name":"AIDA"},"message":"Moved all \"commandlines\" idents to the left","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/35dd3d56c422ef82b0e7b3be4df338d03a6b2a65"},{"sha":"0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d","author":{"email":"8e9e6775366d92d16fa005715567f43359273521@gmail.com","name":"Sean McClenaghan"},"message":"Merge pull request #129 from kamijoutouma/patch-1\n\nUpdate GlobalChat.py","distinct":false,"url":"https://api.github.com/repos/alama/PSO2Proxy/commits/0e6c5d4a2b3f61fc20f577a9cfee8aaffc89ec3d"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"}
,{"id":"2489652371","type":"CreateEvent","actor":{"id":7215524,"login":"daririos","gravatar_id":"","url":"https://api.github.com/users/daririos","avatar_url":"https://avatars.githubusercontent.com/u/7215524?"},"repo":{"id":28688645,"name":"daririos/UdacitySoftawareDebugging","url":"https://api.github.com/repos/daririos/UdacitySoftawareDebugging"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:48Z"}
,{"id":"2489652373","type":"PushEvent","actor":{"id":9937713,"login":"SergeySalnikov","gravatar_id":"","url":"https://api.github.com/users/SergeySalnikov","avatar_url":"https://avatars.githubusercontent.com/u/9937713?"},"repo":{"id":28114153,"name":"SergeySalnikov/DockDemo","url":"https://api.github.com/repos/SergeySalnikov/DockDemo"},"payload":{"push_id":536864568,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"3e81762ad65689af859ab7c5c97cce08e76ce8f9","before":"320ebeaac0ddf816e3add086ed9c6bc5015e2127","commits":[{"sha":"c3f5373ced95e8030db8c256bb0390803d58abcc","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Theme loading from ini. Theme switching from menu.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/c3f5373ced95e8030db8c256bb0390803d58abcc"},{"sha":"a1eadb85f788e2d958f066e2822917625df363dc","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Added substitution in Theme manager.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/a1eadb85f788e2d958f066e2822917625df363dc"},{"sha":"c44ee444d12e3d3887994eaf25c95c3af3d32182","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Added Menu theme.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/c44ee444d12e3d3887994eaf25c95c3af3d32182"},{"sha":"3e81762ad65689af859ab7c5c97cce08e76ce8f9","author":{"email":"6ce061b9418456e75caebf81fc16cf8970cc6901@yandex.ru","name":"salnikov"},"message":"Theme refactoring.","distinct":true,"url":"https://api.github.com/repos/SergeySalnikov/DockDemo/commits/3e81762ad65689af859ab7c5c97cce08e76ce8f9"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"}
,{"id":"2489652375","type":"PushEvent","actor":{"id":8281538,"login":"projectAlice","gravatar_id":"","url":"https://api.github.com/users/projectAlice","avatar_url":"https://avatars.githubusercontent.com/u/8281538?"},"repo":{"id":28369560,"name":"projectAlice/SKHUer","url":"https://api.github.com/repos/projectAlice/SKHUer"},"payload":{"push_id":536864570,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"dec3c537f6ee2c156384f30301d533caba93343a","before":"e4b99fa270471cf156703f1f2f57f37bb482eb25","commits":[{"sha":"5b5431f6f2f935c10c2d4969b9b25227d486da2d","author":{"email":"b8e73acd888842c95d76878abf7d30ac1ce269f5@gmail.com","name":"rohmme"},"message":"2014. 12. 31 15:59","distinct":true,"url":"https://api.github.com/repos/projectAlice/SKHUer/commits/5b5431f6f2f935c10c2d4969b9b25227d486da2d"},{"sha":"dec3c537f6ee2c156384f30301d533caba93343a","author":{"email":"b8e73acd888842c95d76878abf7d30ac1ce269f5@gmail.com","name":"rohmme"},"message":"2015. 01. 01 10:59 last in junjoo","distinct":true,"url":"https://api.github.com/repos/projectAlice/SKHUer/commits/dec3c537f6ee2c156384f30301d533caba93343a"}]},"public":true,"created_at":"2015-01-01T15:02:48Z"}
,{"id":"2489652376","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20876193,"name":"cloudify-cosmo/cloudify-fabric-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin"},"payload":{"push_id":536864571,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"b28cafe4b116d40e07497119463ba1c2d5f23ff9","before":"b0d1652761afc487d50aeff9d604406c069a7313","commits":[{"sha":"b28cafe4b116d40e07497119463ba1c2d5f23ff9","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin/commits/b28cafe4b116d40e07497119463ba1c2d5f23ff9"}]},"public":true,"created_at":"2015-01-01T15:02:48Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652381","type":"ForkEvent","actor":{"id":10350735,"login":"wditch","gravatar_id":"","url":"https://api.github.com/users/wditch","avatar_url":"https://avatars.githubusercontent.com/u/10350735?"},"repo":{"id":1300192,"name":"octocat/Spoon-Knife","url":"https://api.github.com/repos/octocat/Spoon-Knife"},"payload":{"forkee":{"id":28688646,"name":"Spoon-Knife","full_name":"wditch/Spoon-Knife","owner":{"login":"wditch","id":10350735,"avatar_url":"https://avatars.githubusercontent.com/u/10350735?v=3","gravatar_id":"","url":"https://api.github.com/users/wditch","html_url":"https://github.com/wditch","followers_url":"https://api.github.com/users/wditch/followers","following_url":"https://api.github.com/users/wditch/following{/other_user}","gists_url":"https://api.github.com/users/wditch/gists{/gist_id}","starred_url":"https://api.github.com/users/wditch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wditch/subscriptions","organizations_url":"https://api.github.com/users/wditch/orgs","repos_url":"https://api.github.com/users/wditch/repos","events_url":"https://api.github.com/users/wditch/events{/privacy}","received_events_url":"https://api.github.com/users/wditch/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wditch/Spoon-Knife","description":"This repo is for demonstration purposes only.","fork":true,"url":"https://api.github.com/repos/wditch/Spoon-Knife","forks_url":"https://api.github.com/repos/wditch/Spoon-Knife/forks","keys_url":"https://api.github.com/repos/wditch/Spoon-Knife/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wditch/Spoon-Knife/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wditch/Spoon-Knife/teams","hooks_url":"https://api.github.com/repos/wditch/Spoon-Knife/hooks","issue_events_url":"https://api.github.com/repos/wditch/Spoon-Knife/issues/events{/number}","events_url":"https://api.github.com/repos/wditch/Spoon-Knife/events","assignees_url":"https://api.github.com/repos/wditch/Spoon-Knife/assignees{/user}","branches_url":"https://api.github.com/repos/wditch/Spoon-Knife/branches{/branch}","tags_url":"https://api.github.com/repos/wditch/Spoon-Knife/tags","blobs_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/refs{/sha}","trees_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wditch/Spoon-Knife/statuses/{sha}","languages_url":"https://api.github.com/repos/wditch/Spoon-Knife/languages","stargazers_url":"https://api.github.com/repos/wditch/Spoon-Knife/stargazers","contributors_url":"https://api.github.com/repos/wditch/Spoon-Knife/contributors","subscribers_url":"https://api.github.com/repos/wditch/Spoon-Knife/subscribers","subscription_url":"https://api.github.com/repos/wditch/Spoon-Knife/subscription","commits_url":"https://api.github.com/repos/wditch/Spoon-Knife/commits{/sha}","git_commits_url":"https://api.github.com/repos/wditch/Spoon-Knife/git/commits{/sha}","comments_url":"https://api.github.com/repos/wditch/Spoon-Knife/comments{/number}","issue_comment_url":"https://api.github.com/repos/wditch/Spoon-Knife/issues/comments/{number}","contents_url":"https://api.github.com/repos/wditch/Spoon-Knife/contents/{+path}","compare_url":"https://api.github.com/repos/wditch/Spoon-Knife/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wditch/Spoon-Knife/merges","archive_url":"https://api.github.com/repos/wditch/Spoon-Knife/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wditch/Spoon-Knife/downloads","issues_url":"https://api.github.com/repos/wditch/Spoon-Knife/issues{/number}","pulls_url":"https://api.github.com/repos/wditch/Spoon-Knife/pulls{/number}","milestones_url":"https://api.github.com/repos/wditch/Spoon-Knife/milestones{/number}","notifications_url":"https://api.github.com/repos/wditch/Spoon-Knife/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wditch/Spoon-Knife/labels{/name}","releases_url":"https://api.github.com/repos/wditch/Spoon-Knife/releases{/id}","created_at":"2015-01-01T15:02:48Z","updated_at":"2015-01-01T09:32:08Z","pushed_at":"2014-09-03T21:22:02Z","git_url":"git://github.com/wditch/Spoon-Knife.git","ssh_url":"git@github.com:wditch/Spoon-Knife.git","clone_url":"https://github.com/wditch/Spoon-Knife.git","svn_url":"https://github.com/wditch/Spoon-Knife","homepage":"","size":18839,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:49Z"}
,{"id":"2489652383","type":"IssuesEvent","actor":{"id":8754908,"login":"sethjohnson1","gravatar_id":"","url":"https://api.github.com/users/sethjohnson1","avatar_url":"https://avatars.githubusercontent.com/u/8754908?"},"repo":{"id":28110389,"name":"sethjohnson1/qr-pub","url":"https://api.github.com/repos/sethjohnson1/qr-pub"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45","labels_url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45/labels{/name}","comments_url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45/comments","events_url":"https://api.github.com/repos/sethjohnson1/qr-pub/issues/45/events","html_url":"https://github.com/sethjohnson1/qr-pub/issues/45","id":53157218,"number":45,"title":"Fix comment div refresh","user":{"login":"sethjohnson1","id":8754908,"avatar_url":"https://avatars.githubusercontent.com/u/8754908?v=3","gravatar_id":"","url":"https://api.github.com/users/sethjohnson1","html_url":"https://github.com/sethjohnson1","followers_url":"https://api.github.com/users/sethjohnson1/followers","following_url":"https://api.github.com/users/sethjohnson1/following{/other_user}","gists_url":"https://api.github.com/users/sethjohnson1/gists{/gist_id}","starred_url":"https://api.github.com/users/sethjohnson1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sethjohnson1/subscriptions","organizations_url":"https://api.github.com/users/sethjohnson1/orgs","repos_url":"https://api.github.com/users/sethjohnson1/repos","events_url":"https://api.github.com/users/sethjohnson1/events{/privacy}","received_events_url":"https://api.github.com/users/sethjohnson1/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/sethjohnson1/qr-pub/labels/question","name":"question","color":"cc317c"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-12-30T23:48:42Z","updated_at":"2015-01-01T15:02:49Z","closed_at":"2015-01-01T15:02:49Z","body":"I think it might be better if it only refreshes the comment block you're in. Not sure - might be really involved with the Controller/Component setup"}},"public":true,"created_at":"2015-01-01T15:02:49Z"}
,{"id":"2489652387","type":"WatchEvent","actor":{"id":30348,"login":"coolmenu","gravatar_id":"","url":"https://api.github.com/users/coolmenu","avatar_url":"https://avatars.githubusercontent.com/u/30348?"},"repo":{"id":3199586,"name":"tpetricek/FSharp.Formatting","url":"https://api.github.com/repos/tpetricek/FSharp.Formatting"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:49Z"}
,{"id":"2489652390","type":"PushEvent","actor":{"id":1264698,"login":"sorra","gravatar_id":"","url":"https://api.github.com/users/sorra","avatar_url":"https://avatars.githubusercontent.com/u/1264698?"},"repo":{"id":28679728,"name":"sorra/keylity","url":"https://api.github.com/repos/sorra/keylity"},"payload":{"push_id":536864577,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e33b7a6116f6900583ecf82f1b134b90352ea8a0","before":"17c092120629f3be7e4ad92463be60b22df9d156","commits":[{"sha":"e33b7a6116f6900583ecf82f1b134b90352ea8a0","author":{"email":"2a0b702de5ce7c68fd37dd97e6ce0521dc3d2a76@163.com","name":"Dongqing Hu"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/sorra/keylity/commits/e33b7a6116f6900583ecf82f1b134b90352ea8a0"}]},"public":true,"created_at":"2015-01-01T15:02:52Z"}
,{"id":"2489652391","type":"PushEvent","actor":{"id":6851525,"login":"Ardavel","gravatar_id":"","url":"https://api.github.com/users/Ardavel","avatar_url":"https://avatars.githubusercontent.com/u/6851525?"},"repo":{"id":27717733,"name":"Ardavel/zsbd","url":"https://api.github.com/repos/Ardavel/zsbd"},"payload":{"push_id":536864579,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3e19daac173c2e4013cdcd26b8159f0ec2cdd03d","before":"5dc242ce1cc75763ea4630d45539e325dab829be","commits":[{"sha":"7f682f3b5109c8f0ddf380dbda7917a0fd5e6564","author":{"email":"fc5b9e0f3ab53859717742ff562345f1475e052f@edu.p.lodz.pl","name":"Wojciech Szałapski"},"message":"Dodana procedura do zamawiania książek oraz funkcja do tworzenia podsumowania zamówienia.","distinct":true,"url":"https://api.github.com/repos/Ardavel/zsbd/commits/7f682f3b5109c8f0ddf380dbda7917a0fd5e6564"},{"sha":"3e19daac173c2e4013cdcd26b8159f0ec2cdd03d","author":{"email":"fc5b9e0f3ab53859717742ff562345f1475e052f@edu.p.lodz.pl","name":"Wojciech Szałapski"},"message":"Dodany wyzwalacz zmieniający status zamówienia po jego opłaceniu.","distinct":true,"url":"https://api.github.com/repos/Ardavel/zsbd/commits/3e19daac173c2e4013cdcd26b8159f0ec2cdd03d"}]},"public":true,"created_at":"2015-01-01T15:02:52Z"}
,{"id":"2489652396","type":"CreateEvent","actor":{"id":8603621,"login":"pmbhumkar","gravatar_id":"","url":"https://api.github.com/users/pmbhumkar","avatar_url":"https://avatars.githubusercontent.com/u/8603621?"},"repo":{"id":28688570,"name":"pmbhumkar/mangoopatch","url":"https://api.github.com/repos/pmbhumkar/mangoopatch"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"chmod patch for mangoo","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:52Z"}
,{"id":"2489652401","type":"PushEvent","actor":{"id":2266445,"login":"littleguy77","gravatar_id":"","url":"https://api.github.com/users/littleguy77","avatar_url":"https://avatars.githubusercontent.com/u/2266445?"},"repo":{"id":4237289,"name":"mupen64plus-ae/mupen64plus-ae","url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae"},"payload":{"push_id":536864584,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"762b18e2b1d77ee2536537c85ba64064e92c0318","before":"80438bcba13e3e1a78999208d01b58a729703949","commits":[{"sha":"42b1e73ea5c312210947479e5661c5a6ced0990e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 863fb3c.\n\nhttps://github.com/mupen64plus-ae/mupen64plus-audio-sdl/commit/863fb3c\n\n* 863fb3c Remove Android Edition customizations.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/42b1e73ea5c312210947479e5661c5a6ced0990e"},{"sha":"5b3d2acde758ba5be899cd20cf35a8137a05bc19","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"tools: Switch to vanilla upstream for audio-sdl.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/5b3d2acde758ba5be899cd20cf35a8137a05bc19"},{"sha":"577cabb59fd7623639b4d599c17fb42926f7972e","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"audio-sdl: Update to commit 8cf8f17.\n\nhttps://github.com/mupen64plus/mupen64plus-audio-sdl/commit/8cf8f17","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/577cabb59fd7623639b4d599c17fb42926f7972e"},{"sha":"6fc1a2651c32b0dffd69258a74ac30390f9615ce","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"build: Remove obsolete build flags from audio-sdl.","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/6fc1a2651c32b0dffd69258a74ac30390f9615ce"},{"sha":"762b18e2b1d77ee2536537c85ba64064e92c0318","author":{"email":"3284d2bbee488692d686f402dfa36007d3fba8b4@live.com","name":"littleguy77"},"message":"Merge branch 'sync-audio-upstream'","distinct":true,"url":"https://api.github.com/repos/mupen64plus-ae/mupen64plus-ae/commits/762b18e2b1d77ee2536537c85ba64064e92c0318"}]},"public":true,"created_at":"2015-01-01T15:02:53Z","org":{"id":6227843,"login":"mupen64plus-ae","gravatar_id":"","url":"https://api.github.com/orgs/mupen64plus-ae","avatar_url":"https://avatars.githubusercontent.com/u/6227843?"}}
,{"id":"2489652405","type":"PushEvent","actor":{"id":3934445,"login":"white-cap","gravatar_id":"","url":"https://api.github.com/users/white-cap","avatar_url":"https://avatars.githubusercontent.com/u/3934445?"},"repo":{"id":26266172,"name":"white-cap/helmasbackoff2","url":"https://api.github.com/repos/white-cap/helmasbackoff2"},"payload":{"push_id":536864587,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5e8da7543d75432e8855271047af82e012e7eab7","before":"9356edee5ad57e91b0adf094ec6d35e4d786bb01","commits":[{"sha":"5e8da7543d75432e8855271047af82e012e7eab7","author":{"email":"5a73a16d689066f8e6a908b6c4584e86df912a20@gmail.com","name":"MANKARI Yassir"},"message":"commit","distinct":true,"url":"https://api.github.com/repos/white-cap/helmasbackoff2/commits/5e8da7543d75432e8855271047af82e012e7eab7"}]},"public":true,"created_at":"2015-01-01T15:02:53Z"}
,{"id":"2489652409","type":"WatchEvent","actor":{"id":5396297,"login":"defshine","gravatar_id":"","url":"https://api.github.com/users/defshine","avatar_url":"https://avatars.githubusercontent.com/u/5396297?"},"repo":{"id":6296790,"name":"spring-projects/spring-boot","url":"https://api.github.com/repos/spring-projects/spring-boot"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:54Z","org":{"id":317776,"login":"spring-projects","gravatar_id":"","url":"https://api.github.com/orgs/spring-projects","avatar_url":"https://avatars.githubusercontent.com/u/317776?"}}
,{"id":"2489652415","type":"CreateEvent","actor":{"id":10146966,"login":"gvaibhav21","gravatar_id":"","url":"https://api.github.com/users/gvaibhav21","avatar_url":"https://avatars.githubusercontent.com/u/10146966?"},"repo":{"id":28688649,"name":"gvaibhav21/Music-Collection-Manager","url":"https://api.github.com/repos/gvaibhav21/Music-Collection-Manager"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:57Z"}
,{"id":"2489652418","type":"IssueCommentEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28668553,"name":"Raulfin/PCaPP","url":"https://api.github.com/repos/Raulfin/PCaPP"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","labels_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments","events_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/events","html_url":"https://github.com/Raulfin/PCaPP/pull/1","id":53221356,"number":1,"title":"Armor.xml","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:01:06Z","updated_at":"2015-01-01T15:02:55Z","closed_at":"2015-01-01T15:02:55Z","pull_request":{"url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1","html_url":"https://github.com/Raulfin/PCaPP/pull/1","diff_url":"https://github.com/Raulfin/PCaPP/pull/1.diff","patch_url":"https://github.com/Raulfin/PCaPP/pull/1.patch"},"body":"I noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks."},"comment":{"url":"https://api.github.com/repos/Raulfin/PCaPP/issues/comments/68488542","html_url":"https://github.com/Raulfin/PCaPP/pull/1#issuecomment-68488542","issue_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","id":68488542,"user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:55Z","updated_at":"2015-01-01T15:02:55Z","body":"Added the 3 missing Dragon Priest masks from Dragonborn, reworked the other masks for balance."}},"public":true,"created_at":"2015-01-01T15:02:57Z"}
,{"id":"2489652421","type":"WatchEvent","actor":{"id":112799,"login":"wildtype","gravatar_id":"","url":"https://api.github.com/users/wildtype","avatar_url":"https://avatars.githubusercontent.com/u/112799?"},"repo":{"id":3591964,"name":"snowplow/snowplow","url":"https://api.github.com/repos/snowplow/snowplow"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":1476001,"login":"snowplow","gravatar_id":"","url":"https://api.github.com/orgs/snowplow","avatar_url":"https://avatars.githubusercontent.com/u/1476001?"}}
,{"id":"2489652422","type":"WatchEvent","actor":{"id":4017086,"login":"MennStudio","gravatar_id":"","url":"https://api.github.com/users/MennStudio","avatar_url":"https://avatars.githubusercontent.com/u/4017086?"},"repo":{"id":11790396,"name":"Themekraft/_tk","url":"https://api.github.com/repos/Themekraft/_tk"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":663690,"login":"Themekraft","gravatar_id":"","url":"https://api.github.com/orgs/Themekraft","avatar_url":"https://avatars.githubusercontent.com/u/663690?"}}
,{"id":"2489652423","type":"PullRequestEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28668553,"name":"Raulfin/PCaPP","url":"https://api.github.com/repos/Raulfin/PCaPP"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1","id":26743778,"html_url":"https://github.com/Raulfin/PCaPP/pull/1","diff_url":"https://github.com/Raulfin/PCaPP/pull/1.diff","patch_url":"https://github.com/Raulfin/PCaPP/pull/1.patch","issue_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","number":1,"state":"closed","locked":false,"title":"Armor.xml","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"body":"I noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks.","created_at":"2015-01-01T15:01:06Z","updated_at":"2015-01-01T15:02:55Z","closed_at":"2015-01-01T15:02:55Z","merged_at":null,"merge_commit_sha":"4c5e46652ee9c081144d8da174f4b0f65de76ec2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits","review_comments_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments","review_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","head":{"label":"Derathir:patch-1","ref":"patch-1","sha":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"repo":{"id":28687886,"name":"PCaPP","full_name":"Derathir/PCaPP","owner":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Derathir/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":true,"url":"https://api.github.com/repos/Derathir/PCaPP","forks_url":"https://api.github.com/repos/Derathir/PCaPP/forks","keys_url":"https://api.github.com/repos/Derathir/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Derathir/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Derathir/PCaPP/teams","hooks_url":"https://api.github.com/repos/Derathir/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Derathir/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Derathir/PCaPP/events","assignees_url":"https://api.github.com/repos/Derathir/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Derathir/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Derathir/PCaPP/tags","blobs_url":"https://api.github.com/repos/Derathir/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Derathir/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Derathir/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Derathir/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Derathir/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Derathir/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Derathir/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Derathir/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Derathir/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Derathir/PCaPP/subscription","commits_url":"https://api.github.com/repos/Derathir/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Derathir/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Derathir/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Derathir/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Derathir/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Derathir/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Derathir/PCaPP/merges","archive_url":"https://api.github.com/repos/Derathir/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Derathir/PCaPP/downloads","issues_url":"https://api.github.com/repos/Derathir/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Derathir/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Derathir/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Derathir/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Derathir/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Derathir/PCaPP/releases{/id}","created_at":"2015-01-01T14:16:43Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T15:00:39Z","git_url":"git://github.com/Derathir/PCaPP.git","ssh_url":"git@github.com:Derathir/PCaPP.git","clone_url":"https://github.com/Derathir/PCaPP.git","svn_url":"https://github.com/Derathir/PCaPP","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Raulfin:master","ref":"master","sha":"d8832d838ed16e3e068fba91c423c3c424ca335b","user":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"repo":{"id":28668553,"name":"PCaPP","full_name":"Raulfin/PCaPP","owner":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Raulfin/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":false,"url":"https://api.github.com/repos/Raulfin/PCaPP","forks_url":"https://api.github.com/repos/Raulfin/PCaPP/forks","keys_url":"https://api.github.com/repos/Raulfin/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Raulfin/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Raulfin/PCaPP/teams","hooks_url":"https://api.github.com/repos/Raulfin/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Raulfin/PCaPP/events","assignees_url":"https://api.github.com/repos/Raulfin/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Raulfin/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Raulfin/PCaPP/tags","blobs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Raulfin/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Raulfin/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Raulfin/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Raulfin/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Raulfin/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Raulfin/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Raulfin/PCaPP/subscription","commits_url":"https://api.github.com/repos/Raulfin/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Raulfin/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Raulfin/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Raulfin/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Raulfin/PCaPP/merges","archive_url":"https://api.github.com/repos/Raulfin/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Raulfin/PCaPP/downloads","issues_url":"https://api.github.com/repos/Raulfin/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Raulfin/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Raulfin/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Raulfin/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Raulfin/PCaPP/releases{/id}","created_at":"2014-12-31T15:11:20Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T07:47:04Z","git_url":"git://github.com/Raulfin/PCaPP.git","ssh_url":"git@github.com:Raulfin/PCaPP.git","clone_url":"https://github.com/Raulfin/PCaPP.git","svn_url":"https://github.com/Raulfin/PCaPP","homepage":null,"size":0,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":0,"forks":2,"open_issues":0,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1"},"html":{"href":"https://github.com/Raulfin/PCaPP/pull/1"},"issue":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1"},"comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":1,"review_comments":0,"commits":1,"additions":28,"deletions":16,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:02:57Z"}
,{"id":"2489652424","type":"PushEvent","actor":{"id":665292,"login":"stevencombs","gravatar_id":"","url":"https://api.github.com/users/stevencombs","avatar_url":"https://avatars.githubusercontent.com/u/665292?"},"repo":{"id":18952734,"name":"stevencombs/stevencombs.github.io","url":"https://api.github.com/repos/stevencombs/stevencombs.github.io"},"payload":{"push_id":536864594,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ec7d4300e998b3b37b9d252bcff74fbc53b63a3","before":"ea3338d6a20ee5dbdc307e1dedd5c2116016a6fd","commits":[{"sha":"9ec7d4300e998b3b37b9d252bcff74fbc53b63a3","author":{"email":"6c25e74920ee21b4662d917e8ae800b44d553cde@gmail.com","name":"stevencombs"},"message":"blog update","distinct":true,"url":"https://api.github.com/repos/stevencombs/stevencombs.github.io/commits/9ec7d4300e998b3b37b9d252bcff74fbc53b63a3"}]},"public":true,"created_at":"2015-01-01T15:02:57Z"}
,{"id":"2489652426","type":"PushEvent","actor":{"id":1105372,"login":"ophian","gravatar_id":"","url":"https://api.github.com/users/ophian","avatar_url":"https://avatars.githubusercontent.com/u/1105372?"},"repo":{"id":2627116,"name":"s9y/Serendipity","url":"https://api.github.com/repos/s9y/Serendipity"},"payload":{"push_id":536864595,"size":1,"distinct_size":1,"ref":"refs/heads/2.0","head":"3df6aff87aa4e129f7b7ce272853fc2ebd141332","before":"0e56ffeba0761e994004dcd8aeefdda25ea4cea2","commits":[{"sha":"3df6aff87aa4e129f7b7ce272853fc2ebd141332","author":{"email":"7889110186da61a0ae3ca6f13b0e8d3cacc99788@googlemail.com","name":"Ian"},"message":"cosmetics","distinct":true,"url":"https://api.github.com/repos/s9y/Serendipity/commits/3df6aff87aa4e129f7b7ce272853fc2ebd141332"}]},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":1104713,"login":"s9y","gravatar_id":"","url":"https://api.github.com/orgs/s9y","avatar_url":"https://avatars.githubusercontent.com/u/1104713?"}}
,{"id":"2489652429","type":"PushEvent","actor":{"id":2167695,"login":"skylerzhang","gravatar_id":"","url":"https://api.github.com/users/skylerzhang","avatar_url":"https://avatars.githubusercontent.com/u/2167695?"},"repo":{"id":20473791,"name":"skylerzhang/skylerzhang.github.io","url":"https://api.github.com/repos/skylerzhang/skylerzhang.github.io"},"payload":{"push_id":536864596,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6ad278b484229f5733b5be722f5450a146ba6a2","before":"8bd3e908da79abf6079c9fb1ffd57304e6fb9404","commits":[{"sha":"b6ad278b484229f5733b5be722f5450a146ba6a2","author":{"email":"b2118e48c08f491640716a9296162bc40ae16faf@gmail.com","name":"skyler"},"message":"update","distinct":true,"url":"https://api.github.com/repos/skylerzhang/skylerzhang.github.io/commits/b6ad278b484229f5733b5be722f5450a146ba6a2"}]},"public":true,"created_at":"2015-01-01T15:02:57Z"}
,{"id":"2489652430","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19569477,"name":"cloudify-cosmo/cloudify-cloudstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin"},"payload":{"push_id":536864597,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"ea9be6061a533f00b2635d151733ca201a0d008c","before":"b886aa823cbf81b8b4f3701747c43c3c511c0ac5","commits":[{"sha":"ea9be6061a533f00b2635d151733ca201a0d008c","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin/commits/ea9be6061a533f00b2635d151733ca201a0d008c"}]},"public":true,"created_at":"2015-01-01T15:02:57Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652431","type":"PushEvent","actor":{"id":2298444,"login":"iChun","gravatar_id":"","url":"https://api.github.com/users/iChun","avatar_url":"https://avatars.githubusercontent.com/u/2298444?"},"repo":{"id":26553224,"name":"iChun/Tabula","url":"https://api.github.com/repos/iChun/Tabula"},"payload":{"push_id":536864598,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"03930eb96f32f39b0b3c0bd852f2fdae7f7f231e","before":"5970444e23f5dbc56f50c70d6e3a49a96e5897cc","commits":[{"sha":"03930eb96f32f39b0b3c0bd852f2fdae7f7f231e","author":{"email":"5f66eb3bda4ccd1a4772ab95e2cbaa53628de24d@gmail.com","name":"iChun"},"message":"Clients should now be able to open projects and import MC models on multiplayer.","distinct":true,"url":"https://api.github.com/repos/iChun/Tabula/commits/03930eb96f32f39b0b3c0bd852f2fdae7f7f231e"}]},"public":true,"created_at":"2015-01-01T15:02:57Z"}
,{"id":"2489652432","type":"WatchEvent","actor":{"id":1058248,"login":"sarum9in","gravatar_id":"","url":"https://api.github.com/users/sarum9in","avatar_url":"https://avatars.githubusercontent.com/u/1058248?"},"repo":{"id":23029617,"name":"h2o/h2o","url":"https://api.github.com/repos/h2o/h2o"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:58Z","org":{"id":9275116,"login":"h2o","gravatar_id":"","url":"https://api.github.com/orgs/h2o","avatar_url":"https://avatars.githubusercontent.com/u/9275116?"}}
,{"id":"2489652433","type":"DeleteEvent","actor":{"id":9979168,"login":"PromGames","gravatar_id":"","url":"https://api.github.com/users/PromGames","avatar_url":"https://avatars.githubusercontent.com/u/9979168?"},"repo":{"id":28622975,"name":"PromGames/Coursedrawer","url":"https://api.github.com/repos/PromGames/Coursedrawer"},"payload":{"ref":"DataBindingLab","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:58Z"}
,{"id":"2489652434","type":"IssueCommentEvent","actor":{"id":7124044,"login":"Tachii","gravatar_id":"","url":"https://api.github.com/users/Tachii","avatar_url":"https://avatars.githubusercontent.com/u/7124044?"},"repo":{"id":16466069,"name":"KoffeinFlummi/AGM","url":"https://api.github.com/repos/KoffeinFlummi/AGM"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880","labels_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880/labels{/name}","comments_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880/comments","events_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880/events","html_url":"https://github.com/KoffeinFlummi/AGM/issues/1880","id":53220206,"number":1880,"title":"bacpacks interaction hint","user":{"login":"Tachii","id":7124044,"avatar_url":"https://avatars.githubusercontent.com/u/7124044?v=3","gravatar_id":"","url":"https://api.github.com/users/Tachii","html_url":"https://github.com/Tachii","followers_url":"https://api.github.com/users/Tachii/followers","following_url":"https://api.github.com/users/Tachii/following{/other_user}","gists_url":"https://api.github.com/users/Tachii/gists{/gist_id}","starred_url":"https://api.github.com/users/Tachii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tachii/subscriptions","organizations_url":"https://api.github.com/users/Tachii/orgs","repos_url":"https://api.github.com/users/Tachii/repos","events_url":"https://api.github.com/users/Tachii/events{/privacy}","received_events_url":"https://api.github.com/users/Tachii/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/labels/feature+request","name":"feature request","color":"0052cc"}],"state":"open","locked":false,"assignee":{"login":"commy2","id":6576312,"avatar_url":"https://avatars.githubusercontent.com/u/6576312?v=3","gravatar_id":"","url":"https://api.github.com/users/commy2","html_url":"https://github.com/commy2","followers_url":"https://api.github.com/users/commy2/followers","following_url":"https://api.github.com/users/commy2/following{/other_user}","gists_url":"https://api.github.com/users/commy2/gists{/gist_id}","starred_url":"https://api.github.com/users/commy2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/commy2/subscriptions","organizations_url":"https://api.github.com/users/commy2/orgs","repos_url":"https://api.github.com/users/commy2/repos","events_url":"https://api.github.com/users/commy2/events{/privacy}","received_events_url":"https://api.github.com/users/commy2/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/milestones/2","labels_url":"https://api.github.com/repos/KoffeinFlummi/AGM/milestones/2/labels","id":614608,"number":2,"title":"Version 1.0","description":"","creator":{"login":"KoffeinFlummi","id":2438809,"avatar_url":"https://avatars.githubusercontent.com/u/2438809?v=3","gravatar_id":"","url":"https://api.github.com/users/KoffeinFlummi","html_url":"https://github.com/KoffeinFlummi","followers_url":"https://api.github.com/users/KoffeinFlummi/followers","following_url":"https://api.github.com/users/KoffeinFlummi/following{/other_user}","gists_url":"https://api.github.com/users/KoffeinFlummi/gists{/gist_id}","starred_url":"https://api.github.com/users/KoffeinFlummi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KoffeinFlummi/subscriptions","organizations_url":"https://api.github.com/users/KoffeinFlummi/orgs","repos_url":"https://api.github.com/users/KoffeinFlummi/repos","events_url":"https://api.github.com/users/KoffeinFlummi/events{/privacy}","received_events_url":"https://api.github.com/users/KoffeinFlummi/received_events","type":"User","site_admin":false},"open_issues":64,"closed_issues":111,"state":"open","created_at":"2014-03-30T20:47:21Z","updated_at":"2015-01-01T14:40:52Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2015-01-01T13:59:41Z","updated_at":"2015-01-01T15:02:57Z","closed_at":null,"body":"When someone is getting inside of your backpack you have no idea he did it. It's kinda annoying, for example a prisonier can steal a grenade from a bacpack and then throw it. So the request is can you create a hint or dialog with a name of person who is using your backpack.\r\n\r\nFor example:\r\n\r\nJohn Doe is using your backpack\r\nJohn Doe is trying to access your backpack,  but it's locked"},"comment":{"url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/comments/68488543","html_url":"https://github.com/KoffeinFlummi/AGM/issues/1880#issuecomment-68488543","issue_url":"https://api.github.com/repos/KoffeinFlummi/AGM/issues/1880","id":68488543,"user":{"login":"Tachii","id":7124044,"avatar_url":"https://avatars.githubusercontent.com/u/7124044?v=3","gravatar_id":"","url":"https://api.github.com/users/Tachii","html_url":"https://github.com/Tachii","followers_url":"https://api.github.com/users/Tachii/followers","following_url":"https://api.github.com/users/Tachii/following{/other_user}","gists_url":"https://api.github.com/users/Tachii/gists{/gist_id}","starred_url":"https://api.github.com/users/Tachii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tachii/subscriptions","organizations_url":"https://api.github.com/users/Tachii/orgs","repos_url":"https://api.github.com/users/Tachii/repos","events_url":"https://api.github.com/users/Tachii/events{/privacy}","received_events_url":"https://api.github.com/users/Tachii/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:57Z","updated_at":"2015-01-01T15:02:57Z","body":"It was in ace 2, maybe u can see how they did it if u want"}},"public":true,"created_at":"2015-01-01T15:02:58Z"}
,{"id":"2489652436","type":"PushEvent","actor":{"id":75446,"login":"jpawlowski","gravatar_id":"","url":"https://api.github.com/users/jpawlowski","avatar_url":"https://avatars.githubusercontent.com/u/75446?"},"repo":{"id":24657025,"name":"Hoanoho/HBE","url":"https://api.github.com/repos/Hoanoho/HBE"},"payload":{"push_id":536864600,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"d90c8c7e7dc77b5e9313be93ebb340e24dfdf3c0","before":"836b51b91d91df8da5d6f3001a2ad417f3aabad7","commits":[{"sha":"d90c8c7e7dc77b5e9313be93ebb340e24dfdf3c0","author":{"email":"e3c3aeb6a4cfab02b0f6e16de2e02aeb23d63ec5@gmail.com","name":"Julian Pawlowski"},"message":"add Digest::SHA1","distinct":true,"url":"https://api.github.com/repos/Hoanoho/HBE/commits/d90c8c7e7dc77b5e9313be93ebb340e24dfdf3c0"}]},"public":true,"created_at":"2015-01-01T15:02:58Z","org":{"id":8996526,"login":"Hoanoho","gravatar_id":"","url":"https://api.github.com/orgs/Hoanoho","avatar_url":"https://avatars.githubusercontent.com/u/8996526?"}}
,{"id":"2489652437","type":"PushEvent","actor":{"id":9547742,"login":"adlpzrmn","gravatar_id":"","url":"https://api.github.com/users/adlpzrmn","avatar_url":"https://avatars.githubusercontent.com/u/9547742?"},"repo":{"id":26164184,"name":"adlpzrmn/adlpzrmn.github.io","url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io"},"payload":{"push_id":536864601,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"90a06d70ee7c4253c350d40220a3d6e93cc18877","before":"6083116e480a8d3114f02095b4f97a5134512d99","commits":[{"sha":"90a06d70ee7c4253c350d40220a3d6e93cc18877","author":{"email":"909227e65a07389f2f74ddd2ac8f9d538341fdbf@yahoo.es","name":"adlpzrmn"},"message":"[HTML5 MOOC] [Módulo 10] [Ejercicios P2P]\n\nCorrección versión","distinct":true,"url":"https://api.github.com/repos/adlpzrmn/adlpzrmn.github.io/commits/90a06d70ee7c4253c350d40220a3d6e93cc18877"}]},"public":true,"created_at":"2015-01-01T15:02:58Z"}
,{"id":"2489652440","type":"ForkEvent","actor":{"id":253237,"login":"Jamesking56","gravatar_id":"","url":"https://api.github.com/users/Jamesking56","avatar_url":"https://avatars.githubusercontent.com/u/253237?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"forkee":{"id":28688651,"name":"Cachet","full_name":"Jamesking56/Cachet","owner":{"login":"Jamesking56","id":253237,"avatar_url":"https://avatars.githubusercontent.com/u/253237?v=3","gravatar_id":"","url":"https://api.github.com/users/Jamesking56","html_url":"https://github.com/Jamesking56","followers_url":"https://api.github.com/users/Jamesking56/followers","following_url":"https://api.github.com/users/Jamesking56/following{/other_user}","gists_url":"https://api.github.com/users/Jamesking56/gists{/gist_id}","starred_url":"https://api.github.com/users/Jamesking56/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jamesking56/subscriptions","organizations_url":"https://api.github.com/users/Jamesking56/orgs","repos_url":"https://api.github.com/users/Jamesking56/repos","events_url":"https://api.github.com/users/Jamesking56/events{/privacy}","received_events_url":"https://api.github.com/users/Jamesking56/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Jamesking56/Cachet","description":"Cachet, the open source StatusPage.io alternative written in PHP","fork":true,"url":"https://api.github.com/repos/Jamesking56/Cachet","forks_url":"https://api.github.com/repos/Jamesking56/Cachet/forks","keys_url":"https://api.github.com/repos/Jamesking56/Cachet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Jamesking56/Cachet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Jamesking56/Cachet/teams","hooks_url":"https://api.github.com/repos/Jamesking56/Cachet/hooks","issue_events_url":"https://api.github.com/repos/Jamesking56/Cachet/issues/events{/number}","events_url":"https://api.github.com/repos/Jamesking56/Cachet/events","assignees_url":"https://api.github.com/repos/Jamesking56/Cachet/assignees{/user}","branches_url":"https://api.github.com/repos/Jamesking56/Cachet/branches{/branch}","tags_url":"https://api.github.com/repos/Jamesking56/Cachet/tags","blobs_url":"https://api.github.com/repos/Jamesking56/Cachet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Jamesking56/Cachet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Jamesking56/Cachet/git/refs{/sha}","trees_url":"https://api.github.com/repos/Jamesking56/Cachet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Jamesking56/Cachet/statuses/{sha}","languages_url":"https://api.github.com/repos/Jamesking56/Cachet/languages","stargazers_url":"https://api.github.com/repos/Jamesking56/Cachet/stargazers","contributors_url":"https://api.github.com/repos/Jamesking56/Cachet/contributors","subscribers_url":"https://api.github.com/repos/Jamesking56/Cachet/subscribers","subscription_url":"https://api.github.com/repos/Jamesking56/Cachet/subscription","commits_url":"https://api.github.com/repos/Jamesking56/Cachet/commits{/sha}","git_commits_url":"https://api.github.com/repos/Jamesking56/Cachet/git/commits{/sha}","comments_url":"https://api.github.com/repos/Jamesking56/Cachet/comments{/number}","issue_comment_url":"https://api.github.com/repos/Jamesking56/Cachet/issues/comments/{number}","contents_url":"https://api.github.com/repos/Jamesking56/Cachet/contents/{+path}","compare_url":"https://api.github.com/repos/Jamesking56/Cachet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Jamesking56/Cachet/merges","archive_url":"https://api.github.com/repos/Jamesking56/Cachet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Jamesking56/Cachet/downloads","issues_url":"https://api.github.com/repos/Jamesking56/Cachet/issues{/number}","pulls_url":"https://api.github.com/repos/Jamesking56/Cachet/pulls{/number}","milestones_url":"https://api.github.com/repos/Jamesking56/Cachet/milestones{/number}","notifications_url":"https://api.github.com/repos/Jamesking56/Cachet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Jamesking56/Cachet/labels{/name}","releases_url":"https://api.github.com/repos/Jamesking56/Cachet/releases{/id}","created_at":"2015-01-01T15:02:58Z","updated_at":"2015-01-01T14:55:06Z","pushed_at":"2015-01-01T14:50:06Z","git_url":"git://github.com/Jamesking56/Cachet.git","ssh_url":"git@github.com:Jamesking56/Cachet.git","clone_url":"https://github.com/Jamesking56/Cachet.git","svn_url":"https://github.com/Jamesking56/Cachet","homepage":"http://cachethq.io","size":6115,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:58Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}}
,{"id":"2489652442","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327432,"name":"cloudify-cosmo/cloudify-openstack-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider"},"payload":{"push_id":536864605,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"48ef0fca44e14a7bd2547dfcb309fa4ffecf6503","before":"1bc16d5198ba5ee84706077fc9b03edecaf70529","commits":[{"sha":"48ef0fca44e14a7bd2547dfcb309fa4ffecf6503","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider/commits/48ef0fca44e14a7bd2547dfcb309fa4ffecf6503"}]},"public":true,"created_at":"2015-01-01T15:02:58Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652444","type":"PushEvent","actor":{"id":1459866,"login":"missdeer","gravatar_id":"","url":"https://api.github.com/users/missdeer","avatar_url":"https://avatars.githubusercontent.com/u/1459866?"},"repo":{"id":14350085,"name":"missdeer/istkani","url":"https://api.github.com/repos/missdeer/istkani"},"payload":{"push_id":536864607,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f08c844b31ef0a04f93561dfe5f19a40751d021a","before":"ce833f5570c1bbdbe14acfa4d2aae652b40475ca","commits":[{"sha":"f08c844b31ef0a04f93561dfe5f19a40751d021a","author":{"email":"78133d84c93e12ae1acb21fb5e4e209fb118cfa7@dfordsoft.com","name":"Fan Yang"},"message":"(*)update award data at Thu Jan  1 14:56:17 UTC 2015","distinct":true,"url":"https://api.github.com/repos/missdeer/istkani/commits/f08c844b31ef0a04f93561dfe5f19a40751d021a"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"}
,{"id":"2489652445","type":"PushEvent","actor":{"id":1498691,"login":"hironytic","gravatar_id":"","url":"https://api.github.com/users/hironytic","avatar_url":"https://avatars.githubusercontent.com/u/1498691?"},"repo":{"id":23249954,"name":"hironytic/BFTaskPromise","url":"https://api.github.com/repos/hironytic/BFTaskPromise"},"payload":{"push_id":536864609,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a11dfc2c8dfbfff11f13a0e684d74773fa4d3979","before":"d64297c96ebfa4005a1462f34d428f6f593dbcc7","commits":[{"sha":"a11dfc2c8dfbfff11f13a0e684d74773fa4d3979","author":{"email":"401ee077e7c729da7abab5cc98709d8ef6415866@hironytic.com","name":"Hironori Ichimiya"},"message":"update several things.\n\n- fix test fails in Xcode 6.1.1\n- update Bolts (1.1.1 -> 1.1.3)\n- change from `#import \"BFxxxx.h\"` to `#import <Bolts/BFxxxx.h>`.\n- update copyright year in LICENSE.","distinct":true,"url":"https://api.github.com/repos/hironytic/BFTaskPromise/commits/a11dfc2c8dfbfff11f13a0e684d74773fa4d3979"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"}
,{"id":"2489652447","type":"PushEvent","actor":{"id":23115,"login":"simonask","gravatar_id":"","url":"https://api.github.com/users/simonask","avatar_url":"https://avatars.githubusercontent.com/u/23115?"},"repo":{"id":16694023,"name":"simonask/rust-reflect","url":"https://api.github.com/repos/simonask/rust-reflect"},"payload":{"push_id":536864610,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"77776402c831bc60e4c6e27cd688e99c2ef84cd9","before":"c3ba0ff166bd6277e1201f898d613e4a4510d2a0","commits":[{"sha":"c2e729c75a2361b6b474b3f8b24561bbab62d437","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Use quote_*! macros in favor of directly invoking AstBuilder when possible.","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/c2e729c75a2361b6b474b3f8b24561bbab62d437"},{"sha":"f862787fd6f54ae7f73078f28f56332bf42eedd1","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"cleanup","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/f862787fd6f54ae7f73078f28f56332bf42eedd1"},{"sha":"0a1351421d252900106f6ee09d0abcbcac01abe5","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"added TODO","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/0a1351421d252900106f6ee09d0abcbcac01abe5"},{"sha":"3ca6fb617689f173ee4b1500eec5258b4656ac7a","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Added type_info() to AnyAttribute","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/3ca6fb617689f173ee4b1500eec5258b4656ac7a"},{"sha":"77776402c831bc60e4c6e27cd688e99c2ef84cd9","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Updated README","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/77776402c831bc60e4c6e27cd688e99c2ef84cd9"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"}
,{"id":"2489652448","type":"PushEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"push_id":536864611,"size":1,"distinct_size":1,"ref":"refs/heads/0.1","head":"31a75f773f0aec0d3ae87e68d587ad40bed99fa2","before":"b64bacaca806cb8f3ef0284966cf0a2b7fe20057","commits":[{"sha":"31a75f773f0aec0d3ae87e68d587ad40bed99fa2","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Update Persistence.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore/commits/31a75f773f0aec0d3ae87e68d587ad40bed99fa2"}]},"public":true,"created_at":"2015-01-01T15:02:59Z"}
,{"id":"2489652450","type":"WatchEvent","actor":{"id":160202,"login":"UniIsland","gravatar_id":"","url":"https://api.github.com/users/UniIsland","avatar_url":"https://avatars.githubusercontent.com/u/160202?"},"repo":{"id":28081156,"name":"lexrus/VPNOn","url":"https://api.github.com/repos/lexrus/VPNOn"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:00Z"}
,{"id":"2489652451","type":"PushEvent","actor":{"id":2191920,"login":"oogre","gravatar_id":"","url":"https://api.github.com/users/oogre","avatar_url":"https://avatars.githubusercontent.com/u/2191920?"},"repo":{"id":13723075,"name":"oogre/bcksp.es","url":"https://api.github.com/repos/oogre/bcksp.es"},"payload":{"push_id":536864612,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"944e5695c9e7214c83a956c31aa9d2635f666841","before":"0a23aeda327fcf3e57a702938ee38f59a5d761e1","commits":[{"sha":"89dc05bd42b5f8f72b8023c408a301cf08848bb3","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@ogre.be","name":"oogre"},"message":"force relaunch","distinct":true,"url":"https://api.github.com/repos/oogre/bcksp.es/commits/89dc05bd42b5f8f72b8023c408a301cf08848bb3"},{"sha":"944e5695c9e7214c83a956c31aa9d2635f666841","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@ogre.be","name":"oogre"},"message":"test","distinct":true,"url":"https://api.github.com/repos/oogre/bcksp.es/commits/944e5695c9e7214c83a956c31aa9d2635f666841"}]},"public":true,"created_at":"2015-01-01T15:03:00Z"}
,{"id":"2489652452","type":"PushEvent","actor":{"id":5153317,"login":"justin76","gravatar_id":"","url":"https://api.github.com/users/justin76","avatar_url":"https://avatars.githubusercontent.com/u/5153317?"},"repo":{"id":26371503,"name":"ellej16/SumMe","url":"https://api.github.com/repos/ellej16/SumMe"},"payload":{"push_id":536864613,"size":5,"distinct_size":5,"ref":"refs/heads/dev","head":"5a9d9c55583b036fb12d9bf6522af720b36dd6aa","before":"bf8a2214fd509b3367cf9d79fe67bf4a32412617","commits":[{"sha":"6bb9685af8b61c4b519937461523c40378bf55c4","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download file function. Beta version","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/6bb9685af8b61c4b519937461523c40378bf55c4"},{"sha":"78f43371114699e8e71889d532e711c4f028821a","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download function on File Tab.","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/78f43371114699e8e71889d532e711c4f028821a"},{"sha":"92bfb79816bee6c7c4702126b71b5cb19568346a","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download function on File Tab.","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/92bfb79816bee6c7c4702126b71b5cb19568346a"},{"sha":"c5b9687b4b5a6001b1b21d5708adc29da8514ce6","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Added download Function.","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/c5b9687b4b5a6001b1b21d5708adc29da8514ce6"},{"sha":"5a9d9c55583b036fb12d9bf6522af720b36dd6aa","author":{"email":"07b49fd98fc5822c9336f72ad3d643ad46675c59@gmail.com","name":"Justin Allen L. Capalad"},"message":"Merge branch 'dev' of https://github.com/ellej16/SumMe into dev","distinct":true,"url":"https://api.github.com/repos/ellej16/SumMe/commits/5a9d9c55583b036fb12d9bf6522af720b36dd6aa"}]},"public":true,"created_at":"2015-01-01T15:03:00Z"}
,{"id":"2489652453","type":"WatchEvent","actor":{"id":864587,"login":"koizuka","gravatar_id":"","url":"https://api.github.com/users/koizuka","avatar_url":"https://avatars.githubusercontent.com/u/864587?"},"repo":{"id":22631173,"name":"russgrue/Adafruit_DHT_Library","url":"https://api.github.com/repos/russgrue/Adafruit_DHT_Library"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652454","type":"CreateEvent","actor":{"id":10364670,"login":"AdeTroake","gravatar_id":"","url":"https://api.github.com/users/AdeTroake","avatar_url":"https://avatars.githubusercontent.com/u/10364670?"},"repo":{"id":28688652,"name":"AdeTroake/hello-world","url":"https://api.github.com/repos/AdeTroake/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"My first GitHub repository","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652458","type":"PushEvent","actor":{"id":10328445,"login":"varunamachi","gravatar_id":"","url":"https://api.github.com/users/varunamachi","avatar_url":"https://avatars.githubusercontent.com/u/10328445?"},"repo":{"id":28555687,"name":"varunamachi/tanyatu","url":"https://api.github.com/repos/varunamachi/tanyatu"},"payload":{"push_id":536864615,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d33a28ee4c84f30b34079b95290192f16bd5e785","before":"4ef4370dcce11497c66e68fc2883df34020f5119","commits":[{"sha":"d33a28ee4c84f30b34079b95290192f16bd5e785","author":{"email":"9fb65c815723a3e47d1ca83a490dfc7c94f48a00@gmail.com","name":"Varuna Amachi"},"message":"Fixes to audio library loading\n\nFixed:\n1) Audio track view was not showing the library contents\n2) Track view and lib view were not updated when new tracks were added\nto the library","distinct":true,"url":"https://api.github.com/repos/varunamachi/tanyatu/commits/d33a28ee4c84f30b34079b95290192f16bd5e785"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652459","type":"PushEvent","actor":{"id":5640532,"login":"JeanDamien","gravatar_id":"","url":"https://api.github.com/users/JeanDamien","avatar_url":"https://avatars.githubusercontent.com/u/5640532?"},"repo":{"id":25182632,"name":"JeanDamien/CodinGames","url":"https://api.github.com/repos/JeanDamien/CodinGames"},"payload":{"push_id":536864617,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2293c5aa72c0129c477381840cc8481402db01c4","before":"039f4aecb10b3eed3d0cb2a4519952db7fe17f2a","commits":[{"sha":"2293c5aa72c0129c477381840cc8481402db01c4","author":{"email":"f8ed4cb4b5495b98214a24e9db9255905a8fa039@msn.com","name":"JeanDamien"},"message":"Upload Pouvoir de Thor en C#","distinct":true,"url":"https://api.github.com/repos/JeanDamien/CodinGames/commits/2293c5aa72c0129c477381840cc8481402db01c4"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652460","type":"IssuesEvent","actor":{"id":7223093,"login":"jgermond","gravatar_id":"","url":"https://api.github.com/users/jgermond","avatar_url":"https://avatars.githubusercontent.com/u/7223093?"},"repo":{"id":25916085,"name":"Chuck-Berry/ProjetIA_Quarto","url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1","labels_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1/comments","events_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/1/events","html_url":"https://github.com/Chuck-Berry/ProjetIA_Quarto/issues/1","id":53221390,"number":1,"title":"Impossible d'arrêter la musique","user":{"login":"jgermond","id":7223093,"avatar_url":"https://avatars.githubusercontent.com/u/7223093?v=3","gravatar_id":"","url":"https://api.github.com/users/jgermond","html_url":"https://github.com/jgermond","followers_url":"https://api.github.com/users/jgermond/followers","following_url":"https://api.github.com/users/jgermond/following{/other_user}","gists_url":"https://api.github.com/users/jgermond/gists{/gist_id}","starred_url":"https://api.github.com/users/jgermond/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgermond/subscriptions","organizations_url":"https://api.github.com/users/jgermond/orgs","repos_url":"https://api.github.com/users/jgermond/repos","events_url":"https://api.github.com/users/jgermond/events{/privacy}","received_events_url":"https://api.github.com/users/jgermond/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:02Z","updated_at":"2015-01-01T15:03:02Z","closed_at":null,"body":"Le bouton pour arrêter la musique ne fonctionne plus depuis la factorisation."}},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652461","type":"PushEvent","actor":{"id":2883405,"login":"SimoneArena","gravatar_id":"","url":"https://api.github.com/users/SimoneArena","avatar_url":"https://avatars.githubusercontent.com/u/2883405?"},"repo":{"id":28347188,"name":"SimoneArena/Graylog2_CentOS","url":"https://api.github.com/repos/SimoneArena/Graylog2_CentOS"},"payload":{"push_id":536864618,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d26fe756f200e5f1d23b86509cbd93bcbdff4a50","before":"b97dca12fc6f3bf8a8cce1b88a7e924e9ef7ac8c","commits":[{"sha":"d26fe756f200e5f1d23b86509cbd93bcbdff4a50","author":{"email":"2bc7c377eb04471e51f992d169605aeb1166cf6a@users.noreply.github.com","name":"Simone Arena"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/SimoneArena/Graylog2_CentOS/commits/d26fe756f200e5f1d23b86509cbd93bcbdff4a50"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652464","type":"PushEvent","actor":{"id":6783879,"login":"OskarKlintrot","gravatar_id":"","url":"https://api.github.com/users/OskarKlintrot","avatar_url":"https://avatars.githubusercontent.com/u/6783879?"},"repo":{"id":28663633,"name":"OskarKlintrot/1dv403-PersonalWebDesktop","url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop"},"payload":{"push_id":536864619,"size":4,"distinct_size":4,"ref":"refs/heads/gh-pages","head":"faeebb682807cf59cc7309547546183c1b76c52b","before":"15e9a945390bc40f4b054f6ec7d8ea1816edbe89","commits":[{"sha":"1d70b194f9e05e061e17deb8680141c384a1fe2c","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"Min-height and min-width added","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/1d70b194f9e05e061e17deb8680141c384a1fe2c"},{"sha":"25ed2425bf410d98695ef6cbca33a54fcd93f165","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"New ipsum","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/25ed2425bf410d98695ef6cbca33a54fcd93f165"},{"sha":"0c28ba44b7c76b09a42629c474c7d1982f89dbf1","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"Removed underline from img in header in windows","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/0c28ba44b7c76b09a42629c474c7d1982f89dbf1"},{"sha":"faeebb682807cf59cc7309547546183c1b76c52b","author":{"email":"1499837edc350f28c7578a87c3b1a5016ac7fbae@gmail.com","name":"Oskar Klintrot"},"message":"Taskbar layout","distinct":true,"url":"https://api.github.com/repos/OskarKlintrot/1dv403-PersonalWebDesktop/commits/faeebb682807cf59cc7309547546183c1b76c52b"}]},"public":true,"created_at":"2015-01-01T15:03:02Z"}
,{"id":"2489652465","type":"PushEvent","actor":{"id":7030531,"login":"panagiotisegl","gravatar_id":"","url":"https://api.github.com/users/panagiotisegl","avatar_url":"https://avatars.githubusercontent.com/u/7030531?"},"repo":{"id":28665218,"name":"Panagiotisegl-SAMP/panagiotisegl_samp","url":"https://api.github.com/repos/Panagiotisegl-SAMP/panagiotisegl_samp"},"payload":{"push_id":536864620,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"542cb5225361c3987a28a1464203691ece8cedb4","before":"01dbd251c2840f9c5500ad0810673ff5aa7db094","commits":[{"sha":"542cb5225361c3987a28a1464203691ece8cedb4","author":{"email":"f033df57e112a37017211c1e0b6d5daee41a01b5@gmail.com","name":"khalifakk"},"message":"Missing folder","distinct":true,"url":"https://api.github.com/repos/Panagiotisegl-SAMP/panagiotisegl_samp/commits/542cb5225361c3987a28a1464203691ece8cedb4"}]},"public":true,"created_at":"2015-01-01T15:03:02Z","org":{"id":8000088,"login":"Panagiotisegl-SAMP","gravatar_id":"","url":"https://api.github.com/orgs/Panagiotisegl-SAMP","avatar_url":"https://avatars.githubusercontent.com/u/8000088?"}}
,{"id":"2489652469","type":"IssuesEvent","actor":{"id":419884,"login":"cvrebert","gravatar_id":"","url":"https://api.github.com/users/cvrebert","avatar_url":"https://avatars.githubusercontent.com/u/419884?"},"repo":{"id":27853915,"name":"cvrebert/mq4-hover-hover-shim","url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3","labels_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3/comments","events_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/issues/3/events","html_url":"https://github.com/cvrebert/mq4-hover-hover-shim/issues/3","id":53220583,"number":3,"title":"Document behavior when browser has JS disabled","user":{"login":"cvrebert","id":419884,"avatar_url":"https://avatars.githubusercontent.com/u/419884?v=3","gravatar_id":"","url":"https://api.github.com/users/cvrebert","html_url":"https://github.com/cvrebert","followers_url":"https://api.github.com/users/cvrebert/followers","following_url":"https://api.github.com/users/cvrebert/following{/other_user}","gists_url":"https://api.github.com/users/cvrebert/gists{/gist_id}","starred_url":"https://api.github.com/users/cvrebert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cvrebert/subscriptions","organizations_url":"https://api.github.com/users/cvrebert/orgs","repos_url":"https://api.github.com/users/cvrebert/repos","events_url":"https://api.github.com/users/cvrebert/events{/privacy}","received_events_url":"https://api.github.com/users/cvrebert/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/milestones/1","labels_url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/milestones/1/labels","id":919118,"number":1,"title":"v0.0.2","description":"","creator":{"login":"cvrebert","id":419884,"avatar_url":"https://avatars.githubusercontent.com/u/419884?v=3","gravatar_id":"","url":"https://api.github.com/users/cvrebert","html_url":"https://github.com/cvrebert","followers_url":"https://api.github.com/users/cvrebert/followers","following_url":"https://api.github.com/users/cvrebert/following{/other_user}","gists_url":"https://api.github.com/users/cvrebert/gists{/gist_id}","starred_url":"https://api.github.com/users/cvrebert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cvrebert/subscriptions","organizations_url":"https://api.github.com/users/cvrebert/orgs","repos_url":"https://api.github.com/users/cvrebert/repos","events_url":"https://api.github.com/users/cvrebert/events{/privacy}","received_events_url":"https://api.github.com/users/cvrebert/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":1,"state":"open","created_at":"2015-01-01T14:59:44Z","updated_at":"2015-01-01T15:03:02Z","due_on":null,"closed_at":null},"comments":0,"created_at":"2015-01-01T14:20:43Z","updated_at":"2015-01-01T15:03:02Z","closed_at":"2015-01-01T15:03:02Z","body":""}},"public":true,"created_at":"2015-01-01T15:03:03Z"}
,{"id":"2489652471","type":"PushEvent","actor":{"id":419884,"login":"cvrebert","gravatar_id":"","url":"https://api.github.com/users/cvrebert","avatar_url":"https://avatars.githubusercontent.com/u/419884?"},"repo":{"id":27853915,"name":"cvrebert/mq4-hover-hover-shim","url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim"},"payload":{"push_id":536864624,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b38a7780869c41058753a64a633de0a29869ce5","before":"7d61a77d54857d85b9d4bf4062607642e5645fc9","commits":[{"sha":"5b38a7780869c41058753a64a633de0a29869ce5","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@rebertia.com","name":"Chris Rebert"},"message":"Document behavior when JS is disabled; fixes #3","distinct":true,"url":"https://api.github.com/repos/cvrebert/mq4-hover-hover-shim/commits/5b38a7780869c41058753a64a633de0a29869ce5"}]},"public":true,"created_at":"2015-01-01T15:03:03Z"}
,{"id":"2489652472","type":"CreateEvent","actor":{"id":4570265,"login":"davideast","gravatar_id":"","url":"https://api.github.com/users/davideast","avatar_url":"https://avatars.githubusercontent.com/u/4570265?"},"repo":{"id":28688653,"name":"davideast/attributor","url":"https://api.github.com/repos/davideast/attributor"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:03Z"}
,{"id":"2489652473","type":"PushEvent","actor":{"id":940859,"login":"Benni-chan","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","avatar_url":"https://avatars.githubusercontent.com/u/940859?"},"repo":{"id":2681795,"name":"Benni-chan/nzbToAniDB","url":"https://api.github.com/repos/Benni-chan/nzbToAniDB"},"payload":{"push_id":536864625,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4c8d4ebaf766126800cdec4c429057b1fce40f76","before":"453196878d29a087aa60d160d3456d31fb6bbdf2","commits":[{"sha":"4c8d4ebaf766126800cdec4c429057b1fce40f76","author":{"email":"fe09bc2ef2737a3258f978e26226dcbac1b3f948@mycontact.eu","name":"Benjamin Waller"},"message":"Update anidb.py\n\nfix from gunmantheh","distinct":true,"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/commits/4c8d4ebaf766126800cdec4c429057b1fce40f76"}]},"public":true,"created_at":"2015-01-01T15:03:03Z"}
,{"id":"2489652477","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28260344,"name":"cdpython/blog","url":"https://api.github.com/repos/cdpython/blog"},"payload":{"push_id":536864628,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d0a7f4e9d9dc684b3c742144eb1ff9142553c04","before":"0561a607cbcb0acde87786929531a75d0b55b6f0","commits":[{"sha":"4d0a7f4e9d9dc684b3c742144eb1ff9142553c04","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월  2일 금요일 00시 02분 59초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/blog/commits/4d0a7f4e9d9dc684b3c742144eb1ff9142553c04"}]},"public":true,"created_at":"2015-01-01T15:03:03Z"}
,{"id":"2489652482","type":"PushEvent","actor":{"id":1429460,"login":"jvrplmlmn","gravatar_id":"","url":"https://api.github.com/users/jvrplmlmn","avatar_url":"https://avatars.githubusercontent.com/u/1429460?"},"repo":{"id":24825924,"name":"jvrplmlmn/ztreamy-java","url":"https://api.github.com/repos/jvrplmlmn/ztreamy-java"},"payload":{"push_id":536864630,"size":1,"distinct_size":1,"ref":"refs/heads/development","head":"13f75d24d098af4da0a44ff28d15a2e047cfea0d","before":"503629a1f46f84afa847e7eb113c4b04c290234e","commits":[{"sha":"13f75d24d098af4da0a44ff28d15a2e047cfea0d","author":{"email":"391ffe949060087d03010b30b260794ed7904d29@gmail.com","name":"Javier Palomo Almena"},"message":"Add comments about date and time formatting specification","distinct":true,"url":"https://api.github.com/repos/jvrplmlmn/ztreamy-java/commits/13f75d24d098af4da0a44ff28d15a2e047cfea0d"}]},"public":true,"created_at":"2015-01-01T15:03:04Z"}
,{"id":"2489652484","type":"PushEvent","actor":{"id":5042659,"login":"sharkwouter","gravatar_id":"","url":"https://api.github.com/users/sharkwouter","avatar_url":"https://avatars.githubusercontent.com/u/5042659?"},"repo":{"id":26112811,"name":"sharkwouter/steamos-installer","url":"https://api.github.com/repos/sharkwouter/steamos-installer"},"payload":{"push_id":536864632,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c51fc25e86db255b66631234902f9f09d78c7c0","before":"b75dccca6361d76f5f1f1ff31c1e4fce6b923b7f","commits":[{"sha":"1c51fc25e86db255b66631234902f9f09d78c7c0","author":{"email":"71fa9b44b300f09fc110fda8b8a0ffd2367148d0@live.nl","name":"Wouter Wijsman"},"message":"Fixed typo error message","distinct":true,"url":"https://api.github.com/repos/sharkwouter/steamos-installer/commits/1c51fc25e86db255b66631234902f9f09d78c7c0"}]},"public":true,"created_at":"2015-01-01T15:03:04Z"}
,{"id":"2489652485","type":"WatchEvent","actor":{"id":8445924,"login":"kovetskiy","gravatar_id":"","url":"https://api.github.com/users/kovetskiy","avatar_url":"https://avatars.githubusercontent.com/u/8445924?"},"repo":{"id":7114802,"name":"gorkunov/smartpairs.vim","url":"https://api.github.com/repos/gorkunov/smartpairs.vim"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:04Z"}
,{"id":"2489652488","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":26163802,"name":"cloudify-cosmo/cloudify-softlayer-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin"},"payload":{"push_id":536864633,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"667b95b45cb35b77312f72da087d1ae73c99242f","before":"df88f4400eafadbe9f35284b8563cc84742d5bc5","commits":[{"sha":"667b95b45cb35b77312f72da087d1ae73c99242f","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin/commits/667b95b45cb35b77312f72da087d1ae73c99242f"}]},"public":true,"created_at":"2015-01-01T15:03:04Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652490","type":"PushEvent","actor":{"id":10146229,"login":"0sk1","gravatar_id":"","url":"https://api.github.com/users/0sk1","avatar_url":"https://avatars.githubusercontent.com/u/10146229?"},"repo":{"id":28457801,"name":"ProjectManagementSystem/pms","url":"https://api.github.com/repos/ProjectManagementSystem/pms"},"payload":{"push_id":536864635,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8017dd5dc59b27699fc99bafcbdff8d2e81060c4","before":"ada9fb86feea34d9376e0992e116cccdd2a0c1ee","commits":[{"sha":"8017dd5dc59b27699fc99bafcbdff8d2e81060c4","author":{"email":"f25fd61761085f13b311e3392fa8b5a43c4736ba@metu.edu.tr","name":"0sk1"},"message":"Rerevert for organization.py","distinct":true,"url":"https://api.github.com/repos/ProjectManagementSystem/pms/commits/8017dd5dc59b27699fc99bafcbdff8d2e81060c4"}]},"public":true,"created_at":"2015-01-01T15:03:05Z","org":{"id":10146151,"login":"ProjectManagementSystem","gravatar_id":"","url":"https://api.github.com/orgs/ProjectManagementSystem","avatar_url":"https://avatars.githubusercontent.com/u/10146151?"}}
,{"id":"2489652494","type":"PushEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"push_id":536864640,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"b342cfaf4ee9c14d6185f4b97022fa6b2d29e830","before":"ec819b9df4fe612bb35bf562f96810bf991f9975","commits":[{"sha":"b342cfaf4ee9c14d6185f4b97022fa6b2d29e830","author":{"email":"df05f55543db3c62cf64f7438018ec37f3605d3c@gmail.com","name":"Eunsoo Lee"},"message":"#19 통신 메시지 설정 삭제","distinct":true,"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/commits/b342cfaf4ee9c14d6185f4b97022fa6b2d29e830"}]},"public":true,"created_at":"2015-01-01T15:03:05Z"}
,{"id":"2489652496","type":"PullRequestEvent","actor":{"id":125011,"login":"mikemcquaid","gravatar_id":"","url":"https://api.github.com/users/mikemcquaid","avatar_url":"https://avatars.githubusercontent.com/u/125011?"},"repo":{"id":206084,"name":"Homebrew/homebrew","url":"https://api.github.com/repos/Homebrew/homebrew"},"payload":{"action":"closed","number":35417,"pull_request":{"url":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417","id":26743046,"html_url":"https://github.com/Homebrew/homebrew/pull/35417","diff_url":"https://github.com/Homebrew/homebrew/pull/35417.diff","patch_url":"https://github.com/Homebrew/homebrew/pull/35417.patch","issue_url":"https://api.github.com/repos/Homebrew/homebrew/issues/35417","number":35417,"state":"closed","locked":false,"title":"minimal MP3 test file added","user":{"login":"bfontaine","id":1334295,"avatar_url":"https://avatars.githubusercontent.com/u/1334295?v=3","gravatar_id":"","url":"https://api.github.com/users/bfontaine","html_url":"https://github.com/bfontaine","followers_url":"https://api.github.com/users/bfontaine/followers","following_url":"https://api.github.com/users/bfontaine/following{/other_user}","gists_url":"https://api.github.com/users/bfontaine/gists{/gist_id}","starred_url":"https://api.github.com/users/bfontaine/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bfontaine/subscriptions","organizations_url":"https://api.github.com/users/bfontaine/orgs","repos_url":"https://api.github.com/users/bfontaine/repos","events_url":"https://api.github.com/users/bfontaine/events{/privacy}","received_events_url":"https://api.github.com/users/bfontaine/received_events","type":"User","site_admin":false},"body":"I’m trying to add tests to various MP3-related formulae and I need a place to store a sample one. Is it a good place?\r\n\r\nThis is the sound of [a button click](http://www.freesound.org/people/pegtel/sounds/212003/), the shortest I was able to find on Freesound (CC0, 0.2s).","created_at":"2015-01-01T13:17:42Z","updated_at":"2015-01-01T15:03:04Z","closed_at":"2015-01-01T15:03:04Z","merged_at":null,"merge_commit_sha":"dc4b43e710461be4fa8b3544a60170f3b6567637","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/commits","review_comments_url":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/comments","review_comment_url":"https://api.github.com/repos/Homebrew/homebrew/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Homebrew/homebrew/issues/35417/comments","statuses_url":"https://api.github.com/repos/Homebrew/homebrew/statuses/770cd74df1e188839945f529cca27f3c0f6395df","head":{"label":"bfontaine:mp3-file","ref":"mp3-file","sha":"770cd74df1e188839945f529cca27f3c0f6395df","user":{"login":"bfontaine","id":1334295,"avatar_url":"https://avatars.githubusercontent.com/u/1334295?v=3","gravatar_id":"","url":"https://api.github.com/users/bfontaine","html_url":"https://github.com/bfontaine","followers_url":"https://api.github.com/users/bfontaine/followers","following_url":"https://api.github.com/users/bfontaine/following{/other_user}","gists_url":"https://api.github.com/users/bfontaine/gists{/gist_id}","starred_url":"https://api.github.com/users/bfontaine/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bfontaine/subscriptions","organizations_url":"https://api.github.com/users/bfontaine/orgs","repos_url":"https://api.github.com/users/bfontaine/repos","events_url":"https://api.github.com/users/bfontaine/events{/privacy}","received_events_url":"https://api.github.com/users/bfontaine/received_events","type":"User","site_admin":false},"repo":{"id":26602131,"name":"homebrew","full_name":"bfontaine/homebrew","owner":{"login":"bfontaine","id":1334295,"avatar_url":"https://avatars.githubusercontent.com/u/1334295?v=3","gravatar_id":"","url":"https://api.github.com/users/bfontaine","html_url":"https://github.com/bfontaine","followers_url":"https://api.github.com/users/bfontaine/followers","following_url":"https://api.github.com/users/bfontaine/following{/other_user}","gists_url":"https://api.github.com/users/bfontaine/gists{/gist_id}","starred_url":"https://api.github.com/users/bfontaine/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bfontaine/subscriptions","organizations_url":"https://api.github.com/users/bfontaine/orgs","repos_url":"https://api.github.com/users/bfontaine/repos","events_url":"https://api.github.com/users/bfontaine/events{/privacy}","received_events_url":"https://api.github.com/users/bfontaine/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bfontaine/homebrew","description":"The missing package manager for OS X.","fork":true,"url":"https://api.github.com/repos/bfontaine/homebrew","forks_url":"https://api.github.com/repos/bfontaine/homebrew/forks","keys_url":"https://api.github.com/repos/bfontaine/homebrew/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bfontaine/homebrew/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bfontaine/homebrew/teams","hooks_url":"https://api.github.com/repos/bfontaine/homebrew/hooks","issue_events_url":"https://api.github.com/repos/bfontaine/homebrew/issues/events{/number}","events_url":"https://api.github.com/repos/bfontaine/homebrew/events","assignees_url":"https://api.github.com/repos/bfontaine/homebrew/assignees{/user}","branches_url":"https://api.github.com/repos/bfontaine/homebrew/branches{/branch}","tags_url":"https://api.github.com/repos/bfontaine/homebrew/tags","blobs_url":"https://api.github.com/repos/bfontaine/homebrew/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bfontaine/homebrew/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bfontaine/homebrew/git/refs{/sha}","trees_url":"https://api.github.com/repos/bfontaine/homebrew/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bfontaine/homebrew/statuses/{sha}","languages_url":"https://api.github.com/repos/bfontaine/homebrew/languages","stargazers_url":"https://api.github.com/repos/bfontaine/homebrew/stargazers","contributors_url":"https://api.github.com/repos/bfontaine/homebrew/contributors","subscribers_url":"https://api.github.com/repos/bfontaine/homebrew/subscribers","subscription_url":"https://api.github.com/repos/bfontaine/homebrew/subscription","commits_url":"https://api.github.com/repos/bfontaine/homebrew/commits{/sha}","git_commits_url":"https://api.github.com/repos/bfontaine/homebrew/git/commits{/sha}","comments_url":"https://api.github.com/repos/bfontaine/homebrew/comments{/number}","issue_comment_url":"https://api.github.com/repos/bfontaine/homebrew/issues/comments/{number}","contents_url":"https://api.github.com/repos/bfontaine/homebrew/contents/{+path}","compare_url":"https://api.github.com/repos/bfontaine/homebrew/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bfontaine/homebrew/merges","archive_url":"https://api.github.com/repos/bfontaine/homebrew/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bfontaine/homebrew/downloads","issues_url":"https://api.github.com/repos/bfontaine/homebrew/issues{/number}","pulls_url":"https://api.github.com/repos/bfontaine/homebrew/pulls{/number}","milestones_url":"https://api.github.com/repos/bfontaine/homebrew/milestones{/number}","notifications_url":"https://api.github.com/repos/bfontaine/homebrew/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bfontaine/homebrew/labels{/name}","releases_url":"https://api.github.com/repos/bfontaine/homebrew/releases{/id}","created_at":"2014-11-13T18:44:55Z","updated_at":"2015-01-01T14:55:06Z","pushed_at":"2015-01-01T14:56:49Z","git_url":"git://github.com/bfontaine/homebrew.git","ssh_url":"git@github.com:bfontaine/homebrew.git","clone_url":"https://github.com/bfontaine/homebrew.git","svn_url":"https://github.com/bfontaine/homebrew","homepage":"http://brew.sh","size":52038,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":false,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Homebrew:master","ref":"master","sha":"60cd5229da13b339e5cbf01222bd589ce8bce68c","user":{"login":"Homebrew","id":1503512,"avatar_url":"https://avatars.githubusercontent.com/u/1503512?v=3","gravatar_id":"","url":"https://api.github.com/users/Homebrew","html_url":"https://github.com/Homebrew","followers_url":"https://api.github.com/users/Homebrew/followers","following_url":"https://api.github.com/users/Homebrew/following{/other_user}","gists_url":"https://api.github.com/users/Homebrew/gists{/gist_id}","starred_url":"https://api.github.com/users/Homebrew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Homebrew/subscriptions","organizations_url":"https://api.github.com/users/Homebrew/orgs","repos_url":"https://api.github.com/users/Homebrew/repos","events_url":"https://api.github.com/users/Homebrew/events{/privacy}","received_events_url":"https://api.github.com/users/Homebrew/received_events","type":"Organization","site_admin":false},"repo":{"id":206084,"name":"homebrew","full_name":"Homebrew/homebrew","owner":{"login":"Homebrew","id":1503512,"avatar_url":"https://avatars.githubusercontent.com/u/1503512?v=3","gravatar_id":"","url":"https://api.github.com/users/Homebrew","html_url":"https://github.com/Homebrew","followers_url":"https://api.github.com/users/Homebrew/followers","following_url":"https://api.github.com/users/Homebrew/following{/other_user}","gists_url":"https://api.github.com/users/Homebrew/gists{/gist_id}","starred_url":"https://api.github.com/users/Homebrew/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Homebrew/subscriptions","organizations_url":"https://api.github.com/users/Homebrew/orgs","repos_url":"https://api.github.com/users/Homebrew/repos","events_url":"https://api.github.com/users/Homebrew/events{/privacy}","received_events_url":"https://api.github.com/users/Homebrew/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Homebrew/homebrew","description":"The missing package manager for OS X.","fork":false,"url":"https://api.github.com/repos/Homebrew/homebrew","forks_url":"https://api.github.com/repos/Homebrew/homebrew/forks","keys_url":"https://api.github.com/repos/Homebrew/homebrew/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Homebrew/homebrew/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Homebrew/homebrew/teams","hooks_url":"https://api.github.com/repos/Homebrew/homebrew/hooks","issue_events_url":"https://api.github.com/repos/Homebrew/homebrew/issues/events{/number}","events_url":"https://api.github.com/repos/Homebrew/homebrew/events","assignees_url":"https://api.github.com/repos/Homebrew/homebrew/assignees{/user}","branches_url":"https://api.github.com/repos/Homebrew/homebrew/branches{/branch}","tags_url":"https://api.github.com/repos/Homebrew/homebrew/tags","blobs_url":"https://api.github.com/repos/Homebrew/homebrew/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Homebrew/homebrew/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Homebrew/homebrew/git/refs{/sha}","trees_url":"https://api.github.com/repos/Homebrew/homebrew/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Homebrew/homebrew/statuses/{sha}","languages_url":"https://api.github.com/repos/Homebrew/homebrew/languages","stargazers_url":"https://api.github.com/repos/Homebrew/homebrew/stargazers","contributors_url":"https://api.github.com/repos/Homebrew/homebrew/contributors","subscribers_url":"https://api.github.com/repos/Homebrew/homebrew/subscribers","subscription_url":"https://api.github.com/repos/Homebrew/homebrew/subscription","commits_url":"https://api.github.com/repos/Homebrew/homebrew/commits{/sha}","git_commits_url":"https://api.github.com/repos/Homebrew/homebrew/git/commits{/sha}","comments_url":"https://api.github.com/repos/Homebrew/homebrew/comments{/number}","issue_comment_url":"https://api.github.com/repos/Homebrew/homebrew/issues/comments/{number}","contents_url":"https://api.github.com/repos/Homebrew/homebrew/contents/{+path}","compare_url":"https://api.github.com/repos/Homebrew/homebrew/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Homebrew/homebrew/merges","archive_url":"https://api.github.com/repos/Homebrew/homebrew/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Homebrew/homebrew/downloads","issues_url":"https://api.github.com/repos/Homebrew/homebrew/issues{/number}","pulls_url":"https://api.github.com/repos/Homebrew/homebrew/pulls{/number}","milestones_url":"https://api.github.com/repos/Homebrew/homebrew/milestones{/number}","notifications_url":"https://api.github.com/repos/Homebrew/homebrew/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Homebrew/homebrew/labels{/name}","releases_url":"https://api.github.com/repos/Homebrew/homebrew/releases{/id}","created_at":"2009-05-20T19:38:37Z","updated_at":"2015-01-01T15:02:16Z","pushed_at":"2015-01-01T15:02:16Z","git_url":"git://github.com/Homebrew/homebrew.git","ssh_url":"git@github.com:Homebrew/homebrew.git","clone_url":"https://github.com/Homebrew/homebrew.git","svn_url":"https://github.com/Homebrew/homebrew","homepage":"http://brew.sh","size":1145817,"stargazers_count":20802,"watchers_count":20802,"language":"Ruby","has_issues":true,"has_downloads":false,"has_wiki":true,"has_pages":true,"forks_count":10378,"mirror_url":null,"open_issues_count":224,"forks":10378,"open_issues":224,"watchers":20802,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417"},"html":{"href":"https://github.com/Homebrew/homebrew/pull/35417"},"issue":{"href":"https://api.github.com/repos/Homebrew/homebrew/issues/35417"},"comments":{"href":"https://api.github.com/repos/Homebrew/homebrew/issues/35417/comments"},"review_comments":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/comments"},"review_comment":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Homebrew/homebrew/pulls/35417/commits"},"statuses":{"href":"https://api.github.com/repos/Homebrew/homebrew/statuses/770cd74df1e188839945f529cca27f3c0f6395df"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":3,"review_comments":0,"commits":1,"additions":0,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:05Z","org":{"id":1503512,"login":"Homebrew","gravatar_id":"","url":"https://api.github.com/orgs/Homebrew","avatar_url":"https://avatars.githubusercontent.com/u/1503512?"}}
,{"id":"2489652497","type":"PushEvent","actor":{"id":125011,"login":"mikemcquaid","gravatar_id":"","url":"https://api.github.com/users/mikemcquaid","avatar_url":"https://avatars.githubusercontent.com/u/125011?"},"repo":{"id":206084,"name":"Homebrew/homebrew","url":"https://api.github.com/repos/Homebrew/homebrew"},"payload":{"push_id":536864637,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","before":"60cd5229da13b339e5cbf01222bd589ce8bce68c","commits":[{"sha":"5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e","author":{"email":"bfee279af59f3e3f71f7ce1fa037ea7b90f93cbf@yahoo.fr","name":"Baptiste Fontaine"},"message":"minimal MP3 test file added\n\nCloses #35417.\n\nSigned-off-by: Mike McQuaid <mike@mikemcquaid.com>","distinct":true,"url":"https://api.github.com/repos/Homebrew/homebrew/commits/5b6d2dca03bef65f3ae7d639e9096b9e7f87ee4e"}]},"public":true,"created_at":"2015-01-01T15:03:05Z","org":{"id":1503512,"login":"Homebrew","gravatar_id":"","url":"https://api.github.com/orgs/Homebrew","avatar_url":"https://avatars.githubusercontent.com/u/1503512?"}}
,{"id":"2489652501","type":"WatchEvent","actor":{"id":2606236,"login":"Sympho","gravatar_id":"","url":"https://api.github.com/users/Sympho","avatar_url":"https://avatars.githubusercontent.com/u/2606236?"},"repo":{"id":28257573,"name":"flarum/core","url":"https://api.github.com/repos/flarum/core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:06Z","org":{"id":5549034,"login":"flarum","gravatar_id":"","url":"https://api.github.com/orgs/flarum","avatar_url":"https://avatars.githubusercontent.com/u/5549034?"}}
,{"id":"2489652505","type":"PushEvent","actor":{"id":610524,"login":"PhilippePerret","gravatar_id":"","url":"https://api.github.com/users/PhilippePerret","avatar_url":"https://avatars.githubusercontent.com/u/610524?"},"repo":{"id":26335465,"name":"PhilippePerret/Icare_AD","url":"https://api.github.com/repos/PhilippePerret/Icare_AD"},"payload":{"push_id":536864642,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"1f213711b67ebf5854877dd0bbdb96eaeac99557","before":"77efa79c82e1d00d0d1e77d8122a1d7f6ffd0e23","commits":[{"sha":"76dcba346f12fa4630a665e9535094999d2138b0","author":{"email":"a79b7a0c23e6516f1e99986aa9f312d34b87b156@yahoo.fr","name":"Philippe Perret"},"message":"Minor change","distinct":true,"url":"https://api.github.com/repos/PhilippePerret/Icare_AD/commits/76dcba346f12fa4630a665e9535094999d2138b0"},{"sha":"3565ef08aa7854a379fb4d9f68d765d033731781","author":{"email":"a79b7a0c23e6516f1e99986aa9f312d34b87b156@yahoo.fr","name":"Philippe Perret"},"message":"Support pour documents","distinct":true,"url":"https://api.github.com/repos/PhilippePerret/Icare_AD/commits/3565ef08aa7854a379fb4d9f68d765d033731781"},{"sha":"1f213711b67ebf5854877dd0bbdb96eaeac99557","author":{"email":"a79b7a0c23e6516f1e99986aa9f312d34b87b156@yahoo.fr","name":"Philippe Perret"},"message":"Test de mauvais documents à l'inscription","distinct":true,"url":"https://api.github.com/repos/PhilippePerret/Icare_AD/commits/1f213711b67ebf5854877dd0bbdb96eaeac99557"}]},"public":true,"created_at":"2015-01-01T15:03:06Z"}
,{"id":"2489652506","type":"PushEvent","actor":{"id":760627,"login":"tsu-nera","gravatar_id":"","url":"https://api.github.com/users/tsu-nera","avatar_url":"https://avatars.githubusercontent.com/u/760627?"},"repo":{"id":10012941,"name":"tsu-nera/dotfiles","url":"https://api.github.com/repos/tsu-nera/dotfiles"},"payload":{"push_id":536864643,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b38f86da2b3bb014b47d03094d15a129a3275e5f","before":"c036667237fb7410e806a91db4e53eca63eee0a0","commits":[{"sha":"b38f86da2b3bb014b47d03094d15a129a3275e5f","author":{"email":"9976a0541de5240960548e0676fed9769cd87143@gmail.com","name":"tsu-nera"},"message":"ddskkを導入した。","distinct":true,"url":"https://api.github.com/repos/tsu-nera/dotfiles/commits/b38f86da2b3bb014b47d03094d15a129a3275e5f"}]},"public":true,"created_at":"2015-01-01T15:03:06Z"}
,{"id":"2489652507","type":"PushEvent","actor":{"id":8132102,"login":"the-cdnjs-curator","gravatar_id":"","url":"https://api.github.com/users/the-cdnjs-curator","avatar_url":"https://avatars.githubusercontent.com/u/8132102?"},"repo":{"id":18663590,"name":"cdnjs/new-website","url":"https://api.github.com/repos/cdnjs/new-website"},"payload":{"push_id":536864644,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97653fed23af84b6f2e0d0a7f706378385cacc4a","before":"e9365b957f0a4f02ac3e2205d859ca8c247104c8","commits":[{"sha":"97653fed23af84b6f2e0d0a7f706378385cacc4a","author":{"email":"a81c8330dae20b275f250c899f16a97692457035@gmail.com","name":"the-cdnjs-curator"},"message":"added ner files","distinct":true,"url":"https://api.github.com/repos/cdnjs/new-website/commits/97653fed23af84b6f2e0d0a7f706378385cacc4a"}]},"public":true,"created_at":"2015-01-01T15:03:07Z","org":{"id":637362,"login":"cdnjs","gravatar_id":"","url":"https://api.github.com/orgs/cdnjs","avatar_url":"https://avatars.githubusercontent.com/u/637362?"}}
,{"id":"2489652511","type":"PushEvent","actor":{"id":5335890,"login":"shsong97","gravatar_id":"","url":"https://api.github.com/users/shsong97","avatar_url":"https://avatars.githubusercontent.com/u/5335890?"},"repo":{"id":16941010,"name":"shsong97/django_blog","url":"https://api.github.com/repos/shsong97/django_blog"},"payload":{"push_id":536864646,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a65caff9c6a0a06b20b47b08b01cba6a865f7d0c","before":"f1410afd46137564607229aed5c79ddd7163bb3d","commits":[{"sha":"a65caff9c6a0a06b20b47b08b01cba6a865f7d0c","author":{"email":"2dc53b32d1b1c451c9a9e146ecabef5e65348443@gmail.com","name":"shsong97"},"message":"login related changed","distinct":true,"url":"https://api.github.com/repos/shsong97/django_blog/commits/a65caff9c6a0a06b20b47b08b01cba6a865f7d0c"}]},"public":true,"created_at":"2015-01-01T15:03:07Z"}
,{"id":"2489652517","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326701,"name":"cloudify-cosmo/cloudify-cli","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli"},"payload":{"push_id":536864649,"size":1,"distinct_size":1,"ref":"refs/heads/3.2m1-build","head":"98320e1fc29f0a86ea448c66952331ac0921c5da","before":"5ca290238f9c44b676d93ad37f225640e69cdbc7","commits":[{"sha":"98320e1fc29f0a86ea448c66952331ac0921c5da","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 3.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli/commits/98320e1fc29f0a86ea448c66952331ac0921c5da"}]},"public":true,"created_at":"2015-01-01T15:03:07Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652523","type":"PushEvent","actor":{"id":8964128,"login":"sggd","gravatar_id":"","url":"https://api.github.com/users/sggd","avatar_url":"https://avatars.githubusercontent.com/u/8964128?"},"repo":{"id":28598740,"name":"sggd/sggd.github.io","url":"https://api.github.com/repos/sggd/sggd.github.io"},"payload":{"push_id":536864652,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0efa17838e893c7e21ead79171eb532ad38bc7dc","before":"d6293e4dd460442a765a96b3f352e1a5e71134e9","commits":[{"sha":"0efa17838e893c7e21ead79171eb532ad38bc7dc","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"LuoHua"},"message":"Delete CNAME","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/0efa17838e893c7e21ead79171eb532ad38bc7dc"}]},"public":true,"created_at":"2015-01-01T15:03:08Z"}
,{"id":"2489652527","type":"PushEvent","actor":{"id":28127,"login":"hkairi","gravatar_id":"","url":"https://api.github.com/users/hkairi","avatar_url":"https://avatars.githubusercontent.com/u/28127?"},"repo":{"id":28299476,"name":"hkairi/agendakar-widget","url":"https://api.github.com/repos/hkairi/agendakar-widget"},"payload":{"push_id":536864655,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3998b2fd2dd6b8d98da728f6fab791d226b7571d","before":"4883f8c386f863e579adec660e3f038574f4bb9e","commits":[{"sha":"3998b2fd2dd6b8d98da728f6fab791d226b7571d","author":{"email":"b510bb486ebd5c8c5aff3ba43ada62bee3eff38e@gmail.com","name":"Hassane Moustapha"},"message":"added node modules directory to gitignore","distinct":true,"url":"https://api.github.com/repos/hkairi/agendakar-widget/commits/3998b2fd2dd6b8d98da728f6fab791d226b7571d"}]},"public":true,"created_at":"2015-01-01T15:03:08Z"}
,{"id":"2489652528","type":"PushEvent","actor":{"id":8266928,"login":"SilentStar","gravatar_id":"","url":"https://api.github.com/users/SilentStar","avatar_url":"https://avatars.githubusercontent.com/u/8266928?"},"repo":{"id":22254615,"name":"SilentStar/BoLScripts","url":"https://api.github.com/repos/SilentStar/BoLScripts"},"payload":{"push_id":536864656,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a726b747b11363141bbb4def8232f0b74d50c21","before":"2016c1e3d7b2ceb56cfddb6a8abd40a3d530d2c5","commits":[{"sha":"9a726b747b11363141bbb4def8232f0b74d50c21","author":{"email":"76a3fa08110b1c2a7cb3afb60a43077145ad72f0@gmail.com","name":"SilentStar"},"message":"Released Jinx","distinct":true,"url":"https://api.github.com/repos/SilentStar/BoLScripts/commits/9a726b747b11363141bbb4def8232f0b74d50c21"}]},"public":true,"created_at":"2015-01-01T15:03:08Z"}
,{"id":"2489652530","type":"PushEvent","actor":{"id":720376,"login":"picodotdev","gravatar_id":"","url":"https://api.github.com/users/picodotdev","avatar_url":"https://avatars.githubusercontent.com/u/720376?"},"repo":{"id":18271108,"name":"picodotdev/blog-stack","url":"https://api.github.com/repos/picodotdev/blog-stack"},"payload":{"push_id":536864658,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"3e16fa01d4e4d1104dfa186475d4f971b2664c66","before":"38693c65c2fd6ba08604c07936a5dc3bfb5720bd","commits":[{"sha":"3e16fa01d4e4d1104dfa186475d4f971b2664c66","author":{"email":"82119ca92ec3f303155279e5d516019ee5c15a97@gmail.com","name":"pico.dev"},"message":"Site updated Thursday, 01-01-2015 10:03","distinct":true,"url":"https://api.github.com/repos/picodotdev/blog-stack/commits/3e16fa01d4e4d1104dfa186475d4f971b2664c66"}]},"public":true,"created_at":"2015-01-01T15:03:09Z"}
,{"id":"2489652531","type":"PushEvent","actor":{"id":9538449,"login":"hcremers","gravatar_id":"","url":"https://api.github.com/users/hcremers","avatar_url":"https://avatars.githubusercontent.com/u/9538449?"},"repo":{"id":26101634,"name":"ktgw0316/LightZone-l10n-nl","url":"https://api.github.com/repos/ktgw0316/LightZone-l10n-nl"},"payload":{"push_id":536864659,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"331393a9609f316f76ae19487b65418218ade081","before":"0fca01b12e6a8a1c537842d4831906d1eb4a277e","commits":[{"sha":"331393a9609f316f76ae19487b65418218ade081","author":{"email":"8800578b51f022c8d8adb9606a8b3db4fedbdac6@192.168.0.167","name":"hans"},"message":"Translated by hcremers","distinct":true,"url":"https://api.github.com/repos/ktgw0316/LightZone-l10n-nl/commits/331393a9609f316f76ae19487b65418218ade081"}]},"public":true,"created_at":"2015-01-01T15:03:09Z"}
,{"id":"2489652533","type":"IssueCommentEvent","actor":{"id":3883059,"login":"jasvir99","gravatar_id":"","url":"https://api.github.com/users/jasvir99","avatar_url":"https://avatars.githubusercontent.com/u/3883059?"},"repo":{"id":18510170,"name":"GreatDevelopers/LibreHatti","url":"https://api.github.com/repos/GreatDevelopers/LibreHatti"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360","labels_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/labels{/name}","comments_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/comments","events_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/events","html_url":"https://github.com/GreatDevelopers/LibreHatti/issues/360","id":53214955,"number":360,"title":"Errors when no distribution found.","user":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T07:28:55Z","updated_at":"2015-01-01T15:03:09Z","closed_at":"2015-01-01T15:03:09Z","body":"When we select category which have no distribution added, it should generate error on the spot. Not after clicking save button."},"comment":{"url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/comments/68488545","html_url":"https://github.com/GreatDevelopers/LibreHatti/issues/360#issuecomment-68488545","issue_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360","id":68488545,"user":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:09Z","updated_at":"2015-01-01T15:03:09Z","body":"Fixed: https://github.com/GreatDevelopers/LibreHatti/commit/5e2388208728811ca859ef98f03bf3e0bff7ec1f"}},"public":true,"created_at":"2015-01-01T15:03:09Z","org":{"id":890441,"login":"GreatDevelopers","gravatar_id":"","url":"https://api.github.com/orgs/GreatDevelopers","avatar_url":"https://avatars.githubusercontent.com/u/890441?"}}
,{"id":"2489652534","type":"IssuesEvent","actor":{"id":3883059,"login":"jasvir99","gravatar_id":"","url":"https://api.github.com/users/jasvir99","avatar_url":"https://avatars.githubusercontent.com/u/3883059?"},"repo":{"id":18510170,"name":"GreatDevelopers/LibreHatti","url":"https://api.github.com/repos/GreatDevelopers/LibreHatti"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360","labels_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/labels{/name}","comments_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/comments","events_url":"https://api.github.com/repos/GreatDevelopers/LibreHatti/issues/360/events","html_url":"https://github.com/GreatDevelopers/LibreHatti/issues/360","id":53214955,"number":360,"title":"Errors when no distribution found.","user":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"jasvir99","id":3883059,"avatar_url":"https://avatars.githubusercontent.com/u/3883059?v=3","gravatar_id":"","url":"https://api.github.com/users/jasvir99","html_url":"https://github.com/jasvir99","followers_url":"https://api.github.com/users/jasvir99/followers","following_url":"https://api.github.com/users/jasvir99/following{/other_user}","gists_url":"https://api.github.com/users/jasvir99/gists{/gist_id}","starred_url":"https://api.github.com/users/jasvir99/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasvir99/subscriptions","organizations_url":"https://api.github.com/users/jasvir99/orgs","repos_url":"https://api.github.com/users/jasvir99/repos","events_url":"https://api.github.com/users/jasvir99/events{/privacy}","received_events_url":"https://api.github.com/users/jasvir99/received_events","type":"User","site_admin":false},"milestone":null,"comments":1,"created_at":"2015-01-01T07:28:55Z","updated_at":"2015-01-01T15:03:09Z","closed_at":"2015-01-01T15:03:09Z","body":"When we select category which have no distribution added, it should generate error on the spot. Not after clicking save button."}},"public":true,"created_at":"2015-01-01T15:03:09Z","org":{"id":890441,"login":"GreatDevelopers","gravatar_id":"","url":"https://api.github.com/orgs/GreatDevelopers","avatar_url":"https://avatars.githubusercontent.com/u/890441?"}}
,{"id":"2489652538","type":"PushEvent","actor":{"id":196942,"login":"icambridge","gravatar_id":"","url":"https://api.github.com/users/icambridge","avatar_url":"https://avatars.githubusercontent.com/u/196942?"},"repo":{"id":28457795,"name":"icambridge/go-playground","url":"https://api.github.com/repos/icambridge/go-playground"},"payload":{"push_id":536864664,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ca6d60bfdcd711f0ea913b4ea37f979890c4ccd9","before":"2fb55047ee4c4421527a77b91ab9eea525a1c815","commits":[{"sha":"ca6d60bfdcd711f0ea913b4ea37f979890c4ccd9","author":{"email":"dd5460de3c36eb19735c4e0906c29fd0091f20ad@inviqa.com","name":"Iain Cambridge"},"message":"Add return on specific value","distinct":true,"url":"https://api.github.com/repos/icambridge/go-playground/commits/ca6d60bfdcd711f0ea913b4ea37f979890c4ccd9"}]},"public":true,"created_at":"2015-01-01T15:03:10Z"}
,{"id":"2489652543","type":"WatchEvent","actor":{"id":6329505,"login":"xu6148152","gravatar_id":"","url":"https://api.github.com/users/xu6148152","avatar_url":"https://avatars.githubusercontent.com/u/6329505?"},"repo":{"id":5249971,"name":"pents90/svg-android","url":"https://api.github.com/repos/pents90/svg-android"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652546","type":"CreateEvent","actor":{"id":5462203,"login":"StartEnd","gravatar_id":"","url":"https://api.github.com/users/StartEnd","avatar_url":"https://avatars.githubusercontent.com/u/5462203?"},"repo":{"id":28688609,"name":"StartEnd/codeDemo","url":"https://api.github.com/repos/StartEnd/codeDemo"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"记录每日练习代码","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652547","type":"CreateEvent","actor":{"id":3285510,"login":"yxcvincent","gravatar_id":"","url":"https://api.github.com/users/yxcvincent","avatar_url":"https://avatars.githubusercontent.com/u/3285510?"},"repo":{"id":28688654,"name":"yxcvincent/MyProject","url":"https://api.github.com/repos/yxcvincent/MyProject"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652549","type":"WatchEvent","actor":{"id":10249189,"login":"PHPerWu","gravatar_id":"","url":"https://api.github.com/users/PHPerWu","avatar_url":"https://avatars.githubusercontent.com/u/10249189?"},"repo":{"id":28688434,"name":"PHPerWu/Student","url":"https://api.github.com/repos/PHPerWu/Student"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652551","type":"PushEvent","actor":{"id":946541,"login":"open768","gravatar_id":"","url":"https://api.github.com/users/open768","avatar_url":"https://avatars.githubusercontent.com/u/946541?"},"repo":{"id":16438996,"name":"open768/curiosity_browser","url":"https://api.github.com/repos/open768/curiosity_browser"},"payload":{"push_id":536864667,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d71709fcb167fa2e40ad49564c04ddaf52d95d58","before":"e03e5b7b3b9f1ecf18e1d84efc53bdc9866231f4","commits":[{"sha":"d71709fcb167fa2e40ad49564c04ddaf52d95d58","author":{"email":"05ce99054a0976bf8f32b65bea162a51e3d24961@yahoo.co.uk","name":"open768"},"message":"baseline commit\n\nA lot of changes over the last couple of months","distinct":true,"url":"https://api.github.com/repos/open768/curiosity_browser/commits/d71709fcb167fa2e40ad49564c04ddaf52d95d58"}]},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652555","type":"PushEvent","actor":{"id":6436073,"login":"523860169","gravatar_id":"","url":"https://api.github.com/users/523860169","avatar_url":"https://avatars.githubusercontent.com/u/6436073?"},"repo":{"id":27432101,"name":"523860169/sh","url":"https://api.github.com/repos/523860169/sh"},"payload":{"push_id":536864670,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"665827d02387506ca5177d313b611a72fe6f6951","before":"7621d7c0b9ab85c7bf0720defaade43bcc0941fb","commits":[{"sha":"665827d02387506ca5177d313b611a72fe6f6951","author":{"email":"10f258ee912bdd79d094034bf50cfe8c68b73bc7@gmail.com","name":"523860169"},"message":"update","distinct":true,"url":"https://api.github.com/repos/523860169/sh/commits/665827d02387506ca5177d313b611a72fe6f6951"}]},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652556","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28496455,"name":"cdpython/cdpython.github.io","url":"https://api.github.com/repos/cdpython/cdpython.github.io"},"payload":{"push_id":536864671,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"450262d654b6c98b48098a60541c4fdc9318afe4","before":"3dd0947cb4c87b47261123124f174c8c7bab232f","commits":[{"sha":"450262d654b6c98b48098a60541c4fdc9318afe4","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월  2일 금요일 00시 02분 59초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/cdpython.github.io/commits/450262d654b6c98b48098a60541c4fdc9318afe4"}]},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652558","type":"PushEvent","actor":{"id":10074264,"login":"DamonY","gravatar_id":"","url":"https://api.github.com/users/DamonY","avatar_url":"https://avatars.githubusercontent.com/u/10074264?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536864672,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3907ebfae6676ca8c9ac3764bd2c2865ee30a29d","before":"a5b0ce764f0c7d5c12ae9e8e7419242979ce70ba","commits":[{"sha":"83f44b33c446d2493c4454fa013d2792087bef5c","author":{"email":"de1f57f9acd14bb15fedd1d31467f4e857e48658@qq.com","name":"DamonY"},"message":"添加连接","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/83f44b33c446d2493c4454fa013d2792087bef5c"},{"sha":"3907ebfae6676ca8c9ac3764bd2c2865ee30a29d","author":{"email":"de1f57f9acd14bb15fedd1d31467f4e857e48658@qq.com","name":"DamonY"},"message":"Merge branch 'master' of https://github.com/ZhangboTeam/Adinnet.MQE.git","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/3907ebfae6676ca8c9ac3764bd2c2865ee30a29d"}]},"public":true,"created_at":"2015-01-01T15:03:12Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}}
,{"id":"2489652559","type":"CreateEvent","actor":{"id":994018,"login":"weakboson","gravatar_id":"","url":"https://api.github.com/users/weakboson","avatar_url":"https://avatars.githubusercontent.com/u/994018?"},"repo":{"id":28688655,"name":"weakboson/sample_app_rails42","url":"https://api.github.com/repos/weakboson/sample_app_rails42"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:12Z"}
,{"id":"2489652565","type":"WatchEvent","actor":{"id":7851390,"login":"egordor","gravatar_id":"","url":"https://api.github.com/users/egordor","avatar_url":"https://avatars.githubusercontent.com/u/7851390?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:14Z"}
,{"id":"2489652567","type":"IssueCommentEvent","actor":{"id":829924,"login":"franciscojunior","gravatar_id":"","url":"https://api.github.com/users/franciscojunior","avatar_url":"https://avatars.githubusercontent.com/u/829924?"},"repo":{"id":2883574,"name":"npgsql/npgsql","url":"https://api.github.com/repos/npgsql/npgsql"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/npgsql/npgsql/issues/447","labels_url":"https://api.github.com/repos/npgsql/npgsql/issues/447/labels{/name}","comments_url":"https://api.github.com/repos/npgsql/npgsql/issues/447/comments","events_url":"https://api.github.com/repos/npgsql/npgsql/issues/447/events","html_url":"https://github.com/npgsql/npgsql/issues/447","id":53205767,"number":447,"title":"Switch to 100% binary and extended protocol everywhere?","user":{"login":"roji","id":1862641,"avatar_url":"https://avatars.githubusercontent.com/u/1862641?v=3","gravatar_id":"","url":"https://api.github.com/users/roji","html_url":"https://github.com/roji","followers_url":"https://api.github.com/users/roji/followers","following_url":"https://api.github.com/users/roji/following{/other_user}","gists_url":"https://api.github.com/users/roji/gists{/gist_id}","starred_url":"https://api.github.com/users/roji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roji/subscriptions","organizations_url":"https://api.github.com/users/roji/orgs","repos_url":"https://api.github.com/users/roji/repos","events_url":"https://api.github.com/users/roji/events{/privacy}","received_events_url":"https://api.github.com/users/roji/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"roji","id":1862641,"avatar_url":"https://avatars.githubusercontent.com/u/1862641?v=3","gravatar_id":"","url":"https://api.github.com/users/roji","html_url":"https://github.com/roji","followers_url":"https://api.github.com/users/roji/followers","following_url":"https://api.github.com/users/roji/following{/other_user}","gists_url":"https://api.github.com/users/roji/gists{/gist_id}","starred_url":"https://api.github.com/users/roji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/roji/subscriptions","organizations_url":"https://api.github.com/users/roji/orgs","repos_url":"https://api.github.com/users/roji/repos","events_url":"https://api.github.com/users/roji/events{/privacy}","received_events_url":"https://api.github.com/users/roji/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/npgsql/npgsql/milestones/3","labels_url":"https://api.github.com/repos/npgsql/npgsql/milestones/3/labels","id":620657,"number":3,"title":"3.0","description":"","creator":{"login":"franciscojunior","id":829924,"avatar_url":"https://avatars.githubusercontent.com/u/829924?v=3","gravatar_id":"","url":"https://api.github.com/users/franciscojunior","html_url":"https://github.com/franciscojunior","followers_url":"https://api.github.com/users/franciscojunior/followers","following_url":"https://api.github.com/users/franciscojunior/following{/other_user}","gists_url":"https://api.github.com/users/franciscojunior/gists{/gist_id}","starred_url":"https://api.github.com/users/franciscojunior/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/franciscojunior/subscriptions","organizations_url":"https://api.github.com/users/franciscojunior/orgs","repos_url":"https://api.github.com/users/franciscojunior/repos","events_url":"https://api.github.com/users/franciscojunior/events{/privacy}","received_events_url":"https://api.github.com/users/franciscojunior/received_events","type":"User","site_admin":false},"open_issues":38,"closed_issues":20,"state":"open","created_at":"2014-04-04T16:37:19Z","updated_at":"2015-01-01T06:18:34Z","due_on":null,"closed_at":null},"comments":8,"created_at":"2014-12-31T22:06:40Z","updated_at":"2015-01-01T15:03:14Z","closed_at":null,"body":"In #370 we discussed various aspects of switching to the extended query protocol, and also to binary encoding. @Emill and I discussed this again recently on our [gitter channel](https://gitter.im/npgsql/npgsql), and I wanted to get your opinions (@franciscojunior @jbcooley @glenebob). I'm sorry if revisiting this subject again is annoying.\r\n\r\nTo recall the situation, we can only request binary values using the extended query protocol, and we currently use extended query protocol only in prepared statements. In #370 we already discussed switching to the extended query protocol for non-prepared parameterized queries; this would remove a big chunk of complexity in client-side query rewriting, allow use of binary encoding when receiving values, etc. Once we do this we can also drop text encoding entirely for *sending* values to the database.\r\n\r\nSo after thinking about the whole thing some more, I now think that v3.0 should be a 100% binary-only, extended-query-only provider - I can see no real reasons for maintaining either text encoding or the simple protocol. The new read_refactor branch implements binary encoding for almost all PostgreSQL built-in types, including exotic types such as geometric and networking types, and the few types that haven't been binarized can be done for v3.0.\r\n\r\nNow, the main argument against going binary-only was unknown types - types defined by extensions are unknown to Npgsql so they're binary representation can't be decoded. With text encoding we can at least hand off the string to the user. To address this problem, we can allow a user to turn on a \"text-only\" flag on a command before executing it. This would make Npgsql request all results in text, and the user can access them as strings. The only drawback I can see is that one can't mix text and binary in the same query, so even simple ints have to be accessed as strings. The user has the option of either separating \"unknown-type queries\" from normal queries, or to deal with text representations of known types themselves - IMHO this is a very acceptable situation for the extremely rare unknown type problem (which will become even rarer as we implement support for more and more types).\r\n\r\nNote that as @franciscojunior suggested, the unknown type problem can be partially mitigated also by allowing external type handlers to be registered with Npgsql (although I think it's a bit early to actually allow that in 3.0).\r\n\r\nPros:\r\n* A transparent performance boost thanks to binary encoding. With the current situation, users have to be aware that binary encoding requires preparing the query, the fact that this entails two roundtrips... It's complicated and it involves users in the inner workings of both Npgsql and the PostgreSQL protocol. Making everything binary and extended-protocol makes the performance boost accessible to everyone in a transparent and easy way.\r\n* No more mucking around with locale settings which affect text representations (e.g. lc_monetary for money which causes #163, DateStyle=ISO...). Note that Npgsql users may want to work with PostgreSQL functions which depend on these settings, and Npgsql interferes with them to make text decoding possible.\r\n* No more loss of precision converting floating point values to and from text. Binary \"conversion\" is 100% accurate. (see #324).\r\n* Greatly simplifies our code base: text encoding and the simple protocol can simply be cut out, no more need to maintain two encoding paths for each type, etc. Npgsql becomes very lean and lightweight without losing any real functionality.\r\n\r\nCons:\r\n* Unknown (or text-only) types are a bit clumsy to use - they can't be easily mixed with known types (a query is either all-binary or all-text).\r\n* Multi-resultset queries aren't supported with the extended protocol. We'd have to fake them by sending multiple extended-protocol queries (but this can still be done in a single message, so only one roundtrip).\r\n* There was some mention of the extended protocol being less efficient than the simple protocol. We need to evaluate this with an actual performance test, but I also think the performance gains due to binary encoding should at the very least offset this.\r\n"},"comment":{"url":"https://api.github.com/repos/npgsql/npgsql/issues/comments/68488548","html_url":"https://github.com/npgsql/npgsql/issues/447#issuecomment-68488548","issue_url":"https://api.github.com/repos/npgsql/npgsql/issues/447","id":68488548,"user":{"login":"franciscojunior","id":829924,"avatar_url":"https://avatars.githubusercontent.com/u/829924?v=3","gravatar_id":"","url":"https://api.github.com/users/franciscojunior","html_url":"https://github.com/franciscojunior","followers_url":"https://api.github.com/users/franciscojunior/followers","following_url":"https://api.github.com/users/franciscojunior/following{/other_user}","gists_url":"https://api.github.com/users/franciscojunior/gists{/gist_id}","starred_url":"https://api.github.com/users/franciscojunior/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/franciscojunior/subscriptions","organizations_url":"https://api.github.com/users/franciscojunior/orgs","repos_url":"https://api.github.com/users/franciscojunior/repos","events_url":"https://api.github.com/users/franciscojunior/events{/privacy}","received_events_url":"https://api.github.com/users/franciscojunior/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:14Z","updated_at":"2015-01-01T15:03:14Z","body":"> In #370 we discussed various aspects of switching to the extended query protocol, and also to binary encoding. @Emill and I discussed this again recently on our gitter channel, and I wanted to get your opinions (@franciscojunior @jbcooley @glenebob). I'm sorry if revisiting this subject again is annoying.\r\n\r\nIt is not annoying at all. I hope I can contribute with the discussion... :)\r\n\r\nAnd first of all, I'm +1 to the binary approach. I'm just worried about the possible compromises we will have to make. I'll talk about that in the comments below...\r\n\r\n> IMHO this is a very acceptable situation for the extremely rare unknown type problem (which will become even rarer as we implement support for more and more types).\r\n\r\nI think so, but we would need to check that. I don't know how many different data types are being used which we would break with that. I think we would only be able to have a good picture of it when we release our first 3.0 version. My suggestion would be to keep the text handling path available and we could remove it as we confirm that our users are using Npgsql ok without big problems regarding query errors. What do you think? \r\nI also liked @Emill idea of defaulting to binary path and fallbacking to text if there is any requisite. \r\nI know it is not ideal :(\r\n\r\n\r\nMy main concern right now the the not only the amount of breakage we are heading at here. I'm also worried, after seeing the comments about implicit transactions, BEGIN/COMMIT and multiple statements that we may introduce some *limitations* to the point that users would have to program differently from what they are used to only to be able to use Npgsql. I hope I'm being too much dramatic here. :)\r\n\r\n\r\n> I think it will be a bit problematic with multiple-statement queries in the extended protocol if we just send separate queries. With the simple query protocol, the statements seem to be done inside a transaction.\r\n\r\nI'm wondering how jdbc guys work on this situation. I may be wrong, but I think they use the extended protocol exclusively. Maybe we could have a look at how they handle this situation and try a similar approach in Npgsql. :)\r\n\r\n \r\n\r\n> I actually just had another thought about the unknown type problem. Rather than the \"all-text\" flag I proposed above, we can simply allow the user to specify that the result column at a certain index should be returned as text. Npgsql will then request binary encoding for all columns by default, except those which have been flagged as text only. When Npgsql receives the results, columns which are transferred as text are simply untouched by Npgsql.\r\n\r\nHmmm, what happens if we handle those unknown types as text and decode them as text and give them to the user? \r\n\r\nAnother idea, would it be possible for us to detect in advance those unknown types and instead of asking the user to flag those columns which need to be text, we could just flag them ourselves, or at least ask them to be all text? This way we would eliminate any user interaction.\r\n\r\n> This means the user can mix-and-match text encoding for unknown types, while benefiting from binary everywhere else (thanks @glenebob for making me think about it). IMHO this really solves the unknown type problem, the user has total flexibility over everything, at the small price of specifying the column numbers that should be simple text.\r\n\r\nExactly! :)\r\n\r\n\r\n> I also noticed that SchemaOnly can be very elegantly implemented by simply executing Parse + Describe Statement + Sync, so I implemented that as well.\r\n\r\nExcellent, @Emill !\r\n\r\n\r\n\r\nI hope I could contribute a little bit to the discussion."}},"public":true,"created_at":"2015-01-01T15:03:14Z","org":{"id":5766497,"login":"npgsql","gravatar_id":"","url":"https://api.github.com/orgs/npgsql","avatar_url":"https://avatars.githubusercontent.com/u/5766497?"}}
,{"id":"2489652568","type":"PushEvent","actor":{"id":5471228,"login":"benweizhu","gravatar_id":"","url":"https://api.github.com/users/benweizhu","avatar_url":"https://avatars.githubusercontent.com/u/5471228?"},"repo":{"id":28537322,"name":"benweizhu/relations-with-gradle","url":"https://api.github.com/repos/benweizhu/relations-with-gradle"},"payload":{"push_id":536864678,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a48d706e6036cd56dd35c2dd32e99312336f573f","before":"2cf989d9b514a08c339b121cec7e2a41d24c749e","commits":[{"sha":"a48d706e6036cd56dd35c2dd32e99312336f573f","author":{"email":"76342f0adf4cc44fd2c629cf8e2906e516f0c101@gmail.com","name":"benweizhu"},"message":"[Relations] [Benwei] add test for One In Q","distinct":true,"url":"https://api.github.com/repos/benweizhu/relations-with-gradle/commits/a48d706e6036cd56dd35c2dd32e99312336f573f"}]},"public":true,"created_at":"2015-01-01T15:03:14Z"}
,{"id":"2489652573","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":10915686,"name":"less/less-docs","url":"https://api.github.com/repos/less/less-docs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:17Z","org":{"id":3538330,"login":"less","gravatar_id":"","url":"https://api.github.com/orgs/less","avatar_url":"https://avatars.githubusercontent.com/u/3538330?"}}
,{"id":"2489652574","type":"PullRequestEvent","actor":{"id":1330814,"login":"romainfrancez","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","avatar_url":"https://avatars.githubusercontent.com/u/1330814?"},"repo":{"id":20778549,"name":"zurb/foundation-apps","url":"https://api.github.com/repos/zurb/foundation-apps"},"payload":{"action":"opened","number":378,"pull_request":{"url":"https://api.github.com/repos/zurb/foundation-apps/pulls/378","id":26743791,"html_url":"https://github.com/zurb/foundation-apps/pull/378","diff_url":"https://github.com/zurb/foundation-apps/pull/378.diff","patch_url":"https://github.com/zurb/foundation-apps/pull/378.patch","issue_url":"https://api.github.com/repos/zurb/foundation-apps/issues/378","number":378,"state":"open","locked":false,"title":"Renamed the ui-router bower dependency to angular-ui-router ","user":{"login":"romainfrancez","id":1330814,"avatar_url":"https://avatars.githubusercontent.com/u/1330814?v=3","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","html_url":"https://github.com/romainfrancez","followers_url":"https://api.github.com/users/romainfrancez/followers","following_url":"https://api.github.com/users/romainfrancez/following{/other_user}","gists_url":"https://api.github.com/users/romainfrancez/gists{/gist_id}","starred_url":"https://api.github.com/users/romainfrancez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romainfrancez/subscriptions","organizations_url":"https://api.github.com/users/romainfrancez/orgs","repos_url":"https://api.github.com/users/romainfrancez/repos","events_url":"https://api.github.com/users/romainfrancez/events{/privacy}","received_events_url":"https://api.github.com/users/romainfrancez/received_events","type":"User","site_admin":false},"body":"UI router doc states the bower package is angular-ui-router\r\nhttps://github.com/angular-ui/ui-router#get-started\r\n\r\nIf most people follow this doc, they will end up with 2 dependencies ui-router and angular-ui-router","created_at":"2015-01-01T15:03:17Z","updated_at":"2015-01-01T15:03:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/commits","review_comments_url":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/comments","review_comment_url":"https://api.github.com/repos/zurb/foundation-apps/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zurb/foundation-apps/issues/378/comments","statuses_url":"https://api.github.com/repos/zurb/foundation-apps/statuses/88067743053aee4ff5395dbae5bd26e3607eaa10","head":{"label":"romainfrancez:master","ref":"master","sha":"88067743053aee4ff5395dbae5bd26e3607eaa10","user":{"login":"romainfrancez","id":1330814,"avatar_url":"https://avatars.githubusercontent.com/u/1330814?v=3","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","html_url":"https://github.com/romainfrancez","followers_url":"https://api.github.com/users/romainfrancez/followers","following_url":"https://api.github.com/users/romainfrancez/following{/other_user}","gists_url":"https://api.github.com/users/romainfrancez/gists{/gist_id}","starred_url":"https://api.github.com/users/romainfrancez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romainfrancez/subscriptions","organizations_url":"https://api.github.com/users/romainfrancez/orgs","repos_url":"https://api.github.com/users/romainfrancez/repos","events_url":"https://api.github.com/users/romainfrancez/events{/privacy}","received_events_url":"https://api.github.com/users/romainfrancez/received_events","type":"User","site_admin":false},"repo":{"id":28688202,"name":"foundation-apps","full_name":"romainfrancez/foundation-apps","owner":{"login":"romainfrancez","id":1330814,"avatar_url":"https://avatars.githubusercontent.com/u/1330814?v=3","gravatar_id":"","url":"https://api.github.com/users/romainfrancez","html_url":"https://github.com/romainfrancez","followers_url":"https://api.github.com/users/romainfrancez/followers","following_url":"https://api.github.com/users/romainfrancez/following{/other_user}","gists_url":"https://api.github.com/users/romainfrancez/gists{/gist_id}","starred_url":"https://api.github.com/users/romainfrancez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/romainfrancez/subscriptions","organizations_url":"https://api.github.com/users/romainfrancez/orgs","repos_url":"https://api.github.com/users/romainfrancez/repos","events_url":"https://api.github.com/users/romainfrancez/events{/privacy}","received_events_url":"https://api.github.com/users/romainfrancez/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/romainfrancez/foundation-apps","description":"The first front-end framework created for developing fully responsive web apps.","fork":true,"url":"https://api.github.com/repos/romainfrancez/foundation-apps","forks_url":"https://api.github.com/repos/romainfrancez/foundation-apps/forks","keys_url":"https://api.github.com/repos/romainfrancez/foundation-apps/keys{/key_id}","collaborators_url":"https://api.github.com/repos/romainfrancez/foundation-apps/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/romainfrancez/foundation-apps/teams","hooks_url":"https://api.github.com/repos/romainfrancez/foundation-apps/hooks","issue_events_url":"https://api.github.com/repos/romainfrancez/foundation-apps/issues/events{/number}","events_url":"https://api.github.com/repos/romainfrancez/foundation-apps/events","assignees_url":"https://api.github.com/repos/romainfrancez/foundation-apps/assignees{/user}","branches_url":"https://api.github.com/repos/romainfrancez/foundation-apps/branches{/branch}","tags_url":"https://api.github.com/repos/romainfrancez/foundation-apps/tags","blobs_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/refs{/sha}","trees_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/trees{/sha}","statuses_url":"https://api.github.com/repos/romainfrancez/foundation-apps/statuses/{sha}","languages_url":"https://api.github.com/repos/romainfrancez/foundation-apps/languages","stargazers_url":"https://api.github.com/repos/romainfrancez/foundation-apps/stargazers","contributors_url":"https://api.github.com/repos/romainfrancez/foundation-apps/contributors","subscribers_url":"https://api.github.com/repos/romainfrancez/foundation-apps/subscribers","subscription_url":"https://api.github.com/repos/romainfrancez/foundation-apps/subscription","commits_url":"https://api.github.com/repos/romainfrancez/foundation-apps/commits{/sha}","git_commits_url":"https://api.github.com/repos/romainfrancez/foundation-apps/git/commits{/sha}","comments_url":"https://api.github.com/repos/romainfrancez/foundation-apps/comments{/number}","issue_comment_url":"https://api.github.com/repos/romainfrancez/foundation-apps/issues/comments/{number}","contents_url":"https://api.github.com/repos/romainfrancez/foundation-apps/contents/{+path}","compare_url":"https://api.github.com/repos/romainfrancez/foundation-apps/compare/{base}...{head}","merges_url":"https://api.github.com/repos/romainfrancez/foundation-apps/merges","archive_url":"https://api.github.com/repos/romainfrancez/foundation-apps/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/romainfrancez/foundation-apps/downloads","issues_url":"https://api.github.com/repos/romainfrancez/foundation-apps/issues{/number}","pulls_url":"https://api.github.com/repos/romainfrancez/foundation-apps/pulls{/number}","milestones_url":"https://api.github.com/repos/romainfrancez/foundation-apps/milestones{/number}","notifications_url":"https://api.github.com/repos/romainfrancez/foundation-apps/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/romainfrancez/foundation-apps/labels{/name}","releases_url":"https://api.github.com/repos/romainfrancez/foundation-apps/releases{/id}","created_at":"2015-01-01T14:36:16Z","updated_at":"2015-01-01T14:55:54Z","pushed_at":"2015-01-01T14:55:53Z","git_url":"git://github.com/romainfrancez/foundation-apps.git","ssh_url":"git@github.com:romainfrancez/foundation-apps.git","clone_url":"https://github.com/romainfrancez/foundation-apps.git","svn_url":"https://github.com/romainfrancez/foundation-apps","homepage":"http://foundation.zurb.com/apps","size":8744,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"zurb:master","ref":"master","sha":"ff33e2da2e0413d4ec9d5fade525c840094e0444","user":{"login":"zurb","id":156122,"avatar_url":"https://avatars.githubusercontent.com/u/156122?v=3","gravatar_id":"","url":"https://api.github.com/users/zurb","html_url":"https://github.com/zurb","followers_url":"https://api.github.com/users/zurb/followers","following_url":"https://api.github.com/users/zurb/following{/other_user}","gists_url":"https://api.github.com/users/zurb/gists{/gist_id}","starred_url":"https://api.github.com/users/zurb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zurb/subscriptions","organizations_url":"https://api.github.com/users/zurb/orgs","repos_url":"https://api.github.com/users/zurb/repos","events_url":"https://api.github.com/users/zurb/events{/privacy}","received_events_url":"https://api.github.com/users/zurb/received_events","type":"Organization","site_admin":false},"repo":{"id":20778549,"name":"foundation-apps","full_name":"zurb/foundation-apps","owner":{"login":"zurb","id":156122,"avatar_url":"https://avatars.githubusercontent.com/u/156122?v=3","gravatar_id":"","url":"https://api.github.com/users/zurb","html_url":"https://github.com/zurb","followers_url":"https://api.github.com/users/zurb/followers","following_url":"https://api.github.com/users/zurb/following{/other_user}","gists_url":"https://api.github.com/users/zurb/gists{/gist_id}","starred_url":"https://api.github.com/users/zurb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zurb/subscriptions","organizations_url":"https://api.github.com/users/zurb/orgs","repos_url":"https://api.github.com/users/zurb/repos","events_url":"https://api.github.com/users/zurb/events{/privacy}","received_events_url":"https://api.github.com/users/zurb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/zurb/foundation-apps","description":"The first front-end framework created for developing fully responsive web apps.","fork":false,"url":"https://api.github.com/repos/zurb/foundation-apps","forks_url":"https://api.github.com/repos/zurb/foundation-apps/forks","keys_url":"https://api.github.com/repos/zurb/foundation-apps/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zurb/foundation-apps/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zurb/foundation-apps/teams","hooks_url":"https://api.github.com/repos/zurb/foundation-apps/hooks","issue_events_url":"https://api.github.com/repos/zurb/foundation-apps/issues/events{/number}","events_url":"https://api.github.com/repos/zurb/foundation-apps/events","assignees_url":"https://api.github.com/repos/zurb/foundation-apps/assignees{/user}","branches_url":"https://api.github.com/repos/zurb/foundation-apps/branches{/branch}","tags_url":"https://api.github.com/repos/zurb/foundation-apps/tags","blobs_url":"https://api.github.com/repos/zurb/foundation-apps/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zurb/foundation-apps/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zurb/foundation-apps/git/refs{/sha}","trees_url":"https://api.github.com/repos/zurb/foundation-apps/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zurb/foundation-apps/statuses/{sha}","languages_url":"https://api.github.com/repos/zurb/foundation-apps/languages","stargazers_url":"https://api.github.com/repos/zurb/foundation-apps/stargazers","contributors_url":"https://api.github.com/repos/zurb/foundation-apps/contributors","subscribers_url":"https://api.github.com/repos/zurb/foundation-apps/subscribers","subscription_url":"https://api.github.com/repos/zurb/foundation-apps/subscription","commits_url":"https://api.github.com/repos/zurb/foundation-apps/commits{/sha}","git_commits_url":"https://api.github.com/repos/zurb/foundation-apps/git/commits{/sha}","comments_url":"https://api.github.com/repos/zurb/foundation-apps/comments{/number}","issue_comment_url":"https://api.github.com/repos/zurb/foundation-apps/issues/comments/{number}","contents_url":"https://api.github.com/repos/zurb/foundation-apps/contents/{+path}","compare_url":"https://api.github.com/repos/zurb/foundation-apps/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zurb/foundation-apps/merges","archive_url":"https://api.github.com/repos/zurb/foundation-apps/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zurb/foundation-apps/downloads","issues_url":"https://api.github.com/repos/zurb/foundation-apps/issues{/number}","pulls_url":"https://api.github.com/repos/zurb/foundation-apps/pulls{/number}","milestones_url":"https://api.github.com/repos/zurb/foundation-apps/milestones{/number}","notifications_url":"https://api.github.com/repos/zurb/foundation-apps/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zurb/foundation-apps/labels{/name}","releases_url":"https://api.github.com/repos/zurb/foundation-apps/releases{/id}","created_at":"2014-06-12T18:35:41Z","updated_at":"2015-01-01T08:27:26Z","pushed_at":"2014-12-23T23:21:01Z","git_url":"git://github.com/zurb/foundation-apps.git","ssh_url":"git@github.com:zurb/foundation-apps.git","clone_url":"https://github.com/zurb/foundation-apps.git","svn_url":"https://github.com/zurb/foundation-apps","homepage":"http://foundation.zurb.com/apps","size":8744,"stargazers_count":891,"watchers_count":891,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":90,"mirror_url":null,"open_issues_count":39,"forks":90,"open_issues":39,"watchers":891,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/378"},"html":{"href":"https://github.com/zurb/foundation-apps/pull/378"},"issue":{"href":"https://api.github.com/repos/zurb/foundation-apps/issues/378"},"comments":{"href":"https://api.github.com/repos/zurb/foundation-apps/issues/378/comments"},"review_comments":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/comments"},"review_comment":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zurb/foundation-apps/pulls/378/commits"},"statuses":{"href":"https://api.github.com/repos/zurb/foundation-apps/statuses/88067743053aee4ff5395dbae5bd26e3607eaa10"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:03:17Z","org":{"id":156122,"login":"zurb","gravatar_id":"","url":"https://api.github.com/orgs/zurb","avatar_url":"https://avatars.githubusercontent.com/u/156122?"}}
,{"id":"2489652580","type":"WatchEvent","actor":{"id":2820647,"login":"ikkentim","gravatar_id":"","url":"https://api.github.com/users/ikkentim","avatar_url":"https://avatars.githubusercontent.com/u/2820647?"},"repo":{"id":26284176,"name":"DY357LX/Logitech-G15-SDK","url":"https://api.github.com/repos/DY357LX/Logitech-G15-SDK"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:18Z"}
,{"id":"2489652581","type":"IssueCommentEvent","actor":{"id":891655,"login":"jalvesaq","gravatar_id":"","url":"https://api.github.com/users/jalvesaq","avatar_url":"https://avatars.githubusercontent.com/u/891655?"},"repo":{"id":16408992,"name":"neovim/neovim","url":"https://api.github.com/repos/neovim/neovim"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/neovim/neovim/issues/1584","labels_url":"https://api.github.com/repos/neovim/neovim/issues/1584/labels{/name}","comments_url":"https://api.github.com/repos/neovim/neovim/issues/1584/comments","events_url":"https://api.github.com/repos/neovim/neovim/issues/1584/events","html_url":"https://github.com/neovim/neovim/pull/1584","id":50469699,"number":1584,"title":"[RFC] job: Add optional {flags} parameter.","user":{"login":"splinterofchaos","id":38515,"avatar_url":"https://avatars.githubusercontent.com/u/38515?v=3","gravatar_id":"","url":"https://api.github.com/users/splinterofchaos","html_url":"https://github.com/splinterofchaos","followers_url":"https://api.github.com/users/splinterofchaos/followers","following_url":"https://api.github.com/users/splinterofchaos/following{/other_user}","gists_url":"https://api.github.com/users/splinterofchaos/gists{/gist_id}","starred_url":"https://api.github.com/users/splinterofchaos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/splinterofchaos/subscriptions","organizations_url":"https://api.github.com/users/splinterofchaos/orgs","repos_url":"https://api.github.com/users/splinterofchaos/repos","events_url":"https://api.github.com/users/splinterofchaos/events{/privacy}","received_events_url":"https://api.github.com/users/splinterofchaos/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/neovim/neovim/labels/enhancement","name":"enhancement","color":"bfe5bf"},{"url":"https://api.github.com/repos/neovim/neovim/labels/RFC","name":"RFC","color":"ededed"},{"url":"https://api.github.com/repos/neovim/neovim/labels/shell","name":"shell","color":"c7def8"},{"url":"https://api.github.com/repos/neovim/neovim/labels/usability","name":"usability","color":"c7def8"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":40,"created_at":"2014-11-30T20:35:32Z","updated_at":"2015-01-01T15:03:16Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/neovim/neovim/pulls/1584","html_url":"https://github.com/neovim/neovim/pull/1584","diff_url":"https://github.com/neovim/neovim/pull/1584.diff","patch_url":"https://github.com/neovim/neovim/pull/1584.patch"},"body":"fixes #1574"},"comment":{"url":"https://api.github.com/repos/neovim/neovim/issues/comments/68488549","html_url":"https://github.com/neovim/neovim/pull/1584#issuecomment-68488549","issue_url":"https://api.github.com/repos/neovim/neovim/issues/1584","id":68488549,"user":{"login":"jalvesaq","id":891655,"avatar_url":"https://avatars.githubusercontent.com/u/891655?v=3","gravatar_id":"","url":"https://api.github.com/users/jalvesaq","html_url":"https://github.com/jalvesaq","followers_url":"https://api.github.com/users/jalvesaq/followers","following_url":"https://api.github.com/users/jalvesaq/following{/other_user}","gists_url":"https://api.github.com/users/jalvesaq/gists{/gist_id}","starred_url":"https://api.github.com/users/jalvesaq/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jalvesaq/subscriptions","organizations_url":"https://api.github.com/users/jalvesaq/orgs","repos_url":"https://api.github.com/users/jalvesaq/repos","events_url":"https://api.github.com/users/jalvesaq/events{/privacy}","received_events_url":"https://api.github.com/users/jalvesaq/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:16Z","updated_at":"2015-01-01T15:03:16Z","body":"If you want to automate the test, you could put `writefile(getline(1, \"$\"), fname)` before the command `quit` and check if `fname` contents are:\r\n```\r\n\r\nThis is the line number 1\r\nThis is the line number 2\r\nThis is the line number 3\r\nThis is the line number 4\r\n```\r\n"}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":6471485,"login":"neovim","gravatar_id":"","url":"https://api.github.com/orgs/neovim","avatar_url":"https://avatars.githubusercontent.com/u/6471485?"}}
,{"id":"2489652586","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":929845,"name":"sass/sass","url":"https://api.github.com/repos/sass/sass"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":317889,"login":"sass","gravatar_id":"","url":"https://api.github.com/orgs/sass","avatar_url":"https://avatars.githubusercontent.com/u/317889?"}}
,{"id":"2489652588","type":"IssueCommentEvent","actor":{"id":2577481,"login":"easlee","gravatar_id":"","url":"https://api.github.com/users/easlee","avatar_url":"https://avatars.githubusercontent.com/u/2577481?"},"repo":{"id":19953044,"name":"google/flatbuffers","url":"https://api.github.com/repos/google/flatbuffers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/google/flatbuffers/issues/116","labels_url":"https://api.github.com/repos/google/flatbuffers/issues/116/labels{/name}","comments_url":"https://api.github.com/repos/google/flatbuffers/issues/116/comments","events_url":"https://api.github.com/repos/google/flatbuffers/issues/116/events","html_url":"https://github.com/google/flatbuffers/issues/116","id":53190825,"number":116,"title":"Go - table vector","user":{"login":"easlee","id":2577481,"avatar_url":"https://avatars.githubusercontent.com/u/2577481?v=3","gravatar_id":"","url":"https://api.github.com/users/easlee","html_url":"https://github.com/easlee","followers_url":"https://api.github.com/users/easlee/followers","following_url":"https://api.github.com/users/easlee/following{/other_user}","gists_url":"https://api.github.com/users/easlee/gists{/gist_id}","starred_url":"https://api.github.com/users/easlee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easlee/subscriptions","organizations_url":"https://api.github.com/users/easlee/orgs","repos_url":"https://api.github.com/users/easlee/repos","events_url":"https://api.github.com/users/easlee/events{/privacy}","received_events_url":"https://api.github.com/users/easlee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T16:19:26Z","updated_at":"2015-01-01T15:03:18Z","closed_at":"2015-01-01T15:03:18Z","body":"I have a problem when use flatbuffers, i define a fbs file, like this:\r\n \r\n```\r\nstruct Currency{\r\n    id int32\r\n    amount int32\r\n} \r\ntable Wallet{\r\n    tag int32\r\n    currencies []Currency\r\n}\r\ntable User{\r\n    id int32\r\n    wallets []Wallet\r\n}\r\n```\r\n\r\nI generate the buffer like this:\r\n\r\n```go\r\nbuilder := flatbuffers.NewBuilder(0)\r\nUserStartWalletsVector(builder, 3)\r\nfor i := 2; i >=0; i-- {\r\n    WalletStartCurrenciesVector(builder, 3)\r\n    for j := 2; j>=0;j-- {\r\n        CreateCurrency(builder, j+1, 100)\r\n    }\r\n    currencies_vec := builder.EndVector(3)\r\n    WalletStart(builder)\r\n    WalletAddTag(i+1)\r\n    WalletAddCurrencies(builder, currencies_vec)\r\n    wallet := WalletEnd(builder)\r\n    //How to add the wallet ???, I use follow code, but error \r\n    builder.PrependUOffsetT(wallet)\r\n}\r\nwallets_vec := builder.EndVector(3)\r\n\r\nUserStart(builder)\r\nUserAddId(builder, 19)\r\nUserAddWalletsVector(builder, wallets_vec)\r\nuser := UserEnd(builder)\r\nbuilder.Finish(user)\r\n\r\nbuffer := builder.Bytes[builder:Head():]\r\n```\r\n\r\nI dont know how to add a table into a vector, in \"monster_test.fbs\", it has follow field:\r\n```\r\nline 39:  testarrayoftables:[Monster] (id: 11);\r\n```\r\nbut none test case to show how to set it.\r\n\r\nWho knows how to solve it??"},"comment":{"url":"https://api.github.com/repos/google/flatbuffers/issues/comments/68488550","html_url":"https://github.com/google/flatbuffers/issues/116#issuecomment-68488550","issue_url":"https://api.github.com/repos/google/flatbuffers/issues/116","id":68488550,"user":{"login":"easlee","id":2577481,"avatar_url":"https://avatars.githubusercontent.com/u/2577481?v=3","gravatar_id":"","url":"https://api.github.com/users/easlee","html_url":"https://github.com/easlee","followers_url":"https://api.github.com/users/easlee/followers","following_url":"https://api.github.com/users/easlee/following{/other_user}","gists_url":"https://api.github.com/users/easlee/gists{/gist_id}","starred_url":"https://api.github.com/users/easlee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easlee/subscriptions","organizations_url":"https://api.github.com/users/easlee/orgs","repos_url":"https://api.github.com/users/easlee/repos","events_url":"https://api.github.com/users/easlee/events{/privacy}","received_events_url":"https://api.github.com/users/easlee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:03:18Z","body":"I read the source code of C++ and Go, tried many times, finally solved the problem.\r\n\r\n```go\r\nwallets_count := 3\r\nbuilder := flatbuffers.NewBuilder(0)\r\nwallet_slice := make([]fb.UOffsetT, wallets_count, wallets_count)\r\n\r\n//NOTE: MUST FROM 0 TO N\r\nfor i := 0; i <wallets_count; i++ {\r\n    WalletStartCurrenciesVector(builder, 3)\r\n    //NOTE: MUST FROM N TO 0\r\n    for j := 2; j>=0;j-- {\r\n        CreateCurrency(builder, j+1, 100)\r\n    }\r\n    currencies_vec := builder.EndVector(3)\r\n    WalletStart(builder)\r\n    WalletAddTag(i+1)\r\n    WalletAddCurrencies(builder, currencies_vec)\r\n    wallets_slice[i] = WalletEnd(builder)\r\n}\r\nUserStartWalletsVector(builder,wallets_count)\r\n//NOTE:MUST FROM N TO 0\r\nfor i := wallets_count-1; i >= 0; i--{\r\n    builder.PrependUOffsetT(wallets_slice[i])\r\n}\r\nwallets_vec := builder.EndVector(wallets_count)\r\n\r\nUserStart(builder)\r\nUserAddId(builder, 19)\r\nUserAddWalletsVector(builder, wallets_vec)\r\nuser := UserEnd(builder)\r\nbuilder.Finish(user)\r\n\r\nbuffer := builder.Bytes[builder:Head():]\r\n```"}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}}
,{"id":"2489652589","type":"IssuesEvent","actor":{"id":10364412,"login":"Liverkiller14","gravatar_id":"","url":"https://api.github.com/users/Liverkiller14","avatar_url":"https://avatars.githubusercontent.com/u/10364412?"},"repo":{"id":28636705,"name":"The-1-7-10-Pack/The-1.7.10-Pack","url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","labels_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/comments","events_url":"https://api.github.com/repos/The-1-7-10-Pack/The-1.7.10-Pack/issues/13/events","html_url":"https://github.com/The-1-7-10-Pack/The-1.7.10-Pack/issues/13","id":53221396,"number":13,"title":"Server crash when launch","user":{"login":"Liverkiller14","id":10364412,"avatar_url":"https://avatars.githubusercontent.com/u/10364412?v=3","gravatar_id":"","url":"https://api.github.com/users/Liverkiller14","html_url":"https://github.com/Liverkiller14","followers_url":"https://api.github.com/users/Liverkiller14/followers","following_url":"https://api.github.com/users/Liverkiller14/following{/other_user}","gists_url":"https://api.github.com/users/Liverkiller14/gists{/gist_id}","starred_url":"https://api.github.com/users/Liverkiller14/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Liverkiller14/subscriptions","organizations_url":"https://api.github.com/users/Liverkiller14/orgs","repos_url":"https://api.github.com/users/Liverkiller14/repos","events_url":"https://api.github.com/users/Liverkiller14/events{/privacy}","received_events_url":"https://api.github.com/users/Liverkiller14/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:03:18Z","closed_at":null,"body":"Anytime i try launch my server for my friends to play on it crashes (Im using 0.6.1)"}},"public":true,"created_at":"2015-01-01T15:03:18Z"}
,{"id":"2489652590","type":"IssuesEvent","actor":{"id":2577481,"login":"easlee","gravatar_id":"","url":"https://api.github.com/users/easlee","avatar_url":"https://avatars.githubusercontent.com/u/2577481?"},"repo":{"id":19953044,"name":"google/flatbuffers","url":"https://api.github.com/repos/google/flatbuffers"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/google/flatbuffers/issues/116","labels_url":"https://api.github.com/repos/google/flatbuffers/issues/116/labels{/name}","comments_url":"https://api.github.com/repos/google/flatbuffers/issues/116/comments","events_url":"https://api.github.com/repos/google/flatbuffers/issues/116/events","html_url":"https://github.com/google/flatbuffers/issues/116","id":53190825,"number":116,"title":"Go - table vector","user":{"login":"easlee","id":2577481,"avatar_url":"https://avatars.githubusercontent.com/u/2577481?v=3","gravatar_id":"","url":"https://api.github.com/users/easlee","html_url":"https://github.com/easlee","followers_url":"https://api.github.com/users/easlee/followers","following_url":"https://api.github.com/users/easlee/following{/other_user}","gists_url":"https://api.github.com/users/easlee/gists{/gist_id}","starred_url":"https://api.github.com/users/easlee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/easlee/subscriptions","organizations_url":"https://api.github.com/users/easlee/orgs","repos_url":"https://api.github.com/users/easlee/repos","events_url":"https://api.github.com/users/easlee/events{/privacy}","received_events_url":"https://api.github.com/users/easlee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T16:19:26Z","updated_at":"2015-01-01T15:03:18Z","closed_at":"2015-01-01T15:03:18Z","body":"I have a problem when use flatbuffers, i define a fbs file, like this:\r\n \r\n```\r\nstruct Currency{\r\n    id int32\r\n    amount int32\r\n} \r\ntable Wallet{\r\n    tag int32\r\n    currencies []Currency\r\n}\r\ntable User{\r\n    id int32\r\n    wallets []Wallet\r\n}\r\n```\r\n\r\nI generate the buffer like this:\r\n\r\n```go\r\nbuilder := flatbuffers.NewBuilder(0)\r\nUserStartWalletsVector(builder, 3)\r\nfor i := 2; i >=0; i-- {\r\n    WalletStartCurrenciesVector(builder, 3)\r\n    for j := 2; j>=0;j-- {\r\n        CreateCurrency(builder, j+1, 100)\r\n    }\r\n    currencies_vec := builder.EndVector(3)\r\n    WalletStart(builder)\r\n    WalletAddTag(i+1)\r\n    WalletAddCurrencies(builder, currencies_vec)\r\n    wallet := WalletEnd(builder)\r\n    //How to add the wallet ???, I use follow code, but error \r\n    builder.PrependUOffsetT(wallet)\r\n}\r\nwallets_vec := builder.EndVector(3)\r\n\r\nUserStart(builder)\r\nUserAddId(builder, 19)\r\nUserAddWalletsVector(builder, wallets_vec)\r\nuser := UserEnd(builder)\r\nbuilder.Finish(user)\r\n\r\nbuffer := builder.Bytes[builder:Head():]\r\n```\r\n\r\nI dont know how to add a table into a vector, in \"monster_test.fbs\", it has follow field:\r\n```\r\nline 39:  testarrayoftables:[Monster] (id: 11);\r\n```\r\nbut none test case to show how to set it.\r\n\r\nWho knows how to solve it??"}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}}
,{"id":"2489652591","type":"PullRequestEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28668553,"name":"Raulfin/PCaPP","url":"https://api.github.com/repos/Raulfin/PCaPP"},"payload":{"action":"reopened","number":1,"pull_request":{"url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1","id":26743778,"html_url":"https://github.com/Raulfin/PCaPP/pull/1","diff_url":"https://github.com/Raulfin/PCaPP/pull/1.diff","patch_url":"https://github.com/Raulfin/PCaPP/pull/1.patch","issue_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","number":1,"state":"open","locked":false,"title":"Armor.xml","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"body":"I noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks.","created_at":"2015-01-01T15:01:06Z","updated_at":"2015-01-01T15:03:18Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4c5e46652ee9c081144d8da174f4b0f65de76ec2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits","review_comments_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments","review_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","head":{"label":"Derathir:patch-1","ref":"patch-1","sha":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"repo":{"id":28687886,"name":"PCaPP","full_name":"Derathir/PCaPP","owner":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Derathir/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":true,"url":"https://api.github.com/repos/Derathir/PCaPP","forks_url":"https://api.github.com/repos/Derathir/PCaPP/forks","keys_url":"https://api.github.com/repos/Derathir/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Derathir/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Derathir/PCaPP/teams","hooks_url":"https://api.github.com/repos/Derathir/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Derathir/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Derathir/PCaPP/events","assignees_url":"https://api.github.com/repos/Derathir/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Derathir/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Derathir/PCaPP/tags","blobs_url":"https://api.github.com/repos/Derathir/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Derathir/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Derathir/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Derathir/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Derathir/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Derathir/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Derathir/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Derathir/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Derathir/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Derathir/PCaPP/subscription","commits_url":"https://api.github.com/repos/Derathir/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Derathir/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Derathir/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Derathir/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Derathir/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Derathir/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Derathir/PCaPP/merges","archive_url":"https://api.github.com/repos/Derathir/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Derathir/PCaPP/downloads","issues_url":"https://api.github.com/repos/Derathir/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Derathir/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Derathir/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Derathir/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Derathir/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Derathir/PCaPP/releases{/id}","created_at":"2015-01-01T14:16:43Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T15:00:39Z","git_url":"git://github.com/Derathir/PCaPP.git","ssh_url":"git@github.com:Derathir/PCaPP.git","clone_url":"https://github.com/Derathir/PCaPP.git","svn_url":"https://github.com/Derathir/PCaPP","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Raulfin:master","ref":"master","sha":"d8832d838ed16e3e068fba91c423c3c424ca335b","user":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"repo":{"id":28668553,"name":"PCaPP","full_name":"Raulfin/PCaPP","owner":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Raulfin/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":false,"url":"https://api.github.com/repos/Raulfin/PCaPP","forks_url":"https://api.github.com/repos/Raulfin/PCaPP/forks","keys_url":"https://api.github.com/repos/Raulfin/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Raulfin/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Raulfin/PCaPP/teams","hooks_url":"https://api.github.com/repos/Raulfin/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Raulfin/PCaPP/events","assignees_url":"https://api.github.com/repos/Raulfin/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Raulfin/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Raulfin/PCaPP/tags","blobs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Raulfin/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Raulfin/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Raulfin/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Raulfin/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Raulfin/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Raulfin/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Raulfin/PCaPP/subscription","commits_url":"https://api.github.com/repos/Raulfin/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Raulfin/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Raulfin/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Raulfin/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Raulfin/PCaPP/merges","archive_url":"https://api.github.com/repos/Raulfin/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Raulfin/PCaPP/downloads","issues_url":"https://api.github.com/repos/Raulfin/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Raulfin/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Raulfin/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Raulfin/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Raulfin/PCaPP/releases{/id}","created_at":"2014-12-31T15:11:20Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T07:47:04Z","git_url":"git://github.com/Raulfin/PCaPP.git","ssh_url":"git@github.com:Raulfin/PCaPP.git","clone_url":"https://github.com/Raulfin/PCaPP.git","svn_url":"https://github.com/Raulfin/PCaPP","homepage":null,"size":0,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1"},"html":{"href":"https://github.com/Raulfin/PCaPP/pull/1"},"issue":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1"},"comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":28,"deletions":16,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:18Z"}
,{"id":"2489652593","type":"IssuesEvent","actor":{"id":7583891,"login":"Stickymayhem","gravatar_id":"","url":"https://api.github.com/users/Stickymayhem","avatar_url":"https://avatars.githubusercontent.com/u/7583891?"},"repo":{"id":3234987,"name":"tgstation/-tg-station","url":"https://api.github.com/repos/tgstation/-tg-station"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729","labels_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729/labels{/name}","comments_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729/comments","events_url":"https://api.github.com/repos/tgstation/-tg-station/issues/6729/events","html_url":"https://github.com/tgstation/-tg-station/issues/6729","id":53221397,"number":6729,"title":"Practice Laser shows up identically to the real laser in combat logs","user":{"login":"Stickymayhem","id":7583891,"avatar_url":"https://avatars.githubusercontent.com/u/7583891?v=3","gravatar_id":"","url":"https://api.github.com/users/Stickymayhem","html_url":"https://github.com/Stickymayhem","followers_url":"https://api.github.com/users/Stickymayhem/followers","following_url":"https://api.github.com/users/Stickymayhem/following{/other_user}","gists_url":"https://api.github.com/users/Stickymayhem/gists{/gist_id}","starred_url":"https://api.github.com/users/Stickymayhem/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Stickymayhem/subscriptions","organizations_url":"https://api.github.com/users/Stickymayhem/orgs","repos_url":"https://api.github.com/users/Stickymayhem/repos","events_url":"https://api.github.com/users/Stickymayhem/events{/privacy}","received_events_url":"https://api.github.com/users/Stickymayhem/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:18Z","updated_at":"2015-01-01T15:03:18Z","closed_at":null,"body":"[10:01:43] Has been shot by Blessed H. Legionare(blessedheretic) with The laser = null \r\n[10:02:09] Has been shot by Blessed H. Legionare(blessedheretic) with The laser = null\r\n\r\nOne is with the practice laser and one is with a real one. The projectile should probably be renamed."}},"public":true,"created_at":"2015-01-01T15:03:18Z","org":{"id":1363778,"login":"tgstation","gravatar_id":"","url":"https://api.github.com/orgs/tgstation","avatar_url":"https://avatars.githubusercontent.com/u/1363778?"}}
,{"id":"2489652594","type":"PushEvent","actor":{"id":3990778,"login":"buptjz","gravatar_id":"","url":"https://api.github.com/users/buptjz","avatar_url":"https://avatars.githubusercontent.com/u/3990778?"},"repo":{"id":27714948,"name":"buptjz/Pixel","url":"https://api.github.com/repos/buptjz/Pixel"},"payload":{"push_id":536864689,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ececc624d8d4f3db531d8c2d53440bf9d02a59ed","before":"c22e54dce9ee06ce06dda79fa45e3c2f72217c8b","commits":[{"sha":"ececc624d8d4f3db531d8c2d53440bf9d02a59ed","author":{"email":"317c7c1ef217b4f2ad35892adef9a57fafb97e07@gmail.com","name":"buptjz"},"message":"添加注释","distinct":true,"url":"https://api.github.com/repos/buptjz/Pixel/commits/ececc624d8d4f3db531d8c2d53440bf9d02a59ed"}]},"public":true,"created_at":"2015-01-01T15:03:18Z"}
,{"id":"2489652600","type":"CreateEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":27212864,"name":"k-okada/gazebo_ros_pkgs","url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs"},"payload":{"ref":"add_package_to_model","ref_type":"branch","master_branch":"hydro-devel","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:20Z"}
,{"id":"2489652601","type":"PullRequestEvent","actor":{"id":10356326,"login":"e-rsh-p","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","avatar_url":"https://avatars.githubusercontent.com/u/10356326?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"action":"opened","number":4,"pull_request":{"url":"https://api.github.com/repos/ErshKUS/test/pulls/4","id":26743792,"html_url":"https://github.com/ErshKUS/test/pull/4","diff_url":"https://github.com/ErshKUS/test/pull/4.diff","patch_url":"https://github.com/ErshKUS/test/pull/4.patch","issue_url":"https://api.github.com/repos/ErshKUS/test/issues/4","number":4,"state":"open","locked":false,"title":"первый пулл реквест","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:20Z","updated_at":"2015-01-01T15:03:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits","review_comments_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments","review_comment_url":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ErshKUS/test/issues/4/comments","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb","head":{"label":"e-rsh-p:master","ref":"master","sha":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"repo":{"id":28688502,"name":"test","full_name":"e-rsh-p/test","owner":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/e-rsh-p/test","description":"","fork":true,"url":"https://api.github.com/repos/e-rsh-p/test","forks_url":"https://api.github.com/repos/e-rsh-p/test/forks","keys_url":"https://api.github.com/repos/e-rsh-p/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/e-rsh-p/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/e-rsh-p/test/teams","hooks_url":"https://api.github.com/repos/e-rsh-p/test/hooks","issue_events_url":"https://api.github.com/repos/e-rsh-p/test/issues/events{/number}","events_url":"https://api.github.com/repos/e-rsh-p/test/events","assignees_url":"https://api.github.com/repos/e-rsh-p/test/assignees{/user}","branches_url":"https://api.github.com/repos/e-rsh-p/test/branches{/branch}","tags_url":"https://api.github.com/repos/e-rsh-p/test/tags","blobs_url":"https://api.github.com/repos/e-rsh-p/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/e-rsh-p/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/e-rsh-p/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/e-rsh-p/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/e-rsh-p/test/statuses/{sha}","languages_url":"https://api.github.com/repos/e-rsh-p/test/languages","stargazers_url":"https://api.github.com/repos/e-rsh-p/test/stargazers","contributors_url":"https://api.github.com/repos/e-rsh-p/test/contributors","subscribers_url":"https://api.github.com/repos/e-rsh-p/test/subscribers","subscription_url":"https://api.github.com/repos/e-rsh-p/test/subscription","commits_url":"https://api.github.com/repos/e-rsh-p/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/e-rsh-p/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/e-rsh-p/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/e-rsh-p/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/e-rsh-p/test/contents/{+path}","compare_url":"https://api.github.com/repos/e-rsh-p/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/e-rsh-p/test/merges","archive_url":"https://api.github.com/repos/e-rsh-p/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/e-rsh-p/test/downloads","issues_url":"https://api.github.com/repos/e-rsh-p/test/issues{/number}","pulls_url":"https://api.github.com/repos/e-rsh-p/test/pulls{/number}","milestones_url":"https://api.github.com/repos/e-rsh-p/test/milestones{/number}","notifications_url":"https://api.github.com/repos/e-rsh-p/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/e-rsh-p/test/labels{/name}","releases_url":"https://api.github.com/repos/e-rsh-p/test/releases{/id}","created_at":"2015-01-01T14:54:13Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T14:59:33Z","git_url":"git://github.com/e-rsh-p/test.git","ssh_url":"git@github.com:e-rsh-p/test.git","clone_url":"https://github.com/e-rsh-p/test.git","svn_url":"https://github.com/e-rsh-p/test","homepage":"","size":152,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"ErshKUS:master","ref":"master","sha":"e930237191e5a922d3b976dd16d34a61371ab91a","user":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"repo":{"id":2147969,"name":"test","full_name":"ErshKUS/test","owner":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ErshKUS/test","description":"","fork":false,"url":"https://api.github.com/repos/ErshKUS/test","forks_url":"https://api.github.com/repos/ErshKUS/test/forks","keys_url":"https://api.github.com/repos/ErshKUS/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ErshKUS/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ErshKUS/test/teams","hooks_url":"https://api.github.com/repos/ErshKUS/test/hooks","issue_events_url":"https://api.github.com/repos/ErshKUS/test/issues/events{/number}","events_url":"https://api.github.com/repos/ErshKUS/test/events","assignees_url":"https://api.github.com/repos/ErshKUS/test/assignees{/user}","branches_url":"https://api.github.com/repos/ErshKUS/test/branches{/branch}","tags_url":"https://api.github.com/repos/ErshKUS/test/tags","blobs_url":"https://api.github.com/repos/ErshKUS/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ErshKUS/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ErshKUS/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/ErshKUS/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/{sha}","languages_url":"https://api.github.com/repos/ErshKUS/test/languages","stargazers_url":"https://api.github.com/repos/ErshKUS/test/stargazers","contributors_url":"https://api.github.com/repos/ErshKUS/test/contributors","subscribers_url":"https://api.github.com/repos/ErshKUS/test/subscribers","subscription_url":"https://api.github.com/repos/ErshKUS/test/subscription","commits_url":"https://api.github.com/repos/ErshKUS/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/ErshKUS/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/ErshKUS/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/ErshKUS/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/ErshKUS/test/contents/{+path}","compare_url":"https://api.github.com/repos/ErshKUS/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ErshKUS/test/merges","archive_url":"https://api.github.com/repos/ErshKUS/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ErshKUS/test/downloads","issues_url":"https://api.github.com/repos/ErshKUS/test/issues{/number}","pulls_url":"https://api.github.com/repos/ErshKUS/test/pulls{/number}","milestones_url":"https://api.github.com/repos/ErshKUS/test/milestones{/number}","notifications_url":"https://api.github.com/repos/ErshKUS/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ErshKUS/test/labels{/name}","releases_url":"https://api.github.com/repos/ErshKUS/test/releases{/id}","created_at":"2011-08-03T10:52:46Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T14:53:47Z","git_url":"git://github.com/ErshKUS/test.git","ssh_url":"git@github.com:ErshKUS/test.git","clone_url":"https://github.com/ErshKUS/test.git","svn_url":"https://github.com/ErshKUS/test","homepage":"","size":152,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4"},"html":{"href":"https://github.com/ErshKUS/test/pull/4"},"issue":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4"},"comments":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:20Z"}
,{"id":"2489652602","type":"WatchEvent","actor":{"id":160202,"login":"UniIsland","gravatar_id":"","url":"https://api.github.com/users/UniIsland","avatar_url":"https://avatars.githubusercontent.com/u/160202?"},"repo":{"id":19821524,"name":"lexrus/vpn-deploy-playbook","url":"https://api.github.com/repos/lexrus/vpn-deploy-playbook"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:20Z"}
,{"id":"2489652603","type":"CreateEvent","actor":{"id":10292498,"login":"PetrNSK","gravatar_id":"","url":"https://api.github.com/users/PetrNSK","avatar_url":"https://avatars.githubusercontent.com/u/10292498?"},"repo":{"id":28688486,"name":"PetrNSK/lessons","url":"https://api.github.com/repos/PetrNSK/lessons"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"xaver lessons","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:20Z"}
,{"id":"2489652606","type":"CreateEvent","actor":{"id":10103990,"login":"nadavwe","gravatar_id":"","url":"https://api.github.com/users/nadavwe","avatar_url":"https://avatars.githubusercontent.com/u/10103990?"},"repo":{"id":28688656,"name":"nadavwe/goos","url":"https://api.github.com/repos/nadavwe/goos"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"my try at goos in scala","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:21Z"}
,{"id":"2489652609","type":"CreateEvent","actor":{"id":7732667,"login":"lihechao","gravatar_id":"","url":"https://api.github.com/users/lihechao","avatar_url":"https://avatars.githubusercontent.com/u/7732667?"},"repo":{"id":28688520,"name":"lihechao/ARPSpoofing","url":"https://api.github.com/repos/lihechao/ARPSpoofing"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"程序实现ARP欺骗","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:21Z"}
,{"id":"2489652611","type":"PushEvent","actor":{"id":4610612,"login":"Wall-Dough","gravatar_id":"","url":"https://api.github.com/users/Wall-Dough","avatar_url":"https://avatars.githubusercontent.com/u/4610612?"},"repo":{"id":27177551,"name":"Wall-Dough/infinite-monkeys","url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys"},"payload":{"push_id":536864699,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"3ff74dc20d37bf373c76289ad2ea7257a000e28b","before":"49c1cfcb35ce0359fabfed5f1466e0c57c47617c","commits":[{"sha":"3ff74dc20d37bf373c76289ad2ea7257a000e28b","author":{"email":"623372bcd722ceb16f7e85d758f89088b76f922e@gmail.com","name":"Wall-Dough"},"message":"Update code.js","distinct":true,"url":"https://api.github.com/repos/Wall-Dough/infinite-monkeys/commits/3ff74dc20d37bf373c76289ad2ea7257a000e28b"}]},"public":true,"created_at":"2015-01-01T15:03:22Z"}
,{"id":"2489652613","type":"WatchEvent","actor":{"id":8217988,"login":"omriSaadon","gravatar_id":"","url":"https://api.github.com/users/omriSaadon","avatar_url":"https://avatars.githubusercontent.com/u/8217988?"},"repo":{"id":24967991,"name":"lingthio/Flask-User-starter-app","url":"https://api.github.com/repos/lingthio/Flask-User-starter-app"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:22Z"}
,{"id":"2489652614","type":"PullRequestEvent","actor":{"id":5488330,"login":"Kameshwaran","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","avatar_url":"https://avatars.githubusercontent.com/u/5488330?"},"repo":{"id":27391432,"name":"Kameshwaran/Kameshwaran.github.io","url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io"},"payload":{"action":"opened","number":5,"pull_request":{"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5","id":26743794,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5","diff_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.diff","patch_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.patch","issue_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5","number":5,"state":"open","locked":false,"title":"searching in hash blog added","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:22Z","updated_at":"2015-01-01T15:03:22Z","closed_at":null,"merged_at":null,"merge_commit_sha":"04c6b44cadc8481dd6e7868243d6789b6cc3cbc5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits","review_comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments","review_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699","head":{"label":"Kameshwaran:rectify","ref":"rectify","sha":"256440fe020a94930b08762daaa17564d54aa699","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T14:26:06Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"Kameshwaran:master","ref":"master","sha":"6cd627790db997325644d0ec0e46d658381cf929","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T14:26:06Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5"},"html":{"href":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5"},"issue":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5"},"comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":45,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:22Z"}
,{"id":"2489652615","type":"PushEvent","actor":{"id":6264394,"login":"vinhtho","gravatar_id":"","url":"https://api.github.com/users/vinhtho","avatar_url":"https://avatars.githubusercontent.com/u/6264394?"},"repo":{"id":18364364,"name":"vinhtho/DDAE","url":"https://api.github.com/repos/vinhtho/DDAE"},"payload":{"push_id":536864701,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8355fa77b933ea5c099a9cecab04148a9f54b8c3","before":"2c2b9976f92b255ae515e6a72089c71c2e393110","commits":[{"sha":"8355fa77b933ea5c099a9cecab04148a9f54b8c3","author":{"email":"37fa60b27cf3dbeaf65ceb6a6fff1f67c4cbaede@hotmail.de","name":"vinhtho"},"message":"updated comments in colddae_","distinct":true,"url":"https://api.github.com/repos/vinhtho/DDAE/commits/8355fa77b933ea5c099a9cecab04148a9f54b8c3"}]},"public":true,"created_at":"2015-01-01T15:03:22Z"}
,{"id":"2489652616","type":"PushEvent","actor":{"id":7846085,"login":"234satwant","gravatar_id":"","url":"https://api.github.com/users/234satwant","avatar_url":"https://avatars.githubusercontent.com/u/7846085?"},"repo":{"id":28688279,"name":"234satwant/std-flt-converter","url":"https://api.github.com/repos/234satwant/std-flt-converter"},"payload":{"push_id":536864700,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cea5d3e146dcf69132c7412aea23e1d49f0e9130","before":"05a3a2aee46e6fdfd626dd03b5a2c8578c4b6bb4","commits":[{"sha":"cea5d3e146dcf69132c7412aea23e1d49f0e9130","author":{"email":"32d11cdd6a38f6d28e36ceef7a59570806bd213c@gmail.com","name":"234satwant"},"message":"Update parser.y","distinct":true,"url":"https://api.github.com/repos/234satwant/std-flt-converter/commits/cea5d3e146dcf69132c7412aea23e1d49f0e9130"}]},"public":true,"created_at":"2015-01-01T15:03:22Z"}
,{"id":"2489652618","type":"CreateEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"ref":"add-coveralls","ref_type":"branch","master_branch":"develop","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:23Z"}
,{"id":"2489652620","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864704,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8808c8b6dd8f48f5ef7db0ce493135e6b0386b30","before":"2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b","commits":[{"sha":"8808c8b6dd8f48f5ef7db0ce493135e6b0386b30","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create IPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/8808c8b6dd8f48f5ef7db0ce493135e6b0386b30"}]},"public":true,"created_at":"2015-01-01T15:03:23Z"}
,{"id":"2489652622","type":"PushEvent","actor":{"id":2377920,"login":"yositani2002","gravatar_id":"","url":"https://api.github.com/users/yositani2002","avatar_url":"https://avatars.githubusercontent.com/u/2377920?"},"repo":{"id":15282557,"name":"webwarejp/openpp","url":"https://api.github.com/repos/webwarejp/openpp"},"payload":{"push_id":536864706,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c7d091c96786002d8f5ada1cbbb22bb1e91889b0","before":"8b473c635371c2d5f92de2493721f6b07171ffc1","commits":[{"sha":"c7d091c96786002d8f5ada1cbbb22bb1e91889b0","author":{"email":"44a4a50b74edbd9b13a7396f2c9d1651b1602495@gmail.com","name":"yositani2002"},"message":"change bundle name . change user admin class.\nadd any fix","distinct":true,"url":"https://api.github.com/repos/webwarejp/openpp/commits/c7d091c96786002d8f5ada1cbbb22bb1e91889b0"}]},"public":true,"created_at":"2015-01-01T15:03:23Z","org":{"id":5088333,"login":"webwarejp","gravatar_id":"","url":"https://api.github.com/orgs/webwarejp","avatar_url":"https://avatars.githubusercontent.com/u/5088333?"}}
,{"id":"2489652626","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864708,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b63e3e7a27830cafe46d3ba2b4b5f450367a8b91","before":"34b160373f3f3c724d2e19d86b64fae26fe24224","commits":[{"sha":"b63e3e7a27830cafe46d3ba2b4b5f450367a8b91","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124602534\n\nHu+CQhfWJuemBrVfNBwy5bKMAEfgn/wmYHhOYYP2lX8=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/b63e3e7a27830cafe46d3ba2b4b5f450367a8b91"}]},"public":true,"created_at":"2015-01-01T15:03:24Z"}
,{"id":"2489652629","type":"PushEvent","actor":{"id":760627,"login":"tsu-nera","gravatar_id":"","url":"https://api.github.com/users/tsu-nera","avatar_url":"https://avatars.githubusercontent.com/u/760627?"},"repo":{"id":18728048,"name":"tsu-nera/futurismo","url":"https://api.github.com/repos/tsu-nera/futurismo"},"payload":{"push_id":536864711,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba","before":"179f91c6789b894afa557141420bdfbefe3cc74a","commits":[{"sha":"fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba","author":{"email":"9976a0541de5240960548e0676fed9769cd87143@gmail.com","name":"tsu-nera"},"message":"update","distinct":true,"url":"https://api.github.com/repos/tsu-nera/futurismo/commits/fdaf4ad42a7717fdf841b86ae7ae21edbd0901ba"}]},"public":true,"created_at":"2015-01-01T15:03:24Z"}
,{"id":"2489652630","type":"WatchEvent","actor":{"id":641718,"login":"hebl","gravatar_id":"","url":"https://api.github.com/users/hebl","avatar_url":"https://avatars.githubusercontent.com/u/641718?"},"repo":{"id":1606665,"name":"xoxco/jQuery-Tags-Input","url":"https://api.github.com/repos/xoxco/jQuery-Tags-Input"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:24Z","org":{"id":725866,"login":"xoxco","gravatar_id":"","url":"https://api.github.com/orgs/xoxco","avatar_url":"https://avatars.githubusercontent.com/u/725866?"}}
,{"id":"2489652631","type":"IssuesEvent","actor":{"id":3893707,"login":"skyhills13","gravatar_id":"","url":"https://api.github.com/users/skyhills13","avatar_url":"https://avatars.githubusercontent.com/u/3893707?"},"repo":{"id":23691347,"name":"skyhills13/PhotoMosaic","url":"https://api.github.com/repos/skyhills13/PhotoMosaic"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224","labels_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224/labels{/name}","comments_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224/comments","events_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/issues/224/events","html_url":"https://github.com/skyhills13/PhotoMosaic/issues/224","id":53221401,"number":224,"title":"Filedatahandler refactoring","user":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%E2%98%85","name":"★","color":"e11d21"},{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%EA%B0%9C%EC%84%A0","name":"개선","color":"009800"},{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/labels/%EB%B6%84%EC%95%BC%3A+Server","name":"분야: Server","color":"fbca04"}],"state":"open","locked":false,"assignee":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/milestones/14","labels_url":"https://api.github.com/repos/skyhills13/PhotoMosaic/milestones/14/labels","id":919110,"number":14,"title":"Refactoring","description":"refactoring by skyhills13","creator":{"login":"skyhills13","id":3893707,"avatar_url":"https://avatars.githubusercontent.com/u/3893707?v=3","gravatar_id":"","url":"https://api.github.com/users/skyhills13","html_url":"https://github.com/skyhills13","followers_url":"https://api.github.com/users/skyhills13/followers","following_url":"https://api.github.com/users/skyhills13/following{/other_user}","gists_url":"https://api.github.com/users/skyhills13/gists{/gist_id}","starred_url":"https://api.github.com/users/skyhills13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skyhills13/subscriptions","organizations_url":"https://api.github.com/users/skyhills13/orgs","repos_url":"https://api.github.com/users/skyhills13/repos","events_url":"https://api.github.com/users/skyhills13/events{/privacy}","received_events_url":"https://api.github.com/users/skyhills13/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":1,"state":"open","created_at":"2015-01-01T14:39:31Z","updated_at":"2015-01-01T15:03:24Z","due_on":"2015-02-27T15:00:00Z","closed_at":null},"comments":0,"created_at":"2015-01-01T15:03:24Z","updated_at":"2015-01-01T15:03:24Z","closed_at":null,"body":"method를 object에게 위임하여 더 객체지향적으로 설계"}},"public":true,"created_at":"2015-01-01T15:03:24Z"}
,{"id":"2489652636","type":"CreateEvent","actor":{"id":1548494,"login":"dibyendumajumdar","gravatar_id":"","url":"https://api.github.com/users/dibyendumajumdar","avatar_url":"https://avatars.githubusercontent.com/u/1548494?"},"repo":{"id":28688657,"name":"dibyendumajumdar/ravi","url":"https://api.github.com/repos/dibyendumajumdar/ravi"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Experimental derivative of Lua","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:24Z"}
,{"id":"2489652637","type":"IssueCommentEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57","labels_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/labels{/name}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/comments","events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/events","html_url":"https://github.com/Dica-Developer/generator-node-webkit/issues/57","id":49583895,"number":57,"title":"issue when running dist application on ubuntu 64","user":{"login":"hems","id":27327,"avatar_url":"https://avatars.githubusercontent.com/u/27327?v=3","gravatar_id":"","url":"https://api.github.com/users/hems","html_url":"https://github.com/hems","followers_url":"https://api.github.com/users/hems/followers","following_url":"https://api.github.com/users/hems/following{/other_user}","gists_url":"https://api.github.com/users/hems/gists{/gist_id}","starred_url":"https://api.github.com/users/hems/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hems/subscriptions","organizations_url":"https://api.github.com/users/hems/orgs","repos_url":"https://api.github.com/users/hems/repos","events_url":"https://api.github.com/users/hems/events{/privacy}","received_events_url":"https://api.github.com/users/hems/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-11-20T16:57:56Z","updated_at":"2015-01-01T15:03:24Z","closed_at":"2015-01-01T15:03:24Z","body":"I just did \"grunt dist-linux\", then moved the files from my darwin to linux, and then when trying to execute i get this error message\r\n\r\n````\r\n./node-webkit \r\n[2159:1120/165651:ERROR:icu_util.cc(149)] Couldn't mmap /home/beaglert/Desktop/Linux64/icudtl.dat\r\n[2159:1120/165651:FATAL:content_main_runner.cc(716)] Check failed: base::i18n::InitializeICU(). \r\nAborted (core dumped)\r\n````\r\n\r\nAm i supposed to build the linux dist on a linux computer ?\r\n\r\nShall I try use a different version of node-webkit bin ?"},"comment":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/comments/68488551","html_url":"https://github.com/Dica-Developer/generator-node-webkit/issues/57#issuecomment-68488551","issue_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57","id":68488551,"user":{"login":"mschaaf","id":703355,"avatar_url":"https://avatars.githubusercontent.com/u/703355?v=3","gravatar_id":"","url":"https://api.github.com/users/mschaaf","html_url":"https://github.com/mschaaf","followers_url":"https://api.github.com/users/mschaaf/followers","following_url":"https://api.github.com/users/mschaaf/following{/other_user}","gists_url":"https://api.github.com/users/mschaaf/gists{/gist_id}","starred_url":"https://api.github.com/users/mschaaf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mschaaf/subscriptions","organizations_url":"https://api.github.com/users/mschaaf/orgs","repos_url":"https://api.github.com/users/mschaaf/repos","events_url":"https://api.github.com/users/mschaaf/events{/privacy}","received_events_url":"https://api.github.com/users/mschaaf/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:24Z","updated_at":"2015-01-01T15:03:24Z","body":"Thank you @arminhammer for the patch its merged"}},"public":true,"created_at":"2015-01-01T15:03:24Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}}
,{"id":"2489652638","type":"IssuesEvent","actor":{"id":703355,"login":"mschaaf","gravatar_id":"","url":"https://api.github.com/users/mschaaf","avatar_url":"https://avatars.githubusercontent.com/u/703355?"},"repo":{"id":13252497,"name":"Dica-Developer/generator-node-webkit","url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57","labels_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/labels{/name}","comments_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/comments","events_url":"https://api.github.com/repos/Dica-Developer/generator-node-webkit/issues/57/events","html_url":"https://github.com/Dica-Developer/generator-node-webkit/issues/57","id":49583895,"number":57,"title":"issue when running dist application on ubuntu 64","user":{"login":"hems","id":27327,"avatar_url":"https://avatars.githubusercontent.com/u/27327?v=3","gravatar_id":"","url":"https://api.github.com/users/hems","html_url":"https://github.com/hems","followers_url":"https://api.github.com/users/hems/followers","following_url":"https://api.github.com/users/hems/following{/other_user}","gists_url":"https://api.github.com/users/hems/gists{/gist_id}","starred_url":"https://api.github.com/users/hems/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hems/subscriptions","organizations_url":"https://api.github.com/users/hems/orgs","repos_url":"https://api.github.com/users/hems/repos","events_url":"https://api.github.com/users/hems/events{/privacy}","received_events_url":"https://api.github.com/users/hems/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-11-20T16:57:56Z","updated_at":"2015-01-01T15:03:24Z","closed_at":"2015-01-01T15:03:24Z","body":"I just did \"grunt dist-linux\", then moved the files from my darwin to linux, and then when trying to execute i get this error message\r\n\r\n````\r\n./node-webkit \r\n[2159:1120/165651:ERROR:icu_util.cc(149)] Couldn't mmap /home/beaglert/Desktop/Linux64/icudtl.dat\r\n[2159:1120/165651:FATAL:content_main_runner.cc(716)] Check failed: base::i18n::InitializeICU(). \r\nAborted (core dumped)\r\n````\r\n\r\nAm i supposed to build the linux dist on a linux computer ?\r\n\r\nShall I try use a different version of node-webkit bin ?"}},"public":true,"created_at":"2015-01-01T15:03:24Z","org":{"id":1409907,"login":"Dica-Developer","gravatar_id":"","url":"https://api.github.com/orgs/Dica-Developer","avatar_url":"https://avatars.githubusercontent.com/u/1409907?"}}
,{"id":"2489652639","type":"PushEvent","actor":{"id":9201970,"login":"qdm","gravatar_id":"","url":"https://api.github.com/users/qdm","avatar_url":"https://avatars.githubusercontent.com/u/9201970?"},"repo":{"id":25173910,"name":"qdm/qdm.github.io","url":"https://api.github.com/repos/qdm/qdm.github.io"},"payload":{"push_id":536864712,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ce43e0c4202c607f17925699c0f8212855585392","before":"43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391","commits":[{"sha":"ce43e0c4202c607f17925699c0f8212855585392","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/ce43e0c4202c607f17925699c0f8212855585392"}]},"public":true,"created_at":"2015-01-01T15:03:24Z"}
,{"id":"2489652641","type":"WatchEvent","actor":{"id":2844,"login":"stem","gravatar_id":"","url":"https://api.github.com/users/stem","avatar_url":"https://avatars.githubusercontent.com/u/2844?"},"repo":{"id":26066727,"name":"knsv/mermaid","url":"https://api.github.com/repos/knsv/mermaid"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:25Z"}
,{"id":"2489652645","type":"PushEvent","actor":{"id":4897842,"login":"aiya000","gravatar_id":"","url":"https://api.github.com/users/aiya000","avatar_url":"https://avatars.githubusercontent.com/u/4897842?"},"repo":{"id":23388672,"name":"aiya000/dotfiles","url":"https://api.github.com/repos/aiya000/dotfiles"},"payload":{"push_id":536864715,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc","before":"01734cab8e35e794c855e456510f037c60d87d5c","commits":[{"sha":"294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc","author":{"email":"62b7be0f4091fe1dc13d7236d1aa371af3f368b5@gmail.com","name":"aiya000"},"message":"Added an alias","distinct":true,"url":"https://api.github.com/repos/aiya000/dotfiles/commits/294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc"}]},"public":true,"created_at":"2015-01-01T15:03:25Z"}
,{"id":"2489652646","type":"CreateEvent","actor":{"id":10110526,"login":"beckypdata","gravatar_id":"","url":"https://api.github.com/users/beckypdata","avatar_url":"https://avatars.githubusercontent.com/u/10110526?"},"repo":{"id":28688658,"name":"beckypdata/WorkbenchGUI","url":"https://api.github.com/repos/beckypdata/WorkbenchGUI"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:25Z"}
,{"id":"2489652648","type":"IssueCommentEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/events","html_url":"https://github.com/andreasgal/j2me.js/issues/780","id":52758012,"number":780,"title":"Print page contents when fs tests fail","user":{"login":"marco-c","id":1616846,"avatar_url":"https://avatars.githubusercontent.com/u/1616846?v=3","gravatar_id":"","url":"https://api.github.com/users/marco-c","html_url":"https://github.com/marco-c","followers_url":"https://api.github.com/users/marco-c/followers","following_url":"https://api.github.com/users/marco-c/following{/other_user}","gists_url":"https://api.github.com/users/marco-c/gists{/gist_id}","starred_url":"https://api.github.com/users/marco-c/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marco-c/subscriptions","organizations_url":"https://api.github.com/users/marco-c/orgs","repos_url":"https://api.github.com/users/marco-c/repos","events_url":"https://api.github.com/users/marco-c/events{/privacy}","received_events_url":"https://api.github.com/users/marco-c/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-23T17:15:06Z","updated_at":"2015-01-01T15:03:26Z","closed_at":"2015-01-01T15:03:26Z","body":"We should do something like what we do for http://localhost:8000/index.html in tests/automation.js"},"comment":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/comments/68488552","html_url":"https://github.com/andreasgal/j2me.js/issues/780#issuecomment-68488552","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780","id":68488552,"user":{"login":"marco-c","id":1616846,"avatar_url":"https://avatars.githubusercontent.com/u/1616846?v=3","gravatar_id":"","url":"https://api.github.com/users/marco-c","html_url":"https://github.com/marco-c","followers_url":"https://api.github.com/users/marco-c/followers","following_url":"https://api.github.com/users/marco-c/following{/other_user}","gists_url":"https://api.github.com/users/marco-c/gists{/gist_id}","starred_url":"https://api.github.com/users/marco-c/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marco-c/subscriptions","organizations_url":"https://api.github.com/users/marco-c/orgs","repos_url":"https://api.github.com/users/marco-c/repos","events_url":"https://api.github.com/users/marco-c/events{/privacy}","received_events_url":"https://api.github.com/users/marco-c/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:26Z","updated_at":"2015-01-01T15:03:26Z","body":"Should be fixed by #807 (@myk, correct me if I'm wrong)"}},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652649","type":"IssuesEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/labels{/name}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/comments","events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/780/events","html_url":"https://github.com/andreasgal/j2me.js/issues/780","id":52758012,"number":780,"title":"Print page contents when fs tests fail","user":{"login":"marco-c","id":1616846,"avatar_url":"https://avatars.githubusercontent.com/u/1616846?v=3","gravatar_id":"","url":"https://api.github.com/users/marco-c","html_url":"https://github.com/marco-c","followers_url":"https://api.github.com/users/marco-c/followers","following_url":"https://api.github.com/users/marco-c/following{/other_user}","gists_url":"https://api.github.com/users/marco-c/gists{/gist_id}","starred_url":"https://api.github.com/users/marco-c/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marco-c/subscriptions","organizations_url":"https://api.github.com/users/marco-c/orgs","repos_url":"https://api.github.com/users/marco-c/repos","events_url":"https://api.github.com/users/marco-c/events{/privacy}","received_events_url":"https://api.github.com/users/marco-c/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-23T17:15:06Z","updated_at":"2015-01-01T15:03:26Z","closed_at":"2015-01-01T15:03:26Z","body":"We should do something like what we do for http://localhost:8000/index.html in tests/automation.js"}},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652650","type":"WatchEvent","actor":{"id":62787,"login":"bolstad","gravatar_id":"","url":"https://api.github.com/users/bolstad","avatar_url":"https://avatars.githubusercontent.com/u/62787?"},"repo":{"id":6297520,"name":"quantopian/zipline","url":"https://api.github.com/repos/quantopian/zipline"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:27Z","org":{"id":1393215,"login":"quantopian","gravatar_id":"","url":"https://api.github.com/orgs/quantopian","avatar_url":"https://avatars.githubusercontent.com/u/1393215?"}}
,{"id":"2489652652","type":"PullRequestEvent","actor":{"id":5488330,"login":"Kameshwaran","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","avatar_url":"https://avatars.githubusercontent.com/u/5488330?"},"repo":{"id":27391432,"name":"Kameshwaran/Kameshwaran.github.io","url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io"},"payload":{"action":"closed","number":5,"pull_request":{"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5","id":26743794,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5","diff_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.diff","patch_url":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5.patch","issue_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5","number":5,"state":"closed","locked":false,"title":"searching in hash blog added","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:22Z","updated_at":"2015-01-01T15:03:26Z","closed_at":"2015-01-01T15:03:26Z","merged_at":"2015-01-01T15:03:26Z","merge_commit_sha":"04c6b44cadc8481dd6e7868243d6789b6cc3cbc5","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits","review_comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments","review_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699","head":{"label":"Kameshwaran:rectify","ref":"rectify","sha":"256440fe020a94930b08762daaa17564d54aa699","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T15:03:26Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Kameshwaran:master","ref":"master","sha":"6cd627790db997325644d0ec0e46d658381cf929","user":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"repo":{"id":27391432,"name":"Kameshwaran.github.io","full_name":"Kameshwaran/Kameshwaran.github.io","owner":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","description":"A website for my own blogs","fork":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io","forks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/forks","keys_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/teams","hooks_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/hooks","issue_events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/events","assignees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/tags","blobs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/languages","stargazers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/stargazers","contributors_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contributors","subscribers_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscribers","subscription_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/subscription","commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/merges","archive_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/downloads","issues_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/labels{/name}","releases_url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/releases{/id}","created_at":"2014-12-01T17:40:23Z","updated_at":"2015-01-01T07:45:06Z","pushed_at":"2015-01-01T15:03:26Z","git_url":"git://github.com/Kameshwaran/Kameshwaran.github.io.git","ssh_url":"git@github.com:Kameshwaran/Kameshwaran.github.io.git","clone_url":"https://github.com/Kameshwaran/Kameshwaran.github.io.git","svn_url":"https://github.com/Kameshwaran/Kameshwaran.github.io","homepage":"http://codebrahma.com","size":192,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5"},"html":{"href":"https://github.com/Kameshwaran/Kameshwaran.github.io/pull/5"},"issue":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5"},"comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/statuses/256440fe020a94930b08762daaa17564d54aa699"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"Kameshwaran","id":5488330,"avatar_url":"https://avatars.githubusercontent.com/u/5488330?v=3","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","html_url":"https://github.com/Kameshwaran","followers_url":"https://api.github.com/users/Kameshwaran/followers","following_url":"https://api.github.com/users/Kameshwaran/following{/other_user}","gists_url":"https://api.github.com/users/Kameshwaran/gists{/gist_id}","starred_url":"https://api.github.com/users/Kameshwaran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kameshwaran/subscriptions","organizations_url":"https://api.github.com/users/Kameshwaran/orgs","repos_url":"https://api.github.com/users/Kameshwaran/repos","events_url":"https://api.github.com/users/Kameshwaran/events{/privacy}","received_events_url":"https://api.github.com/users/Kameshwaran/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":45,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652657","type":"PushEvent","actor":{"id":572734,"login":"dennisdoomen","gravatar_id":"","url":"https://api.github.com/users/dennisdoomen","avatar_url":"https://avatars.githubusercontent.com/u/572734?"},"repo":{"id":11718424,"name":"dennisdoomen/fluentassertions","url":"https://api.github.com/repos/dennisdoomen/fluentassertions"},"payload":{"push_id":536864719,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"800fb952cb7e9a0ec9e19805dff0040fc81186cf","before":"32cc471141eb556e0c61a79120c64b5e72a2c0f2","commits":[{"sha":"800fb952cb7e9a0ec9e19805dff0040fc81186cf","author":{"email":"be903bd9420de0a271980c4eceeccfd9d0a8d211@avivasolutions.nl","name":"Dennis Doomen"},"message":"Added the collection.Should().StartWith() assertion to verify that a collection starts with a particular element.","distinct":true,"url":"https://api.github.com/repos/dennisdoomen/fluentassertions/commits/800fb952cb7e9a0ec9e19805dff0040fc81186cf"}]},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652658","type":"ForkEvent","actor":{"id":10358507,"login":"cfdrws","gravatar_id":"","url":"https://api.github.com/users/cfdrws","avatar_url":"https://avatars.githubusercontent.com/u/10358507?"},"repo":{"id":28181288,"name":"letitiaXu/MINET","url":"https://api.github.com/repos/letitiaXu/MINET"},"payload":{"forkee":{"id":28688659,"name":"MINET","full_name":"cfdrws/MINET","owner":{"login":"cfdrws","id":10358507,"avatar_url":"https://avatars.githubusercontent.com/u/10358507?v=3","gravatar_id":"","url":"https://api.github.com/users/cfdrws","html_url":"https://github.com/cfdrws","followers_url":"https://api.github.com/users/cfdrws/followers","following_url":"https://api.github.com/users/cfdrws/following{/other_user}","gists_url":"https://api.github.com/users/cfdrws/gists{/gist_id}","starred_url":"https://api.github.com/users/cfdrws/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cfdrws/subscriptions","organizations_url":"https://api.github.com/users/cfdrws/orgs","repos_url":"https://api.github.com/users/cfdrws/repos","events_url":"https://api.github.com/users/cfdrws/events{/privacy}","received_events_url":"https://api.github.com/users/cfdrws/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cfdrws/MINET","description":"","fork":true,"url":"https://api.github.com/repos/cfdrws/MINET","forks_url":"https://api.github.com/repos/cfdrws/MINET/forks","keys_url":"https://api.github.com/repos/cfdrws/MINET/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cfdrws/MINET/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cfdrws/MINET/teams","hooks_url":"https://api.github.com/repos/cfdrws/MINET/hooks","issue_events_url":"https://api.github.com/repos/cfdrws/MINET/issues/events{/number}","events_url":"https://api.github.com/repos/cfdrws/MINET/events","assignees_url":"https://api.github.com/repos/cfdrws/MINET/assignees{/user}","branches_url":"https://api.github.com/repos/cfdrws/MINET/branches{/branch}","tags_url":"https://api.github.com/repos/cfdrws/MINET/tags","blobs_url":"https://api.github.com/repos/cfdrws/MINET/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cfdrws/MINET/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cfdrws/MINET/git/refs{/sha}","trees_url":"https://api.github.com/repos/cfdrws/MINET/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cfdrws/MINET/statuses/{sha}","languages_url":"https://api.github.com/repos/cfdrws/MINET/languages","stargazers_url":"https://api.github.com/repos/cfdrws/MINET/stargazers","contributors_url":"https://api.github.com/repos/cfdrws/MINET/contributors","subscribers_url":"https://api.github.com/repos/cfdrws/MINET/subscribers","subscription_url":"https://api.github.com/repos/cfdrws/MINET/subscription","commits_url":"https://api.github.com/repos/cfdrws/MINET/commits{/sha}","git_commits_url":"https://api.github.com/repos/cfdrws/MINET/git/commits{/sha}","comments_url":"https://api.github.com/repos/cfdrws/MINET/comments{/number}","issue_comment_url":"https://api.github.com/repos/cfdrws/MINET/issues/comments/{number}","contents_url":"https://api.github.com/repos/cfdrws/MINET/contents/{+path}","compare_url":"https://api.github.com/repos/cfdrws/MINET/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cfdrws/MINET/merges","archive_url":"https://api.github.com/repos/cfdrws/MINET/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cfdrws/MINET/downloads","issues_url":"https://api.github.com/repos/cfdrws/MINET/issues{/number}","pulls_url":"https://api.github.com/repos/cfdrws/MINET/pulls{/number}","milestones_url":"https://api.github.com/repos/cfdrws/MINET/milestones{/number}","notifications_url":"https://api.github.com/repos/cfdrws/MINET/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cfdrws/MINET/labels{/name}","releases_url":"https://api.github.com/repos/cfdrws/MINET/releases{/id}","created_at":"2015-01-01T15:03:26Z","updated_at":"2015-01-01T15:03:27Z","pushed_at":"2014-12-29T09:51:04Z","git_url":"git://github.com/cfdrws/MINET.git","ssh_url":"git@github.com:cfdrws/MINET.git","clone_url":"https://github.com/cfdrws/MINET.git","svn_url":"https://github.com/cfdrws/MINET","homepage":null,"size":160,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652659","type":"PushEvent","actor":{"id":5488330,"login":"Kameshwaran","gravatar_id":"","url":"https://api.github.com/users/Kameshwaran","avatar_url":"https://avatars.githubusercontent.com/u/5488330?"},"repo":{"id":27391432,"name":"Kameshwaran/Kameshwaran.github.io","url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io"},"payload":{"push_id":536864720,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"822a533786e29dce7155084babda4d1df884e26b","before":"6cd627790db997325644d0ec0e46d658381cf929","commits":[{"sha":"256440fe020a94930b08762daaa17564d54aa699","author":{"email":"c4590d14fd906c2ac70a54adbfe0a4e2746237e1@yahoo.co.uk","name":"Kameshwaran"},"message":"searching in hash blog added","distinct":false,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits/256440fe020a94930b08762daaa17564d54aa699"},{"sha":"822a533786e29dce7155084babda4d1df884e26b","author":{"email":"fc0b8cd559ad7a06aa4a0d820aaafd1bef9f52bc@codebrahma.com","name":"Kameshwaran"},"message":"Merge pull request #5 from Kameshwaran/rectify\n\nsearching in hash blog added","distinct":true,"url":"https://api.github.com/repos/Kameshwaran/Kameshwaran.github.io/commits/822a533786e29dce7155084babda4d1df884e26b"}]},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652664","type":"PushEvent","actor":{"id":2195785,"login":"dedyk","gravatar_id":"","url":"https://api.github.com/users/dedyk","avatar_url":"https://avatars.githubusercontent.com/u/2195785?"},"repo":{"id":5510151,"name":"dedyk/JaponskiSlownik","url":"https://api.github.com/repos/dedyk/JaponskiSlownik"},"payload":{"push_id":536864723,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6eb6ca10bd77985eb238ea0a314142f9a2f5ba26","before":"c0adf523b3649cb519d32e4c76ebd3d1bfdd2ff4","commits":[{"sha":"6eb6ca10bd77985eb238ea0a314142f9a2f5ba26","author":{"email":"6060bdfd167145ad8cf4f6c94cd1f8745f8f9ebe@gmail.com","name":"dedyk"},"message":"update","distinct":true,"url":"https://api.github.com/repos/dedyk/JaponskiSlownik/commits/6eb6ca10bd77985eb238ea0a314142f9a2f5ba26"}]},"public":true,"created_at":"2015-01-01T15:03:27Z"}
,{"id":"2489652666","type":"WatchEvent","actor":{"id":10094941,"login":"mr0-0nerd","gravatar_id":"","url":"https://api.github.com/users/mr0-0nerd","avatar_url":"https://avatars.githubusercontent.com/u/10094941?"},"repo":{"id":14664813,"name":"diegotoral/generator-django","url":"https://api.github.com/repos/diegotoral/generator-django"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:28Z"}
,{"id":"2489652669","type":"WatchEvent","actor":{"id":5088643,"login":"abixadamj","gravatar_id":"","url":"https://api.github.com/users/abixadamj","avatar_url":"https://avatars.githubusercontent.com/u/5088643?"},"repo":{"id":6093324,"name":"Kozea/wdb","url":"https://api.github.com/repos/Kozea/wdb"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:28Z","org":{"id":870325,"login":"Kozea","gravatar_id":"","url":"https://api.github.com/orgs/Kozea","avatar_url":"https://avatars.githubusercontent.com/u/870325?"}}
,{"id":"2489652670","type":"PushEvent","actor":{"id":6699795,"login":"FusionSP","gravatar_id":"","url":"https://api.github.com/users/FusionSP","avatar_url":"https://avatars.githubusercontent.com/u/6699795?"},"repo":{"id":26531615,"name":"FusionSP/android_frameworks_base","url":"https://api.github.com/repos/FusionSP/android_frameworks_base"},"payload":{"push_id":536864726,"size":1,"distinct_size":1,"ref":"refs/heads/lp5.0","head":"971e8c356e4b431fdac2fefda0055cc95613de6c","before":"d5cd51a78264bd69f0518b61ca44c635216f4eef","commits":[{"sha":"971e8c356e4b431fdac2fefda0055cc95613de6c","author":{"email":"f3fd42a39172f5ea1543e1a25a660642a3134c0e@hotmail.nl","name":"Dragon"},"message":"Revert \"MediaMuxer: handle expection for add track\"\n\nThis reverts commit a9a55b975eb7c8345f92efdf90962fbe855ba284.","distinct":true,"url":"https://api.github.com/repos/FusionSP/android_frameworks_base/commits/971e8c356e4b431fdac2fefda0055cc95613de6c"}]},"public":true,"created_at":"2015-01-01T15:03:28Z"}
,{"id":"2489652675","type":"ForkEvent","actor":{"id":8217988,"login":"omriSaadon","gravatar_id":"","url":"https://api.github.com/users/omriSaadon","avatar_url":"https://avatars.githubusercontent.com/u/8217988?"},"repo":{"id":24967991,"name":"lingthio/Flask-User-starter-app","url":"https://api.github.com/repos/lingthio/Flask-User-starter-app"},"payload":{"forkee":{"id":28688660,"name":"Flask-User-starter-app","full_name":"omriSaadon/Flask-User-starter-app","owner":{"login":"omriSaadon","id":8217988,"avatar_url":"https://avatars.githubusercontent.com/u/8217988?v=3","gravatar_id":"","url":"https://api.github.com/users/omriSaadon","html_url":"https://github.com/omriSaadon","followers_url":"https://api.github.com/users/omriSaadon/followers","following_url":"https://api.github.com/users/omriSaadon/following{/other_user}","gists_url":"https://api.github.com/users/omriSaadon/gists{/gist_id}","starred_url":"https://api.github.com/users/omriSaadon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/omriSaadon/subscriptions","organizations_url":"https://api.github.com/users/omriSaadon/orgs","repos_url":"https://api.github.com/users/omriSaadon/repos","events_url":"https://api.github.com/users/omriSaadon/events{/privacy}","received_events_url":"https://api.github.com/users/omriSaadon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/omriSaadon/Flask-User-starter-app","description":"","fork":true,"url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app","forks_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/forks","keys_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/keys{/key_id}","collaborators_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/teams","hooks_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/hooks","issue_events_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/issues/events{/number}","events_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/events","assignees_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/assignees{/user}","branches_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/branches{/branch}","tags_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/tags","blobs_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/refs{/sha}","trees_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/trees{/sha}","statuses_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/statuses/{sha}","languages_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/languages","stargazers_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/stargazers","contributors_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/contributors","subscribers_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/subscribers","subscription_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/subscription","commits_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/commits{/sha}","git_commits_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/git/commits{/sha}","comments_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/comments{/number}","issue_comment_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/issues/comments/{number}","contents_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/contents/{+path}","compare_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/compare/{base}...{head}","merges_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/merges","archive_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/downloads","issues_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/issues{/number}","pulls_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/pulls{/number}","milestones_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/milestones{/number}","notifications_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/labels{/name}","releases_url":"https://api.github.com/repos/omriSaadon/Flask-User-starter-app/releases{/id}","created_at":"2015-01-01T15:03:29Z","updated_at":"2015-01-01T15:03:22Z","pushed_at":"2014-12-09T17:44:01Z","git_url":"git://github.com/omriSaadon/Flask-User-starter-app.git","ssh_url":"git@github.com:omriSaadon/Flask-User-starter-app.git","clone_url":"https://github.com/omriSaadon/Flask-User-starter-app.git","svn_url":"https://github.com/omriSaadon/Flask-User-starter-app","homepage":null,"size":200,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:29Z"}
,{"id":"2489652676","type":"CreateEvent","actor":{"id":343795,"login":"Depicus","gravatar_id":"","url":"https://api.github.com/users/Depicus","avatar_url":"https://avatars.githubusercontent.com/u/343795?"},"repo":{"id":28688644,"name":"Depicus/ghost-gumby-theme","url":"https://api.github.com/repos/Depicus/ghost-gumby-theme"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"A theme for Ghost based on Gumby CSS Framework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:29Z"}
,{"id":"2489652678","type":"CreateEvent","actor":{"id":1821081,"login":"ajschmaltz","gravatar_id":"","url":"https://api.github.com/users/ajschmaltz","avatar_url":"https://avatars.githubusercontent.com/u/1821081?"},"repo":{"id":28688661,"name":"ajschmaltz/TapQuote","url":"https://api.github.com/repos/ajschmaltz/TapQuote"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:29Z"}
,{"id":"2489652682","type":"CreateEvent","actor":{"id":5724186,"login":"abhinav-garg","gravatar_id":"","url":"https://api.github.com/users/abhinav-garg","avatar_url":"https://avatars.githubusercontent.com/u/5724186?"},"repo":{"id":28688629,"name":"abhinav-garg/web-page","url":"https://api.github.com/repos/abhinav-garg/web-page"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:30Z"}
,{"id":"2489652683","type":"PushEvent","actor":{"id":281340,"login":"peschuster","gravatar_id":"","url":"https://api.github.com/users/peschuster","avatar_url":"https://avatars.githubusercontent.com/u/281340?"},"repo":{"id":18992184,"name":"feg-giessen/pco-webtools","url":"https://api.github.com/repos/feg-giessen/pco-webtools"},"payload":{"push_id":536864734,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"c9bca044ff893251a50c16836c28e5e2cf1ac823","before":"5c9eee53bfbe82d8bab9c84a06da9b3568364503","commits":[{"sha":"c8f1ce9a2001668e0ff8f26630c434d0dc3e5663","author":{"email":"d8a9fb8969c3be8fc73cfdf8c02d05df918770ff@gmail.com","name":"Peter Schuster"},"message":"Exception on empty text","distinct":true,"url":"https://api.github.com/repos/feg-giessen/pco-webtools/commits/c8f1ce9a2001668e0ff8f26630c434d0dc3e5663"},{"sha":"c9bca044ff893251a50c16836c28e5e2cf1ac823","author":{"email":"d8a9fb8969c3be8fc73cfdf8c02d05df918770ff@gmail.com","name":"Peter Schuster"},"message":"Live-JS and CSS updates.","distinct":true,"url":"https://api.github.com/repos/feg-giessen/pco-webtools/commits/c9bca044ff893251a50c16836c28e5e2cf1ac823"}]},"public":true,"created_at":"2015-01-01T15:03:30Z","org":{"id":3055295,"login":"feg-giessen","gravatar_id":"","url":"https://api.github.com/orgs/feg-giessen","avatar_url":"https://avatars.githubusercontent.com/u/3055295?"}}
,{"id":"2489652684","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18328345,"name":"cloudify-cosmo/cloudify-bash-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-bash-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:30Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652685","type":"WatchEvent","actor":{"id":6006469,"login":"fyquah95","gravatar_id":"","url":"https://api.github.com/users/fyquah95","avatar_url":"https://avatars.githubusercontent.com/u/6006469?"},"repo":{"id":2855551,"name":"gousiosg/github-mirror","url":"https://api.github.com/repos/gousiosg/github-mirror"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:30Z"}
,{"id":"2489652689","type":"ForkEvent","actor":{"id":2434564,"login":"licong","gravatar_id":"","url":"https://api.github.com/users/licong","avatar_url":"https://avatars.githubusercontent.com/u/2434564?"},"repo":{"id":427635,"name":"ervandew/eclim","url":"https://api.github.com/repos/ervandew/eclim"},"payload":{"forkee":{"id":28688662,"name":"eclim","full_name":"licong/eclim","owner":{"login":"licong","id":2434564,"avatar_url":"https://avatars.githubusercontent.com/u/2434564?v=3","gravatar_id":"","url":"https://api.github.com/users/licong","html_url":"https://github.com/licong","followers_url":"https://api.github.com/users/licong/followers","following_url":"https://api.github.com/users/licong/following{/other_user}","gists_url":"https://api.github.com/users/licong/gists{/gist_id}","starred_url":"https://api.github.com/users/licong/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/licong/subscriptions","organizations_url":"https://api.github.com/users/licong/orgs","repos_url":"https://api.github.com/users/licong/repos","events_url":"https://api.github.com/users/licong/events{/privacy}","received_events_url":"https://api.github.com/users/licong/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/licong/eclim","description":"Expose eclipse features inside of vim.","fork":true,"url":"https://api.github.com/repos/licong/eclim","forks_url":"https://api.github.com/repos/licong/eclim/forks","keys_url":"https://api.github.com/repos/licong/eclim/keys{/key_id}","collaborators_url":"https://api.github.com/repos/licong/eclim/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/licong/eclim/teams","hooks_url":"https://api.github.com/repos/licong/eclim/hooks","issue_events_url":"https://api.github.com/repos/licong/eclim/issues/events{/number}","events_url":"https://api.github.com/repos/licong/eclim/events","assignees_url":"https://api.github.com/repos/licong/eclim/assignees{/user}","branches_url":"https://api.github.com/repos/licong/eclim/branches{/branch}","tags_url":"https://api.github.com/repos/licong/eclim/tags","blobs_url":"https://api.github.com/repos/licong/eclim/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/licong/eclim/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/licong/eclim/git/refs{/sha}","trees_url":"https://api.github.com/repos/licong/eclim/git/trees{/sha}","statuses_url":"https://api.github.com/repos/licong/eclim/statuses/{sha}","languages_url":"https://api.github.com/repos/licong/eclim/languages","stargazers_url":"https://api.github.com/repos/licong/eclim/stargazers","contributors_url":"https://api.github.com/repos/licong/eclim/contributors","subscribers_url":"https://api.github.com/repos/licong/eclim/subscribers","subscription_url":"https://api.github.com/repos/licong/eclim/subscription","commits_url":"https://api.github.com/repos/licong/eclim/commits{/sha}","git_commits_url":"https://api.github.com/repos/licong/eclim/git/commits{/sha}","comments_url":"https://api.github.com/repos/licong/eclim/comments{/number}","issue_comment_url":"https://api.github.com/repos/licong/eclim/issues/comments/{number}","contents_url":"https://api.github.com/repos/licong/eclim/contents/{+path}","compare_url":"https://api.github.com/repos/licong/eclim/compare/{base}...{head}","merges_url":"https://api.github.com/repos/licong/eclim/merges","archive_url":"https://api.github.com/repos/licong/eclim/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/licong/eclim/downloads","issues_url":"https://api.github.com/repos/licong/eclim/issues{/number}","pulls_url":"https://api.github.com/repos/licong/eclim/pulls{/number}","milestones_url":"https://api.github.com/repos/licong/eclim/milestones{/number}","notifications_url":"https://api.github.com/repos/licong/eclim/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/licong/eclim/labels{/name}","releases_url":"https://api.github.com/repos/licong/eclim/releases{/id}","created_at":"2015-01-01T15:03:31Z","updated_at":"2015-01-01T03:06:14Z","pushed_at":"2014-12-14T17:01:42Z","git_url":"git://github.com/licong/eclim.git","ssh_url":"git@github.com:licong/eclim.git","clone_url":"https://github.com/licong/eclim.git","svn_url":"https://github.com/licong/eclim","homepage":"http://eclim.org","size":86947,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:32Z"}
,{"id":"2489652693","type":"PushEvent","actor":{"id":812069,"login":"shamazmazum","gravatar_id":"","url":"https://api.github.com/users/shamazmazum","avatar_url":"https://avatars.githubusercontent.com/u/812069?"},"repo":{"id":4461956,"name":"shamazmazum/easy-audio","url":"https://api.github.com/repos/shamazmazum/easy-audio"},"payload":{"push_id":536864739,"size":1,"distinct_size":1,"ref":"refs/heads/wv","head":"7ba5fc1165e46dcffc9dd2fe1457b80823a9aa04","before":"aa078328c8fee98c4724e6b74eda13079fc6d429","commits":[{"sha":"7ba5fc1165e46dcffc9dd2fe1457b80823a9aa04","author":{"email":"704a77d66ccadb12947074e4bc348afbef6e654b@gmail.com","name":"Vasily Postnicov"},"message":"decorrelation samples reader","distinct":true,"url":"https://api.github.com/repos/shamazmazum/easy-audio/commits/7ba5fc1165e46dcffc9dd2fe1457b80823a9aa04"}]},"public":true,"created_at":"2015-01-01T15:03:33Z"}
,{"id":"2489652695","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18328345,"name":"cloudify-cosmo/cloudify-bash-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-bash-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Bash Plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:33Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652696","type":"CreateEvent","actor":{"id":10364715,"login":"yousom","gravatar_id":"","url":"https://api.github.com/users/yousom","avatar_url":"https://avatars.githubusercontent.com/u/10364715?"},"repo":{"id":28688663,"name":"yousom/github","url":"https://api.github.com/repos/yousom/github"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"This is my project to learn github","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:33Z"}
,{"id":"2489652699","type":"PushEvent","actor":{"id":2816805,"login":"guedeWebGate","gravatar_id":"","url":"https://api.github.com/users/guedeWebGate","avatar_url":"https://avatars.githubusercontent.com/u/2816805?"},"repo":{"id":28688564,"name":"guedeWebGate/pluginDemoAngularJS","url":"https://api.github.com/repos/guedeWebGate/pluginDemoAngularJS"},"payload":{"push_id":536864741,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"285aa442bdb7463f7732ace7764b52f94a839e8a","before":"e3d414fb563c1cd9d98984a9b70fffefd4fc61b1","commits":[{"sha":"285aa442bdb7463f7732ace7764b52f94a839e8a","author":{"email":"68b0dfca522a271462acaa072bedcf1f6ed6a19f@webgate.biz","name":"Christian Guedemann"},"message":"Update .gitignore","distinct":true,"url":"https://api.github.com/repos/guedeWebGate/pluginDemoAngularJS/commits/285aa442bdb7463f7732ace7764b52f94a839e8a"}]},"public":true,"created_at":"2015-01-01T15:03:33Z"}
,{"id":"2489652700","type":"PushEvent","actor":{"id":2242174,"login":"mofumofu3n","gravatar_id":"","url":"https://api.github.com/users/mofumofu3n","avatar_url":"https://avatars.githubusercontent.com/u/2242174?"},"repo":{"id":27716943,"name":"mofumofu3n/Anime","url":"https://api.github.com/repos/mofumofu3n/Anime"},"payload":{"push_id":536864742,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"77f9725ffcf81a57b114e4104973d53da9cc5e5b","before":"347fcb3c58650dc7729b4795c71173bb84abd8b2","commits":[{"sha":"77f9725ffcf81a57b114e4104973d53da9cc5e5b","author":{"email":"bd43c6aeed1ec20a379e52a4d3f4cfb6887743c0@gmail.com","name":"mofumofu3n"},"message":"設定画面の項目をSparseArrayに変更","distinct":true,"url":"https://api.github.com/repos/mofumofu3n/Anime/commits/77f9725ffcf81a57b114e4104973d53da9cc5e5b"}]},"public":true,"created_at":"2015-01-01T15:03:33Z"}
,{"id":"2489652703","type":"ForkEvent","actor":{"id":10045938,"login":"cashfit","gravatar_id":"","url":"https://api.github.com/users/cashfit","avatar_url":"https://avatars.githubusercontent.com/u/10045938?"},"repo":{"id":7266637,"name":"khailey/Oracle-DBA-Scripts","url":"https://api.github.com/repos/khailey/Oracle-DBA-Scripts"},"payload":{"forkee":{"id":28688665,"name":"Oracle-DBA-Scripts","full_name":"cashfit/Oracle-DBA-Scripts","owner":{"login":"cashfit","id":10045938,"avatar_url":"https://avatars.githubusercontent.com/u/10045938?v=3","gravatar_id":"","url":"https://api.github.com/users/cashfit","html_url":"https://github.com/cashfit","followers_url":"https://api.github.com/users/cashfit/followers","following_url":"https://api.github.com/users/cashfit/following{/other_user}","gists_url":"https://api.github.com/users/cashfit/gists{/gist_id}","starred_url":"https://api.github.com/users/cashfit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cashfit/subscriptions","organizations_url":"https://api.github.com/users/cashfit/orgs","repos_url":"https://api.github.com/users/cashfit/repos","events_url":"https://api.github.com/users/cashfit/events{/privacy}","received_events_url":"https://api.github.com/users/cashfit/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cashfit/Oracle-DBA-Scripts","description":"Scripts that make my job as a DBA a bit easier","fork":true,"url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts","forks_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/forks","keys_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/teams","hooks_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/hooks","issue_events_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/issues/events{/number}","events_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/events","assignees_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/assignees{/user}","branches_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/branches{/branch}","tags_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/tags","blobs_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/refs{/sha}","trees_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/statuses/{sha}","languages_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/languages","stargazers_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/stargazers","contributors_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/contributors","subscribers_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/subscribers","subscription_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/subscription","commits_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/commits{/sha}","git_commits_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/git/commits{/sha}","comments_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/comments{/number}","issue_comment_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/issues/comments/{number}","contents_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/contents/{+path}","compare_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/merges","archive_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/downloads","issues_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/issues{/number}","pulls_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/pulls{/number}","milestones_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/milestones{/number}","notifications_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/labels{/name}","releases_url":"https://api.github.com/repos/cashfit/Oracle-DBA-Scripts/releases{/id}","created_at":"2015-01-01T15:03:33Z","updated_at":"2014-02-25T07:08:40Z","pushed_at":"2012-12-21T00:17:49Z","git_url":"git://github.com/cashfit/Oracle-DBA-Scripts.git","ssh_url":"git@github.com:cashfit/Oracle-DBA-Scripts.git","clone_url":"https://github.com/cashfit/Oracle-DBA-Scripts.git","svn_url":"https://github.com/cashfit/Oracle-DBA-Scripts","homepage":"","size":92,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:33Z"}
,{"id":"2489652706","type":"ForkEvent","actor":{"id":2973493,"login":"Sergio102472","gravatar_id":"","url":"https://api.github.com/users/Sergio102472","avatar_url":"https://avatars.githubusercontent.com/u/2973493?"},"repo":{"id":17872545,"name":"FelixLC/homepagevinify","url":"https://api.github.com/repos/FelixLC/homepagevinify"},"payload":{"forkee":{"id":28688666,"name":"homepagevinify","full_name":"Sergio102472/homepagevinify","owner":{"login":"Sergio102472","id":2973493,"avatar_url":"https://avatars.githubusercontent.com/u/2973493?v=3","gravatar_id":"","url":"https://api.github.com/users/Sergio102472","html_url":"https://github.com/Sergio102472","followers_url":"https://api.github.com/users/Sergio102472/followers","following_url":"https://api.github.com/users/Sergio102472/following{/other_user}","gists_url":"https://api.github.com/users/Sergio102472/gists{/gist_id}","starred_url":"https://api.github.com/users/Sergio102472/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Sergio102472/subscriptions","organizations_url":"https://api.github.com/users/Sergio102472/orgs","repos_url":"https://api.github.com/users/Sergio102472/repos","events_url":"https://api.github.com/users/Sergio102472/events{/privacy}","received_events_url":"https://api.github.com/users/Sergio102472/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Sergio102472/homepagevinify","description":"","fork":true,"url":"https://api.github.com/repos/Sergio102472/homepagevinify","forks_url":"https://api.github.com/repos/Sergio102472/homepagevinify/forks","keys_url":"https://api.github.com/repos/Sergio102472/homepagevinify/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Sergio102472/homepagevinify/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Sergio102472/homepagevinify/teams","hooks_url":"https://api.github.com/repos/Sergio102472/homepagevinify/hooks","issue_events_url":"https://api.github.com/repos/Sergio102472/homepagevinify/issues/events{/number}","events_url":"https://api.github.com/repos/Sergio102472/homepagevinify/events","assignees_url":"https://api.github.com/repos/Sergio102472/homepagevinify/assignees{/user}","branches_url":"https://api.github.com/repos/Sergio102472/homepagevinify/branches{/branch}","tags_url":"https://api.github.com/repos/Sergio102472/homepagevinify/tags","blobs_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/refs{/sha}","trees_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Sergio102472/homepagevinify/statuses/{sha}","languages_url":"https://api.github.com/repos/Sergio102472/homepagevinify/languages","stargazers_url":"https://api.github.com/repos/Sergio102472/homepagevinify/stargazers","contributors_url":"https://api.github.com/repos/Sergio102472/homepagevinify/contributors","subscribers_url":"https://api.github.com/repos/Sergio102472/homepagevinify/subscribers","subscription_url":"https://api.github.com/repos/Sergio102472/homepagevinify/subscription","commits_url":"https://api.github.com/repos/Sergio102472/homepagevinify/commits{/sha}","git_commits_url":"https://api.github.com/repos/Sergio102472/homepagevinify/git/commits{/sha}","comments_url":"https://api.github.com/repos/Sergio102472/homepagevinify/comments{/number}","issue_comment_url":"https://api.github.com/repos/Sergio102472/homepagevinify/issues/comments/{number}","contents_url":"https://api.github.com/repos/Sergio102472/homepagevinify/contents/{+path}","compare_url":"https://api.github.com/repos/Sergio102472/homepagevinify/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Sergio102472/homepagevinify/merges","archive_url":"https://api.github.com/repos/Sergio102472/homepagevinify/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Sergio102472/homepagevinify/downloads","issues_url":"https://api.github.com/repos/Sergio102472/homepagevinify/issues{/number}","pulls_url":"https://api.github.com/repos/Sergio102472/homepagevinify/pulls{/number}","milestones_url":"https://api.github.com/repos/Sergio102472/homepagevinify/milestones{/number}","notifications_url":"https://api.github.com/repos/Sergio102472/homepagevinify/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Sergio102472/homepagevinify/labels{/name}","releases_url":"https://api.github.com/repos/Sergio102472/homepagevinify/releases{/id}","created_at":"2015-01-01T15:03:35Z","updated_at":"2014-10-07T10:10:14Z","pushed_at":"2014-12-28T16:38:49Z","git_url":"git://github.com/Sergio102472/homepagevinify.git","ssh_url":"git@github.com:Sergio102472/homepagevinify.git","clone_url":"https://github.com/Sergio102472/homepagevinify.git","svn_url":"https://github.com/Sergio102472/homepagevinify","homepage":null,"size":35464,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:35Z"}
,{"id":"2489652707","type":"PushEvent","actor":{"id":6559752,"login":"unnamed-idea","gravatar_id":"","url":"https://api.github.com/users/unnamed-idea","avatar_url":"https://avatars.githubusercontent.com/u/6559752?"},"repo":{"id":28688390,"name":"unnamed-idea/recipes","url":"https://api.github.com/repos/unnamed-idea/recipes"},"payload":{"push_id":536864744,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f4f749292365b0fadb1cd351083c4100ae0dadd6","before":"a6a2f991a1bb60e1dec7c5d68c8393b70ea6f7f6","commits":[{"sha":"f4f749292365b0fadb1cd351083c4100ae0dadd6","author":{"email":"1ea62ea3c1356eef381741677680cd7e792ea22c@udacity.com","name":"Sarah Spikes"},"message":"Remove cumin from chili","distinct":true,"url":"https://api.github.com/repos/unnamed-idea/recipes/commits/f4f749292365b0fadb1cd351083c4100ae0dadd6"}]},"public":true,"created_at":"2015-01-01T15:03:35Z"}
,{"id":"2489652708","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327612,"name":"cloudify-cosmo/cloudify-dsl-parser","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-dsl-parser"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:35Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652709","type":"WatchEvent","actor":{"id":1209286,"login":"lucker6666","gravatar_id":"","url":"https://api.github.com/users/lucker6666","avatar_url":"https://avatars.githubusercontent.com/u/1209286?"},"repo":{"id":24766039,"name":"linkedin/Zopkio","url":"https://api.github.com/repos/linkedin/Zopkio"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:35Z","org":{"id":357098,"login":"linkedin","gravatar_id":"","url":"https://api.github.com/orgs/linkedin","avatar_url":"https://avatars.githubusercontent.com/u/357098?"}}
,{"id":"2489652710","type":"PushEvent","actor":{"id":2470167,"login":"zeniko","gravatar_id":"","url":"https://api.github.com/users/zeniko","avatar_url":"https://avatars.githubusercontent.com/u/2470167?"},"repo":{"id":6041301,"name":"sumatrapdfreader/sumatrapdf","url":"https://api.github.com/repos/sumatrapdfreader/sumatrapdf"},"payload":{"push_id":536864746,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8ed6f078d8b8e3a990eb996bc710165dbce4b197","before":"876f4616f9dcdcad35730546f3508c9aa8feeacd","commits":[{"sha":"8ed6f078d8b8e3a990eb996bc710165dbce4b197","author":{"email":"324e35143cc16f40a3a5d906840375a610efeefd@gmail.com","name":"Simon Bünzli"},"message":"update FreeType to v2.5.5","distinct":true,"url":"https://api.github.com/repos/sumatrapdfreader/sumatrapdf/commits/8ed6f078d8b8e3a990eb996bc710165dbce4b197"}]},"public":true,"created_at":"2015-01-01T15:03:35Z","org":{"id":9777518,"login":"sumatrapdfreader","gravatar_id":"","url":"https://api.github.com/orgs/sumatrapdfreader","avatar_url":"https://avatars.githubusercontent.com/u/9777518?"}}
,{"id":"2489652712","type":"CreateEvent","actor":{"id":1323354,"login":"fatjanhushi","gravatar_id":"","url":"https://api.github.com/users/fatjanhushi","avatar_url":"https://avatars.githubusercontent.com/u/1323354?"},"repo":{"id":28688667,"name":"fatjanhushi/t25mycalendar","url":"https://api.github.com/repos/fatjanhushi/t25mycalendar"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:36Z"}
,{"id":"2489652713","type":"PushEvent","actor":{"id":90007,"login":"lukasmueller","gravatar_id":"","url":"https://api.github.com/users/lukasmueller","avatar_url":"https://avatars.githubusercontent.com/u/90007?"},"repo":{"id":11846582,"name":"solgenomics/gbs","url":"https://api.github.com/repos/solgenomics/gbs"},"payload":{"push_id":536864748,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7f8a4684715930f9836b6ec0321037eeed1d270a","before":"33de0cef45644c944ddc8e47c7b53f8f063eb325","commits":[{"sha":"7f8a4684715930f9836b6ec0321037eeed1d270a","author":{"email":"d9224b331176d2e198ac5218b7415e2f1956ab1a@cornell.edu","name":"Lukas Mueller"},"message":"fix typo.","distinct":true,"url":"https://api.github.com/repos/solgenomics/gbs/commits/7f8a4684715930f9836b6ec0321037eeed1d270a"}]},"public":true,"created_at":"2015-01-01T15:03:36Z","org":{"id":260757,"login":"solgenomics","gravatar_id":"","url":"https://api.github.com/orgs/solgenomics","avatar_url":"https://avatars.githubusercontent.com/u/260757?"}}
,{"id":"2489652716","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24328359,"name":"timoxley/bulk","url":"https://api.github.com/repos/timoxley/bulk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/bulk/issues/3","labels_url":"https://api.github.com/repos/timoxley/bulk/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/bulk/issues/3/comments","events_url":"https://api.github.com/repos/timoxley/bulk/issues/3/events","html_url":"https://github.com/timoxley/bulk/issues/3","id":53052553,"number":3,"title":"--bail","user":{"login":"yoshuawuyts","id":2467194,"avatar_url":"https://avatars.githubusercontent.com/u/2467194?v=3","gravatar_id":"","url":"https://api.github.com/users/yoshuawuyts","html_url":"https://github.com/yoshuawuyts","followers_url":"https://api.github.com/users/yoshuawuyts/followers","following_url":"https://api.github.com/users/yoshuawuyts/following{/other_user}","gists_url":"https://api.github.com/users/yoshuawuyts/gists{/gist_id}","starred_url":"https://api.github.com/users/yoshuawuyts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yoshuawuyts/subscriptions","organizations_url":"https://api.github.com/users/yoshuawuyts/orgs","repos_url":"https://api.github.com/users/yoshuawuyts/repos","events_url":"https://api.github.com/users/yoshuawuyts/events{/privacy}","received_events_url":"https://api.github.com/users/yoshuawuyts/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-29T16:32:53Z","updated_at":"2015-01-01T15:03:37Z","closed_at":null,"body":"though it was in `bulk` already, but it would be cool if `--bail` could be given to exit on a non-0 exit code."},"comment":{"url":"https://api.github.com/repos/timoxley/bulk/issues/comments/68488554","html_url":"https://github.com/timoxley/bulk/issues/3#issuecomment-68488554","issue_url":"https://api.github.com/repos/timoxley/bulk/issues/3","id":68488554,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:37Z","updated_at":"2015-01-01T15:03:37Z","body":"agree."}},"public":true,"created_at":"2015-01-01T15:03:38Z"}
,{"id":"2489652717","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327612,"name":"cloudify-cosmo/cloudify-dsl-parser","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-dsl-parser"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify DSL Parser","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:38Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652726","type":"PushEvent","actor":{"id":3354417,"login":"shawnkong","gravatar_id":"","url":"https://api.github.com/users/shawnkong","avatar_url":"https://avatars.githubusercontent.com/u/3354417?"},"repo":{"id":20821944,"name":"shawnkong/shawnkong.github.io","url":"https://api.github.com/repos/shawnkong/shawnkong.github.io"},"payload":{"push_id":536864755,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccceb16531a7a6d6a3f923b4265c9c4248312059","before":"ac6b9566f2a67be88ab2a7766daf03ea5fb974dd","commits":[{"sha":"ccceb16531a7a6d6a3f923b4265c9c4248312059","author":{"email":"c5c979718c347f8fe7828de502c3f485349b9d03@gmail.com","name":"shawnkong"},"message":"add post 2015 plan\n\nChange-Id: I5bc1021aadffb3c051c301b0ebc40a21ff259a0a\nSigned-off-by: shawnkong <webkxl@gmail.com>","distinct":true,"url":"https://api.github.com/repos/shawnkong/shawnkong.github.io/commits/ccceb16531a7a6d6a3f923b4265c9c4248312059"}]},"public":true,"created_at":"2015-01-01T15:03:39Z"}
,{"id":"2489652727","type":"PushEvent","actor":{"id":4466256,"login":"okulovsky","gravatar_id":"","url":"https://api.github.com/users/okulovsky","avatar_url":"https://avatars.githubusercontent.com/u/4466256?"},"repo":{"id":19462305,"name":"air-labs/Tuto","url":"https://api.github.com/repos/air-labs/Tuto"},"payload":{"push_id":536864756,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"57e3be6b289588c525ac6ae147332fd533b6d489","before":"0bdc102b271ae2d9413849d8a40fe610b44fc7be","commits":[{"sha":"57e3be6b289588c525ac6ae147332fd533b6d489","author":{"email":"8630f38b17740aa0ae8e471c062911f48b4e9dfe@gmail.com","name":"okulovsky"},"message":"Добавил компиляцию tex в pdf","distinct":true,"url":"https://api.github.com/repos/air-labs/Tuto/commits/57e3be6b289588c525ac6ae147332fd533b6d489"}]},"public":true,"created_at":"2015-01-01T15:03:39Z","org":{"id":4466273,"login":"air-labs","gravatar_id":"","url":"https://api.github.com/orgs/air-labs","avatar_url":"https://avatars.githubusercontent.com/u/4466273?"}}
,{"id":"2489652728","type":"PushEvent","actor":{"id":311914,"login":"rrrene","gravatar_id":"","url":"https://api.github.com/users/rrrene","avatar_url":"https://avatars.githubusercontent.com/u/311914?"},"repo":{"id":20063638,"name":"inch-ci/inch_ci-web","url":"https://api.github.com/repos/inch-ci/inch_ci-web"},"payload":{"push_id":536864757,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"3d262753ae79ae1a1a7fe332bc06ae84167d5841","before":"8efbce0a71f551f966ea896e5b46d565f3a5faa0","commits":[{"sha":"72597e07562836b6ba5080cae9c1b2a3ffb01a3a","author":{"email":"22ee0097135072451429b5ac45630d52779cd49b@bamaru.de","name":"René Föhring"},"message":"Update css","distinct":true,"url":"https://api.github.com/repos/inch-ci/inch_ci-web/commits/72597e07562836b6ba5080cae9c1b2a3ffb01a3a"},{"sha":"3d262753ae79ae1a1a7fe332bc06ae84167d5841","author":{"email":"22ee0097135072451429b5ac45630d52779cd49b@bamaru.de","name":"René Föhring"},"message":"Remove development outputs","distinct":true,"url":"https://api.github.com/repos/inch-ci/inch_ci-web/commits/3d262753ae79ae1a1a7fe332bc06ae84167d5841"}]},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":6720851,"login":"inch-ci","gravatar_id":"","url":"https://api.github.com/orgs/inch-ci","avatar_url":"https://avatars.githubusercontent.com/u/6720851?"}}
,{"id":"2489652729","type":"ReleaseEvent","actor":{"id":7693186,"login":"ashishparkhi","gravatar_id":"","url":"https://api.github.com/users/ashishparkhi","avatar_url":"https://avatars.githubusercontent.com/u/7693186?"},"repo":{"id":27871780,"name":"IDeaSCo/rockstar","url":"https://api.github.com/repos/IDeaSCo/rockstar"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/IDeaSCo/rockstar/releases/818680","assets_url":"https://api.github.com/repos/IDeaSCo/rockstar/releases/818680/assets","upload_url":"https://uploads.github.com/repos/IDeaSCo/rockstar/releases/818680/assets{?name}","html_url":"https://github.com/IDeaSCo/rockstar/releases/tag/v1.0.0","id":818680,"tag_name":"v1.0.0","target_commitish":"master","name":null,"draft":false,"author":{"login":"ashishparkhi","id":7693186,"avatar_url":"https://avatars.githubusercontent.com/u/7693186?v=3","gravatar_id":"","url":"https://api.github.com/users/ashishparkhi","html_url":"https://github.com/ashishparkhi","followers_url":"https://api.github.com/users/ashishparkhi/followers","following_url":"https://api.github.com/users/ashishparkhi/following{/other_user}","gists_url":"https://api.github.com/users/ashishparkhi/gists{/gist_id}","starred_url":"https://api.github.com/users/ashishparkhi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ashishparkhi/subscriptions","organizations_url":"https://api.github.com/users/ashishparkhi/orgs","repos_url":"https://api.github.com/users/ashishparkhi/repos","events_url":"https://api.github.com/users/ashishparkhi/events{/privacy}","received_events_url":"https://api.github.com/users/ashishparkhi/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:59:51Z","published_at":"2015-01-01T15:03:39Z","assets":[],"tarball_url":"https://api.github.com/repos/IDeaSCo/rockstar/tarball/v1.0.0","zipball_url":"https://api.github.com/repos/IDeaSCo/rockstar/zipball/v1.0.0","body":null}},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":8440704,"login":"IDeaSCo","gravatar_id":"","url":"https://api.github.com/orgs/IDeaSCo","avatar_url":"https://avatars.githubusercontent.com/u/8440704?"}}
,{"id":"2489652730","type":"CommitCommentEvent","actor":{"id":4303686,"login":"csfrancis","gravatar_id":"","url":"https://api.github.com/users/csfrancis","avatar_url":"https://avatars.githubusercontent.com/u/4303686?"},"repo":{"id":28687850,"name":"csfrancis/vmware-tools-patches","url":"https://api.github.com/repos/csfrancis/vmware-tools-patches"},"payload":{"comment":{"url":"https://api.github.com/repos/csfrancis/vmware-tools-patches/comments/9132428","html_url":"https://github.com/csfrancis/vmware-tools-patches/commit/f69e8bd03dd3f85b995e74fe6ca289d6f880dda0#commitcomment-9132428","id":9132428,"user":{"login":"csfrancis","id":4303686,"avatar_url":"https://avatars.githubusercontent.com/u/4303686?v=3","gravatar_id":"","url":"https://api.github.com/users/csfrancis","html_url":"https://github.com/csfrancis","followers_url":"https://api.github.com/users/csfrancis/followers","following_url":"https://api.github.com/users/csfrancis/following{/other_user}","gists_url":"https://api.github.com/users/csfrancis/gists{/gist_id}","starred_url":"https://api.github.com/users/csfrancis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/csfrancis/subscriptions","organizations_url":"https://api.github.com/users/csfrancis/orgs","repos_url":"https://api.github.com/users/csfrancis/repos","events_url":"https://api.github.com/users/csfrancis/events{/privacy}","received_events_url":"https://api.github.com/users/csfrancis/received_events","type":"User","site_admin":false},"position":8,"line":8,"path":"patches/vmhgfs/vmhgfs-d_alias-kernel-3.18.1-tools-9.6.1.patch","commit_id":"f69e8bd03dd3f85b995e74fe6ca289d6f880dda0","created_at":"2015-01-01T15:03:40Z","updated_at":"2015-01-01T15:03:40Z","body":"Yeah, I noticed that but it didn't apply cleanly for me with my version of vmware tools."}},"public":true,"created_at":"2015-01-01T15:03:40Z"}
,{"id":"2489652732","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327658,"name":"cloudify-cosmo/cloudify-plugin-template","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652733","type":"WatchEvent","actor":{"id":5698124,"login":"xingdao","gravatar_id":"","url":"https://api.github.com/users/xingdao","avatar_url":"https://avatars.githubusercontent.com/u/5698124?"},"repo":{"id":19542809,"name":"interagent/http-api-design","url":"https://api.github.com/repos/interagent/http-api-design"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":7388387,"login":"interagent","gravatar_id":"","url":"https://api.github.com/orgs/interagent","avatar_url":"https://avatars.githubusercontent.com/u/7388387?"}}
,{"id":"2489652734","type":"PushEvent","actor":{"id":8603621,"login":"pmbhumkar","gravatar_id":"","url":"https://api.github.com/users/pmbhumkar","avatar_url":"https://avatars.githubusercontent.com/u/8603621?"},"repo":{"id":28688570,"name":"pmbhumkar/mangoopatch","url":"https://api.github.com/repos/pmbhumkar/mangoopatch"},"payload":{"push_id":536864760,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"efa50f8ded6f77431d39070c26b574b270923e1b","before":"e5273b9874e5878168fd4248dccf5b4277278dd8","commits":[{"sha":"efa50f8ded6f77431d39070c26b574b270923e1b","author":{"email":"38fd3d050688ff5865e112d70b9a3b39cb125550@gmail.com","name":"pmbhumkar"},"message":"Create chown.patch","distinct":true,"url":"https://api.github.com/repos/pmbhumkar/mangoopatch/commits/efa50f8ded6f77431d39070c26b574b270923e1b"}]},"public":true,"created_at":"2015-01-01T15:03:40Z"}
,{"id":"2489652737","type":"IssueCommentEvent","actor":{"id":201664,"login":"aredo","gravatar_id":"","url":"https://api.github.com/users/aredo","avatar_url":"https://avatars.githubusercontent.com/u/201664?"},"repo":{"id":28348351,"name":"nodeschool/jakarta","url":"https://api.github.com/repos/nodeschool/jakarta"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","labels_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/comments","events_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/events","html_url":"https://github.com/nodeschool/jakarta/pull/3","id":53213097,"number":3,"title":"repull request at gh-pages branch","user":{"login":"eufat","id":3710666,"avatar_url":"https://avatars.githubusercontent.com/u/3710666?v=3","gravatar_id":"","url":"https://api.github.com/users/eufat","html_url":"https://github.com/eufat","followers_url":"https://api.github.com/users/eufat/followers","following_url":"https://api.github.com/users/eufat/following{/other_user}","gists_url":"https://api.github.com/users/eufat/gists{/gist_id}","starred_url":"https://api.github.com/users/eufat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eufat/subscriptions","organizations_url":"https://api.github.com/users/eufat/orgs","repos_url":"https://api.github.com/users/eufat/repos","events_url":"https://api.github.com/users/eufat/events{/privacy}","received_events_url":"https://api.github.com/users/eufat/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T05:00:23Z","updated_at":"2015-01-01T15:03:40Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/nodeschool/jakarta/pulls/3","html_url":"https://github.com/nodeschool/jakarta/pull/3","diff_url":"https://github.com/nodeschool/jakarta/pull/3.diff","patch_url":"https://github.com/nodeschool/jakarta/pull/3.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/comments/68488555","html_url":"https://github.com/nodeschool/jakarta/pull/3#issuecomment-68488555","issue_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","id":68488555,"user":{"login":"aredo","id":201664,"avatar_url":"https://avatars.githubusercontent.com/u/201664?v=3","gravatar_id":"","url":"https://api.github.com/users/aredo","html_url":"https://github.com/aredo","followers_url":"https://api.github.com/users/aredo/followers","following_url":"https://api.github.com/users/aredo/following{/other_user}","gists_url":"https://api.github.com/users/aredo/gists{/gist_id}","starred_url":"https://api.github.com/users/aredo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aredo/subscriptions","organizations_url":"https://api.github.com/users/aredo/orgs","repos_url":"https://api.github.com/users/aredo/repos","events_url":"https://api.github.com/users/aredo/events{/privacy}","received_events_url":"https://api.github.com/users/aredo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:40Z","updated_at":"2015-01-01T15:03:40Z","body":"@eufat please make it all as one commit and make sure your PS and do merge automatically by github. Thanks."}},"public":true,"created_at":"2015-01-01T15:03:40Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}}
,{"id":"2489652739","type":"PushEvent","actor":{"id":5277588,"login":"Martstol","gravatar_id":"","url":"https://api.github.com/users/Martstol","avatar_url":"https://avatars.githubusercontent.com/u/5277588?"},"repo":{"id":25680650,"name":"Martstol/ProsjektOppgave","url":"https://api.github.com/repos/Martstol/ProsjektOppgave"},"payload":{"push_id":536864762,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a92176ced2fe1a3b284a6b0214858ad5938a8bf5","before":"2c6ad9cd99433d54b049df56e0294b71a1d2accc","commits":[{"sha":"a92176ced2fe1a3b284a6b0214858ad5938a8bf5","author":{"email":"bc008341b45f3cbb00018aa07f861bfc1cd56c3c@gmail.com","name":"Martin"},"message":"...","distinct":true,"url":"https://api.github.com/repos/Martstol/ProsjektOppgave/commits/a92176ced2fe1a3b284a6b0214858ad5938a8bf5"}]},"public":true,"created_at":"2015-01-01T15:03:40Z"}
,{"id":"2489652744","type":"PushEvent","actor":{"id":53159,"login":"lxsameer","gravatar_id":"","url":"https://api.github.com/users/lxsameer","avatar_url":"https://avatars.githubusercontent.com/u/53159?"},"repo":{"id":28520883,"name":"Yellowen/Franky","url":"https://api.github.com/repos/Yellowen/Franky"},"payload":{"push_id":536864765,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"bd64dadcd8910b4e2c41e369a1a47578866d16a0","before":"3a817cc6908f87b023faba91c43bab1f4a7403e9","commits":[{"sha":"c094cc8ea0f4e071113aec45d8076b79807fe3be","author":{"email":"6ca2d002a241c39080e8e33413f3f48ae3b75969@gnu.org","name":"Sameer Rahmani"},"message":"Repeat plugin fixed","distinct":true,"url":"https://api.github.com/repos/Yellowen/Franky/commits/c094cc8ea0f4e071113aec45d8076b79807fe3be"},{"sha":"bd64dadcd8910b4e2c41e369a1a47578866d16a0","author":{"email":"6ca2d002a241c39080e8e33413f3f48ae3b75969@gnu.org","name":"Sameer Rahmani"},"message":"Repeat plugin fixed","distinct":true,"url":"https://api.github.com/repos/Yellowen/Franky/commits/bd64dadcd8910b4e2c41e369a1a47578866d16a0"}]},"public":true,"created_at":"2015-01-01T15:03:42Z","org":{"id":3639224,"login":"Yellowen","gravatar_id":"","url":"https://api.github.com/orgs/Yellowen","avatar_url":"https://avatars.githubusercontent.com/u/3639224?"}}
,{"id":"2489652749","type":"WatchEvent","actor":{"id":10364689,"login":"ketandani02","gravatar_id":"","url":"https://api.github.com/users/ketandani02","avatar_url":"https://avatars.githubusercontent.com/u/10364689?"},"repo":{"id":16157746,"name":"aspnet/EntityFramework","url":"https://api.github.com/repos/aspnet/EntityFramework"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:43Z","org":{"id":6476660,"login":"aspnet","gravatar_id":"","url":"https://api.github.com/orgs/aspnet","avatar_url":"https://avatars.githubusercontent.com/u/6476660?"}}
,{"id":"2489652750","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327658,"name":"cloudify-cosmo/cloudify-plugin-template","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugin-template"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Templates for Cloudify Plugins","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:43Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652752","type":"PushEvent","actor":{"id":7666055,"login":"sivir","gravatar_id":"","url":"https://api.github.com/users/sivir","avatar_url":"https://avatars.githubusercontent.com/u/7666055?"},"repo":{"id":27804731,"name":"sivir/baikal1","url":"https://api.github.com/repos/sivir/baikal1"},"payload":{"push_id":536864767,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"288deddbcf2f3fa724d448da07876d72b10bb25f","before":"5dfb1df3b6b89b7fbae33ed472250584847f4444","commits":[{"sha":"288deddbcf2f3fa724d448da07876d72b10bb25f","author":{"email":"1e2053d8b74af812877a9ba6f0caba8976b70fc7@gmail.com","name":"Egor Potiomkin"},"message":"music","distinct":true,"url":"https://api.github.com/repos/sivir/baikal1/commits/288deddbcf2f3fa724d448da07876d72b10bb25f"}]},"public":true,"created_at":"2015-01-01T15:03:43Z"}
,{"id":"2489652753","type":"PushEvent","actor":{"id":906606,"login":"loki2302","gravatar_id":"","url":"https://api.github.com/users/loki2302","avatar_url":"https://avatars.githubusercontent.com/u/906606?"},"repo":{"id":23532033,"name":"loki2302/nodejs-app-experiment","url":"https://api.github.com/repos/loki2302/nodejs-app-experiment"},"payload":{"push_id":536864768,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"07ec8d189b8a0095eeaa2cf9a79734f4906f0b7d","before":"a56a55e59ae05c49b724b3cba27115422be7147f","commits":[{"sha":"07ec8d189b8a0095eeaa2cf9a79734f4906f0b7d","author":{"email":"58b632659afcd17f116d710ecd637de3c7aab5c6@loki2302.me","name":"loki2302"},"message":"Now using Koa instead of Express","distinct":true,"url":"https://api.github.com/repos/loki2302/nodejs-app-experiment/commits/07ec8d189b8a0095eeaa2cf9a79734f4906f0b7d"}]},"public":true,"created_at":"2015-01-01T15:03:43Z"}
,{"id":"2489652756","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24328359,"name":"timoxley/bulk","url":"https://api.github.com/repos/timoxley/bulk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/bulk/issues/3","labels_url":"https://api.github.com/repos/timoxley/bulk/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/bulk/issues/3/comments","events_url":"https://api.github.com/repos/timoxley/bulk/issues/3/events","html_url":"https://github.com/timoxley/bulk/issues/3","id":53052553,"number":3,"title":"--bail","user":{"login":"yoshuawuyts","id":2467194,"avatar_url":"https://avatars.githubusercontent.com/u/2467194?v=3","gravatar_id":"","url":"https://api.github.com/users/yoshuawuyts","html_url":"https://github.com/yoshuawuyts","followers_url":"https://api.github.com/users/yoshuawuyts/followers","following_url":"https://api.github.com/users/yoshuawuyts/following{/other_user}","gists_url":"https://api.github.com/users/yoshuawuyts/gists{/gist_id}","starred_url":"https://api.github.com/users/yoshuawuyts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yoshuawuyts/subscriptions","organizations_url":"https://api.github.com/users/yoshuawuyts/orgs","repos_url":"https://api.github.com/users/yoshuawuyts/repos","events_url":"https://api.github.com/users/yoshuawuyts/events{/privacy}","received_events_url":"https://api.github.com/users/yoshuawuyts/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-29T16:32:53Z","updated_at":"2015-01-01T15:03:43Z","closed_at":null,"body":"though it was in `bulk` already, but it would be cool if `--bail` could be given to exit on a non-0 exit code."},"comment":{"url":"https://api.github.com/repos/timoxley/bulk/issues/comments/68488557","html_url":"https://github.com/timoxley/bulk/issues/3#issuecomment-68488557","issue_url":"https://api.github.com/repos/timoxley/bulk/issues/3","id":68488557,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:43Z","updated_at":"2015-01-01T15:03:43Z","body":"PR?"}},"public":true,"created_at":"2015-01-01T15:03:43Z"}
,{"id":"2489652762","type":"PushEvent","actor":{"id":6477580,"login":"l1berty","gravatar_id":"","url":"https://api.github.com/users/l1berty","avatar_url":"https://avatars.githubusercontent.com/u/6477580?"},"repo":{"id":26651759,"name":"vivisect/vivisect","url":"https://api.github.com/repos/vivisect/vivisect"},"payload":{"push_id":536864772,"size":35,"distinct_size":2,"ref":"refs/heads/l1berty_vstruct_marshalling_fix","head":"e94cae76eccf0f322d483405fa260e6dd926a9b8","before":"c2a78b1425f13d1f8a679fa20f5c6f6bab6ba656","commits":[{"sha":"bf56ce0df9db770aea27d09f6387b7ea68b8689c","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@r4780y.com","name":"atlas"},"message":"Viv memcanvas starts at a valid VA, fixing a lot of render bugs.\nthe existing code arbitrarily slams in some offset from the va we want\nas the starting va.  for viv, if that is in the middle of a string, the\nsize of the string gets slammed in, causing all offsets to be wrong.  if\na long string exists just prior to the thing you want to see, often your\nobject doesn't get rendered.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/bf56ce0df9db770aea27d09f6387b7ea68b8689c"},{"sha":"3e962cbd971acc92d65b8247bdbc3b0e00ca40f0","author":{"email":"7f746920ebdfbf9e3a86fb40c11e8fa2326b9896@kenshoto.com","name":"invisig0th"},"message":"Merge pull request #22 from atlas0fd00m/real-master\n\nViv memcanvas starts at a valid VA, fixing a lot of render bugs.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/3e962cbd971acc92d65b8247bdbc3b0e00ca40f0"},{"sha":"1137827f0bc3c67ba04303a7a51539f345b5217d","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"Dynamic Branches in default VaSet for all workspaces.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/1137827f0bc3c67ba04303a7a51539f345b5217d"},{"sha":"2086615f833da1b77bc3b63074e6b6e0e179eeae","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"symboliks read/writeSymMemory and solve() support for vals list","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/2086615f833da1b77bc3b63074e6b6e0e179eeae"},{"sha":"af8843a15a55d1dedc507846c3095e679e503771","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"x86 jmp reg instruction now should return constraints for each known xref, allowing switch-cases to flow","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/af8843a15a55d1dedc507846c3095e679e503771"},{"sha":"08c7cb73cfe977b5fa7646d62cd6da5e7ff7eb38","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"dynamic branches made mainstream (wrapped into impemu.AnalysisMonitor)","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/08c7cb73cfe977b5fa7646d62cd6da5e7ff7eb38"},{"sha":"5247f66cdfaa28023fe5421aa6d2093ec606821b","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"and the flags.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/5247f66cdfaa28023fe5421aa6d2093ec606821b"},{"sha":"5b03905bd2c03fc36150bbcef3c9ef28a140aea1","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"and the flags.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/5b03905bd2c03fc36150bbcef3c9ef28a140aea1"},{"sha":"27cb792bce329146697e3938f07d7e277a00867a","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"detect GCC ELF PIC code (where calls and other memory refs are made based on ebx)","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/27cb792bce329146697e3938f07d7e277a00867a"},{"sha":"cf43cc8c5e6542b49fb312cc554070b50c57d0a9","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"cleanup thunk_bx","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/cf43cc8c5e6542b49fb312cc554070b50c57d0a9"},{"sha":"b0cbea67ee701df23eb53c07c7dbfd61acc6f3cd","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"name fix","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/b0cbea67ee701df23eb53c07c7dbfd61acc6f3cd"},{"sha":"590aa55b32692388dc318bda27f258f245816ac5","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"name fix again","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/590aa55b32692388dc318bda27f258f245816ac5"},{"sha":"337ea8a4490544f471f9d0b408b1f61d768b7b29","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"Viv Gui: if setting comment or name and current one exists, prepopulate the dialog box with the current one for editing.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/337ea8a4490544f471f9d0b408b1f61d768b7b29"},{"sha":"d148056dc0e4353b686786b8068e76f3a090b016","author":{"email":"7f746920ebdfbf9e3a86fb40c11e8fa2326b9896@kenshoto.com","name":"invisig0th"},"message":"Merge pull request #29 from atlas0fd00m/atlas_EasyEditNameAndComment\n\nViv Gui: if setting comment or name and current one exists, prepopulate ...","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/d148056dc0e4353b686786b8068e76f3a090b016"},{"sha":"94e4458a9613e381a5790593f1a7b2233ee32419","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"python3 print fiexs","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/94e4458a9613e381a5790593f1a7b2233ee32419"},{"sha":"99fb97929102d85e116e16676f01a3e6ecbfd3aa","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"track dynamic branches in codeflow callbacks.  (dual mode commit... both methods currently exist.  pick one and remove loser before merging upstream)","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/99fb97929102d85e116e16676f01a3e6ecbfd3aa"},{"sha":"13e087c04ea0bbdb2aec72b451e14f1ac6486cd1","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"remove original dynamic branch handling code.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/13e087c04ea0bbdb2aec72b451e14f1ac6486cd1"},{"sha":"b08a1ff586b96d9455a90ab6fa2ea2e1573853c5","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@grimm-co.com","name":"atlas"},"message":"cleanup and removal of artifacts.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/b08a1ff586b96d9455a90ab6fa2ea2e1573853c5"},{"sha":"89bc073ac7c44109bddc7b079604e3b7262e3eec","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@r4780y.com","name":"atlas"},"message":"fixing envi/i386 render bug which caused clicked registers to be treated\nseparately in i386RegOper/i386SibOper and i386RegMemOper.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/89bc073ac7c44109bddc7b079604e3b7262e3eec"},{"sha":"50e11b0ec27c97db8a96204d59b52c7ae4520da5","author":{"email":"ece8f46bf734ca267a2b6e0f7c3b471a5c964428@r4780y.com","name":"atlas"},"message":"viv: dump QWebView-derived MemCanvas classes to HTML files (Memory View\nand FuncGraph View and Symboliks View).  Sadly, we can't currently\neasily do this for the CallGraph or Tree Views (eg. Functions, Workspace\nNames).  perhaps the TreeViews will be added later.  not sure about\nCallGraph, it's a different animal altogether.","distinct":false,"url":"https://api.github.com/repos/vivisect/vivisect/commits/50e11b0ec27c97db8a96204d59b52c7ae4520da5"}]},"public":true,"created_at":"2015-01-01T15:03:44Z","org":{"id":9749998,"login":"vivisect","gravatar_id":"","url":"https://api.github.com/orgs/vivisect","avatar_url":"https://avatars.githubusercontent.com/u/9749998?"}}
,{"id":"2489652763","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:44Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652765","type":"PullRequestEvent","actor":{"id":2664774,"login":"wheam","gravatar_id":"","url":"https://api.github.com/users/wheam","avatar_url":"https://avatars.githubusercontent.com/u/2664774?"},"repo":{"id":2281775,"name":"marcuswestin/WebViewJavascriptBridge","url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge"},"payload":{"action":"closed","number":117,"pull_request":{"url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117","id":26743780,"html_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117","diff_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117.diff","patch_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117.patch","issue_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117","number":117,"state":"closed","locked":false,"title":"call Handler.handler() in ui thread and double escape messageJSON to javascript","user":{"login":"wheam","id":2664774,"avatar_url":"https://avatars.githubusercontent.com/u/2664774?v=3","gravatar_id":"","url":"https://api.github.com/users/wheam","html_url":"https://github.com/wheam","followers_url":"https://api.github.com/users/wheam/followers","following_url":"https://api.github.com/users/wheam/following{/other_user}","gists_url":"https://api.github.com/users/wheam/gists{/gist_id}","starred_url":"https://api.github.com/users/wheam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wheam/subscriptions","organizations_url":"https://api.github.com/users/wheam/orgs","repos_url":"https://api.github.com/users/wheam/repos","events_url":"https://api.github.com/users/wheam/events{/privacy}","received_events_url":"https://api.github.com/users/wheam/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:20Z","updated_at":"2015-01-01T15:03:44Z","closed_at":"2015-01-01T15:03:44Z","merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/commits","review_comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/comments","review_comment_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/comments/{number}","comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117/comments","statuses_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/4816d6a8100dc08e25b7d448c851174152eff633","head":{"label":"fangj:master","ref":"master","sha":"4816d6a8100dc08e25b7d448c851174152eff633","user":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"repo":{"id":12103692,"name":"WebViewJavascriptBridge","full_name":"fangj/WebViewJavascriptBridge","owner":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/fangj/WebViewJavascriptBridge","description":"An cross-platform bridge for sending messages between Obj-C/Java/Javascript and JavaScript in UIWebViews/WebViews","fork":true,"url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/releases{/id}","created_at":"2013-08-14T08:19:04Z","updated_at":"2014-12-23T15:58:50Z","pushed_at":"2014-03-27T09:05:49Z","git_url":"git://github.com/fangj/WebViewJavascriptBridge.git","ssh_url":"git@github.com:fangj/WebViewJavascriptBridge.git","clone_url":"https://github.com/fangj/WebViewJavascriptBridge.git","svn_url":"https://github.com/fangj/WebViewJavascriptBridge","homepage":"","size":763,"stargazers_count":11,"watchers_count":11,"language":"Objective-C","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":0,"forks":2,"open_issues":0,"watchers":11,"default_branch":"master"}},"base":{"label":"marcuswestin:master","ref":"master","sha":"52b91344dec20ac66ed4cd9275bde2245eab88bb","user":{"login":"marcuswestin","id":131967,"avatar_url":"https://avatars.githubusercontent.com/u/131967?v=3","gravatar_id":"","url":"https://api.github.com/users/marcuswestin","html_url":"https://github.com/marcuswestin","followers_url":"https://api.github.com/users/marcuswestin/followers","following_url":"https://api.github.com/users/marcuswestin/following{/other_user}","gists_url":"https://api.github.com/users/marcuswestin/gists{/gist_id}","starred_url":"https://api.github.com/users/marcuswestin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcuswestin/subscriptions","organizations_url":"https://api.github.com/users/marcuswestin/orgs","repos_url":"https://api.github.com/users/marcuswestin/repos","events_url":"https://api.github.com/users/marcuswestin/events{/privacy}","received_events_url":"https://api.github.com/users/marcuswestin/received_events","type":"User","site_admin":false},"repo":{"id":2281775,"name":"WebViewJavascriptBridge","full_name":"marcuswestin/WebViewJavascriptBridge","owner":{"login":"marcuswestin","id":131967,"avatar_url":"https://avatars.githubusercontent.com/u/131967?v=3","gravatar_id":"","url":"https://api.github.com/users/marcuswestin","html_url":"https://github.com/marcuswestin","followers_url":"https://api.github.com/users/marcuswestin/followers","following_url":"https://api.github.com/users/marcuswestin/following{/other_user}","gists_url":"https://api.github.com/users/marcuswestin/gists{/gist_id}","starred_url":"https://api.github.com/users/marcuswestin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcuswestin/subscriptions","organizations_url":"https://api.github.com/users/marcuswestin/orgs","repos_url":"https://api.github.com/users/marcuswestin/repos","events_url":"https://api.github.com/users/marcuswestin/events{/privacy}","received_events_url":"https://api.github.com/users/marcuswestin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/marcuswestin/WebViewJavascriptBridge","description":"An iOS/OSX bridge for sending messages between Obj-C and JavaScript in UIWebViews/WebViews","fork":false,"url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/releases{/id}","created_at":"2011-08-28T02:25:27Z","updated_at":"2015-01-01T04:00:35Z","pushed_at":"2014-11-05T17:26:00Z","git_url":"git://github.com/marcuswestin/WebViewJavascriptBridge.git","ssh_url":"git@github.com:marcuswestin/WebViewJavascriptBridge.git","clone_url":"https://github.com/marcuswestin/WebViewJavascriptBridge.git","svn_url":"https://github.com/marcuswestin/WebViewJavascriptBridge","homepage":"http://marcuswest.in","size":1288,"stargazers_count":2099,"watchers_count":2099,"language":"Objective-C","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":448,"mirror_url":null,"open_issues_count":11,"forks":448,"open_issues":11,"watchers":2099,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117"},"html":{"href":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117"},"issue":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117"},"comments":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117/comments"},"review_comments":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/comments"},"review_comment":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/commits"},"statuses":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/4816d6a8100dc08e25b7d448c851174152eff633"}},"merged":false,"mergeable":false,"mergeable_state":"dirty","merged_by":null,"comments":0,"review_comments":0,"commits":32,"additions":16320,"deletions":167,"changed_files":99}},"public":true,"created_at":"2015-01-01T15:03:45Z"}
,{"id":"2489652769","type":"IssueCommentEvent","actor":{"id":2156237,"login":"arkascha","gravatar_id":"","url":"https://api.github.com/users/arkascha","avatar_url":"https://avatars.githubusercontent.com/u/2156237?"},"repo":{"id":8987090,"name":"owncloud/shorty","url":"https://api.github.com/repos/owncloud/shorty"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/owncloud/shorty/issues/77","labels_url":"https://api.github.com/repos/owncloud/shorty/issues/77/labels{/name}","comments_url":"https://api.github.com/repos/owncloud/shorty/issues/77/comments","events_url":"https://api.github.com/repos/owncloud/shorty/issues/77/events","html_url":"https://github.com/owncloud/shorty/issues/77","id":52982767,"number":77,"title":"States don't seem to work properly anymore","user":{"login":"arkascha","id":2156237,"avatar_url":"https://avatars.githubusercontent.com/u/2156237?v=3","gravatar_id":"","url":"https://api.github.com/users/arkascha","html_url":"https://github.com/arkascha","followers_url":"https://api.github.com/users/arkascha/followers","following_url":"https://api.github.com/users/arkascha/following{/other_user}","gists_url":"https://api.github.com/users/arkascha/gists{/gist_id}","starred_url":"https://api.github.com/users/arkascha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arkascha/subscriptions","organizations_url":"https://api.github.com/users/arkascha/orgs","repos_url":"https://api.github.com/users/arkascha/repos","events_url":"https://api.github.com/users/arkascha/events{/privacy}","received_events_url":"https://api.github.com/users/arkascha/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-12-28T14:51:46Z","updated_at":"2015-01-01T15:03:44Z","closed_at":null,"body":"@fredl99 reported this issue in over there: https://github.com/owncloud/shorty/issues/76\r\nI took the liberty to separated the issue here into a separate entry. \r\n\r\nThe selected states don't seem to work properly anymore. Any of \"closed\", \"private\" or \"shared\" results in a \"forbidden\" message when calling the short URL, regardless if or which user is logged in. No login-page appears either. The only working status at the moment is \"public\"."},"comment":{"url":"https://api.github.com/repos/owncloud/shorty/issues/comments/68488558","html_url":"https://github.com/owncloud/shorty/issues/77#issuecomment-68488558","issue_url":"https://api.github.com/repos/owncloud/shorty/issues/77","id":68488558,"user":{"login":"arkascha","id":2156237,"avatar_url":"https://avatars.githubusercontent.com/u/2156237?v=3","gravatar_id":"","url":"https://api.github.com/users/arkascha","html_url":"https://github.com/arkascha","followers_url":"https://api.github.com/users/arkascha/followers","following_url":"https://api.github.com/users/arkascha/following{/other_user}","gists_url":"https://api.github.com/users/arkascha/gists{/gist_id}","starred_url":"https://api.github.com/users/arkascha/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arkascha/subscriptions","organizations_url":"https://api.github.com/users/arkascha/orgs","repos_url":"https://api.github.com/users/arkascha/repos","events_url":"https://api.github.com/users/arkascha/events{/privacy}","received_events_url":"https://api.github.com/users/arkascha/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:44Z","updated_at":"2015-01-01T15:03:44Z","body":"Hm... maybe such configuration should be prevented in an explicit manner. \r\nIt never occurred to me one could try such a configuration. Classical case of \"creator blindness\" :-)"}},"public":true,"created_at":"2015-01-01T15:03:45Z","org":{"id":1645051,"login":"owncloud","gravatar_id":"","url":"https://api.github.com/orgs/owncloud","avatar_url":"https://avatars.githubusercontent.com/u/1645051?"}}
,{"id":"2489652770","type":"PullRequestEvent","actor":{"id":299901,"login":"dankempster","gravatar_id":"","url":"https://api.github.com/users/dankempster","avatar_url":"https://avatars.githubusercontent.com/u/299901?"},"repo":{"id":28648383,"name":"dankempster/axstrad-filesystem","url":"https://api.github.com/repos/dankempster/axstrad-filesystem"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3","id":26743795,"html_url":"https://github.com/dankempster/axstrad-filesystem/pull/3","diff_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.diff","patch_url":"https://github.com/dankempster/axstrad-filesystem/pull/3.patch","issue_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3","number":3,"state":"open","locked":false,"title":"Set Travis builds to push code coverage to Coveralls.","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:45Z","updated_at":"2015-01-01T15:03:45Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/commits","review_comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/comments","review_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","head":{"label":"dankempster:add-coveralls","ref":"add-coveralls","sha":"1c6534408ae63ce8b18d28eb47ce83dbf0af31bb","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2014-12-31T01:11:17Z","pushed_at":"2015-01-01T15:03:23Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"develop"}},"base":{"label":"dankempster:develop","ref":"develop","sha":"d2707adf8fb6309152905cb36666b74f5df6e513","user":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"repo":{"id":28648383,"name":"axstrad-filesystem","full_name":"dankempster/axstrad-filesystem","owner":{"login":"dankempster","id":299901,"avatar_url":"https://avatars.githubusercontent.com/u/299901?v=3","gravatar_id":"","url":"https://api.github.com/users/dankempster","html_url":"https://github.com/dankempster","followers_url":"https://api.github.com/users/dankempster/followers","following_url":"https://api.github.com/users/dankempster/following{/other_user}","gists_url":"https://api.github.com/users/dankempster/gists{/gist_id}","starred_url":"https://api.github.com/users/dankempster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dankempster/subscriptions","organizations_url":"https://api.github.com/users/dankempster/orgs","repos_url":"https://api.github.com/users/dankempster/repos","events_url":"https://api.github.com/users/dankempster/events{/privacy}","received_events_url":"https://api.github.com/users/dankempster/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dankempster/axstrad-filesystem","description":"","fork":false,"url":"https://api.github.com/repos/dankempster/axstrad-filesystem","forks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/forks","keys_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/teams","hooks_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/hooks","issue_events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/events{/number}","events_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/events","assignees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/assignees{/user}","branches_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/branches{/branch}","tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/tags","blobs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/refs{/sha}","trees_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/{sha}","languages_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/languages","stargazers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/stargazers","contributors_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contributors","subscribers_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscribers","subscription_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/subscription","commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/commits{/sha}","git_commits_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/git/commits{/sha}","comments_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/comments{/number}","issue_comment_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/comments/{number}","contents_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/contents/{+path}","compare_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/merges","archive_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/downloads","issues_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues{/number}","pulls_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls{/number}","milestones_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/milestones{/number}","notifications_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/labels{/name}","releases_url":"https://api.github.com/repos/dankempster/axstrad-filesystem/releases{/id}","created_at":"2014-12-30T22:56:17Z","updated_at":"2014-12-31T01:11:17Z","pushed_at":"2015-01-01T15:03:23Z","git_url":"git://github.com/dankempster/axstrad-filesystem.git","ssh_url":"git@github.com:dankempster/axstrad-filesystem.git","clone_url":"https://github.com/dankempster/axstrad-filesystem.git","svn_url":"https://github.com/dankempster/axstrad-filesystem","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3"},"html":{"href":"https://github.com/dankempster/axstrad-filesystem/pull/3"},"issue":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3"},"comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/dankempster/axstrad-filesystem/statuses/1c6534408ae63ce8b18d28eb47ce83dbf0af31bb"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":436,"deletions":10,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:03:45Z"}
,{"id":"2489652771","type":"PushEvent","actor":{"id":8971138,"login":"LinhTruongVan","gravatar_id":"","url":"https://api.github.com/users/LinhTruongVan","avatar_url":"https://avatars.githubusercontent.com/u/8971138?"},"repo":{"id":28688443,"name":"LinhTruongVan/EnglishArena","url":"https://api.github.com/repos/LinhTruongVan/EnglishArena"},"payload":{"push_id":536864774,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6e307dee25493e801b5168762464aba2c053e236","before":"7d08278e6e9e6606a3032d1c7ee393ddb3af3188","commits":[{"sha":"4a2b59f23f6de6bf88ba0a6931cb41e13c3ed544","author":{"email":"2fc45bccdafcc507982afaeeb541bf326905243c@gmail.com","name":"LinhTruongVan"},"message":"English Arena","distinct":true,"url":"https://api.github.com/repos/LinhTruongVan/EnglishArena/commits/4a2b59f23f6de6bf88ba0a6931cb41e13c3ed544"},{"sha":"6e307dee25493e801b5168762464aba2c053e236","author":{"email":"2fc45bccdafcc507982afaeeb541bf326905243c@gmail.com","name":"LinhTruongVan"},"message":"Merge branch 'master' of https://github.com/LinhTruongVan/EnglishArena","distinct":true,"url":"https://api.github.com/repos/LinhTruongVan/EnglishArena/commits/6e307dee25493e801b5168762464aba2c053e236"}]},"public":true,"created_at":"2015-01-01T15:03:45Z"}
,{"id":"2489652772","type":"PushEvent","actor":{"id":3623502,"login":"jjyo","gravatar_id":"","url":"https://api.github.com/users/jjyo","avatar_url":"https://avatars.githubusercontent.com/u/3623502?"},"repo":{"id":26426188,"name":"jjyo/android","url":"https://api.github.com/repos/jjyo/android"},"payload":{"push_id":536864775,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"84e70f6bd97458ba61a6b9b4e2070a3bca10208b","before":"a47effd990fc30e8235eb8190b4b171e04a6f0de","commits":[{"sha":"84e70f6bd97458ba61a6b9b4e2070a3bca10208b","author":{"email":"5dd1561c768785384e2a643250a8e3941f5fefad@163.com","name":"jjyo"},"message":"SADF","distinct":true,"url":"https://api.github.com/repos/jjyo/android/commits/84e70f6bd97458ba61a6b9b4e2070a3bca10208b"}]},"public":true,"created_at":"2015-01-01T15:03:45Z"}
,{"id":"2489652775","type":"PushEvent","actor":{"id":6874783,"login":"wanglongqi","gravatar_id":"","url":"https://api.github.com/users/wanglongqi","avatar_url":"https://avatars.githubusercontent.com/u/6874783?"},"repo":{"id":17819385,"name":"wanglongqi/wanglongqi.github.io","url":"https://api.github.com/repos/wanglongqi/wanglongqi.github.io"},"payload":{"push_id":536864776,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3f082bfe9ce37521adceaba94687b8da1ca757a2","before":"7be4309af9078c2610b349b03c3b74d6fba65364","commits":[{"sha":"3f082bfe9ce37521adceaba94687b8da1ca757a2","author":{"email":"16320187abe3fdd5a51d91f3939d7c3d922d276f@gmail.com","name":"WANG Longqi"},"message":"no message","distinct":true,"url":"https://api.github.com/repos/wanglongqi/wanglongqi.github.io/commits/3f082bfe9ce37521adceaba94687b8da1ca757a2"}]},"public":true,"created_at":"2015-01-01T15:03:45Z"}
,{"id":"2489652776","type":"PushEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061659,"name":"syon/andy-hiroyuki.github.io","url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io"},"payload":{"push_id":536864778,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8363b1bc893a653daaf6fef0fee79580d3a9d937","before":"c6ef09bde4f3b81c41c92ae18cc332fecb8efcdc","commits":[{"sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"middleman build","distinct":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits/8363b1bc893a653daaf6fef0fee79580d3a9d937"}]},"public":true,"created_at":"2015-01-01T15:03:46Z"}
,{"id":"2489652778","type":"WatchEvent","actor":{"id":1811118,"login":"rodolfobandeira","gravatar_id":"","url":"https://api.github.com/users/rodolfobandeira","avatar_url":"https://avatars.githubusercontent.com/u/1811118?"},"repo":{"id":11288568,"name":"digitalocean/rack-protection","url":"https://api.github.com/repos/digitalocean/rack-protection"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:46Z","org":{"id":4650108,"login":"digitalocean","gravatar_id":"","url":"https://api.github.com/orgs/digitalocean","avatar_url":"https://avatars.githubusercontent.com/u/4650108?"}}
,{"id":"2489652779","type":"PushEvent","actor":{"id":5059195,"login":"Blimeo","gravatar_id":"","url":"https://api.github.com/users/Blimeo","avatar_url":"https://avatars.githubusercontent.com/u/5059195?"},"repo":{"id":28688096,"name":"Blimeo/blimeo.github.io","url":"https://api.github.com/repos/Blimeo/blimeo.github.io"},"payload":{"push_id":536864780,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd1426e13dccb13a23cfbe03c067ebeaa49331f9","before":"aa0a4decc8475d7af6b33b6fea69d6102e5b06ba","commits":[{"sha":"fd1426e13dccb13a23cfbe03c067ebeaa49331f9","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"ddddddd\n\nddddddddd","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/fd1426e13dccb13a23cfbe03c067ebeaa49331f9"}]},"public":true,"created_at":"2015-01-01T15:03:46Z"}
,{"id":"2489652782","type":"PushEvent","actor":{"id":6587210,"login":"EmilAleksandrov","gravatar_id":"","url":"https://api.github.com/users/EmilAleksandrov","avatar_url":"https://avatars.githubusercontent.com/u/6587210?"},"repo":{"id":28593309,"name":"EmilAleksandrov/PracticalProject-OnlineAds","url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds"},"payload":{"push_id":536864781,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f7d079bb8d48a9905c1f5421805d677acc669f71","before":"15a9b4450553ba60008d01ccbabafa81fda6c3e4","commits":[{"sha":"f7d079bb8d48a9905c1f5421805d677acc669f71","author":{"email":"5a18d12f372cb890f7a3930223687493602f3246@gmail.com","name":"Aleksandrov"},"message":"Set category logic at last","distinct":true,"url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds/commits/f7d079bb8d48a9905c1f5421805d677acc669f71"}]},"public":true,"created_at":"2015-01-01T15:03:46Z"}
,{"id":"2489652789","type":"CreateEvent","actor":{"id":8189622,"login":"dc29","gravatar_id":"","url":"https://api.github.com/users/dc29","avatar_url":"https://avatars.githubusercontent.com/u/8189622?"},"repo":{"id":28688669,"name":"dc29/bash","url":"https://api.github.com/repos/dc29/bash"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z"}
,{"id":"2489652790","type":"PushEvent","actor":{"id":1266011,"login":"danprince","gravatar_id":"","url":"https://api.github.com/users/danprince","avatar_url":"https://avatars.githubusercontent.com/u/1266011?"},"repo":{"id":28223366,"name":"danprince/ng-picky","url":"https://api.github.com/repos/danprince/ng-picky"},"payload":{"push_id":536864785,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"21a6d06b2d56c2d4fd462c9615ba580ac1339a93","before":"57437298f6d4e29395ba807ee25c20e3eb220720","commits":[{"sha":"21a6d06b2d56c2d4fd462c9615ba580ac1339a93","author":{"email":"469c42bff2bd573099eb48b1874c2ce051c1bf36@hotmail.co.uk","name":"danprince"},"message":"fixing issues caused by foundation","distinct":true,"url":"https://api.github.com/repos/danprince/ng-picky/commits/21a6d06b2d56c2d4fd462c9615ba580ac1339a93"}]},"public":true,"created_at":"2015-01-01T15:03:48Z"}
,{"id":"2489652792","type":"CreateEvent","actor":{"id":1323354,"login":"fatjanhushi","gravatar_id":"","url":"https://api.github.com/users/fatjanhushi","avatar_url":"https://avatars.githubusercontent.com/u/1323354?"},"repo":{"id":28688667,"name":"fatjanhushi/t25mycalendar","url":"https://api.github.com/repos/fatjanhushi/t25mycalendar"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z"}
,{"id":"2489652794","type":"CreateEvent","actor":{"id":9414889,"login":"whiteineyes","gravatar_id":"","url":"https://api.github.com/users/whiteineyes","avatar_url":"https://avatars.githubusercontent.com/u/9414889?"},"repo":{"id":28688463,"name":"whiteineyes/hexo","url":"https://api.github.com/repos/whiteineyes/hexo"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z"}
,{"id":"2489652796","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326574,"name":"cloudify-cosmo/cloudify-manager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify's manager related code","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:48Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652798","type":"IssueCommentEvent","actor":{"id":4801917,"login":"andreas-venturini","gravatar_id":"","url":"https://api.github.com/users/andreas-venturini","avatar_url":"https://avatars.githubusercontent.com/u/4801917?"},"repo":{"id":18684510,"name":"coreos/bugs","url":"https://api.github.com/repos/coreos/bugs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/coreos/bugs/issues/123","labels_url":"https://api.github.com/repos/coreos/bugs/issues/123/labels{/name}","comments_url":"https://api.github.com/repos/coreos/bugs/issues/123/comments","events_url":"https://api.github.com/repos/coreos/bugs/issues/123/events","html_url":"https://github.com/coreos/bugs/issues/123","id":42358703,"number":123,"title":"Failed to set memory.limit_in_bytes on : Invalid argument","user":{"login":"jfromaniello","id":178512,"avatar_url":"https://avatars.githubusercontent.com/u/178512?v=3","gravatar_id":"","url":"https://api.github.com/users/jfromaniello","html_url":"https://github.com/jfromaniello","followers_url":"https://api.github.com/users/jfromaniello/followers","following_url":"https://api.github.com/users/jfromaniello/following{/other_user}","gists_url":"https://api.github.com/users/jfromaniello/gists{/gist_id}","starred_url":"https://api.github.com/users/jfromaniello/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfromaniello/subscriptions","organizations_url":"https://api.github.com/users/jfromaniello/orgs","repos_url":"https://api.github.com/users/jfromaniello/repos","events_url":"https://api.github.com/users/jfromaniello/events{/privacy}","received_events_url":"https://api.github.com/users/jfromaniello/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/coreos/bugs/labels/bug","name":"bug","color":"eb6420"},{"url":"https://api.github.com/repos/coreos/bugs/labels/os","name":"os","color":"FFFFFF"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-09-09T22:27:19Z","updated_at":"2015-01-01T15:03:48Z","closed_at":null,"body":"I see this message in the logs, not sure what it means:\r\n\r\n```\r\nSep 09 22:15:09 ip-172-31-31-59.us-west-1.compute.internal systemd[1]: Failed to set memory.limit_in_bytes on : Invalid argument\r\nSep 09 22:15:09 ip-172-31-31-59.us-west-1.compute.internal systemd[1]: Failed to reset devices.list on /system.slice: Invalid argument\r\n```"},"comment":{"url":"https://api.github.com/repos/coreos/bugs/issues/comments/68488559","html_url":"https://github.com/coreos/bugs/issues/123#issuecomment-68488559","issue_url":"https://api.github.com/repos/coreos/bugs/issues/123","id":68488559,"user":{"login":"andreas-venturini","id":4801917,"avatar_url":"https://avatars.githubusercontent.com/u/4801917?v=3","gravatar_id":"","url":"https://api.github.com/users/andreas-venturini","html_url":"https://github.com/andreas-venturini","followers_url":"https://api.github.com/users/andreas-venturini/followers","following_url":"https://api.github.com/users/andreas-venturini/following{/other_user}","gists_url":"https://api.github.com/users/andreas-venturini/gists{/gist_id}","starred_url":"https://api.github.com/users/andreas-venturini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreas-venturini/subscriptions","organizations_url":"https://api.github.com/users/andreas-venturini/orgs","repos_url":"https://api.github.com/users/andreas-venturini/repos","events_url":"https://api.github.com/users/andreas-venturini/events{/privacy}","received_events_url":"https://api.github.com/users/andreas-venturini/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:48Z","updated_at":"2015-01-01T15:03:48Z","body":"Not sure what the implications are\r\n```bash\r\ncoreos0 ~ $ sudo journalctl -b\r\n[...]\r\nJan 01 15:48:23 coreos0 systemd[1]: Starting system-addon\\x2drun.slice.\r\nJan 01 15:48:23 coreos0 systemd[1]: Failed to set memory.limit_in_bytes on : Invalid argument\r\nJan 01 15:48:23 coreos0 systemd[1]: Created slice system-addon\\x2drun.slice.\r\n[...]\r\n```\r\n\r\nShortly before in the logs (possibly unrelated to above message)\r\n```bash\r\ncoreos0 ~ $ sudo journalctl -b\r\n[...]\r\nJan 01 15:48:23 coreos0 systemd-journald[88]: Received SIGTERM from PID 1 (systemd).\r\nJan 01 15:48:23 coreos0 systemd[1]: Breaking ordering cycle by deleting job sockets.target/start\r\nJan 01 15:48:23 coreos0 systemd[1]: Job sockets.target/start deleted to break ordering cycle starting with basic.target/start\r\n[...]\r\n```\r\n\r\n```bash\r\ncoreos0 ~ $ cat /etc/lsb-release\r\nDISTRIB_ID=CoreOS\r\nDISTRIB_RELEASE=547.0.0\r\nDISTRIB_CODENAME=\"Red Dog\"\r\nDISTRIB_DESCRIPTION=\"CoreOS 547.0.0\"\r\n```"}},"public":true,"created_at":"2015-01-01T15:03:48Z","org":{"id":3730757,"login":"coreos","gravatar_id":"","url":"https://api.github.com/orgs/coreos","avatar_url":"https://avatars.githubusercontent.com/u/3730757?"}}
,{"id":"2489652800","type":"ForkEvent","actor":{"id":1482672,"login":"deathcore01","gravatar_id":"","url":"https://api.github.com/users/deathcore01","avatar_url":"https://avatars.githubusercontent.com/u/1482672?"},"repo":{"id":26156411,"name":"Rythal/Carbonite","url":"https://api.github.com/repos/Rythal/Carbonite"},"payload":{"forkee":{"id":28688670,"name":"Carbonite","full_name":"deathcore01/Carbonite","owner":{"login":"deathcore01","id":1482672,"avatar_url":"https://avatars.githubusercontent.com/u/1482672?v=3","gravatar_id":"","url":"https://api.github.com/users/deathcore01","html_url":"https://github.com/deathcore01","followers_url":"https://api.github.com/users/deathcore01/followers","following_url":"https://api.github.com/users/deathcore01/following{/other_user}","gists_url":"https://api.github.com/users/deathcore01/gists{/gist_id}","starred_url":"https://api.github.com/users/deathcore01/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deathcore01/subscriptions","organizations_url":"https://api.github.com/users/deathcore01/orgs","repos_url":"https://api.github.com/users/deathcore01/repos","events_url":"https://api.github.com/users/deathcore01/events{/privacy}","received_events_url":"https://api.github.com/users/deathcore01/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deathcore01/Carbonite","description":"Carbonite Maps System","fork":true,"url":"https://api.github.com/repos/deathcore01/Carbonite","forks_url":"https://api.github.com/repos/deathcore01/Carbonite/forks","keys_url":"https://api.github.com/repos/deathcore01/Carbonite/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deathcore01/Carbonite/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deathcore01/Carbonite/teams","hooks_url":"https://api.github.com/repos/deathcore01/Carbonite/hooks","issue_events_url":"https://api.github.com/repos/deathcore01/Carbonite/issues/events{/number}","events_url":"https://api.github.com/repos/deathcore01/Carbonite/events","assignees_url":"https://api.github.com/repos/deathcore01/Carbonite/assignees{/user}","branches_url":"https://api.github.com/repos/deathcore01/Carbonite/branches{/branch}","tags_url":"https://api.github.com/repos/deathcore01/Carbonite/tags","blobs_url":"https://api.github.com/repos/deathcore01/Carbonite/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deathcore01/Carbonite/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deathcore01/Carbonite/git/refs{/sha}","trees_url":"https://api.github.com/repos/deathcore01/Carbonite/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deathcore01/Carbonite/statuses/{sha}","languages_url":"https://api.github.com/repos/deathcore01/Carbonite/languages","stargazers_url":"https://api.github.com/repos/deathcore01/Carbonite/stargazers","contributors_url":"https://api.github.com/repos/deathcore01/Carbonite/contributors","subscribers_url":"https://api.github.com/repos/deathcore01/Carbonite/subscribers","subscription_url":"https://api.github.com/repos/deathcore01/Carbonite/subscription","commits_url":"https://api.github.com/repos/deathcore01/Carbonite/commits{/sha}","git_commits_url":"https://api.github.com/repos/deathcore01/Carbonite/git/commits{/sha}","comments_url":"https://api.github.com/repos/deathcore01/Carbonite/comments{/number}","issue_comment_url":"https://api.github.com/repos/deathcore01/Carbonite/issues/comments/{number}","contents_url":"https://api.github.com/repos/deathcore01/Carbonite/contents/{+path}","compare_url":"https://api.github.com/repos/deathcore01/Carbonite/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deathcore01/Carbonite/merges","archive_url":"https://api.github.com/repos/deathcore01/Carbonite/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deathcore01/Carbonite/downloads","issues_url":"https://api.github.com/repos/deathcore01/Carbonite/issues{/number}","pulls_url":"https://api.github.com/repos/deathcore01/Carbonite/pulls{/number}","milestones_url":"https://api.github.com/repos/deathcore01/Carbonite/milestones{/number}","notifications_url":"https://api.github.com/repos/deathcore01/Carbonite/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deathcore01/Carbonite/labels{/name}","releases_url":"https://api.github.com/repos/deathcore01/Carbonite/releases{/id}","created_at":"2015-01-01T15:03:48Z","updated_at":"2015-01-01T14:36:53Z","pushed_at":"2015-01-01T14:36:53Z","git_url":"git://github.com/deathcore01/Carbonite.git","ssh_url":"git@github.com:deathcore01/Carbonite.git","clone_url":"https://github.com/deathcore01/Carbonite.git","svn_url":"https://github.com/deathcore01/Carbonite","homepage":null,"size":10622,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:48Z"}
,{"id":"2489652801","type":"ForkEvent","actor":{"id":2238502,"login":"weiguo21","gravatar_id":"","url":"https://api.github.com/users/weiguo21","avatar_url":"https://avatars.githubusercontent.com/u/2238502?"},"repo":{"id":16667589,"name":"daniellitoc/xultimate-resource","url":"https://api.github.com/repos/daniellitoc/xultimate-resource"},"payload":{"forkee":{"id":28688671,"name":"xultimate-resource","full_name":"weiguo21/xultimate-resource","owner":{"login":"weiguo21","id":2238502,"avatar_url":"https://avatars.githubusercontent.com/u/2238502?v=3","gravatar_id":"","url":"https://api.github.com/users/weiguo21","html_url":"https://github.com/weiguo21","followers_url":"https://api.github.com/users/weiguo21/followers","following_url":"https://api.github.com/users/weiguo21/following{/other_user}","gists_url":"https://api.github.com/users/weiguo21/gists{/gist_id}","starred_url":"https://api.github.com/users/weiguo21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weiguo21/subscriptions","organizations_url":"https://api.github.com/users/weiguo21/orgs","repos_url":"https://api.github.com/users/weiguo21/repos","events_url":"https://api.github.com/users/weiguo21/events{/privacy}","received_events_url":"https://api.github.com/users/weiguo21/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/weiguo21/xultimate-resource","description":"采用Spring MVC,用于在FastDFS分布式文件系统中完成资源管理(上传、删除、下载)的ShowCase。图片类资源的支持实时缩略图功能。缩放、剪裁、水印等功能通过已封装好AWT和im4java进行处理,即支持GraphicsMagick。","fork":true,"url":"https://api.github.com/repos/weiguo21/xultimate-resource","forks_url":"https://api.github.com/repos/weiguo21/xultimate-resource/forks","keys_url":"https://api.github.com/repos/weiguo21/xultimate-resource/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/xultimate-resource/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/xultimate-resource/teams","hooks_url":"https://api.github.com/repos/weiguo21/xultimate-resource/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/xultimate-resource/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/xultimate-resource/events","assignees_url":"https://api.github.com/repos/weiguo21/xultimate-resource/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/xultimate-resource/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/xultimate-resource/tags","blobs_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/xultimate-resource/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/xultimate-resource/languages","stargazers_url":"https://api.github.com/repos/weiguo21/xultimate-resource/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/xultimate-resource/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/xultimate-resource/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/xultimate-resource/subscription","commits_url":"https://api.github.com/repos/weiguo21/xultimate-resource/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/xultimate-resource/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/xultimate-resource/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/xultimate-resource/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/xultimate-resource/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/xultimate-resource/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/xultimate-resource/merges","archive_url":"https://api.github.com/repos/weiguo21/xultimate-resource/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/xultimate-resource/downloads","issues_url":"https://api.github.com/repos/weiguo21/xultimate-resource/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/xultimate-resource/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/xultimate-resource/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/xultimate-resource/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/xultimate-resource/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/xultimate-resource/releases{/id}","created_at":"2015-01-01T15:03:49Z","updated_at":"2014-12-31T10:44:18Z","pushed_at":"2014-08-28T05:04:15Z","git_url":"git://github.com/weiguo21/xultimate-resource.git","ssh_url":"git@github.com:weiguo21/xultimate-resource.git","clone_url":"https://github.com/weiguo21/xultimate-resource.git","svn_url":"https://github.com/weiguo21/xultimate-resource","homepage":"","size":256,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:49Z"}
,{"id":"2489652804","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327618,"name":"cloudify-cosmo/cloudify-rest-client","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-rest-client"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:50Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652812","type":"PushEvent","actor":{"id":2276523,"login":"tttwwy","gravatar_id":"","url":"https://api.github.com/users/tttwwy","avatar_url":"https://avatars.githubusercontent.com/u/2276523?"},"repo":{"id":27988190,"name":"tttwwy/contest","url":"https://api.github.com/repos/tttwwy/contest"},"payload":{"push_id":536864795,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ceb19fe60849bc27bde2c327fea21d1c3d206bc2","before":"0972829e0d6de9b7f21a6248cd0165d8eaa1ae11","commits":[{"sha":"ceb19fe60849bc27bde2c327fea21d1c3d206bc2","author":{"email":"67e6d062086856e93fc57bfb63c83084d08725a8@126.com","name":"xiaose"},"message":"fix","distinct":true,"url":"https://api.github.com/repos/tttwwy/contest/commits/ceb19fe60849bc27bde2c327fea21d1c3d206bc2"}]},"public":true,"created_at":"2015-01-01T15:03:51Z"}
,{"id":"2489652814","type":"PushEvent","actor":{"id":8345569,"login":"jpespinal","gravatar_id":"","url":"https://api.github.com/users/jpespinal","avatar_url":"https://avatars.githubusercontent.com/u/8345569?"},"repo":{"id":28417357,"name":"jpespinal/portfolio","url":"https://api.github.com/repos/jpespinal/portfolio"},"payload":{"push_id":536864796,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"d9e6ec1876dfe6a9dc9b3aa31ecd332372640016","before":"fd5bacb69d7570aa678176ade7079eee513e54e5","commits":[{"sha":"d9e6ec1876dfe6a9dc9b3aa31ecd332372640016","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Attempting to center Contact section labels.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/d9e6ec1876dfe6a9dc9b3aa31ecd332372640016"}]},"public":true,"created_at":"2015-01-01T15:03:51Z"}
,{"id":"2489652816","type":"PushEvent","actor":{"id":6898582,"login":"XHaller","gravatar_id":"","url":"https://api.github.com/users/XHaller","avatar_url":"https://avatars.githubusercontent.com/u/6898582?"},"repo":{"id":26170215,"name":"XHaller/xhaller.github.com","url":"https://api.github.com/repos/XHaller/xhaller.github.com"},"payload":{"push_id":536864798,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0a467cab4e901b3c0148e23b909ae95744442c0f","before":"acab0549742cd0c83186aefd0d126d67364b2950","commits":[{"sha":"0a467cab4e901b3c0148e23b909ae95744442c0f","author":{"email":"95c305a35894539ea190a03cf7af282a95538e58@BX-mbpdeMacBook-Pro.local","name":"BX_mbp"},"message":"gitpro","distinct":true,"url":"https://api.github.com/repos/XHaller/xhaller.github.com/commits/0a467cab4e901b3c0148e23b909ae95744442c0f"}]},"public":true,"created_at":"2015-01-01T15:03:51Z"}
,{"id":"2489652817","type":"PullRequestEvent","actor":{"id":732452,"login":"bscSCORM","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","avatar_url":"https://avatars.githubusercontent.com/u/732452?"},"repo":{"id":5452699,"name":"RusticiSoftware/TinCanJS","url":"https://api.github.com/repos/RusticiSoftware/TinCanJS"},"payload":{"action":"closed","number":96,"pull_request":{"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96","id":25666907,"html_url":"https://github.com/RusticiSoftware/TinCanJS/pull/96","diff_url":"https://github.com/RusticiSoftware/TinCanJS/pull/96.diff","patch_url":"https://github.com/RusticiSoftware/TinCanJS/pull/96.patch","issue_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96","number":96,"state":"closed","locked":false,"title":"Add duration functions to Utils","user":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"body":"Two duration functions for Utils to help APs with tracking attempt duration.\r\n\r\nReplaces #92 ","created_at":"2014-12-08T13:51:57Z","updated_at":"2015-01-01T15:03:51Z","closed_at":"2015-01-01T15:03:51Z","merged_at":"2015-01-01T15:03:51Z","merge_commit_sha":"0816d87a8ee532882a9529eb724ff70e6b3d987c","assignee":{"login":"bscSCORM","id":732452,"avatar_url":"https://avatars.githubusercontent.com/u/732452?v=3","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","html_url":"https://github.com/bscSCORM","followers_url":"https://api.github.com/users/bscSCORM/followers","following_url":"https://api.github.com/users/bscSCORM/following{/other_user}","gists_url":"https://api.github.com/users/bscSCORM/gists{/gist_id}","starred_url":"https://api.github.com/users/bscSCORM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bscSCORM/subscriptions","organizations_url":"https://api.github.com/users/bscSCORM/orgs","repos_url":"https://api.github.com/users/bscSCORM/repos","events_url":"https://api.github.com/users/bscSCORM/events{/privacy}","received_events_url":"https://api.github.com/users/bscSCORM/received_events","type":"User","site_admin":false},"milestone":null,"commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/commits","review_comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/comments","review_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96/comments","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c4f8e33fa846e8e60bce2d3aff568d4088e27f8c","head":{"label":"garemoko:duration_functions_squashed","ref":"duration_functions_squashed","sha":"c4f8e33fa846e8e60bce2d3aff568d4088e27f8c","user":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"repo":{"id":23806425,"name":"TinCanJS","full_name":"garemoko/TinCanJS","owner":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/garemoko/TinCanJS","description":"JavaScript library for Tin Can API","fork":true,"url":"https://api.github.com/repos/garemoko/TinCanJS","forks_url":"https://api.github.com/repos/garemoko/TinCanJS/forks","keys_url":"https://api.github.com/repos/garemoko/TinCanJS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/garemoko/TinCanJS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/garemoko/TinCanJS/teams","hooks_url":"https://api.github.com/repos/garemoko/TinCanJS/hooks","issue_events_url":"https://api.github.com/repos/garemoko/TinCanJS/issues/events{/number}","events_url":"https://api.github.com/repos/garemoko/TinCanJS/events","assignees_url":"https://api.github.com/repos/garemoko/TinCanJS/assignees{/user}","branches_url":"https://api.github.com/repos/garemoko/TinCanJS/branches{/branch}","tags_url":"https://api.github.com/repos/garemoko/TinCanJS/tags","blobs_url":"https://api.github.com/repos/garemoko/TinCanJS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/garemoko/TinCanJS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/garemoko/TinCanJS/git/refs{/sha}","trees_url":"https://api.github.com/repos/garemoko/TinCanJS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/garemoko/TinCanJS/statuses/{sha}","languages_url":"https://api.github.com/repos/garemoko/TinCanJS/languages","stargazers_url":"https://api.github.com/repos/garemoko/TinCanJS/stargazers","contributors_url":"https://api.github.com/repos/garemoko/TinCanJS/contributors","subscribers_url":"https://api.github.com/repos/garemoko/TinCanJS/subscribers","subscription_url":"https://api.github.com/repos/garemoko/TinCanJS/subscription","commits_url":"https://api.github.com/repos/garemoko/TinCanJS/commits{/sha}","git_commits_url":"https://api.github.com/repos/garemoko/TinCanJS/git/commits{/sha}","comments_url":"https://api.github.com/repos/garemoko/TinCanJS/comments{/number}","issue_comment_url":"https://api.github.com/repos/garemoko/TinCanJS/issues/comments/{number}","contents_url":"https://api.github.com/repos/garemoko/TinCanJS/contents/{+path}","compare_url":"https://api.github.com/repos/garemoko/TinCanJS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/garemoko/TinCanJS/merges","archive_url":"https://api.github.com/repos/garemoko/TinCanJS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/garemoko/TinCanJS/downloads","issues_url":"https://api.github.com/repos/garemoko/TinCanJS/issues{/number}","pulls_url":"https://api.github.com/repos/garemoko/TinCanJS/pulls{/number}","milestones_url":"https://api.github.com/repos/garemoko/TinCanJS/milestones{/number}","notifications_url":"https://api.github.com/repos/garemoko/TinCanJS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/garemoko/TinCanJS/labels{/name}","releases_url":"https://api.github.com/repos/garemoko/TinCanJS/releases{/id}","created_at":"2014-09-08T20:12:29Z","updated_at":"2014-12-08T15:36:53Z","pushed_at":"2014-12-30T16:51:57Z","git_url":"git://github.com/garemoko/TinCanJS.git","ssh_url":"git@github.com:garemoko/TinCanJS.git","clone_url":"https://github.com/garemoko/TinCanJS.git","svn_url":"https://github.com/garemoko/TinCanJS","homepage":"http://rusticisoftware.github.io/TinCanJS/","size":7430,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"RusticiSoftware:master","ref":"master","sha":"6f51600a2d30f63d7ef61d528c99e6ff003c5934","user":{"login":"RusticiSoftware","id":440964,"avatar_url":"https://avatars.githubusercontent.com/u/440964?v=3","gravatar_id":"","url":"https://api.github.com/users/RusticiSoftware","html_url":"https://github.com/RusticiSoftware","followers_url":"https://api.github.com/users/RusticiSoftware/followers","following_url":"https://api.github.com/users/RusticiSoftware/following{/other_user}","gists_url":"https://api.github.com/users/RusticiSoftware/gists{/gist_id}","starred_url":"https://api.github.com/users/RusticiSoftware/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RusticiSoftware/subscriptions","organizations_url":"https://api.github.com/users/RusticiSoftware/orgs","repos_url":"https://api.github.com/users/RusticiSoftware/repos","events_url":"https://api.github.com/users/RusticiSoftware/events{/privacy}","received_events_url":"https://api.github.com/users/RusticiSoftware/received_events","type":"Organization","site_admin":false},"repo":{"id":5452699,"name":"TinCanJS","full_name":"RusticiSoftware/TinCanJS","owner":{"login":"RusticiSoftware","id":440964,"avatar_url":"https://avatars.githubusercontent.com/u/440964?v=3","gravatar_id":"","url":"https://api.github.com/users/RusticiSoftware","html_url":"https://github.com/RusticiSoftware","followers_url":"https://api.github.com/users/RusticiSoftware/followers","following_url":"https://api.github.com/users/RusticiSoftware/following{/other_user}","gists_url":"https://api.github.com/users/RusticiSoftware/gists{/gist_id}","starred_url":"https://api.github.com/users/RusticiSoftware/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RusticiSoftware/subscriptions","organizations_url":"https://api.github.com/users/RusticiSoftware/orgs","repos_url":"https://api.github.com/users/RusticiSoftware/repos","events_url":"https://api.github.com/users/RusticiSoftware/events{/privacy}","received_events_url":"https://api.github.com/users/RusticiSoftware/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/RusticiSoftware/TinCanJS","description":"JavaScript library for Tin Can API","fork":false,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS","forks_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/forks","keys_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/teams","hooks_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/hooks","issue_events_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/events{/number}","events_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/events","assignees_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/assignees{/user}","branches_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/branches{/branch}","tags_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/tags","blobs_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/refs{/sha}","trees_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/{sha}","languages_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/languages","stargazers_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/stargazers","contributors_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/contributors","subscribers_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/subscribers","subscription_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/subscription","commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits{/sha}","git_commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/commits{/sha}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/comments{/number}","issue_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/comments/{number}","contents_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/contents/{+path}","compare_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/merges","archive_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/downloads","issues_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues{/number}","pulls_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls{/number}","milestones_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/milestones{/number}","notifications_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/labels{/name}","releases_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/releases{/id}","created_at":"2012-08-17T13:41:20Z","updated_at":"2015-01-01T15:00:10Z","pushed_at":"2015-01-01T15:03:51Z","git_url":"git://github.com/RusticiSoftware/TinCanJS.git","ssh_url":"git@github.com:RusticiSoftware/TinCanJS.git","clone_url":"https://github.com/RusticiSoftware/TinCanJS.git","svn_url":"https://github.com/RusticiSoftware/TinCanJS","homepage":"http://rusticisoftware.github.io/TinCanJS/","size":8368,"stargazers_count":78,"watchers_count":78,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":60,"mirror_url":null,"open_issues_count":21,"forks":60,"open_issues":21,"watchers":78,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96"},"html":{"href":"https://github.com/RusticiSoftware/TinCanJS/pull/96"},"issue":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96"},"comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/96/comments"},"review_comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/comments"},"review_comment":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/96/commits"},"statuses":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c4f8e33fa846e8e60bce2d3aff568d4088e27f8c"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"bscSCORM","id":732452,"avatar_url":"https://avatars.githubusercontent.com/u/732452?v=3","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","html_url":"https://github.com/bscSCORM","followers_url":"https://api.github.com/users/bscSCORM/followers","following_url":"https://api.github.com/users/bscSCORM/following{/other_user}","gists_url":"https://api.github.com/users/bscSCORM/gists{/gist_id}","starred_url":"https://api.github.com/users/bscSCORM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bscSCORM/subscriptions","organizations_url":"https://api.github.com/users/bscSCORM/orgs","repos_url":"https://api.github.com/users/bscSCORM/repos","events_url":"https://api.github.com/users/bscSCORM/events{/privacy}","received_events_url":"https://api.github.com/users/bscSCORM/received_events","type":"User","site_admin":false},"comments":4,"review_comments":0,"commits":7,"additions":101,"deletions":0,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:03:51Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}}
,{"id":"2489652818","type":"PushEvent","actor":{"id":732452,"login":"bscSCORM","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","avatar_url":"https://avatars.githubusercontent.com/u/732452?"},"repo":{"id":5452699,"name":"RusticiSoftware/TinCanJS","url":"https://api.github.com/repos/RusticiSoftware/TinCanJS"},"payload":{"push_id":536864799,"size":8,"distinct_size":8,"ref":"refs/heads/master","head":"2a204f300343a9d3cddfcfcc91862f54f138d0a7","before":"0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2","commits":[{"sha":"a21f28c7ba68f7d704604f8b4cf4bdae165b9bbc","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Add duration functions to Utils","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/a21f28c7ba68f7d704604f8b4cf4bdae165b9bbc"},{"sha":"8b8839226ef2a0703f068166e20ae64e654b1bb3","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"code tidy from previous commit","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/8b8839226ef2a0703f068166e20ae64e654b1bb3"},{"sha":"e7b76fc581ba3828c1e955351e2bc2ef98e360f4","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"fix code style and throw error on unsupported timestamp","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/e7b76fc581ba3828c1e955351e2bc2ef98e360f4"},{"sha":"5907feb56a46972f4d3b17cfdc9b9528dfc2e4f0","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"fix build errors introduced in last commit","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/5907feb56a46972f4d3b17cfdc9b9528dfc2e4f0"},{"sha":"9b4410ed9d241569a0c36c598b032170cb138974","author":{"email":"6e47f84bcaace900fd8377790f1551726cd9517e@scorm.com","name":"Brian J. Miller"},"message":"Few more style cleanups","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/9b4410ed9d241569a0c36c598b032170cb138974"},{"sha":"f5d94e878ad4f4418b119f2baa59ee637bdf32db","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Duration function tests","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/f5d94e878ad4f4418b119f2baa59ee637bdf32db"},{"sha":"c4f8e33fa846e8e60bce2d3aff568d4088e27f8c","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Fix duration function tests","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/c4f8e33fa846e8e60bce2d3aff568d4088e27f8c"},{"sha":"2a204f300343a9d3cddfcfcc91862f54f138d0a7","author":{"email":"3a19cd5185143587c3e7d5e91f5db86ca3a27fc7@scorm.com","name":"bscSCORM"},"message":"Merge pull request #96 from garemoko/duration_functions_squashed\n\nAdd duration functions to Utils","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/2a204f300343a9d3cddfcfcc91862f54f138d0a7"}]},"public":true,"created_at":"2015-01-01T15:03:51Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}}
,{"id":"2489652824","type":"PushEvent","actor":{"id":6685542,"login":"lummax","gravatar_id":"","url":"https://api.github.com/users/lummax","avatar_url":"https://avatars.githubusercontent.com/u/6685542?"},"repo":{"id":28688540,"name":"lummax/librcimimxcons","url":"https://api.github.com/repos/lummax/librcimimxcons"},"payload":{"push_id":536864801,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"36fe55608c1e5dc5e9542bbde0f3bc65c41dc197","before":"e2eb98dfc7e3ff64cb1731686768eab549799627","commits":[{"sha":"36fe55608c1e5dc5e9542bbde0f3bc65c41dc197","author":{"email":"d11d775f9afa9d792151336d360f7bb8e3aa3b6b@googlemail.com","name":"lummax"},"message":"Add .travis.yml","distinct":true,"url":"https://api.github.com/repos/lummax/librcimimxcons/commits/36fe55608c1e5dc5e9542bbde0f3bc65c41dc197"}]},"public":true,"created_at":"2015-01-01T15:03:52Z"}
,{"id":"2489652825","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327618,"name":"cloudify-cosmo/cloudify-rest-client","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-rest-client"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify REST Client","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:52Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652827","type":"ForkEvent","actor":{"id":7715508,"login":"18840850852","gravatar_id":"","url":"https://api.github.com/users/18840850852","avatar_url":"https://avatars.githubusercontent.com/u/7715508?"},"repo":{"id":10188673,"name":"mcxiaoke/android-volley","url":"https://api.github.com/repos/mcxiaoke/android-volley"},"payload":{"forkee":{"id":28688672,"name":"android-volley","full_name":"18840850852/android-volley","owner":{"login":"18840850852","id":7715508,"avatar_url":"https://avatars.githubusercontent.com/u/7715508?v=3","gravatar_id":"","url":"https://api.github.com/users/18840850852","html_url":"https://github.com/18840850852","followers_url":"https://api.github.com/users/18840850852/followers","following_url":"https://api.github.com/users/18840850852/following{/other_user}","gists_url":"https://api.github.com/users/18840850852/gists{/gist_id}","starred_url":"https://api.github.com/users/18840850852/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/18840850852/subscriptions","organizations_url":"https://api.github.com/users/18840850852/orgs","repos_url":"https://api.github.com/users/18840850852/repos","events_url":"https://api.github.com/users/18840850852/events{/privacy}","received_events_url":"https://api.github.com/users/18840850852/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/18840850852/android-volley","description":"volley","fork":true,"url":"https://api.github.com/repos/18840850852/android-volley","forks_url":"https://api.github.com/repos/18840850852/android-volley/forks","keys_url":"https://api.github.com/repos/18840850852/android-volley/keys{/key_id}","collaborators_url":"https://api.github.com/repos/18840850852/android-volley/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/18840850852/android-volley/teams","hooks_url":"https://api.github.com/repos/18840850852/android-volley/hooks","issue_events_url":"https://api.github.com/repos/18840850852/android-volley/issues/events{/number}","events_url":"https://api.github.com/repos/18840850852/android-volley/events","assignees_url":"https://api.github.com/repos/18840850852/android-volley/assignees{/user}","branches_url":"https://api.github.com/repos/18840850852/android-volley/branches{/branch}","tags_url":"https://api.github.com/repos/18840850852/android-volley/tags","blobs_url":"https://api.github.com/repos/18840850852/android-volley/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/18840850852/android-volley/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/18840850852/android-volley/git/refs{/sha}","trees_url":"https://api.github.com/repos/18840850852/android-volley/git/trees{/sha}","statuses_url":"https://api.github.com/repos/18840850852/android-volley/statuses/{sha}","languages_url":"https://api.github.com/repos/18840850852/android-volley/languages","stargazers_url":"https://api.github.com/repos/18840850852/android-volley/stargazers","contributors_url":"https://api.github.com/repos/18840850852/android-volley/contributors","subscribers_url":"https://api.github.com/repos/18840850852/android-volley/subscribers","subscription_url":"https://api.github.com/repos/18840850852/android-volley/subscription","commits_url":"https://api.github.com/repos/18840850852/android-volley/commits{/sha}","git_commits_url":"https://api.github.com/repos/18840850852/android-volley/git/commits{/sha}","comments_url":"https://api.github.com/repos/18840850852/android-volley/comments{/number}","issue_comment_url":"https://api.github.com/repos/18840850852/android-volley/issues/comments/{number}","contents_url":"https://api.github.com/repos/18840850852/android-volley/contents/{+path}","compare_url":"https://api.github.com/repos/18840850852/android-volley/compare/{base}...{head}","merges_url":"https://api.github.com/repos/18840850852/android-volley/merges","archive_url":"https://api.github.com/repos/18840850852/android-volley/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/18840850852/android-volley/downloads","issues_url":"https://api.github.com/repos/18840850852/android-volley/issues{/number}","pulls_url":"https://api.github.com/repos/18840850852/android-volley/pulls{/number}","milestones_url":"https://api.github.com/repos/18840850852/android-volley/milestones{/number}","notifications_url":"https://api.github.com/repos/18840850852/android-volley/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/18840850852/android-volley/labels{/name}","releases_url":"https://api.github.com/repos/18840850852/android-volley/releases{/id}","created_at":"2015-01-01T15:03:52Z","updated_at":"2015-01-01T04:23:41Z","pushed_at":"2014-12-31T02:20:30Z","git_url":"git://github.com/18840850852/android-volley.git","ssh_url":"git@github.com:18840850852/android-volley.git","clone_url":"https://github.com/18840850852/android-volley.git","svn_url":"https://github.com/18840850852/android-volley","homepage":"https://android.googlesource.com/platform/frameworks/volley","size":1590,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:03:53Z"}
,{"id":"2489652828","type":"IssuesEvent","actor":{"id":9463991,"login":"eldadtzadok","gravatar_id":"","url":"https://api.github.com/users/eldadtzadok","avatar_url":"https://avatars.githubusercontent.com/u/9463991?"},"repo":{"id":27998120,"name":"shenkarlab/Off-The-record","url":"https://api.github.com/repos/shenkarlab/Off-The-record"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13","labels_url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13/comments","events_url":"https://api.github.com/repos/shenkarlab/Off-The-record/issues/13/events","html_url":"https://github.com/shenkarlab/Off-The-record/issues/13","id":53221405,"number":13,"title":"Extract Data For 1st section","user":{"login":"eldadtzadok","id":9463991,"avatar_url":"https://avatars.githubusercontent.com/u/9463991?v=3","gravatar_id":"","url":"https://api.github.com/users/eldadtzadok","html_url":"https://github.com/eldadtzadok","followers_url":"https://api.github.com/users/eldadtzadok/followers","following_url":"https://api.github.com/users/eldadtzadok/following{/other_user}","gists_url":"https://api.github.com/users/eldadtzadok/gists{/gist_id}","starred_url":"https://api.github.com/users/eldadtzadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eldadtzadok/subscriptions","organizations_url":"https://api.github.com/users/eldadtzadok/orgs","repos_url":"https://api.github.com/users/eldadtzadok/repos","events_url":"https://api.github.com/users/eldadtzadok/events{/privacy}","received_events_url":"https://api.github.com/users/eldadtzadok/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:52Z","updated_at":"2015-01-01T15:03:52Z","closed_at":null,"body":"בגוגל דרייב יש קובץ עם מילים שיש לבדוק אצל כל פוליטיקאי ולדרג מי שלושת הפוליטיקאים שמצטיינים בכל קטגוריה\r\n @AlexGr2  וניר שאני לא מוצא את התיוג שלו"}},"public":true,"created_at":"2015-01-01T15:03:53Z","org":{"id":6725176,"login":"shenkarlab","gravatar_id":"","url":"https://api.github.com/orgs/shenkarlab","avatar_url":"https://avatars.githubusercontent.com/u/6725176?"}}
,{"id":"2489652832","type":"PushEvent","actor":{"id":2237700,"login":"s-p-k","gravatar_id":"","url":"https://api.github.com/users/s-p-k","avatar_url":"https://avatars.githubusercontent.com/u/2237700?"},"repo":{"id":14831231,"name":"s-p-k/foxy","url":"https://api.github.com/repos/s-p-k/foxy"},"payload":{"push_id":536864803,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9df2623abdff338ef7fe858e9a23be3e19837015","before":"588ae312d1ff433fa9fb503abf3c153101a06f00","commits":[{"sha":"9df2623abdff338ef7fe858e9a23be3e19837015","author":{"email":"f56cf1a6a4ea45c75e564a05f1c1e38e569e0ee7@gmail.com","name":"s-p-k"},"message":"update TODO and LICENSE files","distinct":true,"url":"https://api.github.com/repos/s-p-k/foxy/commits/9df2623abdff338ef7fe858e9a23be3e19837015"}]},"public":true,"created_at":"2015-01-01T15:03:53Z"}
,{"id":"2489652833","type":"PushEvent","actor":{"id":9755468,"login":"pionnertech","gravatar_id":"","url":"https://api.github.com/users/pionnertech","avatar_url":"https://avatars.githubusercontent.com/u/9755468?"},"repo":{"id":26832780,"name":"pionnertech/versallestap","url":"https://api.github.com/repos/pionnertech/versallestap"},"payload":{"push_id":536864804,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4499b06ddc997a59dd8c51d2a2a5681f973daa03","before":"0d8b996a0aa2370f02ea2d7fee55ae53bb2eef91","commits":[{"sha":"4499b06ddc997a59dd8c51d2a2a5681f973daa03","author":{"email":"970c3b53f51ad7bb4ca1e7f2a053ef66f5f67348@outlook.com","name":"pionnertch"},"message":"rtest","distinct":true,"url":"https://api.github.com/repos/pionnertech/versallestap/commits/4499b06ddc997a59dd8c51d2a2a5681f973daa03"}]},"public":true,"created_at":"2015-01-01T15:03:53Z"}
,{"id":"2489652834","type":"PushEvent","actor":{"id":3191500,"login":"aec4d","gravatar_id":"","url":"https://api.github.com/users/aec4d","avatar_url":"https://avatars.githubusercontent.com/u/3191500?"},"repo":{"id":28686024,"name":"aec4d/Scriptlet","url":"https://api.github.com/repos/aec4d/Scriptlet"},"payload":{"push_id":536864806,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a1ec60edc5ff0dc361fb407d1c319c7467418bff","before":"f36d900a5c2f897c039288857848be8deb7ee690","commits":[{"sha":"a1ec60edc5ff0dc361fb407d1c319c7467418bff","author":{"email":"240bc8ef56a1c4574ae4655fdaf3ae1a234619e0@outlook.com","name":"ficapy"},"message":"int/str~~~搞错了","distinct":true,"url":"https://api.github.com/repos/aec4d/Scriptlet/commits/a1ec60edc5ff0dc361fb407d1c319c7467418bff"}]},"public":true,"created_at":"2015-01-01T15:03:53Z"}
,{"id":"2489652839","type":"PushEvent","actor":{"id":1883165,"login":"manmyung","gravatar_id":"","url":"https://api.github.com/users/manmyung","avatar_url":"https://avatars.githubusercontent.com/u/1883165?"},"repo":{"id":27954898,"name":"manmyung/study-4clojure","url":"https://api.github.com/repos/manmyung/study-4clojure"},"payload":{"push_id":536864809,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22b68503fc68007099cb1a708556191236833b05","before":"ee822ce5f57f499ffa84806f36252259fb44728b","commits":[{"sha":"22b68503fc68007099cb1a708556191236833b05","author":{"email":"ab0de8a5debb5a0bc3c57846c2316b38f658d3f8@gmail.com","name":"manmyung"},"message":"~p31","distinct":true,"url":"https://api.github.com/repos/manmyung/study-4clojure/commits/22b68503fc68007099cb1a708556191236833b05"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"}
,{"id":"2489652840","type":"PushEvent","actor":{"id":5946993,"login":"skewie","gravatar_id":"","url":"https://api.github.com/users/skewie","avatar_url":"https://avatars.githubusercontent.com/u/5946993?"},"repo":{"id":28603626,"name":"Althox/ik2011-inl1","url":"https://api.github.com/repos/Althox/ik2011-inl1"},"payload":{"push_id":536864810,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31263e4a09fd3c6248ed453ae507d8cf55f10b07","before":"18f4e83b6930e3e28284628feb04e5e4aab1f21c","commits":[{"sha":"31263e4a09fd3c6248ed453ae507d8cf55f10b07","author":{"email":"9828034f45c139f3d0314872cee30463ece9b196@Lappy","name":"Jeff"},"message":"Removed git-ignore on the libs","distinct":true,"url":"https://api.github.com/repos/Althox/ik2011-inl1/commits/31263e4a09fd3c6248ed453ae507d8cf55f10b07"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"}
,{"id":"2489652841","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327506,"name":"cloudify-cosmo/cloudify-system-tests","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-system-tests"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:54Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652842","type":"PushEvent","actor":{"id":10240653,"login":"peasandpetals","gravatar_id":"","url":"https://api.github.com/users/peasandpetals","avatar_url":"https://avatars.githubusercontent.com/u/10240653?"},"repo":{"id":28406582,"name":"peasandpetals/peasandpetals.github.io","url":"https://api.github.com/repos/peasandpetals/peasandpetals.github.io"},"payload":{"push_id":536864812,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0","before":"2c3596d8c46dd5b595af8e3fe0a6577d43f3f4f3","commits":[{"sha":"843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0","author":{"email":"fc8c7307e9592b5798f02a8c7341cdf9f29b45ec@gmail.com","name":"peasandpetals"},"message":"santa's lane\n\nphotography new post","distinct":true,"url":"https://api.github.com/repos/peasandpetals/peasandpetals.github.io/commits/843219cf6bc5b8c019b2217e41c4c3f1e56aa0b0"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"}
,{"id":"2489652844","type":"PushEvent","actor":{"id":169434,"login":"rgngl","gravatar_id":"","url":"https://api.github.com/users/rgngl","avatar_url":"https://avatars.githubusercontent.com/u/169434?"},"repo":{"id":9831340,"name":"rgngl/GamePlay","url":"https://api.github.com/repos/rgngl/GamePlay"},"payload":{"push_id":536864813,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"cba0d00f3835b49050b8389ce3608a9c842f4583","before":"3c825cc256826077155b1735d342ec3429a7e6b0","commits":[{"sha":"cba0d00f3835b49050b8389ce3608a9c842f4583","author":{"email":"c13571dbffa0eb89c7f8eebdce482897b0f5a685@ustun.fi","name":"Üstün Ergenoglu"},"message":"Add 1 pixel padding to generated font atlas\n\nThis avoids artifacts when using SDF fonts with some characters that\r\nhappen to be on the first column of the texture atlas.","distinct":true,"url":"https://api.github.com/repos/rgngl/GamePlay/commits/cba0d00f3835b49050b8389ce3608a9c842f4583"}]},"public":true,"created_at":"2015-01-01T15:03:54Z"}
,{"id":"2489652848","type":"IssueCommentEvent","actor":{"id":940859,"login":"Benni-chan","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","avatar_url":"https://avatars.githubusercontent.com/u/940859?"},"repo":{"id":2681795,"name":"Benni-chan/nzbToAniDB","url":"https://api.github.com/repos/Benni-chan/nzbToAniDB"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24","labels_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/labels{/name}","comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/comments","events_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/events","html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24","id":53218172,"number":24,"title":"Fix for TV/Movie directory condition","user":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T11:46:09Z","updated_at":"2015-01-01T15:03:54Z","closed_at":"2015-01-01T15:03:54Z","pull_request":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24","html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24","diff_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.diff","patch_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.patch"},"body":"removed unneeded condition for TV/Movie directory condition"},"comment":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/comments/68488562","html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24#issuecomment-68488562","issue_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24","id":68488562,"user":{"login":"Benni-chan","id":940859,"avatar_url":"https://avatars.githubusercontent.com/u/940859?v=3","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","html_url":"https://github.com/Benni-chan","followers_url":"https://api.github.com/users/Benni-chan/followers","following_url":"https://api.github.com/users/Benni-chan/following{/other_user}","gists_url":"https://api.github.com/users/Benni-chan/gists{/gist_id}","starred_url":"https://api.github.com/users/Benni-chan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benni-chan/subscriptions","organizations_url":"https://api.github.com/users/Benni-chan/orgs","repos_url":"https://api.github.com/users/Benni-chan/repos","events_url":"https://api.github.com/users/Benni-chan/events{/privacy}","received_events_url":"https://api.github.com/users/Benni-chan/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:03:54Z","updated_at":"2015-01-01T15:03:54Z","body":"merged manually.\r\ni believe, i fixed this in my new version, too.\r\nSome more bugfixes will be added in the next few days."}},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652849","type":"CreateEvent","actor":{"id":7246669,"login":"casanovatoy","gravatar_id":"","url":"https://api.github.com/users/casanovatoy","avatar_url":"https://avatars.githubusercontent.com/u/7246669?"},"repo":{"id":28688673,"name":"casanovatoy/MotionDetection","url":"https://api.github.com/repos/casanovatoy/MotionDetection"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"MotionDetection","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652850","type":"PullRequestEvent","actor":{"id":940859,"login":"Benni-chan","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","avatar_url":"https://avatars.githubusercontent.com/u/940859?"},"repo":{"id":2681795,"name":"Benni-chan/nzbToAniDB","url":"https://api.github.com/repos/Benni-chan/nzbToAniDB"},"payload":{"action":"closed","number":24,"pull_request":{"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24","id":26742494,"html_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24","diff_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.diff","patch_url":"https://github.com/Benni-chan/nzbToAniDB/pull/24.patch","issue_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24","number":24,"state":"closed","locked":false,"title":"Fix for TV/Movie directory condition","user":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"body":"removed unneeded condition for TV/Movie directory condition","created_at":"2015-01-01T11:46:09Z","updated_at":"2015-01-01T15:03:54Z","closed_at":"2015-01-01T15:03:54Z","merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/commits","review_comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/comments","review_comment_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/comments","statuses_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/statuses/b958d73fca9cce005387fcef0d25c74cce392805","head":{"label":"gunmantheh:master","ref":"master","sha":"b958d73fca9cce005387fcef0d25c74cce392805","user":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"repo":{"id":25476034,"name":"nzbToAniDB","full_name":"gunmantheh/nzbToAniDB","owner":{"login":"gunmantheh","id":4093289,"avatar_url":"https://avatars.githubusercontent.com/u/4093289?v=3","gravatar_id":"","url":"https://api.github.com/users/gunmantheh","html_url":"https://github.com/gunmantheh","followers_url":"https://api.github.com/users/gunmantheh/followers","following_url":"https://api.github.com/users/gunmantheh/following{/other_user}","gists_url":"https://api.github.com/users/gunmantheh/gists{/gist_id}","starred_url":"https://api.github.com/users/gunmantheh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gunmantheh/subscriptions","organizations_url":"https://api.github.com/users/gunmantheh/orgs","repos_url":"https://api.github.com/users/gunmantheh/repos","events_url":"https://api.github.com/users/gunmantheh/events{/privacy}","received_events_url":"https://api.github.com/users/gunmantheh/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/gunmantheh/nzbToAniDB","description":"postprocessing script for animes (to use with sabnzbd+ or nzbget or even as stand alone) to rename files after a sync with anidb.net. files can additionally be renamed via tvdb","fork":true,"url":"https://api.github.com/repos/gunmantheh/nzbToAniDB","forks_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/forks","keys_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/teams","hooks_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/hooks","issue_events_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/issues/events{/number}","events_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/events","assignees_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/assignees{/user}","branches_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/branches{/branch}","tags_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/tags","blobs_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/refs{/sha}","trees_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/statuses/{sha}","languages_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/languages","stargazers_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/stargazers","contributors_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/contributors","subscribers_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/subscribers","subscription_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/subscription","commits_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/commits{/sha}","git_commits_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/git/commits{/sha}","comments_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/comments{/number}","issue_comment_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/issues/comments/{number}","contents_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/contents/{+path}","compare_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/merges","archive_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/downloads","issues_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/issues{/number}","pulls_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/pulls{/number}","milestones_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/milestones{/number}","notifications_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/labels{/name}","releases_url":"https://api.github.com/repos/gunmantheh/nzbToAniDB/releases{/id}","created_at":"2014-10-20T16:43:37Z","updated_at":"2015-01-01T11:44:04Z","pushed_at":"2015-01-01T11:44:04Z","git_url":"git://github.com/gunmantheh/nzbToAniDB.git","ssh_url":"git@github.com:gunmantheh/nzbToAniDB.git","clone_url":"https://github.com/gunmantheh/nzbToAniDB.git","svn_url":"https://github.com/gunmantheh/nzbToAniDB","homepage":"","size":394,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Benni-chan:master","ref":"master","sha":"453196878d29a087aa60d160d3456d31fb6bbdf2","user":{"login":"Benni-chan","id":940859,"avatar_url":"https://avatars.githubusercontent.com/u/940859?v=3","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","html_url":"https://github.com/Benni-chan","followers_url":"https://api.github.com/users/Benni-chan/followers","following_url":"https://api.github.com/users/Benni-chan/following{/other_user}","gists_url":"https://api.github.com/users/Benni-chan/gists{/gist_id}","starred_url":"https://api.github.com/users/Benni-chan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benni-chan/subscriptions","organizations_url":"https://api.github.com/users/Benni-chan/orgs","repos_url":"https://api.github.com/users/Benni-chan/repos","events_url":"https://api.github.com/users/Benni-chan/events{/privacy}","received_events_url":"https://api.github.com/users/Benni-chan/received_events","type":"User","site_admin":false},"repo":{"id":2681795,"name":"nzbToAniDB","full_name":"Benni-chan/nzbToAniDB","owner":{"login":"Benni-chan","id":940859,"avatar_url":"https://avatars.githubusercontent.com/u/940859?v=3","gravatar_id":"","url":"https://api.github.com/users/Benni-chan","html_url":"https://github.com/Benni-chan","followers_url":"https://api.github.com/users/Benni-chan/followers","following_url":"https://api.github.com/users/Benni-chan/following{/other_user}","gists_url":"https://api.github.com/users/Benni-chan/gists{/gist_id}","starred_url":"https://api.github.com/users/Benni-chan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benni-chan/subscriptions","organizations_url":"https://api.github.com/users/Benni-chan/orgs","repos_url":"https://api.github.com/users/Benni-chan/repos","events_url":"https://api.github.com/users/Benni-chan/events{/privacy}","received_events_url":"https://api.github.com/users/Benni-chan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Benni-chan/nzbToAniDB","description":"postprocessing script for animes (to use with sabnzbd+ or nzbget or even as stand alone) to rename files after a sync with anidb.net. files can additionally be renamed via tvdb","fork":false,"url":"https://api.github.com/repos/Benni-chan/nzbToAniDB","forks_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/forks","keys_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/teams","hooks_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/hooks","issue_events_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/events{/number}","events_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/events","assignees_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/assignees{/user}","branches_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/branches{/branch}","tags_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/tags","blobs_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/refs{/sha}","trees_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/statuses/{sha}","languages_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/languages","stargazers_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/stargazers","contributors_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/contributors","subscribers_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/subscribers","subscription_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/subscription","commits_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/commits{/sha}","git_commits_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/git/commits{/sha}","comments_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/comments{/number}","issue_comment_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/comments/{number}","contents_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/contents/{+path}","compare_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/merges","archive_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/downloads","issues_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues{/number}","pulls_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls{/number}","milestones_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/milestones{/number}","notifications_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/labels{/name}","releases_url":"https://api.github.com/repos/Benni-chan/nzbToAniDB/releases{/id}","created_at":"2011-10-31T16:10:14Z","updated_at":"2015-01-01T15:03:03Z","pushed_at":"2015-01-01T15:03:03Z","git_url":"git://github.com/Benni-chan/nzbToAniDB.git","ssh_url":"git@github.com:Benni-chan/nzbToAniDB.git","clone_url":"https://github.com/Benni-chan/nzbToAniDB.git","svn_url":"https://github.com/Benni-chan/nzbToAniDB","homepage":"","size":711,"stargazers_count":14,"watchers_count":14,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":5,"mirror_url":null,"open_issues_count":1,"forks":5,"open_issues":1,"watchers":14,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24"},"html":{"href":"https://github.com/Benni-chan/nzbToAniDB/pull/24"},"issue":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24"},"comments":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/comments"},"review_comment":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/pulls/24/commits"},"statuses":{"href":"https://api.github.com/repos/Benni-chan/nzbToAniDB/statuses/b958d73fca9cce005387fcef0d25c74cce392805"}},"merged":false,"mergeable":false,"mergeable_state":"dirty","merged_by":null,"comments":1,"review_comments":0,"commits":2,"additions":3,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652851","type":"PushEvent","actor":{"id":188109,"login":"wilkart","gravatar_id":"","url":"https://api.github.com/users/wilkart","avatar_url":"https://avatars.githubusercontent.com/u/188109?"},"repo":{"id":11866439,"name":"wilkart/www","url":"https://api.github.com/repos/wilkart/www"},"payload":{"push_id":536864815,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"36a2680f6dff3aab4694168ad13a1cdda22a7b68","before":"e68d2ee6aa48de64869c92386b9bcb3c9b9f55d5","commits":[{"sha":"5dd586f266b22cad9c83944a4851d50095cc551e","author":{"email":"273edee8364c8f7081cae4169cd51ab69c7c9c6b@netcentric.biz","name":"Artur Pedziwilk"},"message":"change deprecated pygments to highlither","distinct":true,"url":"https://api.github.com/repos/wilkart/www/commits/5dd586f266b22cad9c83944a4851d50095cc551e"},{"sha":"4f30e336cb327540fed225511421b80b1d6a42dd","author":{"email":"273edee8364c8f7081cae4169cd51ab69c7c9c6b@netcentric.biz","name":"Artur Pedziwilk"},"message":"rename libs to lib","distinct":true,"url":"https://api.github.com/repos/wilkart/www/commits/4f30e336cb327540fed225511421b80b1d6a42dd"},{"sha":"36a2680f6dff3aab4694168ad13a1cdda22a7b68","author":{"email":"273edee8364c8f7081cae4169cd51ab69c7c9c6b@netcentric.biz","name":"Artur Pedziwilk"},"message":"renambe libs to lib","distinct":true,"url":"https://api.github.com/repos/wilkart/www/commits/36a2680f6dff3aab4694168ad13a1cdda22a7b68"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652855","type":"CreateEvent","actor":{"id":8678270,"login":"Prakash14","gravatar_id":"","url":"https://api.github.com/users/Prakash14","avatar_url":"https://avatars.githubusercontent.com/u/8678270?"},"repo":{"id":28688674,"name":"Prakash14/hello-world","url":"https://api.github.com/repos/Prakash14/hello-world"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652858","type":"PushEvent","actor":{"id":10152921,"login":"Antidelay","gravatar_id":"","url":"https://api.github.com/users/Antidelay","avatar_url":"https://avatars.githubusercontent.com/u/10152921?"},"repo":{"id":28637715,"name":"Antidelay/antidelay.github.io","url":"https://api.github.com/repos/Antidelay/antidelay.github.io"},"payload":{"push_id":536864817,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e4176b4e3c7de41c883b09d4d78b9743582afd12","before":"764546592da04232508776ca74548a7afcce99f3","commits":[{"sha":"e4176b4e3c7de41c883b09d4d78b9743582afd12","author":{"email":"881baaede9ab674cbb97cddae8bfda41d8ad51c3@example.com","name":"ep"},"message":"Site updated at 2015-01-01 15:03:51 UTC","distinct":true,"url":"https://api.github.com/repos/Antidelay/antidelay.github.io/commits/e4176b4e3c7de41c883b09d4d78b9743582afd12"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652859","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864818,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5ef4e8a239978cac60f0d3b57451fdab92639d6f","before":"8808c8b6dd8f48f5ef7db0ce493135e6b0386b30","commits":[{"sha":"5ef4e8a239978cac60f0d3b57451fdab92639d6f","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create NumPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/5ef4e8a239978cac60f0d3b57451fdab92639d6f"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652860","type":"WatchEvent","actor":{"id":950759,"login":"haosdent","gravatar_id":"","url":"https://api.github.com/users/haosdent","avatar_url":"https://avatars.githubusercontent.com/u/950759?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652861","type":"PushEvent","actor":{"id":917694,"login":"cashewkernchen","gravatar_id":"","url":"https://api.github.com/users/cashewkernchen","avatar_url":"https://avatars.githubusercontent.com/u/917694?"},"repo":{"id":2300694,"name":"hacken-in/website","url":"https://api.github.com/repos/hacken-in/website"},"payload":{"push_id":536864819,"size":1,"distinct_size":1,"ref":"refs/heads/346-translation-cleanup","head":"778e193411e863541c680ff76ed7fc494f7d5097","before":"b033f02435d9085efeca78fa00a1babd6d2845f5","commits":[{"sha":"778e193411e863541c680ff76ed7fc494f7d5097","author":{"email":"482c4ce9f7b5b954e757720e199157491a5c1715@gmail.com","name":"cashewkernchen"},"message":"Useless file is useless","distinct":true,"url":"https://api.github.com/repos/hacken-in/website/commits/778e193411e863541c680ff76ed7fc494f7d5097"}]},"public":true,"created_at":"2015-01-01T15:03:56Z","org":{"id":1831760,"login":"hacken-in","gravatar_id":"","url":"https://api.github.com/orgs/hacken-in","avatar_url":"https://avatars.githubusercontent.com/u/1831760?"}}
,{"id":"2489652862","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327506,"name":"cloudify-cosmo/cloudify-system-tests","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-system-tests"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify System Tests","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:56Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652863","type":"PushEvent","actor":{"id":886093,"login":"fifahuihua","gravatar_id":"","url":"https://api.github.com/users/fifahuihua","avatar_url":"https://avatars.githubusercontent.com/u/886093?"},"repo":{"id":28496141,"name":"fifahuihua/multi-checkbox","url":"https://api.github.com/repos/fifahuihua/multi-checkbox"},"payload":{"push_id":536864820,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aea3db1776053da01c3be569e3a193ca3b3d5de5","before":"35f2929ab0fb44283f3a172b96afdcc405461fdb","commits":[{"sha":"aea3db1776053da01c3be569e3a193ca3b3d5de5","author":{"email":"a315864039802a8d69d0f8ab426e32a1cc326f64@dinglicom.com","name":"Antony ZHANG"},"message":"Add styles of multiple checkbox","distinct":true,"url":"https://api.github.com/repos/fifahuihua/multi-checkbox/commits/aea3db1776053da01c3be569e3a193ca3b3d5de5"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652864","type":"PushEvent","actor":{"id":10351099,"login":"yangnuri","gravatar_id":"","url":"https://api.github.com/users/yangnuri","avatar_url":"https://avatars.githubusercontent.com/u/10351099?"},"repo":{"id":28683302,"name":"yangnuri/yangnuri.github.io","url":"https://api.github.com/repos/yangnuri/yangnuri.github.io"},"payload":{"push_id":536864821,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22dd8a45e33968ea91935d6cc668b1f808a1b248","before":"db41abc23aa7826020051ac085006f24683b7a8c","commits":[{"sha":"22dd8a45e33968ea91935d6cc668b1f808a1b248","author":{"email":"d19294121d393899624648c460bc0b6750613ec3@hanmail.net","name":"seung hwan Shin"},"message":"Update index.html","distinct":true,"url":"https://api.github.com/repos/yangnuri/yangnuri.github.io/commits/22dd8a45e33968ea91935d6cc668b1f808a1b248"}]},"public":true,"created_at":"2015-01-01T15:03:56Z"}
,{"id":"2489652870","type":"PushEvent","actor":{"id":3824954,"login":"jshawl","gravatar_id":"","url":"https://api.github.com/users/jshawl","avatar_url":"https://avatars.githubusercontent.com/u/3824954?"},"repo":{"id":28678748,"name":"jshawl/sassbit.es","url":"https://api.github.com/repos/jshawl/sassbit.es"},"payload":{"push_id":536864824,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"73d8df3fbbaeb1d2cd7bc13b2c114dd298d7a0ba","before":"f37cf7324cff16354764f366eb6c0d604f74f881","commits":[{"sha":"73d8df3fbbaeb1d2cd7bc13b2c114dd298d7a0ba","author":{"email":"a5c95b3d7cb4d0ae05a15c79c79ab458dc2c8f9e@jshawl.com","name":"Jesse Shawl"},"message":"updte site title","distinct":true,"url":"https://api.github.com/repos/jshawl/sassbit.es/commits/73d8df3fbbaeb1d2cd7bc13b2c114dd298d7a0ba"}]},"public":true,"created_at":"2015-01-01T15:03:57Z"}
,{"id":"2489652871","type":"PushEvent","actor":{"id":228279,"login":"mamash","gravatar_id":"","url":"https://api.github.com/users/mamash","avatar_url":"https://avatars.githubusercontent.com/u/228279?"},"repo":{"id":3875528,"name":"joyent/pkgsrc-wip","url":"https://api.github.com/repos/joyent/pkgsrc-wip"},"payload":{"push_id":536864822,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b4f14f8f70b411de2acf7cdaa52ab42dce92af2e","before":"562a2a3ef625764a555c8f435b91a3fa893c0e05","commits":[{"sha":"b4f14f8f70b411de2acf7cdaa52ab42dce92af2e","author":{"email":"d95473deac19b5ee39005b1221cddf8e23df101b","name":"thomasklausner"},"message":"Add octave-mode.","distinct":true,"url":"https://api.github.com/repos/joyent/pkgsrc-wip/commits/b4f14f8f70b411de2acf7cdaa52ab42dce92af2e"}]},"public":true,"created_at":"2015-01-01T15:03:57Z","org":{"id":10161,"login":"joyent","gravatar_id":"","url":"https://api.github.com/orgs/joyent","avatar_url":"https://avatars.githubusercontent.com/u/10161?"}}
,{"id":"2489652875","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4","id":53221406,"number":4,"title":"Rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:03:57Z","updated_at":"2015-01-01T15:03:57Z","closed_at":null,"body":"Kun je de suggestie voor het datumbereik predateren? De suggestie is nu de huidige maand, maar wat je eigenlijk wilt weten is wat er de afgelopen tijd gebeurd is. Het is beter de vorige maand als suggestie te geven. \r\n"}},"public":true,"created_at":"2015-01-01T15:03:57Z"}
,{"id":"2489652879","type":"PushEvent","actor":{"id":794263,"login":"wildlyinaccurate","gravatar_id":"","url":"https://api.github.com/users/wildlyinaccurate","avatar_url":"https://avatars.githubusercontent.com/u/794263?"},"repo":{"id":27370287,"name":"wildlyinaccurate/wildlyinaccurate.github.io","url":"https://api.github.com/repos/wildlyinaccurate/wildlyinaccurate.github.io"},"payload":{"push_id":536864827,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"020b17ce0046bab52bb9288af1977bca9b41e390","before":"c00f1d94c759599c5f99a41d1063e500d94cdee5","commits":[{"sha":"020b17ce0046bab52bb9288af1977bca9b41e390","author":{"email":"461476587780aa9fa5611ea6dc3912c146a91760@wildlyinaccurate.com","name":"Joseph Wynn"},"message":"jekyll build","distinct":true,"url":"https://api.github.com/repos/wildlyinaccurate/wildlyinaccurate.github.io/commits/020b17ce0046bab52bb9288af1977bca9b41e390"}]},"public":true,"created_at":"2015-01-01T15:03:58Z"}
,{"id":"2489652883","type":"CreateEvent","actor":{"id":10362402,"login":"FY811043695","gravatar_id":"","url":"https://api.github.com/users/FY811043695","avatar_url":"https://avatars.githubusercontent.com/u/10362402?"},"repo":{"id":28688675,"name":"FY811043695/Intelhomework","url":"https://api.github.com/repos/FY811043695/Intelhomework"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"homework","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:58Z"}
,{"id":"2489652887","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327646,"name":"cloudify-cosmo/cloudify-plugins-common","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:03:59Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652888","type":"PushEvent","actor":{"id":420786,"login":"adieyal","gravatar_id":"","url":"https://api.github.com/users/adieyal","avatar_url":"https://avatars.githubusercontent.com/u/420786?"},"repo":{"id":23510644,"name":"Code4SA/traffic-fines","url":"https://api.github.com/repos/Code4SA/traffic-fines"},"payload":{"push_id":536864832,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"2bdf05c119fb2c3ac6380c90e54972aa051a81fa","before":"7ee0ecd86ec5e3e2f129d45c8e40b08ae3bf8506","commits":[{"sha":"2bdf05c119fb2c3ac6380c90e54972aa051a81fa","author":{"email":"b3e8ff7ac1c7e75661e16152a5dce1ff36a3e140@burgercom.co.za","name":"Adi Eyal"},"message":"Updated iframe resize code","distinct":true,"url":"https://api.github.com/repos/Code4SA/traffic-fines/commits/2bdf05c119fb2c3ac6380c90e54972aa051a81fa"}]},"public":true,"created_at":"2015-01-01T15:03:59Z","org":{"id":4387576,"login":"Code4SA","gravatar_id":"","url":"https://api.github.com/orgs/Code4SA","avatar_url":"https://avatars.githubusercontent.com/u/4387576?"}}
,{"id":"2489652894","type":"PushEvent","actor":{"id":247819,"login":"onacit","gravatar_id":"","url":"https://api.github.com/users/onacit","avatar_url":"https://avatars.githubusercontent.com/u/247819?"},"repo":{"id":21372103,"name":"jinahya/json-cdc","url":"https://api.github.com/repos/jinahya/json-cdc"},"payload":{"push_id":536864834,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"a4377662240de7fafff3504ab97cbdebb56d3401","before":"147f9076b48a1d01b41807503dd057368ec77268","commits":[{"sha":"a4377662240de7fafff3504ab97cbdebb56d3401","author":{"email":"16b4bb8650f54ebf5a7cdbe5a8b041b2dd4bee69@gmail.com","name":"Jin Kwon"},"message":"creating site for 1.1-SNAPSHOT","distinct":true,"url":"https://api.github.com/repos/jinahya/json-cdc/commits/a4377662240de7fafff3504ab97cbdebb56d3401"}]},"public":true,"created_at":"2015-01-01T15:04:01Z"}
,{"id":"2489652895","type":"PushEvent","actor":{"id":8964128,"login":"sggd","gravatar_id":"","url":"https://api.github.com/users/sggd","avatar_url":"https://avatars.githubusercontent.com/u/8964128?"},"repo":{"id":28598740,"name":"sggd/sggd.github.io","url":"https://api.github.com/repos/sggd/sggd.github.io"},"payload":{"push_id":536864835,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"a5dfcadee5e88657101d98fc2b95d58596a7a22d","before":"0efa17838e893c7e21ead79171eb532ad38bc7dc","commits":[{"sha":"29a946ec8c3e6caa841d43948b5bf6249690b638","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"罗华"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/29a946ec8c3e6caa841d43948b5bf6249690b638"},{"sha":"a5dfcadee5e88657101d98fc2b95d58596a7a22d","author":{"email":"068bd037f27383a256adab786bbaf8621a72eb66@whu.edu.cn","name":"罗华"},"message":"Site updated: 2015-01-01 23:03:32","distinct":true,"url":"https://api.github.com/repos/sggd/sggd.github.io/commits/a5dfcadee5e88657101d98fc2b95d58596a7a22d"}]},"public":true,"created_at":"2015-01-01T15:04:02Z"}
,{"id":"2489652897","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327646,"name":"cloudify-cosmo/cloudify-plugins-common","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-plugins-common"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Resources for Cloudify Plugins","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:02Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652900","type":"PushEvent","actor":{"id":983232,"login":"johnmay","gravatar_id":"","url":"https://api.github.com/users/johnmay","avatar_url":"https://avatars.githubusercontent.com/u/983232?"},"repo":{"id":4647708,"name":"johnmay/cdk","url":"https://api.github.com/repos/johnmay/cdk"},"payload":{"push_id":536864837,"size":1,"distinct_size":1,"ref":"refs/heads/patch/bugfixup-010115","head":"789005bcb62a14bad6fbd4e9c8503f550c32b853","before":"c8828eb3718dad485cc1e8ce892651909ee40c47","commits":[{"sha":"789005bcb62a14bad6fbd4e9c8503f550c32b853","author":{"email":"a51dda7c7ff50b61eaea0444371f4a6a9301e501@nextmovesoftware.com","name":"John May"},"message":"Demonstrate correct parsing of SMARTS in bug 909.","distinct":true,"url":"https://api.github.com/repos/johnmay/cdk/commits/789005bcb62a14bad6fbd4e9c8503f550c32b853"}]},"public":true,"created_at":"2015-01-01T15:04:02Z"}
,{"id":"2489652907","type":"PushEvent","actor":{"id":9734362,"login":"ken5scal","gravatar_id":"","url":"https://api.github.com/users/ken5scal","avatar_url":"https://avatars.githubusercontent.com/u/9734362?"},"repo":{"id":28687722,"name":"ken5scal/demo_app","url":"https://api.github.com/repos/ken5scal/demo_app"},"payload":{"push_id":536864840,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"129655ef85eb88b3c1adeaebec59908de0d90bf0","before":"afaaaf1b9061f9fed4fff849d97c91003b57d50e","commits":[{"sha":"129655ef85eb88b3c1adeaebec59908de0d90bf0","author":{"email":"374ad2b91cbb4c974e1f1e08c7c0f05341d5345d@gmail.com","name":"ken5scal"},"message":"Finish demo app","distinct":true,"url":"https://api.github.com/repos/ken5scal/demo_app/commits/129655ef85eb88b3c1adeaebec59908de0d90bf0"}]},"public":true,"created_at":"2015-01-01T15:04:03Z"}
,{"id":"2489652910","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327753,"name":"cloudify-cosmo/cloudify-chef-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:04Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652912","type":"PushEvent","actor":{"id":7022740,"login":"antares993","gravatar_id":"","url":"https://api.github.com/users/antares993","avatar_url":"https://avatars.githubusercontent.com/u/7022740?"},"repo":{"id":28403213,"name":"antares993/silex-web-template","url":"https://api.github.com/repos/antares993/silex-web-template"},"payload":{"push_id":536864844,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0d7dc1303fdbac3e03d477be4e486498b2fec361","before":"423ec31f60652458877a29e770c387ce516ea188","commits":[{"sha":"0d7dc1303fdbac3e03d477be4e486498b2fec361","author":{"email":"58a543594352a0974282357c1a0f9143af46b64c@gmail.com","name":"Antarès Tupin"},"message":"Merged retinafy and images compression","distinct":true,"url":"https://api.github.com/repos/antares993/silex-web-template/commits/0d7dc1303fdbac3e03d477be4e486498b2fec361"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"}
,{"id":"2489652913","type":"PushEvent","actor":{"id":914337,"login":"briangaid","gravatar_id":"","url":"https://api.github.com/users/briangaid","avatar_url":"https://avatars.githubusercontent.com/u/914337?"},"repo":{"id":10535450,"name":"briangaid/briangaid.github.io","url":"https://api.github.com/repos/briangaid/briangaid.github.io"},"payload":{"push_id":536864845,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5413bba5eea0fbef6ccba3a8b1684c51633d0a84","before":"3dd34aa60098d26f8216fbd08eed4561bbcb4d7e","commits":[{"sha":"5413bba5eea0fbef6ccba3a8b1684c51633d0a84","author":{"email":"0d212fa24a03354e8bb9a9c2e4138446e4e601cf@users.noreply.github.com","name":"Brian Gaid"},"message":"alphabetical order","distinct":true,"url":"https://api.github.com/repos/briangaid/briangaid.github.io/commits/5413bba5eea0fbef6ccba3a8b1684c51633d0a84"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"}
,{"id":"2489652915","type":"PushEvent","actor":{"id":8603621,"login":"pmbhumkar","gravatar_id":"","url":"https://api.github.com/users/pmbhumkar","avatar_url":"https://avatars.githubusercontent.com/u/8603621?"},"repo":{"id":28688570,"name":"pmbhumkar/mangoopatch","url":"https://api.github.com/repos/pmbhumkar/mangoopatch"},"payload":{"push_id":536864846,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a12d4f3d0c430c575a2c71562b7c5e5b19f54671","before":"efa50f8ded6f77431d39070c26b574b270923e1b","commits":[{"sha":"a12d4f3d0c430c575a2c71562b7c5e5b19f54671","author":{"email":"38fd3d050688ff5865e112d70b9a3b39cb125550@gmail.com","name":"pmbhumkar"},"message":"Update chmod.patch","distinct":true,"url":"https://api.github.com/repos/pmbhumkar/mangoopatch/commits/a12d4f3d0c430c575a2c71562b7c5e5b19f54671"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"}
,{"id":"2489652917","type":"PushEvent","actor":{"id":10358743,"login":"weshellnet","gravatar_id":"","url":"https://api.github.com/users/weshellnet","avatar_url":"https://avatars.githubusercontent.com/u/10358743?"},"repo":{"id":28670754,"name":"weshellnet/weshellnet.github.io","url":"https://api.github.com/repos/weshellnet/weshellnet.github.io"},"payload":{"push_id":536864848,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f5b0000160f0e6c39af4660a4ab039332547b7a","before":"daadbac2241068c039f396a0e8ddb8e04409e10a","commits":[{"sha":"4f5b0000160f0e6c39af4660a4ab039332547b7a","author":{"email":"197afcde7a19cfc6854f5986f09cef0e7ba62fa2@qq.com","name":"weshellnet"},"message":"Create CNAME","distinct":true,"url":"https://api.github.com/repos/weshellnet/weshellnet.github.io/commits/4f5b0000160f0e6c39af4660a4ab039332547b7a"}]},"public":true,"created_at":"2015-01-01T15:04:04Z"}
,{"id":"2489652925","type":"PushEvent","actor":{"id":5619484,"login":"vincium","gravatar_id":"","url":"https://api.github.com/users/vincium","avatar_url":"https://avatars.githubusercontent.com/u/5619484?"},"repo":{"id":21457517,"name":"vincium/league-of-tennis","url":"https://api.github.com/repos/vincium/league-of-tennis"},"payload":{"push_id":536864851,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"9253d79f83f2f39db66cc69549a01f8e50c2f9b2","before":"93db5b5721452c02fadc4ba4f1215a205c72b61e","commits":[{"sha":"5dd2b4e2585551b66b5feda7e0f90582d3dd58ef","author":{"email":"a9db76139231430ef91f3c109ab5a85ada7020ee@gmail.com","name":"vincium"},"message":"fix when common < 0","distinct":true,"url":"https://api.github.com/repos/vincium/league-of-tennis/commits/5dd2b4e2585551b66b5feda7e0f90582d3dd58ef"},{"sha":"9253d79f83f2f39db66cc69549a01f8e50c2f9b2","author":{"email":"a9db76139231430ef91f3c109ab5a85ada7020ee@gmail.com","name":"vincium"},"message":"Merge branch 'master' of github.com:vincium/league-of-tennis","distinct":true,"url":"https://api.github.com/repos/vincium/league-of-tennis/commits/9253d79f83f2f39db66cc69549a01f8e50c2f9b2"}]},"public":true,"created_at":"2015-01-01T15:04:05Z"}
,{"id":"2489652927","type":"PushEvent","actor":{"id":929551,"login":"geekzy","gravatar_id":"","url":"https://api.github.com/users/geekzy","avatar_url":"https://avatars.githubusercontent.com/u/929551?"},"repo":{"id":20910320,"name":"geekzy/jdbf","url":"https://api.github.com/repos/geekzy/jdbf"},"payload":{"push_id":536864852,"size":25,"distinct_size":25,"ref":"refs/heads/master","head":"47b6b92c54124daf83968275baa12ea8667a9def","before":"75e5d60460631bd06619ec45892e4ecd68d50db9","commits":[{"sha":"622abb677febfb440eb60cef47fdeb4f414a2aa7","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix ThreadLocal with date formats","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/622abb677febfb440eb60cef47fdeb4f414a2aa7"},{"sha":"c5a2b727be23043c1f4612347175ac5965b30c20","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"jdbf 2.0: add ability to read DBF files with MEMO fields","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/c5a2b727be23043c1f4612347175ac5965b30c20"},{"sha":"0b384951a705c0daec35e65ca8491dcc31da031e","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove legacy code blocks","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/0b384951a705c0daec35e65ca8491dcc31da031e"},{"sha":"dcd8936a3f79e24a126faeded1164fcf219d1af1","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"add versioneye badge","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/dcd8936a3f79e24a126faeded1164fcf219d1af1"},{"sha":"e66deed28ba929160fa03ead304a783fbd157938","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix dependency monitoring badge","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/e66deed28ba929160fa03ead304a783fbd157938"},{"sha":"2c5a5df5993a490507d7634a056401ce394653d8","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix issue #3 (https://github.com/iryndin/jdbf/issues/3)\nadd record (sequence) number for each DbfRecord","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/2c5a5df5993a490507d7634a056401ce394653d8"},{"sha":"41cd06e3a7ffec29f3b15bffb7fbbe45dd3c70f1","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix issue #4\nshould parse update date from DBF file with respect to file type","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/41cd06e3a7ffec29f3b15bffb7fbbe45dd3c70f1"},{"sha":"a3d77c2616f5e5d1fd7570a75dac27e1a2580b4f","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"update POM version from 2.0 to 2.0.1","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/a3d77c2616f5e5d1fd7570a75dac27e1a2580b4f"},{"sha":"732f423d5aec19ae6078f25e7d7f7bf530905689","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/732f423d5aec19ae6078f25e7d7f7bf530905689"},{"sha":"f9aac6c866aeb00a4fb546fb571f84c14f5649b2","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove IntelliJ IDEA files","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/f9aac6c866aeb00a4fb546fb571f84c14f5649b2"},{"sha":"645c608e16df9ecfe89a22df1210133576ed37e2","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"add links to docs","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/645c608e16df9ecfe89a22df1210133576ed37e2"},{"sha":"b2005483aafe60ec98157ffd37d014eb7cda27ae","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"add small user guide to README","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/b2005483aafe60ec98157ffd37d014eb7cda27ae"},{"sha":"cf77fdabbfc45445caae05344706b73452afd33d","author":{"email":"a99576d88e1d44728c374601958088441cdae1a5@gmail.com","name":"183614956"},"message":"Example: Write to DBF","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/cf77fdabbfc45445caae05344706b73452afd33d"},{"sha":"945376664fea528c62cdbed97580084d6939f1bc","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"Merge pull request #6 from 183614956/patch-1\n\nExample: Write to DBF","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/945376664fea528c62cdbed97580084d6939f1bc"},{"sha":"3999cec38a977c7ac31cb562a922f0b39dcdc4e1","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"fix issue #7\nadd isDeleted method that checks if record is deleted.\nupdate tests\nupdate POM version from 2.0.1 to 2.0.2","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/3999cec38a977c7ac31cb562a922f0b39dcdc4e1"},{"sha":"50460babc0c2fd04fba2f248c9a1b5040a7af882","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/50460babc0c2fd04fba2f248c9a1b5040a7af882"},{"sha":"f964c1024106da4474b6dab4a31046b77902d207","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"Ivan Ryndin"},"message":"Fix javadocs","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/f964c1024106da4474b6dab4a31046b77902d207"},{"sha":"0e6802eebac1c24fbba70ccf90824052e3172fed","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove legacy","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/0e6802eebac1c24fbba70ccf90824052e3172fed"},{"sha":"f1108bbb0b656c4550150ec4cd6bc258a22edeaa","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"remove legacy 2","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/f1108bbb0b656c4550150ec4cd6bc258a22edeaa"},{"sha":"b54103b1b1057f59fe0492a906c4e8072bd03ca8","author":{"email":"5e382374d67d3e2284bd24e3e39a71394ecd296e@gmail.com","name":"iryndin"},"message":"refresh TODOs","distinct":true,"url":"https://api.github.com/repos/geekzy/jdbf/commits/b54103b1b1057f59fe0492a906c4e8072bd03ca8"}]},"public":true,"created_at":"2015-01-01T15:04:05Z"}
,{"id":"2489652932","type":"PushEvent","actor":{"id":9965,"login":"sbooth","gravatar_id":"","url":"https://api.github.com/users/sbooth","avatar_url":"https://avatars.githubusercontent.com/u/9965?"},"repo":{"id":1679183,"name":"sbooth/SFBPopovers","url":"https://api.github.com/repos/sbooth/SFBPopovers"},"payload":{"push_id":536864854,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"95611a615f22aa755fc37eca0d21b88144e368d3","before":"2f5d31e4d91bca94c96549f0661a30af8115e00e","commits":[{"sha":"95611a615f22aa755fc37eca0d21b88144e368d3","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@sbooth.org","name":"sbooth"},"message":"Updated copyright for 2015 and removed use of deprecated methods","distinct":true,"url":"https://api.github.com/repos/sbooth/SFBPopovers/commits/95611a615f22aa755fc37eca0d21b88144e368d3"}]},"public":true,"created_at":"2015-01-01T15:04:06Z"}
,{"id":"2489652933","type":"PullRequestEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"action":"closed","number":4,"pull_request":{"url":"https://api.github.com/repos/ErshKUS/test/pulls/4","id":26743792,"html_url":"https://github.com/ErshKUS/test/pull/4","diff_url":"https://github.com/ErshKUS/test/pull/4.diff","patch_url":"https://github.com/ErshKUS/test/pull/4.patch","issue_url":"https://api.github.com/repos/ErshKUS/test/issues/4","number":4,"state":"closed","locked":false,"title":"первый пулл реквест","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:03:20Z","updated_at":"2015-01-01T15:04:06Z","closed_at":"2015-01-01T15:04:06Z","merged_at":"2015-01-01T15:04:06Z","merge_commit_sha":"430d8aff3e939fd3a39a0116033601e3d92446c0","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits","review_comments_url":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments","review_comment_url":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ErshKUS/test/issues/4/comments","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb","head":{"label":"e-rsh-p:master","ref":"master","sha":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","user":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"repo":{"id":28688502,"name":"test","full_name":"e-rsh-p/test","owner":{"login":"e-rsh-p","id":10356326,"avatar_url":"https://avatars.githubusercontent.com/u/10356326?v=3","gravatar_id":"","url":"https://api.github.com/users/e-rsh-p","html_url":"https://github.com/e-rsh-p","followers_url":"https://api.github.com/users/e-rsh-p/followers","following_url":"https://api.github.com/users/e-rsh-p/following{/other_user}","gists_url":"https://api.github.com/users/e-rsh-p/gists{/gist_id}","starred_url":"https://api.github.com/users/e-rsh-p/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-rsh-p/subscriptions","organizations_url":"https://api.github.com/users/e-rsh-p/orgs","repos_url":"https://api.github.com/users/e-rsh-p/repos","events_url":"https://api.github.com/users/e-rsh-p/events{/privacy}","received_events_url":"https://api.github.com/users/e-rsh-p/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/e-rsh-p/test","description":"","fork":true,"url":"https://api.github.com/repos/e-rsh-p/test","forks_url":"https://api.github.com/repos/e-rsh-p/test/forks","keys_url":"https://api.github.com/repos/e-rsh-p/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/e-rsh-p/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/e-rsh-p/test/teams","hooks_url":"https://api.github.com/repos/e-rsh-p/test/hooks","issue_events_url":"https://api.github.com/repos/e-rsh-p/test/issues/events{/number}","events_url":"https://api.github.com/repos/e-rsh-p/test/events","assignees_url":"https://api.github.com/repos/e-rsh-p/test/assignees{/user}","branches_url":"https://api.github.com/repos/e-rsh-p/test/branches{/branch}","tags_url":"https://api.github.com/repos/e-rsh-p/test/tags","blobs_url":"https://api.github.com/repos/e-rsh-p/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/e-rsh-p/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/e-rsh-p/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/e-rsh-p/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/e-rsh-p/test/statuses/{sha}","languages_url":"https://api.github.com/repos/e-rsh-p/test/languages","stargazers_url":"https://api.github.com/repos/e-rsh-p/test/stargazers","contributors_url":"https://api.github.com/repos/e-rsh-p/test/contributors","subscribers_url":"https://api.github.com/repos/e-rsh-p/test/subscribers","subscription_url":"https://api.github.com/repos/e-rsh-p/test/subscription","commits_url":"https://api.github.com/repos/e-rsh-p/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/e-rsh-p/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/e-rsh-p/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/e-rsh-p/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/e-rsh-p/test/contents/{+path}","compare_url":"https://api.github.com/repos/e-rsh-p/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/e-rsh-p/test/merges","archive_url":"https://api.github.com/repos/e-rsh-p/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/e-rsh-p/test/downloads","issues_url":"https://api.github.com/repos/e-rsh-p/test/issues{/number}","pulls_url":"https://api.github.com/repos/e-rsh-p/test/pulls{/number}","milestones_url":"https://api.github.com/repos/e-rsh-p/test/milestones{/number}","notifications_url":"https://api.github.com/repos/e-rsh-p/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/e-rsh-p/test/labels{/name}","releases_url":"https://api.github.com/repos/e-rsh-p/test/releases{/id}","created_at":"2015-01-01T14:54:13Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T14:59:33Z","git_url":"git://github.com/e-rsh-p/test.git","ssh_url":"git@github.com:e-rsh-p/test.git","clone_url":"https://github.com/e-rsh-p/test.git","svn_url":"https://github.com/e-rsh-p/test","homepage":"","size":152,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"ErshKUS:master","ref":"master","sha":"e930237191e5a922d3b976dd16d34a61371ab91a","user":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"repo":{"id":2147969,"name":"test","full_name":"ErshKUS/test","owner":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ErshKUS/test","description":"","fork":false,"url":"https://api.github.com/repos/ErshKUS/test","forks_url":"https://api.github.com/repos/ErshKUS/test/forks","keys_url":"https://api.github.com/repos/ErshKUS/test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ErshKUS/test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ErshKUS/test/teams","hooks_url":"https://api.github.com/repos/ErshKUS/test/hooks","issue_events_url":"https://api.github.com/repos/ErshKUS/test/issues/events{/number}","events_url":"https://api.github.com/repos/ErshKUS/test/events","assignees_url":"https://api.github.com/repos/ErshKUS/test/assignees{/user}","branches_url":"https://api.github.com/repos/ErshKUS/test/branches{/branch}","tags_url":"https://api.github.com/repos/ErshKUS/test/tags","blobs_url":"https://api.github.com/repos/ErshKUS/test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ErshKUS/test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ErshKUS/test/git/refs{/sha}","trees_url":"https://api.github.com/repos/ErshKUS/test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ErshKUS/test/statuses/{sha}","languages_url":"https://api.github.com/repos/ErshKUS/test/languages","stargazers_url":"https://api.github.com/repos/ErshKUS/test/stargazers","contributors_url":"https://api.github.com/repos/ErshKUS/test/contributors","subscribers_url":"https://api.github.com/repos/ErshKUS/test/subscribers","subscription_url":"https://api.github.com/repos/ErshKUS/test/subscription","commits_url":"https://api.github.com/repos/ErshKUS/test/commits{/sha}","git_commits_url":"https://api.github.com/repos/ErshKUS/test/git/commits{/sha}","comments_url":"https://api.github.com/repos/ErshKUS/test/comments{/number}","issue_comment_url":"https://api.github.com/repos/ErshKUS/test/issues/comments/{number}","contents_url":"https://api.github.com/repos/ErshKUS/test/contents/{+path}","compare_url":"https://api.github.com/repos/ErshKUS/test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ErshKUS/test/merges","archive_url":"https://api.github.com/repos/ErshKUS/test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ErshKUS/test/downloads","issues_url":"https://api.github.com/repos/ErshKUS/test/issues{/number}","pulls_url":"https://api.github.com/repos/ErshKUS/test/pulls{/number}","milestones_url":"https://api.github.com/repos/ErshKUS/test/milestones{/number}","notifications_url":"https://api.github.com/repos/ErshKUS/test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ErshKUS/test/labels{/name}","releases_url":"https://api.github.com/repos/ErshKUS/test/releases{/id}","created_at":"2011-08-03T10:52:46Z","updated_at":"2014-12-31T08:31:09Z","pushed_at":"2015-01-01T15:04:06Z","git_url":"git://github.com/ErshKUS/test.git","ssh_url":"git@github.com:ErshKUS/test.git","clone_url":"https://github.com/ErshKUS/test.git","svn_url":"https://github.com/ErshKUS/test","homepage":"","size":152,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4"},"html":{"href":"https://github.com/ErshKUS/test/pull/4"},"issue":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4"},"comments":{"href":"https://api.github.com/repos/ErshKUS/test/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ErshKUS/test/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/ErshKUS/test/statuses/fa45f59f067eb05dca6fc854c8d09a81de70bbfb"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"ErshKUS","id":873670,"avatar_url":"https://avatars.githubusercontent.com/u/873670?v=3","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","html_url":"https://github.com/ErshKUS","followers_url":"https://api.github.com/users/ErshKUS/followers","following_url":"https://api.github.com/users/ErshKUS/following{/other_user}","gists_url":"https://api.github.com/users/ErshKUS/gists{/gist_id}","starred_url":"https://api.github.com/users/ErshKUS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ErshKUS/subscriptions","organizations_url":"https://api.github.com/users/ErshKUS/orgs","repos_url":"https://api.github.com/users/ErshKUS/repos","events_url":"https://api.github.com/users/ErshKUS/events{/privacy}","received_events_url":"https://api.github.com/users/ErshKUS/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:04:06Z"}
,{"id":"2489652936","type":"WatchEvent","actor":{"id":6399899,"login":"hacke2","gravatar_id":"","url":"https://api.github.com/users/hacke2","avatar_url":"https://avatars.githubusercontent.com/u/6399899?"},"repo":{"id":17893612,"name":"maomaoshu/jsBook","url":"https://api.github.com/repos/maomaoshu/jsBook"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:07Z"}
,{"id":"2489652940","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327753,"name":"cloudify-cosmo/cloudify-chef-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-chef-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Chef Plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:07Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652941","type":"PushEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"push_id":536864857,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","before":"e930237191e5a922d3b976dd16d34a61371ab91a","commits":[{"sha":"fa45f59f067eb05dca6fc854c8d09a81de70bbfb","author":{"email":"7d206429a64aeaaa20169d635c1554cd2e4cdc16@yandex.ru","name":"e-rsh-p"},"message":"первое изменение в форке","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/fa45f59f067eb05dca6fc854c8d09a81de70bbfb"},{"sha":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"Merge pull request #4 from e-rsh-p/master\n\nпервый пулл реквест","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7"}]},"public":true,"created_at":"2015-01-01T15:04:07Z"}
,{"id":"2489652942","type":"PushEvent","actor":{"id":818850,"login":"stubma","gravatar_id":"","url":"https://api.github.com/users/stubma","avatar_url":"https://avatars.githubusercontent.com/u/818850?"},"repo":{"id":26906938,"name":"stubma/cocos2dx-classical","url":"https://api.github.com/repos/stubma/cocos2dx-classical"},"payload":{"push_id":536864858,"size":5,"distinct_size":5,"ref":"refs/heads/master","head":"6298fcb73b8725dc7ee41adf0880f6e3cce88c73","before":"5743acef822357790747cf6e6e80672233d1d15c","commits":[{"sha":"9b388deb79ecea2be911bbdf59cf51d07b9f4381","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"generate is done","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/9b388deb79ecea2be911bbdf59cf51d07b9f4381"},{"sha":"5c4c9d0d4d892a0294a4216d573ffaa435e900a8","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"generated ccnode binding code compiled ok","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/5c4c9d0d4d892a0294a4216d573ffaa435e900a8"},{"sha":"f912cb130504cc8aa8d5e232d64ef019f16d05e2","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"exclude non-object pointer, fix other problem, ready to generate all\ncode","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/f912cb130504cc8aa8d5e232d64ef019f16d05e2"},{"sha":"8b2d5b21f8a80730765d901d298ed0606288a5f6","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"generate almost all cocos2dx binding, now compiled, need add more\nconversion for some types, need debug hellolua","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/8b2d5b21f8a80730765d901d298ed0606288a5f6"},{"sha":"6298fcb73b8725dc7ee41adf0880f6e3cce88c73","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"finally! hellolua is ok! huhu….","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/6298fcb73b8725dc7ee41adf0880f6e3cce88c73"}]},"public":true,"created_at":"2015-01-01T15:04:07Z"}
,{"id":"2489652944","type":"PushEvent","actor":{"id":10341686,"login":"Arnie97","gravatar_id":"","url":"https://api.github.com/users/Arnie97","avatar_url":"https://avatars.githubusercontent.com/u/10341686?"},"repo":{"id":28664467,"name":"Arnie97/milky","url":"https://api.github.com/repos/Arnie97/milky"},"payload":{"push_id":536864859,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"163f1fba2561fe3e570b2a9283d8d08aef027e87","before":"001f7eee7637013adc750be61244df28b9a2790f","commits":[{"sha":"163f1fba2561fe3e570b2a9283d8d08aef027e87","author":{"email":"15fb2de3c60da2080fa1c355aa8b56d4d8cf760f@gmail.com","name":"Arnie97"},"message":"Added milky logo to README.","distinct":true,"url":"https://api.github.com/repos/Arnie97/milky/commits/163f1fba2561fe3e570b2a9283d8d08aef027e87"}]},"public":true,"created_at":"2015-01-01T15:04:07Z"}
,{"id":"2489652945","type":"PullRequestEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"opened","number":48,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48","id":26743796,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48","number":48,"state":"open","locked":false,"title":"Silver Forest","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:07Z","updated_at":"2015-01-01T15:04:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573","head":{"label":"syon:middleman","ref":"middleman","sha":"a133ccb43da62f8b35640a3519e5a519669e1573","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"andy-hiroyuki:middleman","ref":"middleman","sha":"2321737bf1add6a64d3cefb5f3e4699fd2d93491","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T14:56:05Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:04:08Z"}
,{"id":"2489652946","type":"PushEvent","actor":{"id":5569910,"login":"Appebyte","gravatar_id":"","url":"https://api.github.com/users/Appebyte","avatar_url":"https://avatars.githubusercontent.com/u/5569910?"},"repo":{"id":28678105,"name":"Appebyte/multi-control","url":"https://api.github.com/repos/Appebyte/multi-control"},"payload":{"push_id":536864860,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0df0516349748ee3f7442d2b00f62317c6eb7758","before":"0a3f7dded6251886a5be73254ccd38d4eed9ca6d","commits":[{"sha":"0df0516349748ee3f7442d2b00f62317c6eb7758","author":{"email":"8d5129c2409c98003da513279115ea60a4c21d3c@users.noreply.github.com","name":"Ahmed"},"message":"Update Command.java","distinct":true,"url":"https://api.github.com/repos/Appebyte/multi-control/commits/0df0516349748ee3f7442d2b00f62317c6eb7758"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"}
,{"id":"2489652947","type":"CreateEvent","actor":{"id":1924410,"login":"hotmailckl","gravatar_id":"","url":"https://api.github.com/users/hotmailckl","avatar_url":"https://avatars.githubusercontent.com/u/1924410?"},"repo":{"id":10817431,"name":"hotmailckl/test","url":"https://api.github.com/repos/hotmailckl/test"},"payload":{"ref":"TEST-2","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:08Z"}
,{"id":"2489652948","type":"PushEvent","actor":{"id":76594,"login":"elemoine","gravatar_id":"","url":"https://api.github.com/users/elemoine","avatar_url":"https://avatars.githubusercontent.com/u/76594?"},"repo":{"id":20214698,"name":"elemoine/ngeo","url":"https://api.github.com/repos/elemoine/ngeo"},"payload":{"push_id":536864861,"size":1,"distinct_size":1,"ref":"refs/heads/layertree_watch","head":"2dd3937b290f177339bbef292743fcfdacb5b8a7","before":"ab49ea3598c21bb71e153a447847454571835515","commits":[{"sha":"2dd3937b290f177339bbef292743fcfdacb5b8a7","author":{"email":"44065822685ce90a8f0713234276624942dcc658@gmail.com","name":"Éric Lemoine"},"message":"Make map directive watch map expr","distinct":true,"url":"https://api.github.com/repos/elemoine/ngeo/commits/2dd3937b290f177339bbef292743fcfdacb5b8a7"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"}
,{"id":"2489652949","type":"WatchEvent","actor":{"id":7065458,"login":"wpok","gravatar_id":"","url":"https://api.github.com/users/wpok","avatar_url":"https://avatars.githubusercontent.com/u/7065458?"},"repo":{"id":11133743,"name":"h5bp/Effeckt.css","url":"https://api.github.com/repos/h5bp/Effeckt.css"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:08Z","org":{"id":1136800,"login":"h5bp","gravatar_id":"","url":"https://api.github.com/orgs/h5bp","avatar_url":"https://avatars.githubusercontent.com/u/1136800?"}}
,{"id":"2489652950","type":"PushEvent","actor":{"id":9973025,"login":"hpraveen","gravatar_id":"","url":"https://api.github.com/users/hpraveen","avatar_url":"https://avatars.githubusercontent.com/u/9973025?"},"repo":{"id":27212560,"name":"hpraveen/OSWD","url":"https://api.github.com/repos/hpraveen/OSWD"},"payload":{"push_id":536864863,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f55f8c1884f7218f1e9d69517505d6db6b1360ae","before":"8a65df6940f61649b96529f381792b42186c6208","commits":[{"sha":"f55f8c1884f7218f1e9d69517505d6db6b1360ae","author":{"email":"52da7f86a46b435c9123f30308193766489b0d2c@gmail.com","name":"hpraveen"},"message":"Sample CSV file to test functions (LOG00350_2.csv)","distinct":true,"url":"https://api.github.com/repos/hpraveen/OSWD/commits/f55f8c1884f7218f1e9d69517505d6db6b1360ae"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"}
,{"id":"2489652953","type":"PushEvent","actor":{"id":5608724,"login":"hjhhh3000","gravatar_id":"","url":"https://api.github.com/users/hjhhh3000","avatar_url":"https://avatars.githubusercontent.com/u/5608724?"},"repo":{"id":27982189,"name":"hjhhh3000/FirstBlood","url":"https://api.github.com/repos/hjhhh3000/FirstBlood"},"payload":{"push_id":536864866,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dbc2e72ef55b80b6c28feeed7a2889567d0c3df2","before":"d6e6fade143d33d08f8e05388434724e9aaca3c8","commits":[{"sha":"dbc2e72ef55b80b6c28feeed7a2889567d0c3df2","author":{"email":"f6e38eace2fff1986ef619774e7c5e540546d34b@gmail.com","name":"hjhhh3000"},"message":"Origin Lexicon changed","distinct":true,"url":"https://api.github.com/repos/hjhhh3000/FirstBlood/commits/dbc2e72ef55b80b6c28feeed7a2889567d0c3df2"}]},"public":true,"created_at":"2015-01-01T15:04:08Z"}
,{"id":"2489652964","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22572270,"name":"hex7c0/logger-request-cli","url":"https://api.github.com/repos/hex7c0/logger-request-cli"},"payload":{"push_id":536864869,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"07ba7c86a0ef0d08c172077a45011e8c829acdb5","before":"12d8972d9f48393e00a962eef7904c5330dc8ea1","commits":[{"sha":"07ba7c86a0ef0d08c172077a45011e8c829acdb5","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"1.1.14","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/07ba7c86a0ef0d08c172077a45011e8c829acdb5"}]},"public":true,"created_at":"2015-01-01T15:04:09Z"}
,{"id":"2489652968","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864870,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fbaf2f2ab764d082d2a636ae1012264cc6e268d","before":"b63e3e7a27830cafe46d3ba2b4b5f450367a8b91","commits":[{"sha":"6fbaf2f2ab764d082d2a636ae1012264cc6e268d","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124647622\n\nuQEe7NCVtbsa4X5fjk7pRwYCJy/uRXw+imYMZ8PPVl4=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/6fbaf2f2ab764d082d2a636ae1012264cc6e268d"}]},"public":true,"created_at":"2015-01-01T15:04:09Z"}
,{"id":"2489652969","type":"WatchEvent","actor":{"id":319844,"login":"linkyndy","gravatar_id":"","url":"https://api.github.com/users/linkyndy","avatar_url":"https://avatars.githubusercontent.com/u/319844?"},"repo":{"id":7202484,"name":"steveklabnik/request_store","url":"https://api.github.com/repos/steveklabnik/request_store"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:09Z"}
,{"id":"2489652974","type":"WatchEvent","actor":{"id":1915554,"login":"Rudeg","gravatar_id":"","url":"https://api.github.com/users/Rudeg","avatar_url":"https://avatars.githubusercontent.com/u/1915554?"},"repo":{"id":3605299,"name":"baconjs/bacon.js","url":"https://api.github.com/repos/baconjs/bacon.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:10Z","org":{"id":5165264,"login":"baconjs","gravatar_id":"","url":"https://api.github.com/orgs/baconjs","avatar_url":"https://avatars.githubusercontent.com/u/5165264?"}}
,{"id":"2489652975","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327738,"name":"cloudify-cosmo/cloudify-openstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:10Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652976","type":"CreateEvent","actor":{"id":994018,"login":"weakboson","gravatar_id":"","url":"https://api.github.com/users/weakboson","avatar_url":"https://avatars.githubusercontent.com/u/994018?"},"repo":{"id":28688655,"name":"weakboson/sample_app_rails42","url":"https://api.github.com/repos/weakboson/sample_app_rails42"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:10Z"}
,{"id":"2489652978","type":"PushEvent","actor":{"id":3893707,"login":"skyhills13","gravatar_id":"","url":"https://api.github.com/users/skyhills13","avatar_url":"https://avatars.githubusercontent.com/u/3893707?"},"repo":{"id":23691347,"name":"skyhills13/PhotoMosaic","url":"https://api.github.com/repos/skyhills13/PhotoMosaic"},"payload":{"push_id":536864874,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"5315e15efdfb050aecbd590848ee1fae946d9e01","before":"5c9217933eac891c719117fa83ddad569568cddd","commits":[{"sha":"5315e15efdfb050aecbd590848ee1fae946d9e01","author":{"email":"8133434cd628e9190d4cd2d5a00228d5b2685fcf@gmail.com","name":"skyhills13"},"message":"#224 delegate renameAsUnique method of FileDataHandler to Photo","distinct":true,"url":"https://api.github.com/repos/skyhills13/PhotoMosaic/commits/5315e15efdfb050aecbd590848ee1fae946d9e01"}]},"public":true,"created_at":"2015-01-01T15:04:10Z"}
,{"id":"2489652987","type":"PushEvent","actor":{"id":6895040,"login":"codertradergambler","gravatar_id":"","url":"https://api.github.com/users/codertradergambler","avatar_url":"https://avatars.githubusercontent.com/u/6895040?"},"repo":{"id":18620619,"name":"chancecoin/chancecoinj","url":"https://api.github.com/repos/chancecoin/chancecoinj"},"payload":{"push_id":536864876,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b46c90ae6537603fc0591b4dbb92f9bb70a5535","before":"cfc67a964475a358a16e7c50dd44c0586043c74e","commits":[{"sha":"2b46c90ae6537603fc0591b4dbb92f9bb70a5535","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/2b46c90ae6537603fc0591b4dbb92f9bb70a5535"}]},"public":true,"created_at":"2015-01-01T15:04:12Z"}
,{"id":"2489652989","type":"PushEvent","actor":{"id":5953115,"login":"iranreyes","gravatar_id":"","url":"https://api.github.com/users/iranreyes","avatar_url":"https://avatars.githubusercontent.com/u/5953115?"},"repo":{"id":27998130,"name":"iranreyes/malihu-custom-scrollbar-plugin","url":"https://api.github.com/repos/iranreyes/malihu-custom-scrollbar-plugin"},"payload":{"push_id":536864877,"size":1,"distinct_size":1,"ref":"refs/heads/angularPlugin","head":"880fe128358543c42a497dc770b8e4aa3c860d1f","before":"0fd259fec856704a01515726825161aa5c0037df","commits":[{"sha":"880fe128358543c42a497dc770b8e4aa3c860d1f","author":{"email":"d8c908aa4242eb383a7b5d37c85354de83bfcd7d@gmail.com","name":"Iran Reyes Fleitas"},"message":"Extending the options of configuration","distinct":true,"url":"https://api.github.com/repos/iranreyes/malihu-custom-scrollbar-plugin/commits/880fe128358543c42a497dc770b8e4aa3c860d1f"}]},"public":true,"created_at":"2015-01-01T15:04:12Z"}
,{"id":"2489652992","type":"PushEvent","actor":{"id":3596538,"login":"westcripp","gravatar_id":"","url":"https://api.github.com/users/westcripp","avatar_url":"https://avatars.githubusercontent.com/u/3596538?"},"repo":{"id":17210708,"name":"ResurrectionRemix/Resurrection_packages_apps_Settings","url":"https://api.github.com/repos/ResurrectionRemix/Resurrection_packages_apps_Settings"},"payload":{"push_id":536864879,"size":1,"distinct_size":1,"ref":"refs/heads/lollipop","head":"089b03f48e627280ce8f9b17bdcdb4a6529dd544","before":"9a287aee515bc3fb94033253b77606d958a528e0","commits":[{"sha":"089b03f48e627280ce8f9b17bdcdb4a6529dd544","author":{"email":"8204deefaa3818a0ee439421fcb19bcaac2d56b7@gmail.com","name":"westcripp"},"message":"Revert \"Settings: Don't set root access as a default fallback option.\"\n\nThis reverts commit f2a512c7ced8633fb5207057a21627e13d360030.","distinct":true,"url":"https://api.github.com/repos/ResurrectionRemix/Resurrection_packages_apps_Settings/commits/089b03f48e627280ce8f9b17bdcdb4a6529dd544"}]},"public":true,"created_at":"2015-01-01T15:04:12Z","org":{"id":4931972,"login":"ResurrectionRemix","gravatar_id":"","url":"https://api.github.com/orgs/ResurrectionRemix","avatar_url":"https://avatars.githubusercontent.com/u/4931972?"}}
,{"id":"2489652993","type":"PushEvent","actor":{"id":7315383,"login":"jaromanda","gravatar_id":"","url":"https://api.github.com/users/jaromanda","avatar_url":"https://avatars.githubusercontent.com/u/7315383?"},"repo":{"id":28639232,"name":"jaromanda/RioCast","url":"https://api.github.com/repos/jaromanda/RioCast"},"payload":{"push_id":536864880,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9210dc0c7436eb018442f73759e5ee60c50c7797","before":"1d5b33dfa0270fcb0ab1b00416bb66f322938182","commits":[{"sha":"9210dc0c7436eb018442f73759e5ee60c50c7797","author":{"email":"f69c6761b81ce575e03c7dff5aa15a192de25113@gmail.com","name":"jaromanda"},"message":"Fixed node-webkit link","distinct":true,"url":"https://api.github.com/repos/jaromanda/RioCast/commits/9210dc0c7436eb018442f73759e5ee60c50c7797"}]},"public":true,"created_at":"2015-01-01T15:04:12Z"}
,{"id":"2489652994","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327738,"name":"cloudify-cosmo/cloudify-openstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify OpenStack Plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:12Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652995","type":"CreateEvent","actor":{"id":1447152,"login":"yoheiMune","gravatar_id":"","url":"https://api.github.com/users/yoheiMune","avatar_url":"https://avatars.githubusercontent.com/u/1447152?"},"repo":{"id":28688676,"name":"yoheiMune/analytics-playground","url":"https://api.github.com/repos/yoheiMune/analytics-playground"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"analytics-playground","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:12Z"}
,{"id":"2489652996","type":"ForkEvent","actor":{"id":284013,"login":"torome","gravatar_id":"","url":"https://api.github.com/users/torome","avatar_url":"https://avatars.githubusercontent.com/u/284013?"},"repo":{"id":26730195,"name":"cachethq/Cachet","url":"https://api.github.com/repos/cachethq/Cachet"},"payload":{"forkee":{"id":28688677,"name":"Cachet","full_name":"torome/Cachet","owner":{"login":"torome","id":284013,"avatar_url":"https://avatars.githubusercontent.com/u/284013?v=3","gravatar_id":"","url":"https://api.github.com/users/torome","html_url":"https://github.com/torome","followers_url":"https://api.github.com/users/torome/followers","following_url":"https://api.github.com/users/torome/following{/other_user}","gists_url":"https://api.github.com/users/torome/gists{/gist_id}","starred_url":"https://api.github.com/users/torome/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/torome/subscriptions","organizations_url":"https://api.github.com/users/torome/orgs","repos_url":"https://api.github.com/users/torome/repos","events_url":"https://api.github.com/users/torome/events{/privacy}","received_events_url":"https://api.github.com/users/torome/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/torome/Cachet","description":"Cachet, the open source StatusPage.io alternative written in PHP","fork":true,"url":"https://api.github.com/repos/torome/Cachet","forks_url":"https://api.github.com/repos/torome/Cachet/forks","keys_url":"https://api.github.com/repos/torome/Cachet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/torome/Cachet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/torome/Cachet/teams","hooks_url":"https://api.github.com/repos/torome/Cachet/hooks","issue_events_url":"https://api.github.com/repos/torome/Cachet/issues/events{/number}","events_url":"https://api.github.com/repos/torome/Cachet/events","assignees_url":"https://api.github.com/repos/torome/Cachet/assignees{/user}","branches_url":"https://api.github.com/repos/torome/Cachet/branches{/branch}","tags_url":"https://api.github.com/repos/torome/Cachet/tags","blobs_url":"https://api.github.com/repos/torome/Cachet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/torome/Cachet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/torome/Cachet/git/refs{/sha}","trees_url":"https://api.github.com/repos/torome/Cachet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/torome/Cachet/statuses/{sha}","languages_url":"https://api.github.com/repos/torome/Cachet/languages","stargazers_url":"https://api.github.com/repos/torome/Cachet/stargazers","contributors_url":"https://api.github.com/repos/torome/Cachet/contributors","subscribers_url":"https://api.github.com/repos/torome/Cachet/subscribers","subscription_url":"https://api.github.com/repos/torome/Cachet/subscription","commits_url":"https://api.github.com/repos/torome/Cachet/commits{/sha}","git_commits_url":"https://api.github.com/repos/torome/Cachet/git/commits{/sha}","comments_url":"https://api.github.com/repos/torome/Cachet/comments{/number}","issue_comment_url":"https://api.github.com/repos/torome/Cachet/issues/comments/{number}","contents_url":"https://api.github.com/repos/torome/Cachet/contents/{+path}","compare_url":"https://api.github.com/repos/torome/Cachet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/torome/Cachet/merges","archive_url":"https://api.github.com/repos/torome/Cachet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/torome/Cachet/downloads","issues_url":"https://api.github.com/repos/torome/Cachet/issues{/number}","pulls_url":"https://api.github.com/repos/torome/Cachet/pulls{/number}","milestones_url":"https://api.github.com/repos/torome/Cachet/milestones{/number}","notifications_url":"https://api.github.com/repos/torome/Cachet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/torome/Cachet/labels{/name}","releases_url":"https://api.github.com/repos/torome/Cachet/releases{/id}","created_at":"2015-01-01T15:04:12Z","updated_at":"2015-01-01T14:55:06Z","pushed_at":"2015-01-01T14:50:06Z","git_url":"git://github.com/torome/Cachet.git","ssh_url":"git@github.com:torome/Cachet.git","clone_url":"https://github.com/torome/Cachet.git","svn_url":"https://github.com/torome/Cachet","homepage":"http://cachethq.io","size":6115,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:04:12Z","org":{"id":9951502,"login":"cachethq","gravatar_id":"","url":"https://api.github.com/orgs/cachethq","avatar_url":"https://avatars.githubusercontent.com/u/9951502?"}}
,{"id":"2489653000","type":"PushEvent","actor":{"id":4703277,"login":"magic4u","gravatar_id":"","url":"https://api.github.com/users/magic4u","avatar_url":"https://avatars.githubusercontent.com/u/4703277?"},"repo":{"id":25163183,"name":"magic4u/ybutterfly","url":"https://api.github.com/repos/magic4u/ybutterfly"},"payload":{"push_id":536864883,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cca0aa8dc41e539f01ba10cf8f83d91671cd3351","before":"a1919a7d60667a7f8a0e3f7917796169cf244747","commits":[{"sha":"cca0aa8dc41e539f01ba10cf8f83d91671cd3351","author":{"email":"598032c2ba9d104103e86c0731e078519f9dd07e@sohu.com","name":"magic4u"},"message":"0.9","distinct":true,"url":"https://api.github.com/repos/magic4u/ybutterfly/commits/cca0aa8dc41e539f01ba10cf8f83d91671cd3351"}]},"public":true,"created_at":"2015-01-01T15:04:13Z"}
,{"id":"2489653009","type":"CreateEvent","actor":{"id":8950411,"login":"keren13","gravatar_id":"","url":"https://api.github.com/users/keren13","avatar_url":"https://avatars.githubusercontent.com/u/8950411?"},"repo":{"id":28688678,"name":"keren13/Java-Two-Dimensional-Arrays","url":"https://api.github.com/repos/keren13/Java-Two-Dimensional-Arrays"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Experimenting with two dimensional arrays by printing out its contents, computing its sums, and other functions.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:13Z"}
,{"id":"2489653010","type":"PushEvent","actor":{"id":485317,"login":"saurabh-hirani","gravatar_id":"","url":"https://api.github.com/users/saurabh-hirani","avatar_url":"https://avatars.githubusercontent.com/u/485317?"},"repo":{"id":28595832,"name":"saurabh-hirani/pyfunc","url":"https://api.github.com/repos/saurabh-hirani/pyfunc"},"payload":{"push_id":536864885,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dad90c73b91a2a4081d30fd2a550cca45cc0983b","before":"4ed733eb0ef8c24b1d8347ec34904ab3c4af1367","commits":[{"sha":"dad90c73b91a2a4081d30fd2a550cca45cc0983b","author":{"email":"f1c2dc5afbb0ad44fd654daa949d1b851b7e0a32@bluejeansnet.com","name":"Saurabh Hirani"},"message":"updated readme with command outputs","distinct":true,"url":"https://api.github.com/repos/saurabh-hirani/pyfunc/commits/dad90c73b91a2a4081d30fd2a550cca45cc0983b"}]},"public":true,"created_at":"2015-01-01T15:04:13Z"}
,{"id":"2489653011","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864886,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3378b12357f5839faf1fb6f5c96d259320e2e359","before":"5ef4e8a239978cac60f0d3b57451fdab92639d6f","commits":[{"sha":"3378b12357f5839faf1fb6f5c96d259320e2e359","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create StrPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/3378b12357f5839faf1fb6f5c96d259320e2e359"}]},"public":true,"created_at":"2015-01-01T15:04:14Z"}
,{"id":"2489653012","type":"WatchEvent","actor":{"id":1143718,"login":"rawcreative","gravatar_id":"","url":"https://api.github.com/users/rawcreative","avatar_url":"https://avatars.githubusercontent.com/u/1143718?"},"repo":{"id":15992694,"name":"quasado/gravit","url":"https://api.github.com/repos/quasado/gravit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:14Z"}
,{"id":"2489653014","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19340336,"name":"cloudify-cosmo/cloudify-puppet-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:14Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653016","type":"CreateEvent","actor":{"id":9557325,"login":"St7ven","gravatar_id":"","url":"https://api.github.com/users/St7ven","avatar_url":"https://avatars.githubusercontent.com/u/9557325?"},"repo":{"id":28597134,"name":"St7ven/cleanflight","url":"https://api.github.com/repos/St7ven/cleanflight"},"payload":{"ref":"Neopixel_Ring","ref_type":"branch","master_branch":"master","description":"Clean-code version of the baseflight flight controller","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:15Z"}
,{"id":"2489653017","type":"IssuesEvent","actor":{"id":7826565,"login":"practicalswift","gravatar_id":"","url":"https://api.github.com/users/practicalswift","avatar_url":"https://avatars.githubusercontent.com/u/7826565?"},"repo":{"id":23238061,"name":"practicalswift/swift-compiler-crashes","url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41","labels_url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41/labels{/name}","comments_url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41/comments","events_url":"https://api.github.com/repos/practicalswift/swift-compiler-crashes/issues/41/events","html_url":"https://github.com/practicalswift/swift-compiler-crashes/issues/41","id":52958893,"number":41,"title":"CONTRIBUTING.md proposes to use \"wrong\" binary","user":{"login":"juangamnik","id":2939856,"avatar_url":"https://avatars.githubusercontent.com/u/2939856?v=3","gravatar_id":"","url":"https://api.github.com/users/juangamnik","html_url":"https://github.com/juangamnik","followers_url":"https://api.github.com/users/juangamnik/followers","following_url":"https://api.github.com/users/juangamnik/following{/other_user}","gists_url":"https://api.github.com/users/juangamnik/gists{/gist_id}","starred_url":"https://api.github.com/users/juangamnik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juangamnik/subscriptions","organizations_url":"https://api.github.com/users/juangamnik/orgs","repos_url":"https://api.github.com/users/juangamnik/repos","events_url":"https://api.github.com/users/juangamnik/events{/privacy}","received_events_url":"https://api.github.com/users/juangamnik/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-27T15:00:44Z","updated_at":"2015-01-01T15:04:15Z","closed_at":"2015-01-01T15:04:14Z","body":"In the step-by-step guide says `xcrun swiftc` should be used, but shouldn't it better be `xcrun swift`?\r\n\r\n```bash\r\n$ xcrun swiftc crash.swift 2>&1 | egrep 'swift.*0x'  | egrep -v '(PrintStackTrace|SignalHandler)' | head -1\r\n```\r\nvs.\r\n```bash\r\n$ xcrun swift crash.swift 2>&1 | egrep 'swift.*0x'  | egrep -v '(PrintStackTrace|SignalHandler)' | head -1\r\n```\r\n"}},"public":true,"created_at":"2015-01-01T15:04:15Z"}
,{"id":"2489653022","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":28677966,"name":"phphost/phm","url":"https://api.github.com/repos/phphost/phm"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phm/issues/1","labels_url":"https://api.github.com/repos/phphost/phm/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phm/issues/1/comments","events_url":"https://api.github.com/repos/phphost/phm/issues/1/events","html_url":"https://github.com/phphost/phm/issues/1","id":53221411,"number":1,"title":"ftp support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:15Z","updated_at":"2015-01-01T15:04:15Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:04:15Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}}
,{"id":"2489653023","type":"IssueCommentEvent","actor":{"id":1020496,"login":"jorisvandenbossche","gravatar_id":"","url":"https://api.github.com/users/jorisvandenbossche","avatar_url":"https://avatars.githubusercontent.com/u/1020496?"},"repo":{"id":858127,"name":"pydata/pandas","url":"https://api.github.com/repos/pydata/pandas"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/pydata/pandas/issues/6581","labels_url":"https://api.github.com/repos/pydata/pandas/issues/6581/labels{/name}","comments_url":"https://api.github.com/repos/pydata/pandas/issues/6581/comments","events_url":"https://api.github.com/repos/pydata/pandas/issues/6581/events","html_url":"https://github.com/pydata/pandas/issues/6581","id":29065993,"number":6581,"title":"DEPR: remove code for deprecations from prior versions","user":{"login":"jsexauer","id":1630128,"avatar_url":"https://avatars.githubusercontent.com/u/1630128?v=3","gravatar_id":"","url":"https://api.github.com/users/jsexauer","html_url":"https://github.com/jsexauer","followers_url":"https://api.github.com/users/jsexauer/followers","following_url":"https://api.github.com/users/jsexauer/following{/other_user}","gists_url":"https://api.github.com/users/jsexauer/gists{/gist_id}","starred_url":"https://api.github.com/users/jsexauer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jsexauer/subscriptions","organizations_url":"https://api.github.com/users/jsexauer/orgs","repos_url":"https://api.github.com/users/jsexauer/repos","events_url":"https://api.github.com/users/jsexauer/events{/privacy}","received_events_url":"https://api.github.com/users/jsexauer/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/pydata/pandas/labels/Deprecate","name":"Deprecate","color":"5319e7"},{"url":"https://api.github.com/repos/pydata/pandas/labels/Note+To+Selves","name":"Note To Selves","color":"DDDDDD"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/pydata/pandas/milestones/25","labels_url":"https://api.github.com/repos/pydata/pandas/milestones/25/labels","id":569113,"number":25,"title":"0.16.0","description":"after 0.15 of course!","creator":{"login":"jreback","id":953992,"avatar_url":"https://avatars.githubusercontent.com/u/953992?v=3","gravatar_id":"","url":"https://api.github.com/users/jreback","html_url":"https://github.com/jreback","followers_url":"https://api.github.com/users/jreback/followers","following_url":"https://api.github.com/users/jreback/following{/other_user}","gists_url":"https://api.github.com/users/jreback/gists{/gist_id}","starred_url":"https://api.github.com/users/jreback/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jreback/subscriptions","organizations_url":"https://api.github.com/users/jreback/orgs","repos_url":"https://api.github.com/users/jreback/repos","events_url":"https://api.github.com/users/jreback/events{/privacy}","received_events_url":"https://api.github.com/users/jreback/received_events","type":"User","site_admin":false},"open_issues":867,"closed_issues":118,"state":"open","created_at":"2014-02-14T03:31:22Z","updated_at":"2014-12-29T17:15:20Z","due_on":"2015-02-28T08:00:00Z","closed_at":null},"comments":24,"created_at":"2014-03-09T23:47:17Z","updated_at":"2015-01-01T15:04:15Z","closed_at":null,"body":"# For 0.15\r\n- [x] `DataFrame.delevel` already deprecated in 0.7\r\n\r\n# For 0.16\r\n- [ ] boxplot https://github.com/pydata/pandas/pull/7096\r\n  - [ ] change default of `return_type` from None to `'axes'`\r\n  - [ ] update return_type section in visualization.rst\r\n- [ ] #5505, DataFrame.pivot_table and crosstab were refactored to use the same arguments as pivot (index and columns) and FutureWarnings added for the old arguments.  Per @jreback, in 0.16, these deprecated arguments should be removed and the docstring updated.  This issue is submitted as a reminder to do so and should be tagged with a 0.156 milestone.\r\n- [ ] #6686, cols was deprecated in DataFrame.to_excel and to_csv (rows is not deprecated, don't touch it!)\r\n- [ ] #8140, remove `covert_dummies` from `core/reshape` entirely. Deprecated in favor of enhanced `get_dummies`. Deprecated as of 0.15\r\n- [ ] #8481, remove ``pandas.tools.util.py/value_range``\r\n\r\n# Future\r\n- [ ] #6680, cols was deprecated in DataFrame.to_duplicated and drop_duplicates\r\n- [ ] #5231 ``na_last`` arg from Series.sort\r\n- [ ] #4950 - ``rolling_corr_pairwise()``,  ``expanding_corr_pairwise()`` replace by ``rolling_corr()``, ``expanding_corr()``\r\n- [ ] #2304 Deprecate broadcasting TimeSeries along DataFrame index\r\n- [ ] #6815/#6813 ``.freq`` in ``Timestamp`` rather than ``.offset`` (internally used)\r\n- [ ] #3787 Deprecate load and save in favor of pickle and to_pickle\r\n- [ ]  #4853, #4864 Deprecate timeRule and offset in favor of freq ()  \r\n- [ ]  Deprecate colSpace in favor of col_space (no issue, commit 4a5a677c)  \r\n- [ ] #3822, #3817 Deprecate year/month parameters in finance option signatures\r\n- [ ]  #4713 Remove kind from read_excel\r\n- [ ]  #4770, #7032 Deprecate infer_types to have no effect\r\n- [ ]  #4645 Deprecate table keyword in HDFStore\r\n- [ ]  #4892 Float indexers in non-float indexes.\r\n- [ ] #6919 Remove ``copy`` keyword from ``xs``,``minor_xs``,``major_xs`` (4 places)\r\n- [ ]  #6910 Change `Panel.shift`'s signature to match `generic.shift()`'s\r\n- [ ] #6930 factorize took an `order` argument but didn't do anything with it.\r\n- [ ] #7088 Deprecate percentile_width in favor of percentiles\r\n- [ ] remove `TimeSeries` alias\r\n- [ ] #8376 remove ``.levels`` from ``Categorical`` constructor / accessor\r\n- [ ] #8486 remove ``outtype`` in ``.to_dict()`` replaced by ``orient``\r\n- [ ] #8227 '+'/'-' for Index set ops\r\n"},"comment":{"url":"https://api.github.com/repos/pydata/pandas/issues/comments/68488565","html_url":"https://github.com/pydata/pandas/issues/6581#issuecomment-68488565","issue_url":"https://api.github.com/repos/pydata/pandas/issues/6581","id":68488565,"user":{"login":"jorisvandenbossche","id":1020496,"avatar_url":"https://avatars.githubusercontent.com/u/1020496?v=3","gravatar_id":"","url":"https://api.github.com/users/jorisvandenbossche","html_url":"https://github.com/jorisvandenbossche","followers_url":"https://api.github.com/users/jorisvandenbossche/followers","following_url":"https://api.github.com/users/jorisvandenbossche/following{/other_user}","gists_url":"https://api.github.com/users/jorisvandenbossche/gists{/gist_id}","starred_url":"https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jorisvandenbossche/subscriptions","organizations_url":"https://api.github.com/users/jorisvandenbossche/orgs","repos_url":"https://api.github.com/users/jorisvandenbossche/repos","events_url":"https://api.github.com/users/jorisvandenbossche/events{/privacy}","received_events_url":"https://api.github.com/users/jorisvandenbossche/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:15Z","updated_at":"2015-01-01T15:04:15Z","body":"I think everything in the list is good to go."}},"public":true,"created_at":"2015-01-01T15:04:15Z","org":{"id":1284191,"login":"pydata","gravatar_id":"","url":"https://api.github.com/orgs/pydata","avatar_url":"https://avatars.githubusercontent.com/u/1284191?"}}
,{"id":"2489653025","type":"PushEvent","actor":{"id":10252673,"login":"quhezheng","gravatar_id":"","url":"https://api.github.com/users/quhezheng","avatar_url":"https://avatars.githubusercontent.com/u/10252673?"},"repo":{"id":28398342,"name":"quhezheng/HomeIP","url":"https://api.github.com/repos/quhezheng/HomeIP"},"payload":{"push_id":536864891,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"45034b9593501122f3a08f028b4297a2691d2e92","before":"be239644a06f031e9e16ca02f6918cbc88bebde1","commits":[{"sha":"45034b9593501122f3a08f028b4297a2691d2e92","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/45034b9593501122f3a08f028b4297a2691d2e92"}]},"public":true,"created_at":"2015-01-01T15:04:16Z"}
,{"id":"2489653034","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19340336,"name":"cloudify-cosmo/cloudify-puppet-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-puppet-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify plugin for the puppet configuration system","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:18Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653038","type":"PushEvent","actor":{"id":40815,"login":"smarr","gravatar_id":"","url":"https://api.github.com/users/smarr","avatar_url":"https://avatars.githubusercontent.com/u/40815?"},"repo":{"id":13716174,"name":"SOM-st/SOMpp","url":"https://api.github.com/repos/SOM-st/SOMpp"},"payload":{"push_id":536864896,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"dace6179818eb4b8255c88b94b37c67cf375bb3c","before":"9770d4fa1d8d476f85bf71c90244c3234f60ef5e","commits":[{"sha":"9dc8b967fc5d67fbccc701c94e9ad16905ae19ae","author":{"email":"46f1a0bd5592a2f9244ca321b129902a06b53e03@stefan-marr.de","name":"Stefan Marr"},"message":"Removed pVMObject typedef\n\nSigned-off-by: Stefan Marr <git@stefan-marr.de>","distinct":true,"url":"https://api.github.com/repos/SOM-st/SOMpp/commits/9dc8b967fc5d67fbccc701c94e9ad16905ae19ae"},{"sha":"dace6179818eb4b8255c88b94b37c67cf375bb3c","author":{"email":"46f1a0bd5592a2f9244ca321b129902a06b53e03@stefan-marr.de","name":"Stefan Marr"},"message":"Removed pVMAbstract typedef\n\nSigned-off-by: Stefan Marr <git@stefan-marr.de>","distinct":true,"url":"https://api.github.com/repos/SOM-st/SOMpp/commits/dace6179818eb4b8255c88b94b37c67cf375bb3c"}]},"public":true,"created_at":"2015-01-01T15:04:18Z","org":{"id":5729455,"login":"SOM-st","gravatar_id":"","url":"https://api.github.com/orgs/SOM-st","avatar_url":"https://avatars.githubusercontent.com/u/5729455?"}}
,{"id":"2489653039","type":"PushEvent","actor":{"id":10125047,"login":"zhou---jing","gravatar_id":"","url":"https://api.github.com/users/zhou---jing","avatar_url":"https://avatars.githubusercontent.com/u/10125047?"},"repo":{"id":28687566,"name":"zhou---jing/zhou---jing.github.com","url":"https://api.github.com/repos/zhou---jing/zhou---jing.github.com"},"payload":{"push_id":536864897,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"55ea25948edab58b175f6dc0b04c901c1fcec9a9","before":"095e3b074e952ec00c9f2637db0d94f05605ae08","commits":[{"sha":"76dd17b375d7cf97cf17eea4884257c708db44d0","author":{"email":"11937e34b780e46bd05ddaa6c291c24c319199e8@hotmail.com","name":"zhoujing"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/zhou---jing/zhou---jing.github.com/commits/76dd17b375d7cf97cf17eea4884257c708db44d0"},{"sha":"55ea25948edab58b175f6dc0b04c901c1fcec9a9","author":{"email":"11937e34b780e46bd05ddaa6c291c24c319199e8@hotmail.com","name":"zhoujing"},"message":"Site updated: 2015-01-01 23:06:50","distinct":true,"url":"https://api.github.com/repos/zhou---jing/zhou---jing.github.com/commits/55ea25948edab58b175f6dc0b04c901c1fcec9a9"}]},"public":true,"created_at":"2015-01-01T15:04:18Z"}
,{"id":"2489653045","type":"PushEvent","actor":{"id":9912146,"login":"kensyo","gravatar_id":"","url":"https://api.github.com/users/kensyo","avatar_url":"https://avatars.githubusercontent.com/u/9912146?"},"repo":{"id":27037214,"name":"kensyo/dotfiles","url":"https://api.github.com/repos/kensyo/dotfiles"},"payload":{"push_id":536864900,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a56bd4cc3c67646c7368b0158423ef40a831c156","before":"168d069c403ce8a200b098ac9a4398a8c4c8cb60","commits":[{"sha":"a56bd4cc3c67646c7368b0158423ef40a831c156","author":{"email":"7f3d11e1144db096a20e1022e1d99c40693637e5@gmail.com","name":"kensyo"},"message":"        .vimrcの(fcitxに関する)ttimeoutlenを100にした。","distinct":true,"url":"https://api.github.com/repos/kensyo/dotfiles/commits/a56bd4cc3c67646c7368b0158423ef40a831c156"}]},"public":true,"created_at":"2015-01-01T15:04:19Z"}
,{"id":"2489653046","type":"PushEvent","actor":{"id":4074405,"login":"Praveen-Innocent","gravatar_id":"","url":"https://api.github.com/users/Praveen-Innocent","avatar_url":"https://avatars.githubusercontent.com/u/4074405?"},"repo":{"id":28687669,"name":"Praveen-Innocent/QuickSilver","url":"https://api.github.com/repos/Praveen-Innocent/QuickSilver"},"payload":{"push_id":536864901,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7e10a550e24c58d7bdfb2725be60a87fe0cc6318","before":"01a3da267b3a283b7d030be32bce14d51011b1df","commits":[{"sha":"7e10a550e24c58d7bdfb2725be60a87fe0cc6318","author":{"email":"4d3bb2edfe8f959f0752502189d0e58641043f73@gmail.com","name":"PC"},"message":"creating engine and abstract mvc classes","distinct":true,"url":"https://api.github.com/repos/Praveen-Innocent/QuickSilver/commits/7e10a550e24c58d7bdfb2725be60a87fe0cc6318"}]},"public":true,"created_at":"2015-01-01T15:04:19Z"}
,{"id":"2489653047","type":"WatchEvent","actor":{"id":3116673,"login":"parkjh","gravatar_id":"","url":"https://api.github.com/users/parkjh","avatar_url":"https://avatars.githubusercontent.com/u/3116673?"},"repo":{"id":3920453,"name":"mhartl/rails_tutorial_sublime_text","url":"https://api.github.com/repos/mhartl/rails_tutorial_sublime_text"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:19Z"}
,{"id":"2489653049","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327786,"name":"cloudify-cosmo/cloudify-hello-world-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-hello-world-example"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:19Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653051","type":"ForkEvent","actor":{"id":5127927,"login":"doronk","gravatar_id":"","url":"https://api.github.com/users/doronk","avatar_url":"https://avatars.githubusercontent.com/u/5127927?"},"repo":{"id":14712600,"name":"Grishu/MYDroid","url":"https://api.github.com/repos/Grishu/MYDroid"},"payload":{"forkee":{"id":28688679,"name":"MYDroid","full_name":"doronk/MYDroid","owner":{"login":"doronk","id":5127927,"avatar_url":"https://avatars.githubusercontent.com/u/5127927?v=3","gravatar_id":"","url":"https://api.github.com/users/doronk","html_url":"https://github.com/doronk","followers_url":"https://api.github.com/users/doronk/followers","following_url":"https://api.github.com/users/doronk/following{/other_user}","gists_url":"https://api.github.com/users/doronk/gists{/gist_id}","starred_url":"https://api.github.com/users/doronk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/doronk/subscriptions","organizations_url":"https://api.github.com/users/doronk/orgs","repos_url":"https://api.github.com/users/doronk/repos","events_url":"https://api.github.com/users/doronk/events{/privacy}","received_events_url":"https://api.github.com/users/doronk/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/doronk/MYDroid","description":"","fork":true,"url":"https://api.github.com/repos/doronk/MYDroid","forks_url":"https://api.github.com/repos/doronk/MYDroid/forks","keys_url":"https://api.github.com/repos/doronk/MYDroid/keys{/key_id}","collaborators_url":"https://api.github.com/repos/doronk/MYDroid/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/doronk/MYDroid/teams","hooks_url":"https://api.github.com/repos/doronk/MYDroid/hooks","issue_events_url":"https://api.github.com/repos/doronk/MYDroid/issues/events{/number}","events_url":"https://api.github.com/repos/doronk/MYDroid/events","assignees_url":"https://api.github.com/repos/doronk/MYDroid/assignees{/user}","branches_url":"https://api.github.com/repos/doronk/MYDroid/branches{/branch}","tags_url":"https://api.github.com/repos/doronk/MYDroid/tags","blobs_url":"https://api.github.com/repos/doronk/MYDroid/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/doronk/MYDroid/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/doronk/MYDroid/git/refs{/sha}","trees_url":"https://api.github.com/repos/doronk/MYDroid/git/trees{/sha}","statuses_url":"https://api.github.com/repos/doronk/MYDroid/statuses/{sha}","languages_url":"https://api.github.com/repos/doronk/MYDroid/languages","stargazers_url":"https://api.github.com/repos/doronk/MYDroid/stargazers","contributors_url":"https://api.github.com/repos/doronk/MYDroid/contributors","subscribers_url":"https://api.github.com/repos/doronk/MYDroid/subscribers","subscription_url":"https://api.github.com/repos/doronk/MYDroid/subscription","commits_url":"https://api.github.com/repos/doronk/MYDroid/commits{/sha}","git_commits_url":"https://api.github.com/repos/doronk/MYDroid/git/commits{/sha}","comments_url":"https://api.github.com/repos/doronk/MYDroid/comments{/number}","issue_comment_url":"https://api.github.com/repos/doronk/MYDroid/issues/comments/{number}","contents_url":"https://api.github.com/repos/doronk/MYDroid/contents/{+path}","compare_url":"https://api.github.com/repos/doronk/MYDroid/compare/{base}...{head}","merges_url":"https://api.github.com/repos/doronk/MYDroid/merges","archive_url":"https://api.github.com/repos/doronk/MYDroid/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/doronk/MYDroid/downloads","issues_url":"https://api.github.com/repos/doronk/MYDroid/issues{/number}","pulls_url":"https://api.github.com/repos/doronk/MYDroid/pulls{/number}","milestones_url":"https://api.github.com/repos/doronk/MYDroid/milestones{/number}","notifications_url":"https://api.github.com/repos/doronk/MYDroid/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/doronk/MYDroid/labels{/name}","releases_url":"https://api.github.com/repos/doronk/MYDroid/releases{/id}","created_at":"2015-01-01T15:04:20Z","updated_at":"2014-11-19T03:49:42Z","pushed_at":"2014-04-07T09:30:26Z","git_url":"git://github.com/doronk/MYDroid.git","ssh_url":"git@github.com:doronk/MYDroid.git","clone_url":"https://github.com/doronk/MYDroid.git","svn_url":"https://github.com/doronk/MYDroid","homepage":null,"size":836,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:04:20Z"}
,{"id":"2489653057","type":"PullRequestEvent","actor":{"id":493276,"login":"k-okada","gravatar_id":"","url":"https://api.github.com/users/k-okada","avatar_url":"https://avatars.githubusercontent.com/u/493276?"},"repo":{"id":10344201,"name":"ros-simulation/gazebo_ros_pkgs","url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs"},"payload":{"action":"opened","number":287,"pull_request":{"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287","id":26743798,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287","diff_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.diff","patch_url":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287.patch","issue_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287","number":287,"state":"open","locked":false,"title":"add option to change package:// to model:// when loading urdf file","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"body":"this feature is required if we want to use gzweb, but ofcourse you have to set GAZEBO_MODEL_PATH correctly","created_at":"2015-01-01T15:04:20Z","updated_at":"2015-01-01T15:04:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/commits","review_comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/comments","review_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e","head":{"label":"k-okada:add_package_to_model","ref":"add_package_to_model","sha":"5f82ee0428994b7f52d63285a672774be29f0b9e","user":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"repo":{"id":27212864,"name":"gazebo_ros_pkgs","full_name":"k-okada/gazebo_ros_pkgs","owner":{"login":"k-okada","id":493276,"avatar_url":"https://avatars.githubusercontent.com/u/493276?v=3","gravatar_id":"","url":"https://api.github.com/users/k-okada","html_url":"https://github.com/k-okada","followers_url":"https://api.github.com/users/k-okada/followers","following_url":"https://api.github.com/users/k-okada/following{/other_user}","gists_url":"https://api.github.com/users/k-okada/gists{/gist_id}","starred_url":"https://api.github.com/users/k-okada/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k-okada/subscriptions","organizations_url":"https://api.github.com/users/k-okada/orgs","repos_url":"https://api.github.com/users/k-okada/repos","events_url":"https://api.github.com/users/k-okada/events{/privacy}","received_events_url":"https://api.github.com/users/k-okada/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k-okada/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":true,"url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/k-okada/gazebo_ros_pkgs/releases{/id}","created_at":"2014-11-27T06:51:53Z","updated_at":"2014-11-27T06:51:54Z","pushed_at":"2015-01-01T15:03:20Z","git_url":"git://github.com/k-okada/gazebo_ros_pkgs.git","ssh_url":"git@github.com:k-okada/gazebo_ros_pkgs.git","clone_url":"https://github.com/k-okada/gazebo_ros_pkgs.git","svn_url":"https://github.com/k-okada/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":3075,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"hydro-devel"}},"base":{"label":"ros-simulation:hydro-devel","ref":"hydro-devel","sha":"d8471f25c0323670be994a4c554903ff06df0bd7","user":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"repo":{"id":10344201,"name":"gazebo_ros_pkgs","full_name":"ros-simulation/gazebo_ros_pkgs","owner":{"login":"ros-simulation","id":2349888,"avatar_url":"https://avatars.githubusercontent.com/u/2349888?v=3","gravatar_id":"","url":"https://api.github.com/users/ros-simulation","html_url":"https://github.com/ros-simulation","followers_url":"https://api.github.com/users/ros-simulation/followers","following_url":"https://api.github.com/users/ros-simulation/following{/other_user}","gists_url":"https://api.github.com/users/ros-simulation/gists{/gist_id}","starred_url":"https://api.github.com/users/ros-simulation/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ros-simulation/subscriptions","organizations_url":"https://api.github.com/users/ros-simulation/orgs","repos_url":"https://api.github.com/users/ros-simulation/repos","events_url":"https://api.github.com/users/ros-simulation/events{/privacy}","received_events_url":"https://api.github.com/users/ros-simulation/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","description":"Wrappers, tools and additional API's for using ROS with Gazebo. Formally simulator_gazebo stack","fork":false,"url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs","forks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/forks","keys_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/teams","hooks_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/hooks","issue_events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/events{/number}","events_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/events","assignees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/assignees{/user}","branches_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/branches{/branch}","tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/tags","blobs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/refs{/sha}","trees_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/{sha}","languages_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/languages","stargazers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/stargazers","contributors_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contributors","subscribers_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscribers","subscription_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/subscription","commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/commits{/sha}","git_commits_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/git/commits{/sha}","comments_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/comments{/number}","issue_comment_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/comments/{number}","contents_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/contents/{+path}","compare_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/merges","archive_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/downloads","issues_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues{/number}","pulls_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls{/number}","milestones_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/milestones{/number}","notifications_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/labels{/name}","releases_url":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/releases{/id}","created_at":"2013-05-28T19:59:20Z","updated_at":"2014-12-15T13:51:55Z","pushed_at":"2014-12-16T21:29:55Z","git_url":"git://github.com/ros-simulation/gazebo_ros_pkgs.git","ssh_url":"git@github.com:ros-simulation/gazebo_ros_pkgs.git","clone_url":"https://github.com/ros-simulation/gazebo_ros_pkgs.git","svn_url":"https://github.com/ros-simulation/gazebo_ros_pkgs","homepage":"www.ros.org/wiki/gazebo_ros_pkgs","size":5148,"stargazers_count":21,"watchers_count":21,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":73,"mirror_url":null,"open_issues_count":62,"forks":73,"open_issues":62,"watchers":21,"default_branch":"hydro-devel"}},"_links":{"self":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287"},"html":{"href":"https://github.com/ros-simulation/gazebo_ros_pkgs/pull/287"},"issue":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287"},"comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/issues/287/comments"},"review_comments":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/comments"},"review_comment":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/pulls/287/commits"},"statuses":{"href":"https://api.github.com/repos/ros-simulation/gazebo_ros_pkgs/statuses/5f82ee0428994b7f52d63285a672774be29f0b9e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":92,"additions":1573,"deletions":700,"changed_files":44}},"public":true,"created_at":"2015-01-01T15:04:21Z","org":{"id":2349888,"login":"ros-simulation","gravatar_id":"","url":"https://api.github.com/orgs/ros-simulation","avatar_url":"https://avatars.githubusercontent.com/u/2349888?"}}
,{"id":"2489653060","type":"PullRequestEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"opened","number":49,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49","id":26743799,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49","number":49,"state":"open","locked":false,"title":"middleman build","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:21Z","updated_at":"2015-01-01T15:04:21Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937","head":{"label":"syon:master","ref":"master","sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"andy-hiroyuki:master","ref":"master","sha":"a5a3782480c4ecfc08c105cb88dfcd8841df1783","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T14:56:05Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":2,"forks":1,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:04:21Z"}
,{"id":"2489653063","type":"CreateEvent","actor":{"id":3233228,"login":"LureBreaker","gravatar_id":"","url":"https://api.github.com/users/LureBreaker","avatar_url":"https://avatars.githubusercontent.com/u/3233228?"},"repo":{"id":28688680,"name":"LureBreaker/django-tutorial","url":"https://api.github.com/repos/LureBreaker/django-tutorial"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"django tutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:21Z"}
,{"id":"2489653068","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327786,"name":"cloudify-cosmo/cloudify-hello-world-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-hello-world-example"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Examples","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:22Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653070","type":"CreateEvent","actor":{"id":1259250,"login":"muniere","gravatar_id":"","url":"https://api.github.com/users/muniere","avatar_url":"https://avatars.githubusercontent.com/u/1259250?"},"repo":{"id":28688681,"name":"muniere/hipchat-history","url":"https://api.github.com/repos/muniere/hipchat-history"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Collect hipchat history in specific rooms","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:23Z"}
,{"id":"2489653075","type":"PushEvent","actor":{"id":1021199,"login":"piwi","gravatar_id":"","url":"https://api.github.com/users/piwi","avatar_url":"https://avatars.githubusercontent.com/u/1021199?"},"repo":{"id":9756641,"name":"atelierspierrot/assets-manager","url":"https://api.github.com/repos/atelierspierrot/assets-manager"},"payload":{"push_id":536864908,"size":1,"distinct_size":1,"ref":"refs/heads/wip","head":"1c5683c55ae4d6219bb0a09e9cc8a24577ac6647","before":"af42b5406caa200abca594cb5483f5b6ff703c34","commits":[{"sha":"1c5683c55ae4d6219bb0a09e9cc8a24577ac6647","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"piwi"},"message":"uniformization of the 'wip' branch vs. 'master'","distinct":true,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/1c5683c55ae4d6219bb0a09e9cc8a24577ac6647"}]},"public":true,"created_at":"2015-01-01T15:04:23Z","org":{"id":3798221,"login":"atelierspierrot","gravatar_id":"","url":"https://api.github.com/orgs/atelierspierrot","avatar_url":"https://avatars.githubusercontent.com/u/3798221?"}}
,{"id":"2489653076","type":"PushEvent","actor":{"id":1429281,"login":"andrewcooke","gravatar_id":"","url":"https://api.github.com/users/andrewcooke","avatar_url":"https://avatars.githubusercontent.com/u/1429281?"},"repo":{"id":23759903,"name":"andrewcooke/GAIIR.jl","url":"https://api.github.com/repos/andrewcooke/GAIIR.jl"},"payload":{"push_id":536864909,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"25491e73247d8d634c56b5a27ba2fb09bb498660","before":"48d8926ee49c550432b6c9bcf780b1778fbb00fc","commits":[{"sha":"25491e73247d8d634c56b5a27ba2fb09bb498660","author":{"email":"02e0a999c50b1f88df7a8f5a04e1b76b35ea6a88@acooke.org","name":"andrew cooke"},"message":"dead project; old files","distinct":true,"url":"https://api.github.com/repos/andrewcooke/GAIIR.jl/commits/25491e73247d8d634c56b5a27ba2fb09bb498660"}]},"public":true,"created_at":"2015-01-01T15:04:23Z"}
,{"id":"2489653077","type":"PushEvent","actor":{"id":193115,"login":"haf","gravatar_id":"","url":"https://api.github.com/users/haf","avatar_url":"https://avatars.githubusercontent.com/u/193115?"},"repo":{"id":28634585,"name":"SuaveIO/Fuchu","url":"https://api.github.com/repos/SuaveIO/Fuchu"},"payload":{"push_id":536864910,"size":5,"distinct_size":4,"ref":"refs/heads/master","head":"8a6bc245bec7f40ebc6050fea4e68f5bfc22c743","before":"b0cc3b9b1e782dd6ded2c67432a2ebd86f6ec4a5","commits":[{"sha":"1570ed317c0600f3eacd9828f7530afc5f368e29","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"wip - @ademar - can you assist? I have to rest a bit...","distinct":false,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/1570ed317c0600f3eacd9828f7530afc5f368e29"},{"sha":"3f4eb8c59507c4d286b122d7b59d1fae3ffdb6fb","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"v4.5, fix apis, compiles again","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/3f4eb8c59507c4d286b122d7b59d1fae3ffdb6fb"},{"sha":"b72b27d977d6c2f58298974231d3e11918e2ce0f","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"Merge branch 'feature/upgrade-libs'","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/b72b27d977d6c2f58298974231d3e11918e2ce0f"},{"sha":"6aa36c601d86e64821b5082bb23c0d50fed40341","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"bumping minor, breaking api changes","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/6aa36c601d86e64821b5082bb23c0d50fed40341"},{"sha":"8a6bc245bec7f40ebc6050fea4e68f5bfc22c743","author":{"email":"a076b11c2cc63ccdc903dbe182e1eecc3cbbc094@haf.se","name":"Henrik Feldt"},"message":"rake runs unit tests, fsharp.core nuget dependency","distinct":true,"url":"https://api.github.com/repos/SuaveIO/Fuchu/commits/8a6bc245bec7f40ebc6050fea4e68f5bfc22c743"}]},"public":true,"created_at":"2015-01-01T15:04:23Z","org":{"id":5822862,"login":"SuaveIO","gravatar_id":"","url":"https://api.github.com/orgs/SuaveIO","avatar_url":"https://avatars.githubusercontent.com/u/5822862?"}}
,{"id":"2489653078","type":"PushEvent","actor":{"id":1382891,"login":"opachesa","gravatar_id":"","url":"https://api.github.com/users/opachesa","avatar_url":"https://avatars.githubusercontent.com/u/1382891?"},"repo":{"id":26723066,"name":"opachesa/proyecto-uno","url":"https://api.github.com/repos/opachesa/proyecto-uno"},"payload":{"push_id":536864911,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"284229754f5a167c4410c3c7f2874a9f6b0267dc","before":"db9a061b58d614b26c5b0176a8cae780f60ef387","commits":[{"sha":"4eb49300a8cb0116904a33de74e3701d6904922a","author":{"email":"19dd31ec29200827fa2e9ad9f9d9a21087b1afca@gmail.com","name":"omar.pache"},"message":"Clases utilidades","distinct":true,"url":"https://api.github.com/repos/opachesa/proyecto-uno/commits/4eb49300a8cb0116904a33de74e3701d6904922a"},{"sha":"284229754f5a167c4410c3c7f2874a9f6b0267dc","author":{"email":"19dd31ec29200827fa2e9ad9f9d9a21087b1afca@gmail.com","name":"omar.pache"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/opachesa/proyecto-uno/commits/284229754f5a167c4410c3c7f2874a9f6b0267dc"}]},"public":true,"created_at":"2015-01-01T15:04:23Z"}
,{"id":"2489653079","type":"CreateEvent","actor":{"id":193115,"login":"haf","gravatar_id":"","url":"https://api.github.com/users/haf","avatar_url":"https://avatars.githubusercontent.com/u/193115?"},"repo":{"id":28634585,"name":"SuaveIO/Fuchu","url":"https://api.github.com/repos/SuaveIO/Fuchu"},"payload":{"ref":"v0.6.0","ref_type":"tag","master_branch":"master","description":"Functional test library for F# / C# / VB.NET","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:24Z","org":{"id":5822862,"login":"SuaveIO","gravatar_id":"","url":"https://api.github.com/orgs/SuaveIO","avatar_url":"https://avatars.githubusercontent.com/u/5822862?"}}
,{"id":"2489653083","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23050575,"name":"cloudify-cosmo/cloudify-script-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:24Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653087","type":"CreateEvent","actor":{"id":7489322,"login":"nav2cool","gravatar_id":"","url":"https://api.github.com/users/nav2cool","avatar_url":"https://avatars.githubusercontent.com/u/7489322?"},"repo":{"id":28688137,"name":"nav2cool/sample-app-rails","url":"https://api.github.com/repos/nav2cool/sample-app-rails"},"payload":{"ref":"static-pages","ref_type":"branch","master_branch":"master","description":"railstutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:25Z"}
,{"id":"2489653089","type":"CreateEvent","actor":{"id":9144720,"login":"liuchao0206","gravatar_id":"","url":"https://api.github.com/users/liuchao0206","avatar_url":"https://avatars.githubusercontent.com/u/9144720?"},"repo":{"id":28688682,"name":"liuchao0206/WhoIsUndercover","url":"https://api.github.com/repos/liuchao0206/WhoIsUndercover"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:26Z"}
,{"id":"2489653090","type":"PushEvent","actor":{"id":4683642,"login":"efwahl","gravatar_id":"","url":"https://api.github.com/users/efwahl","avatar_url":"https://avatars.githubusercontent.com/u/4683642?"},"repo":{"id":27305381,"name":"efwahl/redis-py","url":"https://api.github.com/repos/efwahl/redis-py"},"payload":{"push_id":536864916,"size":7,"distinct_size":7,"ref":"refs/heads/master","head":"323ad59a7a4b0442311814892b553d5017affb56","before":"fa714e08ef59d37b145616cb60939eedafda0bd4","commits":[{"sha":"e31e98ba66cf3b16fc6a1658b23400102a782f11","author":{"email":"9773878d237ad1f0b31f1354f3b87239c0805fba@cliqz.com","name":"Hendrik Muhs"},"message":"UnicodeDecodeErrorfix unicode encode error when using pipeline in combination with msgpack and lua","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/e31e98ba66cf3b16fc6a1658b23400102a782f11"},{"sha":"2e05913f002d1b08a09d47f6506dacd53bafe052","author":{"email":"9773878d237ad1f0b31f1354f3b87239c0805fba@cliqz.com","name":"Hendrik Muhs"},"message":"fix pep8","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/2e05913f002d1b08a09d47f6506dacd53bafe052"},{"sha":"eddf49d774945986325a04e134b0ba42e0046e70","author":{"email":"9773878d237ad1f0b31f1354f3b87239c0805fba@cliqz.com","name":"Hendrik Muhs"},"message":"pep8 fix","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/eddf49d774945986325a04e134b0ba42e0046e70"},{"sha":"38b19cd3098f0c21510a5565dae349bd1caef6dc","author":{"email":"e3579b1e47f273529f0f929453e939a68ede9fd1@andymccurdy.com","name":"Andy McCurdy"},"message":"Merge pull request #564 from hendrik-cliqz/fix-unicode-conversion-in-exception-handling\n\nFix UnicodeDecodeError in annotate_excpetion","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/38b19cd3098f0c21510a5565dae349bd1caef6dc"},{"sha":"9cea9e8d55485b4df80556211c3976e3042100be","author":{"email":"8678d91aceeffb4195d952677da14c0fa738a21d@yahoo-inc.com","name":"Joshua Harlow"},"message":"Allow delay between watch errors\n\nWhen a watcher error occurs (due to some key being\nwatched being mutated) the current behavior is to\nimmediately try again. To avoid the thundering herd\nproblem a delay is nice to provide to avoid these\nsituations by introducing a sleep period between these\ntypes of failures.","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/9cea9e8d55485b4df80556211c3976e3042100be"},{"sha":"54e1040b576afb4155bf839483428c5edac14df0","author":{"email":"e3579b1e47f273529f0f929453e939a68ede9fd1@andymccurdy.com","name":"Andy McCurdy"},"message":"Merge pull request #567 from harlowja/watch-delay\n\nAllow delay between watch errors","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/54e1040b576afb4155bf839483428c5edac14df0"},{"sha":"323ad59a7a4b0442311814892b553d5017affb56","author":{"email":"4012e86c1d737d937525d3b6c2216b9ff83e920c@gyre.biz","name":"Edward F. Wahl"},"message":"Allow pubsub WorkerThread to be shut down while in a callback by ignoring the RuntimeError thrown when join is called on the running thread.","distinct":true,"url":"https://api.github.com/repos/efwahl/redis-py/commits/323ad59a7a4b0442311814892b553d5017affb56"}]},"public":true,"created_at":"2015-01-01T15:04:26Z"}
,{"id":"2489653091","type":"PushEvent","actor":{"id":648622,"login":"neuro-sys","gravatar_id":"","url":"https://api.github.com/users/neuro-sys","avatar_url":"https://avatars.githubusercontent.com/u/648622?"},"repo":{"id":8240344,"name":"neuro-sys/neuro-bot","url":"https://api.github.com/repos/neuro-sys/neuro-bot"},"payload":{"push_id":536864917,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8cf955cd4aacd923998f866110997faf17b0f773","before":"183b99e5a162bee02828f35ccb9db02243ffd8d8","commits":[{"sha":"8cf955cd4aacd923998f866110997faf17b0f773","author":{"email":"54be6c1231effc5ae0d6d78e7bc79452bb7f7890@gmail.com","name":"Firat Salgur"},"message":"avoid some obscure memmory corruption","distinct":true,"url":"https://api.github.com/repos/neuro-sys/neuro-bot/commits/8cf955cd4aacd923998f866110997faf17b0f773"}]},"public":true,"created_at":"2015-01-01T15:04:26Z"}
,{"id":"2489653092","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23050575,"name":"cloudify-cosmo/cloudify-script-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-script-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"A Cloudify plugin for running scripts","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:27Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653095","type":"WatchEvent","actor":{"id":3499186,"login":"cnsouka","gravatar_id":"","url":"https://api.github.com/users/cnsouka","avatar_url":"https://avatars.githubusercontent.com/u/3499186?"},"repo":{"id":9330072,"name":"fogleman/Craft","url":"https://api.github.com/repos/fogleman/Craft"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:27Z"}
,{"id":"2489653096","type":"PushEvent","actor":{"id":6496992,"login":"braathwaate","gravatar_id":"","url":"https://api.github.com/users/braathwaate","avatar_url":"https://avatars.githubusercontent.com/u/6496992?"},"repo":{"id":16331244,"name":"braathwaate/stratego","url":"https://api.github.com/repos/braathwaate/stratego"},"payload":{"push_id":536864919,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cb38dc1032fc0ec9ca66a72d7d573aa1725e7413","before":"1c0855266f2febe2458ee8878883a408d95de749","commits":[{"sha":"cb38dc1032fc0ec9ca66a72d7d573aa1725e7413","author":{"email":"7b504dabb4d07becc7eea8f6a6acbd652369b9b3@whitewaterhill.com","name":"braathwaate"},"message":"minor speed improvement; fix known five attack bug","distinct":true,"url":"https://api.github.com/repos/braathwaate/stratego/commits/cb38dc1032fc0ec9ca66a72d7d573aa1725e7413"}]},"public":true,"created_at":"2015-01-01T15:04:27Z"}
,{"id":"2489653097","type":"IssuesEvent","actor":{"id":1218075,"login":"Pylipala","gravatar_id":"","url":"https://api.github.com/users/Pylipala","avatar_url":"https://avatars.githubusercontent.com/u/1218075?"},"repo":{"id":24482035,"name":"mogutt/TTServer","url":"https://api.github.com/repos/mogutt/TTServer"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/mogutt/TTServer/issues/19","labels_url":"https://api.github.com/repos/mogutt/TTServer/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/mogutt/TTServer/issues/19/comments","events_url":"https://api.github.com/repos/mogutt/TTServer/issues/19/events","html_url":"https://github.com/mogutt/TTServer/issues/19","id":53221415,"number":19,"title":"IM.BaseDefine.proto is missing","user":{"login":"Pylipala","id":1218075,"avatar_url":"https://avatars.githubusercontent.com/u/1218075?v=3","gravatar_id":"","url":"https://api.github.com/users/Pylipala","html_url":"https://github.com/Pylipala","followers_url":"https://api.github.com/users/Pylipala/followers","following_url":"https://api.github.com/users/Pylipala/following{/other_user}","gists_url":"https://api.github.com/users/Pylipala/gists{/gist_id}","starred_url":"https://api.github.com/users/Pylipala/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Pylipala/subscriptions","organizations_url":"https://api.github.com/users/Pylipala/orgs","repos_url":"https://api.github.com/users/Pylipala/repos","events_url":"https://api.github.com/users/Pylipala/events{/privacy}","received_events_url":"https://api.github.com/users/Pylipala/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:27Z","updated_at":"2015-01-01T15:04:27Z","closed_at":null,"body":"IM.BaseDefine.pb.h is generated from IM.BaseDefine.proto, while the latter is not provided."}},"public":true,"created_at":"2015-01-01T15:04:27Z","org":{"id":8542441,"login":"mogutt","gravatar_id":"","url":"https://api.github.com/orgs/mogutt","avatar_url":"https://avatars.githubusercontent.com/u/8542441?"}}
,{"id":"2489653099","type":"PushEvent","actor":{"id":208340,"login":"myfreeweb","gravatar_id":"","url":"https://api.github.com/users/myfreeweb","avatar_url":"https://avatars.githubusercontent.com/u/208340?"},"repo":{"id":1344037,"name":"myfreeweb/dotfiles","url":"https://api.github.com/repos/myfreeweb/dotfiles"},"payload":{"push_id":536864920,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c890642b859dcbba334e4bc7b2378b560176906","before":"d2b57abd35ef19a871328dc3925f4206e714c9bf","commits":[{"sha":"1c890642b859dcbba334e4bc7b2378b560176906","author":{"email":"79e2475f81a6317276bf7cbb3958b20d289b78df@unrelenting.technology","name":"Greg V"},"message":"tmux mail indicator, git log gpg, shellcheck fixes, stuff","distinct":true,"url":"https://api.github.com/repos/myfreeweb/dotfiles/commits/1c890642b859dcbba334e4bc7b2378b560176906"}]},"public":true,"created_at":"2015-01-01T15:04:27Z"}
,{"id":"2489653101","type":"PushEvent","actor":{"id":220863,"login":"jgoewert","gravatar_id":"","url":"https://api.github.com/users/jgoewert","avatar_url":"https://avatars.githubusercontent.com/u/220863?"},"repo":{"id":1452772,"name":"jgoewert/angry_cosmos","url":"https://api.github.com/repos/jgoewert/angry_cosmos"},"payload":{"push_id":536864921,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"69b6b47213a38b5bc47e50ad93a8d5219461f6b3","before":"153ba3719c1c42b7c6dd1108b595e81d2b0ae9fc","commits":[{"sha":"69b6b47213a38b5bc47e50ad93a8d5219461f6b3","author":{"email":"a51dda7c7ff50b61eaea0444371f4a6a9301e501@goewert.org","name":"John Goewert"},"message":"Added parallax starfield background","distinct":true,"url":"https://api.github.com/repos/jgoewert/angry_cosmos/commits/69b6b47213a38b5bc47e50ad93a8d5219461f6b3"}]},"public":true,"created_at":"2015-01-01T15:04:28Z"}
,{"id":"2489653104","type":"PushEvent","actor":{"id":665991,"login":"petroav","gravatar_id":"","url":"https://api.github.com/users/petroav","avatar_url":"https://avatars.githubusercontent.com/u/665991?"},"repo":{"id":28688495,"name":"petroav/6.828","url":"https://api.github.com/repos/petroav/6.828"},"payload":{"push_id":536864924,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1a7a49d99e3ad2e473d19df16fa44443a89f3677","before":"73483773b6e381f4bea26728062acc594f4721ba","commits":[{"sha":"1a7a49d99e3ad2e473d19df16fa44443a89f3677","author":{"email":"f48eb4cb2f8059580c9d9ef68746adfc97228595@gmail.com","name":"Anton Petrov"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/petroav/6.828/commits/1a7a49d99e3ad2e473d19df16fa44443a89f3677"}]},"public":true,"created_at":"2015-01-01T15:04:28Z"}
,{"id":"2489653106","type":"WatchEvent","actor":{"id":7654983,"login":"JoakimLiu","gravatar_id":"","url":"https://api.github.com/users/JoakimLiu","avatar_url":"https://avatars.githubusercontent.com/u/7654983?"},"repo":{"id":26867665,"name":"k06a/LaunchScreenViewController","url":"https://api.github.com/repos/k06a/LaunchScreenViewController"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:29Z"}
,{"id":"2489653107","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684017,"name":"cloudify-cosmo/cloudify-libcloud-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:29Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653111","type":"WatchEvent","actor":{"id":77152,"login":"budevg","gravatar_id":"","url":"https://api.github.com/users/budevg","avatar_url":"https://avatars.githubusercontent.com/u/77152?"},"repo":{"id":609376,"name":"thenigan/git-diffall","url":"https://api.github.com/repos/thenigan/git-diffall"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:30Z"}
,{"id":"2489653114","type":"PushEvent","actor":{"id":223335,"login":"jettify","gravatar_id":"","url":"https://api.github.com/users/jettify","avatar_url":"https://avatars.githubusercontent.com/u/223335?"},"repo":{"id":22174212,"name":"jettify/aiogibson","url":"https://api.github.com/repos/jettify/aiogibson"},"payload":{"push_id":536864928,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"94049295e5341777c5c3a1dc1f74ec61f75445e5","before":"59a45a8515c0e19cfed3c1a4d5b9398681f8bc6f","commits":[{"sha":"94049295e5341777c5c3a1dc1f74ec61f75445e5","author":{"email":"eb4210615e6f7d8633151b39d3bf3b0924fddbc7@yahoo.com","name":"Nickolai Novik"},"message":"move to nose","distinct":true,"url":"https://api.github.com/repos/jettify/aiogibson/commits/94049295e5341777c5c3a1dc1f74ec61f75445e5"}]},"public":true,"created_at":"2015-01-01T15:04:31Z"}
,{"id":"2489653116","type":"PushEvent","actor":{"id":10172901,"login":"jbackman","gravatar_id":"","url":"https://api.github.com/users/jbackman","avatar_url":"https://avatars.githubusercontent.com/u/10172901?"},"repo":{"id":28668128,"name":"jbackman/ansible-scripts","url":"https://api.github.com/repos/jbackman/ansible-scripts"},"payload":{"push_id":536864929,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"95abccb60e109f87dcd7babbd87ede48e0e24bba","before":"cbd8cc29a05d2a389cf96630b3d9cbbfef37e987","commits":[{"sha":"95abccb60e109f87dcd7babbd87ede48e0e24bba","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@jitonline.net","name":"Justin Backman"},"message":"update centos prereq","distinct":true,"url":"https://api.github.com/repos/jbackman/ansible-scripts/commits/95abccb60e109f87dcd7babbd87ede48e0e24bba"}]},"public":true,"created_at":"2015-01-01T15:04:31Z"}
,{"id":"2489653118","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phphost/issues/4","labels_url":"https://api.github.com/repos/phphost/phphost/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phphost/issues/4/comments","events_url":"https://api.github.com/repos/phphost/phphost/issues/4/events","html_url":"https://github.com/phphost/phphost/issues/4","id":53221416,"number":4,"title":"ftp support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:31Z","updated_at":"2015-01-01T15:04:31Z","closed_at":null,"body":"https://github.com/phphost/phm/issues/1"}},"public":true,"created_at":"2015-01-01T15:04:31Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}}
,{"id":"2489653120","type":"PushEvent","actor":{"id":551491,"login":"evz","gravatar_id":"","url":"https://api.github.com/users/evz","avatar_url":"https://avatars.githubusercontent.com/u/551491?"},"repo":{"id":20695134,"name":"datamade/dedupe-api","url":"https://api.github.com/repos/datamade/dedupe-api"},"payload":{"push_id":536864931,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"12d7cff6ed0ee7270e8fbbe215cb4c4171cd914f","before":"550cf1c02023c800ef2346e5dcc0f991a61cac77","commits":[{"sha":"12d7cff6ed0ee7270e8fbbe215cb4c4171cd914f","author":{"email":"5f88688432f640fe09036b76cf237f328cc3d778@gmail.com","name":"Eric van Zanten"},"message":"Fixed the thing where selecting mutiple field types was broke","distinct":true,"url":"https://api.github.com/repos/datamade/dedupe-api/commits/12d7cff6ed0ee7270e8fbbe215cb4c4171cd914f"}]},"public":true,"created_at":"2015-01-01T15:04:31Z","org":{"id":3723931,"login":"datamade","gravatar_id":"","url":"https://api.github.com/orgs/datamade","avatar_url":"https://avatars.githubusercontent.com/u/3723931?"}}
,{"id":"2489653126","type":"WatchEvent","actor":{"id":6399899,"login":"hacke2","gravatar_id":"","url":"https://api.github.com/users/hacke2","avatar_url":"https://avatars.githubusercontent.com/u/6399899?"},"repo":{"id":17893612,"name":"maomaoshu/jsBook","url":"https://api.github.com/repos/maomaoshu/jsBook"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:33Z"}
,{"id":"2489653127","type":"WatchEvent","actor":{"id":112799,"login":"wildtype","gravatar_id":"","url":"https://api.github.com/users/wildtype","avatar_url":"https://avatars.githubusercontent.com/u/112799?"},"repo":{"id":6515967,"name":"mindd-it/pappu-pakia","url":"https://api.github.com/repos/mindd-it/pappu-pakia"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:33Z","org":{"id":2706802,"login":"mindd-it","gravatar_id":"","url":"https://api.github.com/orgs/mindd-it","avatar_url":"https://avatars.githubusercontent.com/u/2706802?"}}
,{"id":"2489653128","type":"PushEvent","actor":{"id":785941,"login":"cenotaph","gravatar_id":"","url":"https://api.github.com/users/cenotaph","avatar_url":"https://avatars.githubusercontent.com/u/785941?"},"repo":{"id":28541151,"name":"cenotaph/version","url":"https://api.github.com/repos/cenotaph/version"},"payload":{"push_id":536864934,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"487a53484efe168b4a734c729a10e6026168c05b","before":"d662560256751335f44c088934f8cc0196a3d6eb","commits":[{"sha":"7d90244bb841e4e76eb0829965958c366e6bb8cb","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"server static files","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/7d90244bb841e4e76eb0829965958c366e6bb8cb"},{"sha":"487a53484efe168b4a734c729a10e6026168c05b","author":{"email":"a602e216eb44a3ac5e096036eeaaef6bb9159677@cenotaph.org","name":"John W. Fail"},"message":"sprockets-rails added","distinct":true,"url":"https://api.github.com/repos/cenotaph/version/commits/487a53484efe168b4a734c729a10e6026168c05b"}]},"public":true,"created_at":"2015-01-01T15:04:33Z"}
,{"id":"2489653131","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684017,"name":"cloudify-cosmo/cloudify-libcloud-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Libcloud plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:33Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653133","type":"PushEvent","actor":{"id":10012013,"login":"TomatoGreen","gravatar_id":"","url":"https://api.github.com/users/TomatoGreen","avatar_url":"https://avatars.githubusercontent.com/u/10012013?"},"repo":{"id":28655687,"name":"TomatoGreen/MyExercises","url":"https://api.github.com/repos/TomatoGreen/MyExercises"},"payload":{"push_id":536864936,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cc9fa509af6479666bb680fcd151555b8d0d46c2","before":"07cc8bdf48f72762b147f5fa07367bd0caeb7600","commits":[{"sha":"cc9fa509af6479666bb680fcd151555b8d0d46c2","author":{"email":"2bdfbd374e55c5412541638e63602038e78f4b51@gmail.com","name":"Zhenzhen.Cui"},"message":"CorrectionOfCodilityProblemSolution","distinct":true,"url":"https://api.github.com/repos/TomatoGreen/MyExercises/commits/cc9fa509af6479666bb680fcd151555b8d0d46c2"}]},"public":true,"created_at":"2015-01-01T15:04:33Z"}
,{"id":"2489653134","type":"PushEvent","actor":{"id":10148309,"login":"mjbalint","gravatar_id":"","url":"https://api.github.com/users/mjbalint","avatar_url":"https://avatars.githubusercontent.com/u/10148309?"},"repo":{"id":28637737,"name":"mjbalint/memory","url":"https://api.github.com/repos/mjbalint/memory"},"payload":{"push_id":536864937,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0fa58ad114b30ddcdf2d7a3729b902ab2fd4af00","before":"2d6477dbdbea2287051b61ca330999c9867da6da","commits":[{"sha":"324275e83c972de844a8ffb5999fa7b3b5f3013f","author":{"email":"bdf3ce29cd7e86d03eb3c27ca4764ed0d8510e4d@gmail.com","name":"Matthew Balint"},"message":"Improve flag selection logic","distinct":true,"url":"https://api.github.com/repos/mjbalint/memory/commits/324275e83c972de844a8ffb5999fa7b3b5f3013f"},{"sha":"0fa58ad114b30ddcdf2d7a3729b902ab2fd4af00","author":{"email":"bdf3ce29cd7e86d03eb3c27ca4764ed0d8510e4d@gmail.com","name":"Matthew Balint"},"message":"Make image lists more object-oriented","distinct":true,"url":"https://api.github.com/repos/mjbalint/memory/commits/0fa58ad114b30ddcdf2d7a3729b902ab2fd4af00"}]},"public":true,"created_at":"2015-01-01T15:04:33Z"}
,{"id":"2489653142","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":22381600,"name":"cloudify-cosmo/yo-ci","url":"https://api.github.com/repos/cloudify-cosmo/yo-ci"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:34Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653147","type":"PushEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":4754156,"name":"shlevy/nixpkgs","url":"https://api.github.com/repos/shlevy/nixpkgs"},"payload":{"push_id":536864942,"size":2,"distinct_size":2,"ref":"refs/heads/nice-fetchgit-names","head":"664d0fbbba2e94bf63372751a029b05dd190ba7b","before":"d533880a8b73090ab3e2b789c19820ff63b635fe","commits":[{"sha":"a8603605aaaf780aa45edd0f16c8c9588455ccf2","author":{"email":"2ad57049e5a4c55c398e1a2fc9bf3e78fb5d7c3a@shealevy.com","name":"Shea Levy"},"message":"fetchgit: give output a nicer name\n\nInstead of git-export, we get the basename of the repo, plus the\nshortrev if the commit-ish is a rev.","distinct":true,"url":"https://api.github.com/repos/shlevy/nixpkgs/commits/a8603605aaaf780aa45edd0f16c8c9588455ccf2"},{"sha":"664d0fbbba2e94bf63372751a029b05dd190ba7b","author":{"email":"2ad57049e5a4c55c398e1a2fc9bf3e78fb5d7c3a@shealevy.com","name":"Shea Levy"},"message":"proot: Don't hard-code git-export","distinct":true,"url":"https://api.github.com/repos/shlevy/nixpkgs/commits/664d0fbbba2e94bf63372751a029b05dd190ba7b"}]},"public":true,"created_at":"2015-01-01T15:04:35Z"}
,{"id":"2489653148","type":"WatchEvent","actor":{"id":6512272,"login":"stevenzhangyu","gravatar_id":"","url":"https://api.github.com/users/stevenzhangyu","avatar_url":"https://avatars.githubusercontent.com/u/6512272?"},"repo":{"id":26655352,"name":"jbarrow/LambdaNet","url":"https://api.github.com/repos/jbarrow/LambdaNet"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:35Z"}
,{"id":"2489653150","type":"PushEvent","actor":{"id":4958081,"login":"andanteyk","gravatar_id":"","url":"https://api.github.com/users/andanteyk","avatar_url":"https://avatars.githubusercontent.com/u/4958081?"},"repo":{"id":23504173,"name":"andanteyk/ElectronicObserver","url":"https://api.github.com/repos/andanteyk/ElectronicObserver"},"payload":{"push_id":536864944,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"4f7a8072f402215bccf504951d3cb64cc3c14138","before":"eedf29992d8d49db2074017806636773fa92307b","commits":[{"sha":"4f7a8072f402215bccf504951d3cb64cc3c14138","author":{"email":"2aabba477567bbfb7254b03347e1bec9288774ba@gmail.com","name":"andanteyk"},"message":"設定システム改装\n\n・仕様変更の可能性あり、本番環境には適用しないこと","distinct":true,"url":"https://api.github.com/repos/andanteyk/ElectronicObserver/commits/4f7a8072f402215bccf504951d3cb64cc3c14138"}]},"public":true,"created_at":"2015-01-01T15:04:35Z"}
,{"id":"2489653153","type":"WatchEvent","actor":{"id":426400,"login":"altmer","gravatar_id":"","url":"https://api.github.com/users/altmer","avatar_url":"https://avatars.githubusercontent.com/u/426400?"},"repo":{"id":9508769,"name":"bouil/angular-google-chart","url":"https://api.github.com/repos/bouil/angular-google-chart"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:36Z"}
,{"id":"2489653154","type":"IssueCommentEvent","actor":{"id":303881,"login":"rhyslbw","gravatar_id":"","url":"https://api.github.com/users/rhyslbw","avatar_url":"https://avatars.githubusercontent.com/u/303881?"},"repo":{"id":11704015,"name":"anticoders/meteor-fake","url":"https://api.github.com/repos/anticoders/meteor-fake"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6","labels_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6/comments","events_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6/events","html_url":"https://github.com/anticoders/meteor-fake/issues/6","id":47752405,"number":6,"title":"Feature request: generate dummy documents for a collection based on aldeed's SimpleSchema","user":{"login":"yanndebelgique","id":2687189,"avatar_url":"https://avatars.githubusercontent.com/u/2687189?v=3","gravatar_id":"","url":"https://api.github.com/users/yanndebelgique","html_url":"https://github.com/yanndebelgique","followers_url":"https://api.github.com/users/yanndebelgique/followers","following_url":"https://api.github.com/users/yanndebelgique/following{/other_user}","gists_url":"https://api.github.com/users/yanndebelgique/gists{/gist_id}","starred_url":"https://api.github.com/users/yanndebelgique/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yanndebelgique/subscriptions","organizations_url":"https://api.github.com/users/yanndebelgique/orgs","repos_url":"https://api.github.com/users/yanndebelgique/repos","events_url":"https://api.github.com/users/yanndebelgique/events{/privacy}","received_events_url":"https://api.github.com/users/yanndebelgique/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-11-04T19:12:16Z","updated_at":"2015-01-01T15:04:35Z","closed_at":null,"body":"You would use it like this : \r\n\r\nFake.docs(SimpleSchema);\r\n\r\nWould spit out a document based on the SimpleSchema object. That would be freakin awesome! :+1: \r\n\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/anticoders/meteor-fake/issues/comments/68488567","html_url":"https://github.com/anticoders/meteor-fake/issues/6#issuecomment-68488567","issue_url":"https://api.github.com/repos/anticoders/meteor-fake/issues/6","id":68488567,"user":{"login":"rhyslbw","id":303881,"avatar_url":"https://avatars.githubusercontent.com/u/303881?v=3","gravatar_id":"","url":"https://api.github.com/users/rhyslbw","html_url":"https://github.com/rhyslbw","followers_url":"https://api.github.com/users/rhyslbw/followers","following_url":"https://api.github.com/users/rhyslbw/following{/other_user}","gists_url":"https://api.github.com/users/rhyslbw/gists{/gist_id}","starred_url":"https://api.github.com/users/rhyslbw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rhyslbw/subscriptions","organizations_url":"https://api.github.com/users/rhyslbw/orgs","repos_url":"https://api.github.com/users/rhyslbw/repos","events_url":"https://api.github.com/users/rhyslbw/events{/privacy}","received_events_url":"https://api.github.com/users/rhyslbw/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:35Z","updated_at":"2015-01-01T15:04:35Z","body":"+1"}},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":6698996,"login":"anticoders","gravatar_id":"","url":"https://api.github.com/orgs/anticoders","avatar_url":"https://avatars.githubusercontent.com/u/6698996?"}}
,{"id":"2489653155","type":"IssueCommentEvent","actor":{"id":201664,"login":"aredo","gravatar_id":"","url":"https://api.github.com/users/aredo","avatar_url":"https://avatars.githubusercontent.com/u/201664?"},"repo":{"id":28348351,"name":"nodeschool/jakarta","url":"https://api.github.com/repos/nodeschool/jakarta"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","labels_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/comments","events_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3/events","html_url":"https://github.com/nodeschool/jakarta/pull/3","id":53213097,"number":3,"title":"repull request at gh-pages branch","user":{"login":"eufat","id":3710666,"avatar_url":"https://avatars.githubusercontent.com/u/3710666?v=3","gravatar_id":"","url":"https://api.github.com/users/eufat","html_url":"https://github.com/eufat","followers_url":"https://api.github.com/users/eufat/followers","following_url":"https://api.github.com/users/eufat/following{/other_user}","gists_url":"https://api.github.com/users/eufat/gists{/gist_id}","starred_url":"https://api.github.com/users/eufat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eufat/subscriptions","organizations_url":"https://api.github.com/users/eufat/orgs","repos_url":"https://api.github.com/users/eufat/repos","events_url":"https://api.github.com/users/eufat/events{/privacy}","received_events_url":"https://api.github.com/users/eufat/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T05:00:23Z","updated_at":"2015-01-01T15:04:36Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/nodeschool/jakarta/pulls/3","html_url":"https://github.com/nodeschool/jakarta/pull/3","diff_url":"https://github.com/nodeschool/jakarta/pull/3.diff","patch_url":"https://github.com/nodeschool/jakarta/pull/3.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/nodeschool/jakarta/issues/comments/68488568","html_url":"https://github.com/nodeschool/jakarta/pull/3#issuecomment-68488568","issue_url":"https://api.github.com/repos/nodeschool/jakarta/issues/3","id":68488568,"user":{"login":"aredo","id":201664,"avatar_url":"https://avatars.githubusercontent.com/u/201664?v=3","gravatar_id":"","url":"https://api.github.com/users/aredo","html_url":"https://github.com/aredo","followers_url":"https://api.github.com/users/aredo/followers","following_url":"https://api.github.com/users/aredo/following{/other_user}","gists_url":"https://api.github.com/users/aredo/gists{/gist_id}","starred_url":"https://api.github.com/users/aredo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aredo/subscriptions","organizations_url":"https://api.github.com/users/aredo/orgs","repos_url":"https://api.github.com/users/aredo/repos","events_url":"https://api.github.com/users/aredo/events{/privacy}","received_events_url":"https://api.github.com/users/aredo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:36Z","updated_at":"2015-01-01T15:04:36Z","body":"we prefer using LESS instead SASS"}},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}}
,{"id":"2489653156","type":"WatchEvent","actor":{"id":1988429,"login":"dirtycoder","gravatar_id":"","url":"https://api.github.com/users/dirtycoder","avatar_url":"https://avatars.githubusercontent.com/u/1988429?"},"repo":{"id":1151051,"name":"django-oscar/django-oscar","url":"https://api.github.com/repos/django-oscar/django-oscar"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":9057806,"login":"django-oscar","gravatar_id":"","url":"https://api.github.com/orgs/django-oscar","avatar_url":"https://avatars.githubusercontent.com/u/9057806?"}}
,{"id":"2489653159","type":"IssuesEvent","actor":{"id":968651,"login":"mustilica","gravatar_id":"","url":"https://api.github.com/users/mustilica","avatar_url":"https://avatars.githubusercontent.com/u/968651?"},"repo":{"id":8545220,"name":"twbs/bootstrap-expo","url":"https://api.github.com/repos/twbs/bootstrap-expo"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442","labels_url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442/labels{/name}","comments_url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442/comments","events_url":"https://api.github.com/repos/twbs/bootstrap-expo/issues/1442/events","html_url":"https://github.com/twbs/bootstrap-expo/issues/1442","id":53221420,"number":1442,"title":"http://kulu.be/ (personal website)","user":{"login":"mustilica","id":968651,"avatar_url":"https://avatars.githubusercontent.com/u/968651?v=3","gravatar_id":"","url":"https://api.github.com/users/mustilica","html_url":"https://github.com/mustilica","followers_url":"https://api.github.com/users/mustilica/followers","following_url":"https://api.github.com/users/mustilica/following{/other_user}","gists_url":"https://api.github.com/users/mustilica/gists{/gist_id}","starred_url":"https://api.github.com/users/mustilica/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mustilica/subscriptions","organizations_url":"https://api.github.com/users/mustilica/orgs","repos_url":"https://api.github.com/users/mustilica/repos","events_url":"https://api.github.com/users/mustilica/events{/privacy}","received_events_url":"https://api.github.com/users/mustilica/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:36Z","updated_at":"2015-01-01T15:04:36Z","closed_at":null,"body":"Hi,\r\n\r\nI'm Mustafa, software developer and MFA candidate.\r\n\r\nhttp://kulu.be/ is my personal website. This site contains my short biography and projects.\r\n\r\nIt is built with several components but bootstrap selected for front-end development.\r\n\r\nThanks in advance,\r\nBest.\r\n"}},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":2918581,"login":"twbs","gravatar_id":"","url":"https://api.github.com/orgs/twbs","avatar_url":"https://avatars.githubusercontent.com/u/2918581?"}}
,{"id":"2489653161","type":"IssueCommentEvent","actor":{"id":43438,"login":"timoxley","gravatar_id":"","url":"https://api.github.com/users/timoxley","avatar_url":"https://avatars.githubusercontent.com/u/43438?"},"repo":{"id":24328359,"name":"timoxley/bulk","url":"https://api.github.com/repos/timoxley/bulk"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/timoxley/bulk/issues/2","labels_url":"https://api.github.com/repos/timoxley/bulk/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/timoxley/bulk/issues/2/comments","events_url":"https://api.github.com/repos/timoxley/bulk/issues/2/events","html_url":"https://github.com/timoxley/bulk/issues/2","id":50473582,"number":2,"title":"Remove -c","user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-11-30T22:37:34Z","updated_at":"2015-01-01T15:04:36Z","closed_at":null,"body":"escaping quotes is crap"},"comment":{"url":"https://api.github.com/repos/timoxley/bulk/issues/comments/68488569","html_url":"https://github.com/timoxley/bulk/issues/2#issuecomment-68488569","issue_url":"https://api.github.com/repos/timoxley/bulk/issues/2","id":68488569,"user":{"login":"timoxley","id":43438,"avatar_url":"https://avatars.githubusercontent.com/u/43438?v=3","gravatar_id":"","url":"https://api.github.com/users/timoxley","html_url":"https://github.com/timoxley","followers_url":"https://api.github.com/users/timoxley/followers","following_url":"https://api.github.com/users/timoxley/following{/other_user}","gists_url":"https://api.github.com/users/timoxley/gists{/gist_id}","starred_url":"https://api.github.com/users/timoxley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timoxley/subscriptions","organizations_url":"https://api.github.com/users/timoxley/orgs","repos_url":"https://api.github.com/users/timoxley/repos","events_url":"https://api.github.com/users/timoxley/events{/privacy}","received_events_url":"https://api.github.com/users/timoxley/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:36Z","updated_at":"2015-01-01T15:04:36Z","body":"and if you need to `&&` in the command, put it in quotes."}},"public":true,"created_at":"2015-01-01T15:04:36Z"}
,{"id":"2489653162","type":"PushEvent","actor":{"id":7263966,"login":"haiwei624","gravatar_id":"","url":"https://api.github.com/users/haiwei624","avatar_url":"https://avatars.githubusercontent.com/u/7263966?"},"repo":{"id":26637937,"name":"Dronevery/MultiwaySwitch","url":"https://api.github.com/repos/Dronevery/MultiwaySwitch"},"payload":{"push_id":536864947,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d0d8e06689155bc54db41423f86b291feb7df25c","before":"9f7f5dabbcc393e6f753044515ce7bf7f22bf6c9","commits":[{"sha":"d0d8e06689155bc54db41423f86b291feb7df25c","author":{"email":"4166b3895ef24650f783a01a179be798d38072d3@163.com","name":"haiwei624"},"message":"delete echo of content of data package.","distinct":true,"url":"https://api.github.com/repos/Dronevery/MultiwaySwitch/commits/d0d8e06689155bc54db41423f86b291feb7df25c"}]},"public":true,"created_at":"2015-01-01T15:04:36Z","org":{"id":9743787,"login":"Dronevery","gravatar_id":"","url":"https://api.github.com/orgs/Dronevery","avatar_url":"https://avatars.githubusercontent.com/u/9743787?"}}
,{"id":"2489653165","type":"WatchEvent","actor":{"id":1833474,"login":"wasabeef","gravatar_id":"","url":"https://api.github.com/users/wasabeef","avatar_url":"https://avatars.githubusercontent.com/u/1833474?"},"repo":{"id":21700699,"name":"vsouza/awesome-ios","url":"https://api.github.com/repos/vsouza/awesome-ios"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:36Z"}
,{"id":"2489653166","type":"PushEvent","actor":{"id":9699715,"login":"D0nBilb0","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","avatar_url":"https://avatars.githubusercontent.com/u/9699715?"},"repo":{"id":26546687,"name":"D0nBilb0/AAL","url":"https://api.github.com/repos/D0nBilb0/AAL"},"payload":{"push_id":536864949,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"781ae88871bb28743559baef32c5d5cc89a4ee72","before":"acd67943e57230138d27dd5cf9c0ee8081bbc122","commits":[{"sha":"781ae88871bb28743559baef32c5d5cc89a4ee72","author":{"email":"82d11ed77cfd6f1b54aa989f745cc29845decc12@gmail.com","name":"D0nBilb0"},"message":"bath tub functionality + radio functionality","distinct":true,"url":"https://api.github.com/repos/D0nBilb0/AAL/commits/781ae88871bb28743559baef32c5d5cc89a4ee72"}]},"public":true,"created_at":"2015-01-01T15:04:36Z"}
,{"id":"2489653167","type":"PushEvent","actor":{"id":6587210,"login":"EmilAleksandrov","gravatar_id":"","url":"https://api.github.com/users/EmilAleksandrov","avatar_url":"https://avatars.githubusercontent.com/u/6587210?"},"repo":{"id":28593309,"name":"EmilAleksandrov/PracticalProject-OnlineAds","url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds"},"payload":{"push_id":536864950,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6429f884d5f33288af857e36937bbe66e2a3a5d","before":"f7d079bb8d48a9905c1f5421805d677acc669f71","commits":[{"sha":"b6429f884d5f33288af857e36937bbe66e2a3a5d","author":{"email":"5a18d12f372cb890f7a3930223687493602f3246@gmail.com","name":"Aleksandrov"},"message":"set glyphicons icon","distinct":true,"url":"https://api.github.com/repos/EmilAleksandrov/PracticalProject-OnlineAds/commits/b6429f884d5f33288af857e36937bbe66e2a3a5d"}]},"public":true,"created_at":"2015-01-01T15:04:37Z"}
,{"id":"2489653168","type":"PushEvent","actor":{"id":10072088,"login":"DevKwan","gravatar_id":"","url":"https://api.github.com/users/DevKwan","avatar_url":"https://avatars.githubusercontent.com/u/10072088?"},"repo":{"id":28293846,"name":"ZhangboTeam/Adinnet.MQE","url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE"},"payload":{"push_id":536864951,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"189e1138ad937214bca30379df75d5f960ccdc38","before":"3907ebfae6676ca8c9ac3764bd2c2865ee30a29d","commits":[{"sha":"160b44d664cd4bb091ff6856e9f248e06b0c77b2","author":{"email":"fbe9b52ff527055c61e8ee4389e9ea8bc806d546@hotmail.com","name":"关可今"},"message":"PhaseInSystemUser实现并与Phase交互成功","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/160b44d664cd4bb091ff6856e9f248e06b0c77b2"},{"sha":"189e1138ad937214bca30379df75d5f960ccdc38","author":{"email":"fbe9b52ff527055c61e8ee4389e9ea8bc806d546@hotmail.com","name":"关可今"},"message":"Merge branch 'master' of https://github.com/ZhangboTeam/Adinnet.MQE","distinct":true,"url":"https://api.github.com/repos/ZhangboTeam/Adinnet.MQE/commits/189e1138ad937214bca30379df75d5f960ccdc38"}]},"public":true,"created_at":"2015-01-01T15:04:37Z","org":{"id":10057771,"login":"ZhangboTeam","gravatar_id":"","url":"https://api.github.com/orgs/ZhangboTeam","avatar_url":"https://avatars.githubusercontent.com/u/10057771?"}}
,{"id":"2489653169","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":22381600,"name":"cloudify-cosmo/yo-ci","url":"https://api.github.com/repos/cloudify-cosmo/yo-ci"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A python travis client built for integration","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:37Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653170","type":"PushEvent","actor":{"id":8079942,"login":"avnash","gravatar_id":"","url":"https://api.github.com/users/avnash","avatar_url":"https://avatars.githubusercontent.com/u/8079942?"},"repo":{"id":28472487,"name":"avnash/students","url":"https://api.github.com/repos/avnash/students"},"payload":{"push_id":536864952,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3e5da7117e2f65a45f58267d8f52f8c92001d686","before":"1413a900705352b473d60f19945e6ca41284b095","commits":[{"sha":"3e5da7117e2f65a45f58267d8f52f8c92001d686","author":{"email":"be2ffd277d2a8b60f94b8da1bec68882a65300fe@gmail.com","name":"avnash"},"message":"login error msg","distinct":true,"url":"https://api.github.com/repos/avnash/students/commits/3e5da7117e2f65a45f58267d8f52f8c92001d686"}]},"public":true,"created_at":"2015-01-01T15:04:37Z"}
,{"id":"2489653172","type":"CreateEvent","actor":{"id":282825,"login":"DragonBe","gravatar_id":"","url":"https://api.github.com/users/DragonBe","avatar_url":"https://avatars.githubusercontent.com/u/282825?"},"repo":{"id":28687507,"name":"DragonBe/SpeckCatalog","url":"https://api.github.com/repos/DragonBe/SpeckCatalog"},"payload":{"ref":"issue-117","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:38Z"}
,{"id":"2489653173","type":"PushEvent","actor":{"id":3876790,"login":"jonsger","gravatar_id":"","url":"https://api.github.com/users/jonsger","avatar_url":"https://avatars.githubusercontent.com/u/3876790?"},"repo":{"id":27735697,"name":"jonsger/diaspora","url":"https://api.github.com/repos/jonsger/diaspora"},"payload":{"push_id":536864955,"size":1,"distinct_size":1,"ref":"refs/heads/invitation","head":"6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922","before":"0667bb2949d2bc2589d6a00319bed3a92939baad","commits":[{"sha":"6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922","author":{"email":"a32f459e873a851c669a85c08986469c13c86cff@web.de","name":"jonsger"},"message":"correct I18n","distinct":true,"url":"https://api.github.com/repos/jonsger/diaspora/commits/6a9ecd2b34c6e4188e433fb2a4d21a2aa2d27922"}]},"public":true,"created_at":"2015-01-01T15:04:38Z"}
,{"id":"2489653177","type":"PushEvent","actor":{"id":873670,"login":"ErshKUS","gravatar_id":"","url":"https://api.github.com/users/ErshKUS","avatar_url":"https://avatars.githubusercontent.com/u/873670?"},"repo":{"id":2147969,"name":"ErshKUS/test","url":"https://api.github.com/repos/ErshKUS/test"},"payload":{"push_id":536864958,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a50bf27ad665aaba89b20175893948e85ec8338b","before":"0e0c2c2d74fcd5976273d81d5d0db46ef741c8c7","commits":[{"sha":"a50bf27ad665aaba89b20175893948e85ec8338b","author":{"email":"759752891c2da4a45a38d25a390ae29ab3869cac@gmail.com","name":"ErshKUS"},"message":"второе локально","distinct":true,"url":"https://api.github.com/repos/ErshKUS/test/commits/a50bf27ad665aaba89b20175893948e85ec8338b"}]},"public":true,"created_at":"2015-01-01T15:04:38Z"}
,{"id":"2489653181","type":"PushEvent","actor":{"id":9962824,"login":"sabasingh","gravatar_id":"","url":"https://api.github.com/users/sabasingh","avatar_url":"https://avatars.githubusercontent.com/u/9962824?"},"repo":{"id":27308146,"name":"sabasingh/sabasingh.github.io","url":"https://api.github.com/repos/sabasingh/sabasingh.github.io"},"payload":{"push_id":536864960,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"88b5b480d282cb6fa84787d76030d5e6286184a3","before":"eb74b37a3eef01452cb4d344e99c3f5ead3fe132","commits":[{"sha":"d9bc7c8239fc87f4e5e05aa52fd97615b01e6c6e","author":{"email":"d1658824968a4a6237bfcfe6370497b055c0db1f","name":"unknown"},"message":"slideshow and typos","distinct":true,"url":"https://api.github.com/repos/sabasingh/sabasingh.github.io/commits/d9bc7c8239fc87f4e5e05aa52fd97615b01e6c6e"},{"sha":"88b5b480d282cb6fa84787d76030d5e6286184a3","author":{"email":"d1658824968a4a6237bfcfe6370497b055c0db1f","name":"unknown"},"message":"typos","distinct":true,"url":"https://api.github.com/repos/sabasingh/sabasingh.github.io/commits/88b5b480d282cb6fa84787d76030d5e6286184a3"}]},"public":true,"created_at":"2015-01-01T15:04:38Z"}
,{"id":"2489653183","type":"WatchEvent","actor":{"id":71495,"login":"tokenrove","gravatar_id":"","url":"https://api.github.com/users/tokenrove","avatar_url":"https://avatars.githubusercontent.com/u/71495?"},"repo":{"id":7970180,"name":"graydon/bors","url":"https://api.github.com/repos/graydon/bors"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:39Z"}
,{"id":"2489653184","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23067055,"name":"cloudify-cosmo/cloudify-diamond-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:39Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653192","type":"PullRequestEvent","actor":{"id":2664774,"login":"wheam","gravatar_id":"","url":"https://api.github.com/users/wheam","avatar_url":"https://avatars.githubusercontent.com/u/2664774?"},"repo":{"id":12103692,"name":"fangj/WebViewJavascriptBridge","url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1","id":26743803,"html_url":"https://github.com/fangj/WebViewJavascriptBridge/pull/1","diff_url":"https://github.com/fangj/WebViewJavascriptBridge/pull/1.diff","patch_url":"https://github.com/fangj/WebViewJavascriptBridge/pull/1.patch","issue_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1","number":1,"state":"open","locked":false,"title":"call Handler.handler() in ui thread and double escape messageJSON to jav...","user":{"login":"wheam","id":2664774,"avatar_url":"https://avatars.githubusercontent.com/u/2664774?v=3","gravatar_id":"","url":"https://api.github.com/users/wheam","html_url":"https://github.com/wheam","followers_url":"https://api.github.com/users/wheam/followers","following_url":"https://api.github.com/users/wheam/following{/other_user}","gists_url":"https://api.github.com/users/wheam/gists{/gist_id}","starred_url":"https://api.github.com/users/wheam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wheam/subscriptions","organizations_url":"https://api.github.com/users/wheam/orgs","repos_url":"https://api.github.com/users/wheam/repos","events_url":"https://api.github.com/users/wheam/events{/privacy}","received_events_url":"https://api.github.com/users/wheam/received_events","type":"User","site_admin":false},"body":"...ascript","created_at":"2015-01-01T15:04:40Z","updated_at":"2015-01-01T15:04:40Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/commits","review_comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/comments","review_comment_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/comments/{number}","comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1/comments","statuses_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/51e6abf3bbf9a1be7aae5ff37883195e7a07c434","head":{"label":"wheam:master","ref":"master","sha":"51e6abf3bbf9a1be7aae5ff37883195e7a07c434","user":{"login":"wheam","id":2664774,"avatar_url":"https://avatars.githubusercontent.com/u/2664774?v=3","gravatar_id":"","url":"https://api.github.com/users/wheam","html_url":"https://github.com/wheam","followers_url":"https://api.github.com/users/wheam/followers","following_url":"https://api.github.com/users/wheam/following{/other_user}","gists_url":"https://api.github.com/users/wheam/gists{/gist_id}","starred_url":"https://api.github.com/users/wheam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wheam/subscriptions","organizations_url":"https://api.github.com/users/wheam/orgs","repos_url":"https://api.github.com/users/wheam/repos","events_url":"https://api.github.com/users/wheam/events{/privacy}","received_events_url":"https://api.github.com/users/wheam/received_events","type":"User","site_admin":false},"repo":{"id":28687343,"name":"WebViewJavascriptBridge","full_name":"wheam/WebViewJavascriptBridge","owner":{"login":"wheam","id":2664774,"avatar_url":"https://avatars.githubusercontent.com/u/2664774?v=3","gravatar_id":"","url":"https://api.github.com/users/wheam","html_url":"https://github.com/wheam","followers_url":"https://api.github.com/users/wheam/followers","following_url":"https://api.github.com/users/wheam/following{/other_user}","gists_url":"https://api.github.com/users/wheam/gists{/gist_id}","starred_url":"https://api.github.com/users/wheam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wheam/subscriptions","organizations_url":"https://api.github.com/users/wheam/orgs","repos_url":"https://api.github.com/users/wheam/repos","events_url":"https://api.github.com/users/wheam/events{/privacy}","received_events_url":"https://api.github.com/users/wheam/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wheam/WebViewJavascriptBridge","description":"An cross-platform bridge for sending messages between Obj-C/Java/Javascript and JavaScript in UIWebViews/WebViews","fork":true,"url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/wheam/WebViewJavascriptBridge/releases{/id}","created_at":"2015-01-01T13:49:37Z","updated_at":"2015-01-01T14:58:30Z","pushed_at":"2015-01-01T14:58:30Z","git_url":"git://github.com/wheam/WebViewJavascriptBridge.git","ssh_url":"git@github.com:wheam/WebViewJavascriptBridge.git","clone_url":"https://github.com/wheam/WebViewJavascriptBridge.git","svn_url":"https://github.com/wheam/WebViewJavascriptBridge","homepage":"","size":763,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"fangj:master","ref":"master","sha":"4816d6a8100dc08e25b7d448c851174152eff633","user":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"repo":{"id":12103692,"name":"WebViewJavascriptBridge","full_name":"fangj/WebViewJavascriptBridge","owner":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/fangj/WebViewJavascriptBridge","description":"An cross-platform bridge for sending messages between Obj-C/Java/Javascript and JavaScript in UIWebViews/WebViews","fork":true,"url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/releases{/id}","created_at":"2013-08-14T08:19:04Z","updated_at":"2014-12-23T15:58:50Z","pushed_at":"2014-03-27T09:05:49Z","git_url":"git://github.com/fangj/WebViewJavascriptBridge.git","ssh_url":"git@github.com:fangj/WebViewJavascriptBridge.git","clone_url":"https://github.com/fangj/WebViewJavascriptBridge.git","svn_url":"https://github.com/fangj/WebViewJavascriptBridge","homepage":"","size":763,"stargazers_count":11,"watchers_count":11,"language":"Objective-C","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":11,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1"},"html":{"href":"https://github.com/fangj/WebViewJavascriptBridge/pull/1"},"issue":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1"},"comments":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/51e6abf3bbf9a1be7aae5ff37883195e7a07c434"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":95,"deletions":15,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:04:42Z"}
,{"id":"2489653193","type":"PushEvent","actor":{"id":2870672,"login":"MrWitt","gravatar_id":"","url":"https://api.github.com/users/MrWitt","avatar_url":"https://avatars.githubusercontent.com/u/2870672?"},"repo":{"id":28688146,"name":"MrWitt/floatingCar","url":"https://api.github.com/repos/MrWitt/floatingCar"},"payload":{"push_id":536864965,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6b83c69ec6024bb228b571d5db14e44bc8bccd02","before":"a9c30f833de2421befdccfbb10463cfaea4a94e1","commits":[{"sha":"6b83c69ec6024bb228b571d5db14e44bc8bccd02","author":{"email":"3a0dec2eb820221561cf0f0bb7685890bb21d66c@uni-muenster.de","name":"Wittkopp"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/MrWitt/floatingCar/commits/6b83c69ec6024bb228b571d5db14e44bc8bccd02"}]},"public":true,"created_at":"2015-01-01T15:04:42Z"}
,{"id":"2489653194","type":"IssueCommentEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":4542716,"name":"NixOS/nixpkgs","url":"https://api.github.com/repos/NixOS/nixpkgs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","labels_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/labels{/name}","comments_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/comments","events_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/events","html_url":"https://github.com/NixOS/nixpkgs/pull/5521","id":53219802,"number":5521,"title":"fetchgit: give output a nicer name","user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":6,"created_at":"2015-01-01T13:35:14Z","updated_at":"2015-01-01T15:04:41Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/NixOS/nixpkgs/pulls/5521","html_url":"https://github.com/NixOS/nixpkgs/pull/5521","diff_url":"https://github.com/NixOS/nixpkgs/pull/5521.diff","patch_url":"https://github.com/NixOS/nixpkgs/pull/5521.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/NixOS/nixpkgs/issues/comments/68488570","html_url":"https://github.com/NixOS/nixpkgs/pull/5521#issuecomment-68488570","issue_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","id":68488570,"user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:41Z","updated_at":"2015-01-01T15:04:41Z","body":"rebased"}},"public":true,"created_at":"2015-01-01T15:04:42Z","org":{"id":487568,"login":"NixOS","gravatar_id":"","url":"https://api.github.com/orgs/NixOS","avatar_url":"https://avatars.githubusercontent.com/u/487568?"}}
,{"id":"2489653195","type":"IssueCommentEvent","actor":{"id":5040118,"login":"newnon","gravatar_id":"","url":"https://api.github.com/users/newnon","avatar_url":"https://avatars.githubusercontent.com/u/5040118?"},"repo":{"id":1093228,"name":"cocos2d/cocos2d-x","url":"https://api.github.com/repos/cocos2d/cocos2d-x"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489","labels_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489/labels{/name}","comments_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489/comments","events_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489/events","html_url":"https://github.com/cocos2d/cocos2d-x/pull/9489","id":51884196,"number":9489,"title":"Clang static analyzer crash fix","user":{"login":"newnon","id":5040118,"avatar_url":"https://avatars.githubusercontent.com/u/5040118?v=3","gravatar_id":"","url":"https://api.github.com/users/newnon","html_url":"https://github.com/newnon","followers_url":"https://api.github.com/users/newnon/followers","following_url":"https://api.github.com/users/newnon/following{/other_user}","gists_url":"https://api.github.com/users/newnon/gists{/gist_id}","starred_url":"https://api.github.com/users/newnon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/newnon/subscriptions","organizations_url":"https://api.github.com/users/newnon/orgs","repos_url":"https://api.github.com/users/newnon/repos","events_url":"https://api.github.com/users/newnon/events{/privacy}","received_events_url":"https://api.github.com/users/newnon/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":7,"created_at":"2014-12-13T10:53:26Z","updated_at":"2015-01-01T15:04:41Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/cocos2d/cocos2d-x/pulls/9489","html_url":"https://github.com/cocos2d/cocos2d-x/pull/9489","diff_url":"https://github.com/cocos2d/cocos2d-x/pull/9489.diff","patch_url":"https://github.com/cocos2d/cocos2d-x/pull/9489.patch"},"body":"Clang static analyzer crash on this two lines\r\njust ignore it in analyzer"},"comment":{"url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/comments/68488571","html_url":"https://github.com/cocos2d/cocos2d-x/pull/9489#issuecomment-68488571","issue_url":"https://api.github.com/repos/cocos2d/cocos2d-x/issues/9489","id":68488571,"user":{"login":"newnon","id":5040118,"avatar_url":"https://avatars.githubusercontent.com/u/5040118?v=3","gravatar_id":"","url":"https://api.github.com/users/newnon","html_url":"https://github.com/newnon","followers_url":"https://api.github.com/users/newnon/followers","following_url":"https://api.github.com/users/newnon/following{/other_user}","gists_url":"https://api.github.com/users/newnon/gists{/gist_id}","starred_url":"https://api.github.com/users/newnon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/newnon/subscriptions","organizations_url":"https://api.github.com/users/newnon/orgs","repos_url":"https://api.github.com/users/newnon/repos","events_url":"https://api.github.com/users/newnon/events{/privacy}","received_events_url":"https://api.github.com/users/newnon/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:41Z","updated_at":"2015-01-01T15:04:41Z","body":"No i have absolutely no idea why, but i think it's a clang bug. But the simplest way to fix it just add this few lines."}},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":234324,"login":"cocos2d","gravatar_id":"","url":"https://api.github.com/orgs/cocos2d","avatar_url":"https://avatars.githubusercontent.com/u/234324?"}}
,{"id":"2489653199","type":"ForkEvent","actor":{"id":6512272,"login":"stevenzhangyu","gravatar_id":"","url":"https://api.github.com/users/stevenzhangyu","avatar_url":"https://avatars.githubusercontent.com/u/6512272?"},"repo":{"id":26655352,"name":"jbarrow/LambdaNet","url":"https://api.github.com/repos/jbarrow/LambdaNet"},"payload":{"forkee":{"id":28688685,"name":"LambdaNet","full_name":"stevenzhangyu/LambdaNet","owner":{"login":"stevenzhangyu","id":6512272,"avatar_url":"https://avatars.githubusercontent.com/u/6512272?v=3","gravatar_id":"","url":"https://api.github.com/users/stevenzhangyu","html_url":"https://github.com/stevenzhangyu","followers_url":"https://api.github.com/users/stevenzhangyu/followers","following_url":"https://api.github.com/users/stevenzhangyu/following{/other_user}","gists_url":"https://api.github.com/users/stevenzhangyu/gists{/gist_id}","starred_url":"https://api.github.com/users/stevenzhangyu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevenzhangyu/subscriptions","organizations_url":"https://api.github.com/users/stevenzhangyu/orgs","repos_url":"https://api.github.com/users/stevenzhangyu/repos","events_url":"https://api.github.com/users/stevenzhangyu/events{/privacy}","received_events_url":"https://api.github.com/users/stevenzhangyu/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/stevenzhangyu/LambdaNet","description":"Purely functional artificial neural network library implemented in Haskell.","fork":true,"url":"https://api.github.com/repos/stevenzhangyu/LambdaNet","forks_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/forks","keys_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/teams","hooks_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/hooks","issue_events_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/issues/events{/number}","events_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/events","assignees_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/assignees{/user}","branches_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/branches{/branch}","tags_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/tags","blobs_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/refs{/sha}","trees_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/statuses/{sha}","languages_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/languages","stargazers_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/stargazers","contributors_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/contributors","subscribers_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/subscribers","subscription_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/subscription","commits_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/commits{/sha}","git_commits_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/git/commits{/sha}","comments_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/comments{/number}","issue_comment_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/issues/comments/{number}","contents_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/contents/{+path}","compare_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/merges","archive_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/downloads","issues_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/issues{/number}","pulls_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/pulls{/number}","milestones_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/milestones{/number}","notifications_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/labels{/name}","releases_url":"https://api.github.com/repos/stevenzhangyu/LambdaNet/releases{/id}","created_at":"2015-01-01T15:04:41Z","updated_at":"2015-01-01T15:04:42Z","pushed_at":"2014-12-31T20:01:39Z","git_url":"git://github.com/stevenzhangyu/LambdaNet.git","ssh_url":"git@github.com:stevenzhangyu/LambdaNet.git","clone_url":"https://github.com/stevenzhangyu/LambdaNet.git","svn_url":"https://github.com/stevenzhangyu/LambdaNet","homepage":"","size":1194,"stargazers_count":0,"watchers_count":0,"language":"Haskell","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653200","type":"WatchEvent","actor":{"id":5717770,"login":"phyng","gravatar_id":"","url":"https://api.github.com/users/phyng","avatar_url":"https://avatars.githubusercontent.com/u/5717770?"},"repo":{"id":16545155,"name":"bordaigorl/sublime-evernote","url":"https://api.github.com/repos/bordaigorl/sublime-evernote"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653203","type":"PushEvent","actor":{"id":1264698,"login":"sorra","gravatar_id":"","url":"https://api.github.com/users/sorra","avatar_url":"https://avatars.githubusercontent.com/u/1264698?"},"repo":{"id":28679728,"name":"sorra/keylity","url":"https://api.github.com/repos/sorra/keylity"},"payload":{"push_id":536864968,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5e27ea3b100bd1f9bd763b86cf399a6abf9e00c5","before":"e33b7a6116f6900583ecf82f1b134b90352ea8a0","commits":[{"sha":"5e27ea3b100bd1f9bd763b86cf399a6abf9e00c5","author":{"email":"2a0b702de5ce7c68fd37dd97e6ce0521dc3d2a76@163.com","name":"Dongqing Hu"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/sorra/keylity/commits/5e27ea3b100bd1f9bd763b86cf399a6abf9e00c5"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653202","type":"PushEvent","actor":{"id":10341769,"login":"lyftclothing","gravatar_id":"","url":"https://api.github.com/users/lyftclothing","avatar_url":"https://avatars.githubusercontent.com/u/10341769?"},"repo":{"id":28600442,"name":"lyftclothing/lyftclothing.github.io","url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io"},"payload":{"push_id":536864967,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fe11207c60e9f0762c51e41f0c305a75d8b3523","before":"59fdcb1091825ece541d97bf483e6cb23263b371","commits":[{"sha":"6fe11207c60e9f0762c51e41f0c305a75d8b3523","author":{"email":"aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@lyftclothing.com","name":"Jacob Gibbs"},"message":"Site updated at 2015-01-01 15:04:31 UTC","distinct":true,"url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io/commits/6fe11207c60e9f0762c51e41f0c305a75d8b3523"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653209","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":23067055,"name":"cloudify-cosmo/cloudify-diamond-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-diamond-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify diamond monitoring plugin","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653210","type":"PushEvent","actor":{"id":4339651,"login":"MJKWoolnough","gravatar_id":"","url":"https://api.github.com/users/MJKWoolnough","avatar_url":"https://avatars.githubusercontent.com/u/4339651?"},"repo":{"id":26171241,"name":"MJKWoolnough/academy-chauffeurs","url":"https://api.github.com/repos/MJKWoolnough/academy-chauffeurs"},"payload":{"push_id":536864969,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bc2e624d3af1637ed8f14c4fff6467d90ed3fa42","before":"f4b508f63db5de46f6da060fd6489b207e493047","commits":[{"sha":"bc2e624d3af1637ed8f14c4fff6467d90ed3fa42","author":{"email":"b6c6ef2ac07ef6320c51ba6e6ced359ecd6a371a@gmail.com","name":"Michael Woolnough"},"message":"Added missing return","distinct":true,"url":"https://api.github.com/repos/MJKWoolnough/academy-chauffeurs/commits/bc2e624d3af1637ed8f14c4fff6467d90ed3fa42"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653211","type":"PushEvent","actor":{"id":1908185,"login":"kaiwangchen","gravatar_id":"","url":"https://api.github.com/users/kaiwangchen","avatar_url":"https://avatars.githubusercontent.com/u/1908185?"},"repo":{"id":28043477,"name":"kaiwangchen/learn_python_the_hard_way_3rd_edition","url":"https://api.github.com/repos/kaiwangchen/learn_python_the_hard_way_3rd_edition"},"payload":{"push_id":536864970,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"cd904bfdd7e773ab764be48c6174c0e01c4d0862","before":"e88a0141a9dadbcad303d2518867971658e0a452","commits":[{"sha":"e37b24c0143ddfec92ebaf9196f77c5d5b7c88ec","author":{"email":"916a4a5b909120b67e6b09a86dd6dee26770808f@gmail.com","name":"Chen Kaiwang"},"message":"ex 33 ~ 40","distinct":true,"url":"https://api.github.com/repos/kaiwangchen/learn_python_the_hard_way_3rd_edition/commits/e37b24c0143ddfec92ebaf9196f77c5d5b7c88ec"},{"sha":"cd904bfdd7e773ab764be48c6174c0e01c4d0862","author":{"email":"916a4a5b909120b67e6b09a86dd6dee26770808f@gmail.com","name":"Chen Kaiwang"},"message":"ex 41 ~ 49","distinct":true,"url":"https://api.github.com/repos/kaiwangchen/learn_python_the_hard_way_3rd_edition/commits/cd904bfdd7e773ab764be48c6174c0e01c4d0862"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653212","type":"WatchEvent","actor":{"id":3904348,"login":"floscher","gravatar_id":"","url":"https://api.github.com/users/floscher","avatar_url":"https://avatars.githubusercontent.com/u/3904348?"},"repo":{"id":1725199,"name":"github/linguist","url":"https://api.github.com/repos/github/linguist"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":9919,"login":"github","gravatar_id":"","url":"https://api.github.com/orgs/github","avatar_url":"https://avatars.githubusercontent.com/u/9919?"}}
,{"id":"2489653214","type":"PushEvent","actor":{"id":1344072,"login":"frasator","gravatar_id":"","url":"https://api.github.com/users/frasator","avatar_url":"https://avatars.githubusercontent.com/u/1344072?"},"repo":{"id":7691091,"name":"opencb/cell-maps","url":"https://api.github.com/repos/opencb/cell-maps"},"payload":{"push_id":536864971,"size":1,"distinct_size":1,"ref":"refs/heads/feature/opencga-0.3","head":"f60392a25e22e179e6828992438cf6ed701bf366","before":"bd11b0c0e81308514b001c337ff6f815b2dc382b","commits":[{"sha":"f60392a25e22e179e6828992438cf6ed701bf366","author":{"email":"268735c099a7f309af1c2b36bb84632ef0b691e7@gmail.com","name":"frasator"},"message":"added browser check alert","distinct":true,"url":"https://api.github.com/repos/opencb/cell-maps/commits/f60392a25e22e179e6828992438cf6ed701bf366"}]},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":5293871,"login":"opencb","gravatar_id":"","url":"https://api.github.com/orgs/opencb","avatar_url":"https://avatars.githubusercontent.com/u/5293871?"}}
,{"id":"2489653215","type":"PushEvent","actor":{"id":76243,"login":"GerryG","gravatar_id":"","url":"https://api.github.com/users/GerryG","avatar_url":"https://avatars.githubusercontent.com/u/76243?"},"repo":{"id":182039,"name":"GerryG/wagn","url":"https://api.github.com/repos/GerryG/wagn"},"payload":{"push_id":536864972,"size":1,"distinct_size":1,"ref":"refs/heads/card-gem","head":"21d62ed232a1b54f23ea7f916975a62be0b324fd","before":"02c617f30d2c7773f7137d5464bc25e2022cfd6f","commits":[{"sha":"21d62ed232a1b54f23ea7f916975a62be0b324fd","author":{"email":"8cbdf1d1e39600f8ac48b4560f249f08647aaa47@tribune.com","name":"Gerry Gleason"},"message":"Introduce module Cardio, loading/config working pretty nicely now.","distinct":true,"url":"https://api.github.com/repos/GerryG/wagn/commits/21d62ed232a1b54f23ea7f916975a62be0b324fd"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653216","type":"PushEvent","actor":{"id":3815749,"login":"ofsole","gravatar_id":"","url":"https://api.github.com/users/ofsole","avatar_url":"https://avatars.githubusercontent.com/u/3815749?"},"repo":{"id":23965142,"name":"ofsole/dokuwiki","url":"https://api.github.com/repos/ofsole/dokuwiki"},"payload":{"push_id":536864973,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c8bfb06b302b5bb7bc2ae08ecc0d8ff08b82a417","before":"b561a78dbb572d6e1fa312032edebc35feb3e0a2","commits":[{"sha":"c8bfb06b302b5bb7bc2ae08ecc0d8ff08b82a417","author":{"email":"8ffb39dcdf151712915ecd300127e20b26b9ae1e@ericsson.com","name":"elvis.cai"},"message":"update Thu Jan  1 23:00:01 CST 2015","distinct":true,"url":"https://api.github.com/repos/ofsole/dokuwiki/commits/c8bfb06b302b5bb7bc2ae08ecc0d8ff08b82a417"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653217","type":"PushEvent","actor":{"id":218546,"login":"lebedov","gravatar_id":"","url":"https://api.github.com/users/lebedov","avatar_url":"https://avatars.githubusercontent.com/u/218546?"},"repo":{"id":3631164,"name":"lebedov/chooser","url":"https://api.github.com/repos/lebedov/chooser"},"payload":{"push_id":536864974,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"5f861ba7c438f7b62a042be49d3ebec7890956be","before":"76e8bea9782cf091b2bd57e90c4d3bb68ac9ba69","commits":[{"sha":"d4101877bb3337121ff747598063709d3cbe0e30","author":{"email":"ca5ec77d6f2bd7cd889ddc1f7121a5e11d4c64f6@columbia.edu","name":"Lev Givon"},"message":"Add QupZilla, improve docs, update ez_setup, update copyright date.","distinct":true,"url":"https://api.github.com/repos/lebedov/chooser/commits/d4101877bb3337121ff747598063709d3cbe0e30"},{"sha":"5f861ba7c438f7b62a042be49d3ebec7890956be","author":{"email":"ca5ec77d6f2bd7cd889ddc1f7121a5e11d4c64f6@columbia.edu","name":"Lev Givon"},"message":"Add customized sdist command to automatically build man page when building sdist.","distinct":true,"url":"https://api.github.com/repos/lebedov/chooser/commits/5f861ba7c438f7b62a042be49d3ebec7890956be"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653220","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20876193,"name":"cloudify-cosmo/cloudify-fabric-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:43Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653223","type":"PushEvent","actor":{"id":4601085,"login":"xsmart","gravatar_id":"","url":"https://api.github.com/users/xsmart","avatar_url":"https://avatars.githubusercontent.com/u/4601085?"},"repo":{"id":27301995,"name":"xsmart/ve","url":"https://api.github.com/repos/xsmart/ve"},"payload":{"push_id":536864979,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"c3ddf8946020002df518ad2c4b3a42005a76b651","before":"3d781bff0592d7d8dbfb0db5bffdc271a63ba74a","commits":[{"sha":"ed2d61cd65c508154ee67ae38daef63baf6f7955","author":{"email":"a08991db6e0eee880260138e16f052bca1959810@163.com","name":"xsmart"},"message":"add hdfs","distinct":true,"url":"https://api.github.com/repos/xsmart/ve/commits/ed2d61cd65c508154ee67ae38daef63baf6f7955"},{"sha":"3aa35f54aba74396fdf747f6dd8f189895f7804e","author":{"email":"a08991db6e0eee880260138e16f052bca1959810@163.com","name":"xsmart"},"message":"add hdfs","distinct":true,"url":"https://api.github.com/repos/xsmart/ve/commits/3aa35f54aba74396fdf747f6dd8f189895f7804e"},{"sha":"c3ddf8946020002df518ad2c4b3a42005a76b651","author":{"email":"a08991db6e0eee880260138e16f052bca1959810@163.com","name":"xsmart"},"message":"add hdfs vdb","distinct":true,"url":"https://api.github.com/repos/xsmart/ve/commits/c3ddf8946020002df518ad2c4b3a42005a76b651"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653228","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536864984,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eb4ff5f19c6fe012784ae06b538c790a4706acdb","before":"86585d04083d80f41d730dcd8bf34b042097cbd8","commits":[{"sha":"eb4ff5f19c6fe012784ae06b538c790a4706acdb","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"fix","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/eb4ff5f19c6fe012784ae06b538c790a4706acdb"}]},"public":true,"created_at":"2015-01-01T15:04:43Z"}
,{"id":"2489653234","type":"PushEvent","actor":{"id":853977,"login":"yous","gravatar_id":"","url":"https://api.github.com/users/yous","avatar_url":"https://avatars.githubusercontent.com/u/853977?"},"repo":{"id":25107404,"name":"yous/sawarineko","url":"https://api.github.com/repos/yous/sawarineko"},"payload":{"push_id":536864988,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"676f8a50d565a3dc2b77f2e5714e5bdcf78f5493","before":"2b03e5ddf97d8e067aacaa93705479194f8c5e29","commits":[{"sha":"9d9a3f1008806d7baf10ef467af1bc376ce22174","author":{"email":"e81a3f44f53ea94642bc84ba592fbe580ab2b0d7@gmail.com","name":"ChaYoung You"},"message":"Support Ruby 2.2","distinct":true,"url":"https://api.github.com/repos/yous/sawarineko/commits/9d9a3f1008806d7baf10ef467af1bc376ce22174"},{"sha":"676f8a50d565a3dc2b77f2e5714e5bdcf78f5493","author":{"email":"e81a3f44f53ea94642bc84ba592fbe580ab2b0d7@gmail.com","name":"ChaYoung You"},"message":"Bump RuboCop to 0.28.0","distinct":true,"url":"https://api.github.com/repos/yous/sawarineko/commits/676f8a50d565a3dc2b77f2e5714e5bdcf78f5493"}]},"public":true,"created_at":"2015-01-01T15:04:44Z"}
,{"id":"2489653237","type":"PushEvent","actor":{"id":640179,"login":"jgmalcolm","gravatar_id":"","url":"https://api.github.com/users/jgmalcolm","avatar_url":"https://avatars.githubusercontent.com/u/640179?"},"repo":{"id":22471076,"name":"jgmalcolm/erikreinertsen.github.io","url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io"},"payload":{"push_id":536864990,"size":58,"distinct_size":58,"ref":"refs/heads/master","head":"40dd4043b399e102ac12d8f5ffcacf19c22b96df","before":"281ae39a9e04da4fff9b49f5b35989642c7a8da3","commits":[{"sha":"8e3eb94925851ebac0f3aead8bb0e120671501b1","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"new draft","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/8e3eb94925851ebac0f3aead8bb0e120671501b1"},{"sha":"c457e1810b226e314e44a88a053605127c9f57d8","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"adsf","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/c457e1810b226e314e44a88a053605127c9f57d8"},{"sha":"ace39771fcd51ac871dc9fc908eb66646602ca9b","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/ace39771fcd51ac871dc9fc908eb66646602ca9b"},{"sha":"ddf80e42a703ef609174b0b95ba55f0b38b1a530","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"added tufts","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/ddf80e42a703ef609174b0b95ba55f0b38b1a530"},{"sha":"c964c898ea90bad0f93fde490074ee93cc7182f4","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"new pic","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/c964c898ea90bad0f93fde490074ee93cc7182f4"},{"sha":"368dca0b83598669703a7986dd2febbeb9d1438c","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updated IEMED","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/368dca0b83598669703a7986dd2febbeb9d1438c"},{"sha":"90395ef3d390b9df712e5fb5f5aa36047859d627","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"draft post on iemed","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/90395ef3d390b9df712e5fb5f5aa36047859d627"},{"sha":"0c224a333d65bb722a32fef7f548cb4afb2abb4c","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"asdf","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/0c224a333d65bb722a32fef7f548cb4afb2abb4c"},{"sha":"6a8b18654c40552e4f829b65be2ed79e231fadb4","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"edit program culture","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/6a8b18654c40552e4f829b65be2ed79e231fadb4"},{"sha":"3e22beadb076faf2313fda725ce99e5ef8af38a5","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"edits to file name","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/3e22beadb076faf2313fda725ce99e5ef8af38a5"},{"sha":"cfc1eed892722ad237c2a33edf79efa7416fcf4d","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"update pic","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/cfc1eed892722ad237c2a33edf79efa7416fcf4d"},{"sha":"6fc0391c4c540eb69280a67fdc0b40d505d38c05","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates to about.md","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/6fc0391c4c540eb69280a67fdc0b40d505d38c05"},{"sha":"bf5a9a890dcc34ce29bc7cb0be703cc73e84b4ed","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"update","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/bf5a9a890dcc34ce29bc7cb0be703cc73e84b4ed"},{"sha":"f58ff570eb1744e64a52bf51692f199d939deff1","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"images","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/f58ff570eb1744e64a52bf51692f199d939deff1"},{"sha":"57251a35ae4e3237934857a1903e358b269b6dbb","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/57251a35ae4e3237934857a1903e358b269b6dbb"},{"sha":"e1aae8373b455b8dfa88c741caa4f2de8c744188","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/e1aae8373b455b8dfa88c741caa4f2de8c744188"},{"sha":"9d6281d41c76d415c436362017965b9e233ff2b7","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/9d6281d41c76d415c436362017965b9e233ff2b7"},{"sha":"9e277b977d042939bb28fbc297c0cf90b80bc2f1","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/9e277b977d042939bb28fbc297c0cf90b80bc2f1"},{"sha":"563c9c71e195074e453c95885976fe87ad18da96","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Erik Reinertsen"},"message":"updates to about","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/563c9c71e195074e453c95885976fe87ad18da96"},{"sha":"bf3b532b555ccd4c1fd8299431139a47f5cd040e","author":{"email":"36073687cc4e3bdff333e5b305e2d2b3caaf02b8@gmail.com","name":"Ik"},"message":"updated IEMed page with outcomes data","distinct":true,"url":"https://api.github.com/repos/jgmalcolm/erikreinertsen.github.io/commits/bf3b532b555ccd4c1fd8299431139a47f5cd040e"}]},"public":true,"created_at":"2015-01-01T15:04:45Z"}
,{"id":"2489653239","type":"IssueCommentEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4","id":53221406,"number":4,"title":"Rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:03:57Z","updated_at":"2015-01-01T15:04:45Z","closed_at":"2015-01-01T15:04:45Z","body":"Kun je de suggestie voor het datumbereik predateren? De suggestie is nu de huidige maand, maar wat je eigenlijk wilt weten is wat er de afgelopen tijd gebeurd is. Het is beter de vorige maand als suggestie te geven. \r\n"},"comment":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/comments/68488572","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4#issuecomment-68488572","issue_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","id":68488572,"user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:45Z","updated_at":"2015-01-01T15:04:45Z","body":"De vorige maand wordt nu ingevuld maar is nog aanpasbaar."}},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653240","type":"IssuesEvent","actor":{"id":5514202,"login":"DeeJee","gravatar_id":"","url":"https://api.github.com/users/DeeJee","avatar_url":"https://avatars.githubusercontent.com/u/5514202?"},"repo":{"id":28571307,"name":"DeeJee/VhpTimeLogger","url":"https://api.github.com/repos/DeeJee/VhpTimeLogger"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4","labels_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/comments","events_url":"https://api.github.com/repos/DeeJee/VhpTimeLogger/issues/4/events","html_url":"https://github.com/DeeJee/VhpTimeLogger/issues/4","id":53221406,"number":4,"title":"Rapportage","user":{"login":"DeeJee","id":5514202,"avatar_url":"https://avatars.githubusercontent.com/u/5514202?v=3","gravatar_id":"","url":"https://api.github.com/users/DeeJee","html_url":"https://github.com/DeeJee","followers_url":"https://api.github.com/users/DeeJee/followers","following_url":"https://api.github.com/users/DeeJee/following{/other_user}","gists_url":"https://api.github.com/users/DeeJee/gists{/gist_id}","starred_url":"https://api.github.com/users/DeeJee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeeJee/subscriptions","organizations_url":"https://api.github.com/users/DeeJee/orgs","repos_url":"https://api.github.com/users/DeeJee/repos","events_url":"https://api.github.com/users/DeeJee/events{/privacy}","received_events_url":"https://api.github.com/users/DeeJee/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:03:57Z","updated_at":"2015-01-01T15:04:45Z","closed_at":"2015-01-01T15:04:45Z","body":"Kun je de suggestie voor het datumbereik predateren? De suggestie is nu de huidige maand, maar wat je eigenlijk wilt weten is wat er de afgelopen tijd gebeurd is. Het is beter de vorige maand als suggestie te geven. \r\n"}},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653241","type":"WatchEvent","actor":{"id":459648,"login":"samsonasik","gravatar_id":"","url":"https://api.github.com/users/samsonasik","avatar_url":"https://avatars.githubusercontent.com/u/459648?"},"repo":{"id":28300862,"name":"padraic/humbug","url":"https://api.github.com/repos/padraic/humbug"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653249","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":28677966,"name":"phphost/phm","url":"https://api.github.com/repos/phphost/phm"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phm/issues/2","labels_url":"https://api.github.com/repos/phphost/phm/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phm/issues/2/comments","events_url":"https://api.github.com/repos/phphost/phm/issues/2/events","html_url":"https://github.com/phphost/phm/issues/2","id":53221422,"number":2,"title":"postgres support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:47Z","updated_at":"2015-01-01T15:04:47Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:04:48Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}}
,{"id":"2489653250","type":"IssuesEvent","actor":{"id":3109892,"login":"JohnnyCrazy","gravatar_id":"","url":"https://api.github.com/users/JohnnyCrazy","avatar_url":"https://avatars.githubusercontent.com/u/3109892?"},"repo":{"id":27866137,"name":"pdaddyo/soundbounce","url":"https://api.github.com/repos/pdaddyo/soundbounce"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137","labels_url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137/comments","events_url":"https://api.github.com/repos/pdaddyo/soundbounce/issues/137/events","html_url":"https://github.com/pdaddyo/soundbounce/issues/137","id":53221423,"number":137,"title":"Implement a Server-Database","user":{"login":"JohnnyCrazy","id":3109892,"avatar_url":"https://avatars.githubusercontent.com/u/3109892?v=3","gravatar_id":"","url":"https://api.github.com/users/JohnnyCrazy","html_url":"https://github.com/JohnnyCrazy","followers_url":"https://api.github.com/users/JohnnyCrazy/followers","following_url":"https://api.github.com/users/JohnnyCrazy/following{/other_user}","gists_url":"https://api.github.com/users/JohnnyCrazy/gists{/gist_id}","starred_url":"https://api.github.com/users/JohnnyCrazy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JohnnyCrazy/subscriptions","organizations_url":"https://api.github.com/users/JohnnyCrazy/orgs","repos_url":"https://api.github.com/users/JohnnyCrazy/repos","events_url":"https://api.github.com/users/JohnnyCrazy/events{/privacy}","received_events_url":"https://api.github.com/users/JohnnyCrazy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:47Z","updated_at":"2015-01-01T15:04:47Z","closed_at":null,"body":"Hey,\r\n\r\nAs I opened `rooms.json` I already thought my browser crashed :stuck_out_tongue_winking_eye: \r\n\r\nIt needs some kind of Database, I would probably go for [Redis](http://redis.io/) since it has a fast access time and would fit into the project. (Although it's not good to use if the host-systems RAM is not high enough, alternative for Redis would be [MongoDB](www.mongodb.org))\r\n\r\nIf you accept PRs, maybe I can look into it and implement some stuff.\r\n\r\nGreetings!"}},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653251","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20876193,"name":"cloudify-cosmo/cloudify-fabric-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-fabric-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"For running fabric tasks or commands from the manager","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:48Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653253","type":"CreateEvent","actor":{"id":7875273,"login":"Paz23","gravatar_id":"","url":"https://api.github.com/users/Paz23","avatar_url":"https://avatars.githubusercontent.com/u/7875273?"},"repo":{"id":28688686,"name":"Paz23/cd_mongoose_dashboard","url":"https://api.github.com/repos/Paz23/cd_mongoose_dashboard"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"node.js w/mongodb & mongoose - basic CRUD operations","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653255","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24059140,"name":"cloudify-cosmo/cloudify-amqp-influxdb","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-amqp-influxdb"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:48Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653257","type":"PushEvent","actor":{"id":1830959,"login":"zebMcCorkle","gravatar_id":"","url":"https://api.github.com/users/zebMcCorkle","avatar_url":"https://avatars.githubusercontent.com/u/1830959?"},"repo":{"id":28688375,"name":"zebMcCorkle/ecocc-server","url":"https://api.github.com/repos/zebMcCorkle/ecocc-server"},"payload":{"push_id":536864993,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5d170eedc08b0497ae37394da60131694f161b86","before":"4e54ad0c27d5e051cc2c669f7b50998674ad8118","commits":[{"sha":"5d170eedc08b0497ae37394da60131694f161b86","author":{"email":"669d9dedf3e9850c1e91eac4c93360c03ab812cb@brenhamk-12.net","name":"unknown"},"message":"More Heroku compatibility and also commit.sh for convienence.","distinct":true,"url":"https://api.github.com/repos/zebMcCorkle/ecocc-server/commits/5d170eedc08b0497ae37394da60131694f161b86"}]},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653260","type":"PushEvent","actor":{"id":2549491,"login":"Waterstrong","gravatar_id":"","url":"https://api.github.com/users/Waterstrong","avatar_url":"https://avatars.githubusercontent.com/u/2549491?"},"repo":{"id":28564179,"name":"Waterstrong/refactor-fragment","url":"https://api.github.com/repos/Waterstrong/refactor-fragment"},"payload":{"push_id":536864996,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ccc5a7d53966626328b7c9aac491ff70fa12cd68","before":"da36460c38848307372211d9a713aff5e931ede8","commits":[{"sha":"ccc5a7d53966626328b7c9aac491ff70fa12cd68","author":{"email":"6ee526f11c56f8e79aa1b59f3fc41cc903efdef0@thoughtworks.com","name":"Waterstrong"},"message":"[Waterstrong]: add Cruncher ready for refactor","distinct":true,"url":"https://api.github.com/repos/Waterstrong/refactor-fragment/commits/ccc5a7d53966626328b7c9aac491ff70fa12cd68"}]},"public":true,"created_at":"2015-01-01T15:04:48Z"}
,{"id":"2489653261","type":"PushEvent","actor":{"id":1866543,"login":"idok","gravatar_id":"","url":"https://api.github.com/users/idok","avatar_url":"https://avatars.githubusercontent.com/u/1866543?"},"repo":{"id":28688286,"name":"wix/generator-react-templates","url":"https://api.github.com/repos/wix/generator-react-templates"},"payload":{"push_id":536864997,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"71ba2885c2f0e56607f3a6a72cf3422641d1c666","before":"654edbaf6422f0a781e81d82e9b0ddac5b047281","commits":[{"sha":"71ba2885c2f0e56607f3a6a72cf3422641d1c666","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"fix github link","distinct":true,"url":"https://api.github.com/repos/wix/generator-react-templates/commits/71ba2885c2f0e56607f3a6a72cf3422641d1c666"}]},"public":true,"created_at":"2015-01-01T15:04:48Z","org":{"id":686511,"login":"wix","gravatar_id":"","url":"https://api.github.com/orgs/wix","avatar_url":"https://avatars.githubusercontent.com/u/686511?"}}
,{"id":"2489653268","type":"DeleteEvent","actor":{"id":3543067,"login":"goutnet","gravatar_id":"","url":"https://api.github.com/users/goutnet","avatar_url":"https://avatars.githubusercontent.com/u/3543067?"},"repo":{"id":28285840,"name":"goutnet/concrete5-5.7.0","url":"https://api.github.com/repos/goutnet/concrete5-5.7.0"},"payload":{"ref":"minitrue","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:49Z"}
,{"id":"2489653281","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653284","type":"IssuesEvent","actor":{"id":7223093,"login":"jgermond","gravatar_id":"","url":"https://api.github.com/users/jgermond","avatar_url":"https://avatars.githubusercontent.com/u/7223093?"},"repo":{"id":25916085,"name":"Chuck-Berry/ProjetIA_Quarto","url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2","labels_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2/comments","events_url":"https://api.github.com/repos/Chuck-Berry/ProjetIA_Quarto/issues/2/events","html_url":"https://github.com/Chuck-Berry/ProjetIA_Quarto/issues/2","id":53221425,"number":2,"title":"Erreur lors on choisit une pièce au lieu de celle déjà choisie","user":{"login":"jgermond","id":7223093,"avatar_url":"https://avatars.githubusercontent.com/u/7223093?v=3","gravatar_id":"","url":"https://api.github.com/users/jgermond","html_url":"https://github.com/jgermond","followers_url":"https://api.github.com/users/jgermond/followers","following_url":"https://api.github.com/users/jgermond/following{/other_user}","gists_url":"https://api.github.com/users/jgermond/gists{/gist_id}","starred_url":"https://api.github.com/users/jgermond/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgermond/subscriptions","organizations_url":"https://api.github.com/users/jgermond/orgs","repos_url":"https://api.github.com/users/jgermond/repos","events_url":"https://api.github.com/users/jgermond/events{/privacy}","received_events_url":"https://api.github.com/users/jgermond/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:53Z","updated_at":"2015-01-01T15:04:53Z","closed_at":null,"body":"Lorsque le tour du joueur commence, il doit placé la pièce choisie par l'IA lors du tour précédent.\r\nCependant, l'application permet de choisir une pièce sans avoir placer la précédente. Ce qui provoque une erreur et bloque l'application."}},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653285","type":"PushEvent","actor":{"id":510643,"login":"zear","gravatar_id":"","url":"https://api.github.com/users/zear","avatar_url":"https://avatars.githubusercontent.com/u/510643?"},"repo":{"id":23046099,"name":"zear/fled","url":"https://api.github.com/repos/zear/fled"},"payload":{"push_id":536865013,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a1b048a2d677b67ba36ce22f65240e1ec029c9aa","before":"3001bb21b9d4f4caaaf89e4c010ecea3439eac11","commits":[{"sha":"a1b048a2d677b67ba36ce22f65240e1ec029c9aa","author":{"email":"e9548e40587e209076ac078126b5598cb2ea17be@gmail.com","name":"Zear"},"message":"Replace a hack with a clearner solution for program exit through the menu.","distinct":true,"url":"https://api.github.com/repos/zear/fled/commits/a1b048a2d677b67ba36ce22f65240e1ec029c9aa"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653286","type":"IssuesEvent","actor":{"id":546301,"login":"unicomp21","gravatar_id":"","url":"https://api.github.com/users/unicomp21","avatar_url":"https://avatars.githubusercontent.com/u/546301?"},"repo":{"id":17989040,"name":"brendan-duncan/dartray","url":"https://api.github.com/repos/brendan-duncan/dartray"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14","labels_url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14/comments","events_url":"https://api.github.com/repos/brendan-duncan/dartray/issues/14/events","html_url":"https://github.com/brendan-duncan/dartray/issues/14","id":53221424,"number":14,"title":"Is this v2 of PBRT?","user":{"login":"unicomp21","id":546301,"avatar_url":"https://avatars.githubusercontent.com/u/546301?v=3","gravatar_id":"","url":"https://api.github.com/users/unicomp21","html_url":"https://github.com/unicomp21","followers_url":"https://api.github.com/users/unicomp21/followers","following_url":"https://api.github.com/users/unicomp21/following{/other_user}","gists_url":"https://api.github.com/users/unicomp21/gists{/gist_id}","starred_url":"https://api.github.com/users/unicomp21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/unicomp21/subscriptions","organizations_url":"https://api.github.com/users/unicomp21/orgs","repos_url":"https://api.github.com/users/unicomp21/repos","events_url":"https://api.github.com/users/unicomp21/events{/privacy}","received_events_url":"https://api.github.com/users/unicomp21/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:04:53Z","updated_at":"2015-01-01T15:04:53Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653283","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24059140,"name":"cloudify-cosmo/cloudify-amqp-influxdb","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-amqp-influxdb"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A Cloudify specific transport to consume events from RMQ and push them to InfluxDB","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653289","type":"PushEvent","actor":{"id":5665732,"login":"greensn0w","gravatar_id":"","url":"https://api.github.com/users/greensn0w","avatar_url":"https://avatars.githubusercontent.com/u/5665732?"},"repo":{"id":28674563,"name":"greensn0w/Gryphon","url":"https://api.github.com/repos/greensn0w/Gryphon"},"payload":{"push_id":536865014,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5b712498335a114da804e9ed2e9fc36a77936157","before":"f896bd02417b81dd62f959374f196a0c1ea83484","commits":[{"sha":"5b712498335a114da804e9ed2e9fc36a77936157","author":{"email":"1b1e6d1f14f247253858e155eaaffaae82ee786b@aol.de","name":"Lukas Breuer"},"message":"Update .gitignore","distinct":true,"url":"https://api.github.com/repos/greensn0w/Gryphon/commits/5b712498335a114da804e9ed2e9fc36a77936157"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653288","type":"ForkEvent","actor":{"id":2099681,"login":"UmpPCPL","gravatar_id":"","url":"https://api.github.com/users/UmpPCPL","avatar_url":"https://avatars.githubusercontent.com/u/2099681?"},"repo":{"id":1217614,"name":"xbmc/xbmc","url":"https://api.github.com/repos/xbmc/xbmc"},"payload":{"forkee":{"id":28688688,"name":"xbmc","full_name":"UmpPCPL/xbmc","owner":{"login":"UmpPCPL","id":2099681,"avatar_url":"https://avatars.githubusercontent.com/u/2099681?v=3","gravatar_id":"","url":"https://api.github.com/users/UmpPCPL","html_url":"https://github.com/UmpPCPL","followers_url":"https://api.github.com/users/UmpPCPL/followers","following_url":"https://api.github.com/users/UmpPCPL/following{/other_user}","gists_url":"https://api.github.com/users/UmpPCPL/gists{/gist_id}","starred_url":"https://api.github.com/users/UmpPCPL/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/UmpPCPL/subscriptions","organizations_url":"https://api.github.com/users/UmpPCPL/orgs","repos_url":"https://api.github.com/users/UmpPCPL/repos","events_url":"https://api.github.com/users/UmpPCPL/events{/privacy}","received_events_url":"https://api.github.com/users/UmpPCPL/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/UmpPCPL/xbmc","description":"Kodi Main Repository - By using this code you agree with our policy and will follow the GPLv2 license as included","fork":true,"url":"https://api.github.com/repos/UmpPCPL/xbmc","forks_url":"https://api.github.com/repos/UmpPCPL/xbmc/forks","keys_url":"https://api.github.com/repos/UmpPCPL/xbmc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/UmpPCPL/xbmc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/UmpPCPL/xbmc/teams","hooks_url":"https://api.github.com/repos/UmpPCPL/xbmc/hooks","issue_events_url":"https://api.github.com/repos/UmpPCPL/xbmc/issues/events{/number}","events_url":"https://api.github.com/repos/UmpPCPL/xbmc/events","assignees_url":"https://api.github.com/repos/UmpPCPL/xbmc/assignees{/user}","branches_url":"https://api.github.com/repos/UmpPCPL/xbmc/branches{/branch}","tags_url":"https://api.github.com/repos/UmpPCPL/xbmc/tags","blobs_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/refs{/sha}","trees_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/UmpPCPL/xbmc/statuses/{sha}","languages_url":"https://api.github.com/repos/UmpPCPL/xbmc/languages","stargazers_url":"https://api.github.com/repos/UmpPCPL/xbmc/stargazers","contributors_url":"https://api.github.com/repos/UmpPCPL/xbmc/contributors","subscribers_url":"https://api.github.com/repos/UmpPCPL/xbmc/subscribers","subscription_url":"https://api.github.com/repos/UmpPCPL/xbmc/subscription","commits_url":"https://api.github.com/repos/UmpPCPL/xbmc/commits{/sha}","git_commits_url":"https://api.github.com/repos/UmpPCPL/xbmc/git/commits{/sha}","comments_url":"https://api.github.com/repos/UmpPCPL/xbmc/comments{/number}","issue_comment_url":"https://api.github.com/repos/UmpPCPL/xbmc/issues/comments/{number}","contents_url":"https://api.github.com/repos/UmpPCPL/xbmc/contents/{+path}","compare_url":"https://api.github.com/repos/UmpPCPL/xbmc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/UmpPCPL/xbmc/merges","archive_url":"https://api.github.com/repos/UmpPCPL/xbmc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/UmpPCPL/xbmc/downloads","issues_url":"https://api.github.com/repos/UmpPCPL/xbmc/issues{/number}","pulls_url":"https://api.github.com/repos/UmpPCPL/xbmc/pulls{/number}","milestones_url":"https://api.github.com/repos/UmpPCPL/xbmc/milestones{/number}","notifications_url":"https://api.github.com/repos/UmpPCPL/xbmc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/UmpPCPL/xbmc/labels{/name}","releases_url":"https://api.github.com/repos/UmpPCPL/xbmc/releases{/id}","created_at":"2015-01-01T15:04:53Z","updated_at":"2015-01-01T13:58:32Z","pushed_at":"2015-01-01T13:58:32Z","git_url":"git://github.com/UmpPCPL/xbmc.git","ssh_url":"git@github.com:UmpPCPL/xbmc.git","clone_url":"https://github.com/UmpPCPL/xbmc.git","svn_url":"https://github.com/UmpPCPL/xbmc","homepage":"http://kodi.wiki/view/Official:Trademark_Policy","size":1794360,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:04:53Z","org":{"id":199122,"login":"xbmc","gravatar_id":"","url":"https://api.github.com/orgs/xbmc","avatar_url":"https://avatars.githubusercontent.com/u/199122?"}}
,{"id":"2489653291","type":"PushEvent","actor":{"id":5728403,"login":"patrick-hudson","gravatar_id":"","url":"https://api.github.com/users/patrick-hudson","avatar_url":"https://avatars.githubusercontent.com/u/5728403?"},"repo":{"id":25392255,"name":"patrick-hudson/EggDrop","url":"https://api.github.com/repos/patrick-hudson/EggDrop"},"payload":{"push_id":536865016,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2e8c17d3aef56256b908537e26885343a6ff5c90","before":"8806028a516de60cbbcbee90bcef66080540a826","commits":[{"sha":"2e8c17d3aef56256b908537e26885343a6ff5c90","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@hudson.bz","name":"Patrick Hudson"},"message":"Scripted auto-commit on change (2015-01-01 10:04:51) by gitwatch.sh","distinct":true,"url":"https://api.github.com/repos/patrick-hudson/EggDrop/commits/2e8c17d3aef56256b908537e26885343a6ff5c90"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653292","type":"ReleaseEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22572270,"name":"hex7c0/logger-request-cli","url":"https://api.github.com/repos/hex7c0/logger-request-cli"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/hex7c0/logger-request-cli/releases/818684","assets_url":"https://api.github.com/repos/hex7c0/logger-request-cli/releases/818684/assets","upload_url":"https://uploads.github.com/repos/hex7c0/logger-request-cli/releases/818684/assets{?name}","html_url":"https://github.com/hex7c0/logger-request-cli/releases/tag/1.1.14","id":818684,"tag_name":"1.1.14","target_commitish":"master","name":"v1.1.14","draft":false,"author":{"login":"hex7c0","id":4419146,"avatar_url":"https://avatars.githubusercontent.com/u/4419146?v=3","gravatar_id":"","url":"https://api.github.com/users/hex7c0","html_url":"https://github.com/hex7c0","followers_url":"https://api.github.com/users/hex7c0/followers","following_url":"https://api.github.com/users/hex7c0/following{/other_user}","gists_url":"https://api.github.com/users/hex7c0/gists{/gist_id}","starred_url":"https://api.github.com/users/hex7c0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hex7c0/subscriptions","organizations_url":"https://api.github.com/users/hex7c0/orgs","repos_url":"https://api.github.com/users/hex7c0/repos","events_url":"https://api.github.com/users/hex7c0/events{/privacy}","received_events_url":"https://api.github.com/users/hex7c0/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T15:00:40Z","published_at":"2015-01-01T15:04:53Z","assets":[],"tarball_url":"https://api.github.com/repos/hex7c0/logger-request-cli/tarball/1.1.14","zipball_url":"https://api.github.com/repos/hex7c0/logger-request-cli/zipball/1.1.14","body":"* Update devDependencies"}},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653293","type":"CreateEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22572270,"name":"hex7c0/logger-request-cli","url":"https://api.github.com/repos/hex7c0/logger-request-cli"},"payload":{"ref":"1.1.14","ref_type":"tag","master_branch":"master","description":"parser for logger request for Nodejs","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653294","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24557021,"name":"cloudify-cosmo/cloudify-manager-blueprints","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager-blueprints"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:53Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653295","type":"PushEvent","actor":{"id":8266914,"login":"Privatik3","gravatar_id":"","url":"https://api.github.com/users/Privatik3","avatar_url":"https://avatars.githubusercontent.com/u/8266914?"},"repo":{"id":28636302,"name":"Privatik3/anime-parser","url":"https://api.github.com/repos/Privatik3/anime-parser"},"payload":{"push_id":536865018,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ee19b3c5006c4a17a1e926b6c7e3124799e78b90","before":"ec4968964875cebed66c7bea95453f833499b715","commits":[{"sha":"ee19b3c5006c4a17a1e926b6c7e3124799e78b90","author":{"email":"3afc32889bce9984cd9f61213165940a465332cb@yandex.ru","name":"Privatik3"},"message":"delete idea file","distinct":true,"url":"https://api.github.com/repos/Privatik3/anime-parser/commits/ee19b3c5006c4a17a1e926b6c7e3124799e78b90"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653296","type":"PushEvent","actor":{"id":1475489,"login":"moldcraft","gravatar_id":"","url":"https://api.github.com/users/moldcraft","avatar_url":"https://avatars.githubusercontent.com/u/1475489?"},"repo":{"id":19216484,"name":"moldcraft/NotificationsBundle","url":"https://api.github.com/repos/moldcraft/NotificationsBundle"},"payload":{"push_id":536865019,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bc579d0ca20427925e92d8b7f6ee3a5589c85b04","before":"48fad3144b4193abb7cbe3fa4800a9389d6ce313","commits":[{"sha":"bc579d0ca20427925e92d8b7f6ee3a5589c85b04","author":{"email":"ca75e330fb3b73a476fbc2a7cb7daa1c10db421d@email.com","name":"moldcraft"},"message":"fixes","distinct":true,"url":"https://api.github.com/repos/moldcraft/NotificationsBundle/commits/bc579d0ca20427925e92d8b7f6ee3a5589c85b04"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653297","type":"PushEvent","actor":{"id":6264291,"login":"dKab","gravatar_id":"","url":"https://api.github.com/users/dKab","avatar_url":"https://avatars.githubusercontent.com/u/6264291?"},"repo":{"id":28271921,"name":"dKab/jasmine-tests","url":"https://api.github.com/repos/dKab/jasmine-tests"},"payload":{"push_id":536865020,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"b85a628d9429c34c8dc1e8240d7cb486136edc17","before":"16de4d6e76533a221b07e66179530b3494a2a1fa","commits":[{"sha":"b85a628d9429c34c8dc1e8240d7cb486136edc17","author":{"email":"547e00975902c3dbc50faaea4b09255e347bd22f@gmail.com","name":"DmitriyKab"},"message":"add 7 task","distinct":true,"url":"https://api.github.com/repos/dKab/jasmine-tests/commits/b85a628d9429c34c8dc1e8240d7cb486136edc17"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653299","type":"PushEvent","actor":{"id":914337,"login":"briangaid","gravatar_id":"","url":"https://api.github.com/users/briangaid","avatar_url":"https://avatars.githubusercontent.com/u/914337?"},"repo":{"id":10535450,"name":"briangaid/briangaid.github.io","url":"https://api.github.com/repos/briangaid/briangaid.github.io"},"payload":{"push_id":536865022,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a69ccff25812d091c75d4221cea4f04080126024","before":"5413bba5eea0fbef6ccba3a8b1684c51633d0a84","commits":[{"sha":"a69ccff25812d091c75d4221cea4f04080126024","author":{"email":"0d212fa24a03354e8bb9a9c2e4138446e4e601cf@users.noreply.github.com","name":"Brian Gaid"},"message":"alphabetical order","distinct":true,"url":"https://api.github.com/repos/briangaid/briangaid.github.io/commits/a69ccff25812d091c75d4221cea4f04080126024"}]},"public":true,"created_at":"2015-01-01T15:04:53Z"}
,{"id":"2489653307","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536865027,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2a968bedd20eacaccf93831e84704d050ada2c0b","before":"6fbaf2f2ab764d082d2a636ae1012264cc6e268d","commits":[{"sha":"2a968bedd20eacaccf93831e84704d050ada2c0b","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124692760\n\nuDmWt9s5z6eOqqsJ3uFzBUstMQlQA2ogRnCykyssWFI=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/2a968bedd20eacaccf93831e84704d050ada2c0b"}]},"public":true,"created_at":"2015-01-01T15:04:54Z"}
,{"id":"2489653309","type":"ForkEvent","actor":{"id":2238502,"login":"weiguo21","gravatar_id":"","url":"https://api.github.com/users/weiguo21","avatar_url":"https://avatars.githubusercontent.com/u/2238502?"},"repo":{"id":22374697,"name":"zidom/sample-image-url","url":"https://api.github.com/repos/zidom/sample-image-url"},"payload":{"forkee":{"id":28688689,"name":"sample-image-url","full_name":"weiguo21/sample-image-url","owner":{"login":"weiguo21","id":2238502,"avatar_url":"https://avatars.githubusercontent.com/u/2238502?v=3","gravatar_id":"","url":"https://api.github.com/users/weiguo21","html_url":"https://github.com/weiguo21","followers_url":"https://api.github.com/users/weiguo21/followers","following_url":"https://api.github.com/users/weiguo21/following{/other_user}","gists_url":"https://api.github.com/users/weiguo21/gists{/gist_id}","starred_url":"https://api.github.com/users/weiguo21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weiguo21/subscriptions","organizations_url":"https://api.github.com/users/weiguo21/orgs","repos_url":"https://api.github.com/users/weiguo21/repos","events_url":"https://api.github.com/users/weiguo21/events{/privacy}","received_events_url":"https://api.github.com/users/weiguo21/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/weiguo21/sample-image-url","description":"图片处理URL","fork":true,"url":"https://api.github.com/repos/weiguo21/sample-image-url","forks_url":"https://api.github.com/repos/weiguo21/sample-image-url/forks","keys_url":"https://api.github.com/repos/weiguo21/sample-image-url/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/sample-image-url/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/sample-image-url/teams","hooks_url":"https://api.github.com/repos/weiguo21/sample-image-url/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/sample-image-url/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/sample-image-url/events","assignees_url":"https://api.github.com/repos/weiguo21/sample-image-url/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/sample-image-url/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/sample-image-url/tags","blobs_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/sample-image-url/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/sample-image-url/languages","stargazers_url":"https://api.github.com/repos/weiguo21/sample-image-url/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/sample-image-url/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/sample-image-url/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/sample-image-url/subscription","commits_url":"https://api.github.com/repos/weiguo21/sample-image-url/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/sample-image-url/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/sample-image-url/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/sample-image-url/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/sample-image-url/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/sample-image-url/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/sample-image-url/merges","archive_url":"https://api.github.com/repos/weiguo21/sample-image-url/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/sample-image-url/downloads","issues_url":"https://api.github.com/repos/weiguo21/sample-image-url/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/sample-image-url/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/sample-image-url/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/sample-image-url/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/sample-image-url/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/sample-image-url/releases{/id}","created_at":"2015-01-01T15:04:54Z","updated_at":"2014-07-29T09:59:55Z","pushed_at":"2014-07-30T02:10:46Z","git_url":"git://github.com/weiguo21/sample-image-url.git","ssh_url":"git@github.com:weiguo21/sample-image-url.git","clone_url":"https://github.com/weiguo21/sample-image-url.git","svn_url":"https://github.com/weiguo21/sample-image-url","homepage":null,"size":164,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:04:54Z"}
,{"id":"2489653313","type":"PushEvent","actor":{"id":514670,"login":"GeoffWilson","gravatar_id":"","url":"https://api.github.com/users/GeoffWilson","avatar_url":"https://avatars.githubusercontent.com/u/514670?"},"repo":{"id":7530062,"name":"GeoffWilson/WaveBlast","url":"https://api.github.com/repos/GeoffWilson/WaveBlast"},"payload":{"push_id":536865029,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5892134ff18895519d0e5730fedc359d1fd15dd4","before":"11f184329b99a3df65b767be1c9ae91e4017eecc","commits":[{"sha":"5892134ff18895519d0e5730fedc359d1fd15dd4","author":{"email":"12e4e0ae5788964f88386f1c82d7ad0a77679857@heg.com","name":"Geoff"},"message":"Add missing sound effects","distinct":true,"url":"https://api.github.com/repos/GeoffWilson/WaveBlast/commits/5892134ff18895519d0e5730fedc359d1fd15dd4"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"}
,{"id":"2489653315","type":"PushEvent","actor":{"id":972584,"login":"jquast","gravatar_id":"","url":"https://api.github.com/users/jquast","avatar_url":"https://avatars.githubusercontent.com/u/972584?"},"repo":{"id":2188099,"name":"jquast/x84","url":"https://api.github.com/repos/jquast/x84"},"payload":{"push_id":536865030,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ea552baee740a761bc28941b73d1cb83887ef9e7","before":"d584abbd7fbb76ad62050a432aba74cacd912814","commits":[{"sha":"ea552baee740a761bc28941b73d1cb83887ef9e7","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@jeffquast.com","name":"jquast"},"message":"prefer lowercase form of CherryPy for faster inst","distinct":true,"url":"https://api.github.com/repos/jquast/x84/commits/ea552baee740a761bc28941b73d1cb83887ef9e7"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"}
,{"id":"2489653316","type":"PushEvent","actor":{"id":3419281,"login":"Xexanos","gravatar_id":"","url":"https://api.github.com/users/Xexanos","avatar_url":"https://avatars.githubusercontent.com/u/3419281?"},"repo":{"id":23991305,"name":"Xexanos/PoorOres","url":"https://api.github.com/repos/Xexanos/PoorOres"},"payload":{"push_id":536865031,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"592c830a6b144bf70c3ace790eb542a9d006f65b","before":"5a74cff0dcea565743acfa0a7bc3dbcb78e607ef","commits":[{"sha":"592c830a6b144bf70c3ace790eb542a9d006f65b","author":{"email":"894f70dbb0c6b051b806e4942bc91c9cbb0b0dbf@web.de","name":"Xexanos"},"message":"added config option to add nuggets as fuel and adding default value to coal nuggets.","distinct":true,"url":"https://api.github.com/repos/Xexanos/PoorOres/commits/592c830a6b144bf70c3ace790eb542a9d006f65b"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"}
,{"id":"2489653317","type":"PushEvent","actor":{"id":8039387,"login":"NamTThai","gravatar_id":"","url":"https://api.github.com/users/NamTThai","avatar_url":"https://avatars.githubusercontent.com/u/8039387?"},"repo":{"id":21883102,"name":"NamTThai/PokemonShowdownAndroidClient","url":"https://api.github.com/repos/NamTThai/PokemonShowdownAndroidClient"},"payload":{"push_id":536865032,"size":1,"distinct_size":1,"ref":"refs/heads/battling","head":"1a201a2bb209de9f2b947a26ebca24d68c4cafa5","before":"219eb8b7cb0022d451b0eb8e682fface05c43b3c","commits":[{"sha":"1a201a2bb209de9f2b947a26ebca24d68c4cafa5","author":{"email":"c2069ece478593632bc9d200fc334cb14496faf2@gmail.com","name":"namThai"},"message":"team preview fix","distinct":true,"url":"https://api.github.com/repos/NamTThai/PokemonShowdownAndroidClient/commits/1a201a2bb209de9f2b947a26ebca24d68c4cafa5"}]},"public":true,"created_at":"2015-01-01T15:04:55Z"}
,{"id":"2489653323","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":24557021,"name":"cloudify-cosmo/cloudify-manager-blueprints","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-manager-blueprints"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:55Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653325","type":"WatchEvent","actor":{"id":740978,"login":"bernharduw","gravatar_id":"","url":"https://api.github.com/users/bernharduw","avatar_url":"https://avatars.githubusercontent.com/u/740978?"},"repo":{"id":28249537,"name":"markdown-it/markdown-it","url":"https://api.github.com/repos/markdown-it/markdown-it"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:58Z","org":{"id":10248321,"login":"markdown-it","gravatar_id":"","url":"https://api.github.com/orgs/markdown-it","avatar_url":"https://avatars.githubusercontent.com/u/10248321?"}}
,{"id":"2489653326","type":"WatchEvent","actor":{"id":1264971,"login":"jangwonhong","gravatar_id":"","url":"https://api.github.com/users/jangwonhong","avatar_url":"https://avatars.githubusercontent.com/u/1264971?"},"repo":{"id":16688238,"name":"UnifiedViews/Core","url":"https://api.github.com/repos/UnifiedViews/Core"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:04:58Z","org":{"id":6388673,"login":"UnifiedViews","gravatar_id":"","url":"https://api.github.com/orgs/UnifiedViews","avatar_url":"https://avatars.githubusercontent.com/u/6388673?"}}
,{"id":"2489653329","type":"CreateEvent","actor":{"id":3233228,"login":"LureBreaker","gravatar_id":"","url":"https://api.github.com/users/LureBreaker","avatar_url":"https://avatars.githubusercontent.com/u/3233228?"},"repo":{"id":28688680,"name":"LureBreaker/django-tutorial","url":"https://api.github.com/repos/LureBreaker/django-tutorial"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"django tutorial","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:58Z"}
,{"id":"2489653330","type":"CreateEvent","actor":{"id":1201409,"login":"zordius","gravatar_id":"","url":"https://api.github.com/users/zordius","avatar_url":"https://avatars.githubusercontent.com/u/1201409?"},"repo":{"id":28685419,"name":"zordius/gulp-github","url":"https://api.github.com/repos/zordius/gulp-github"},"payload":{"ref":"test_pr","ref_type":"branch","master_branch":"master","description":"A gulp plugin to pipe contents to github pull request comments.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:58Z"}
,{"id":"2489653331","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19423184,"name":"cloudify-cosmo/cloudify-nodecellar-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-nodecellar-example"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:04:58Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653334","type":"PushEvent","actor":{"id":202400,"login":"danpalmer","gravatar_id":"","url":"https://api.github.com/users/danpalmer","avatar_url":"https://avatars.githubusercontent.com/u/202400?"},"repo":{"id":28408835,"name":"danpalmer/django-google-charts","url":"https://api.github.com/repos/danpalmer/django-google-charts"},"payload":{"push_id":536865037,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"9adc8106109f23ebf53a96b06e12022a01e8e106","before":"bdecb849ddafc0ed57db1758e7a4eda824bfa2ad","commits":[{"sha":"5192076ca066e1a602d1260c75a534afac00275e","author":{"email":"b6ced4168a19f8065f5d62b69c834c0a5b995458@me.com","name":"Dan Palmer"},"message":"Include template tags package","distinct":true,"url":"https://api.github.com/repos/danpalmer/django-google-charts/commits/5192076ca066e1a602d1260c75a534afac00275e"},{"sha":"9adc8106109f23ebf53a96b06e12022a01e8e106","author":{"email":"b6ced4168a19f8065f5d62b69c834c0a5b995458@me.com","name":"Dan Palmer"},"message":"Single quotes for non-human readable strings","distinct":true,"url":"https://api.github.com/repos/danpalmer/django-google-charts/commits/9adc8106109f23ebf53a96b06e12022a01e8e106"}]},"public":true,"created_at":"2015-01-01T15:04:58Z"}
,{"id":"2489653343","type":"IssueCommentEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/106","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/events","html_url":"https://github.com/nodeschool/organizers/issues/106","id":53216625,"number":106,"title":"Nodeschool chapter for Stuttgart, Germany","user":{"login":"kwakayama","id":2142829,"avatar_url":"https://avatars.githubusercontent.com/u/2142829?v=3","gravatar_id":"","url":"https://api.github.com/users/kwakayama","html_url":"https://github.com/kwakayama","followers_url":"https://api.github.com/users/kwakayama/followers","following_url":"https://api.github.com/users/kwakayama/following{/other_user}","gists_url":"https://api.github.com/users/kwakayama/gists{/gist_id}","starred_url":"https://api.github.com/users/kwakayama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kwakayama/subscriptions","organizations_url":"https://api.github.com/users/kwakayama/orgs","repos_url":"https://api.github.com/users/kwakayama/repos","events_url":"https://api.github.com/users/kwakayama/events{/privacy}","received_events_url":"https://api.github.com/users/kwakayama/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T09:47:17Z","updated_at":"2015-01-01T15:04:59Z","closed_at":"2015-01-01T15:04:59Z","body":"Hi, I would like to start a nodeschool chapter for Stuttgart, Germany. I am @wakayamakentaro on twitter and work at [Brandwatch](http://www.brandwatch.com/). I have been co-organizing the [JS meetup in Stuttgart](http://www.meetup.com/stuttgartjs/) and want to create an event which focus on Node.js. I have been using Node.js for more than 4 years and would like to help others learn as well.\r\n"},"comment":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/comments/68488575","html_url":"https://github.com/nodeschool/organizers/issues/106#issuecomment-68488575","issue_url":"https://api.github.com/repos/nodeschool/organizers/issues/106","id":68488575,"user":{"login":"finnp","id":841788,"avatar_url":"https://avatars.githubusercontent.com/u/841788?v=3","gravatar_id":"","url":"https://api.github.com/users/finnp","html_url":"https://github.com/finnp","followers_url":"https://api.github.com/users/finnp/followers","following_url":"https://api.github.com/users/finnp/following{/other_user}","gists_url":"https://api.github.com/users/finnp/gists{/gist_id}","starred_url":"https://api.github.com/users/finnp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/finnp/subscriptions","organizations_url":"https://api.github.com/users/finnp/orgs","repos_url":"https://api.github.com/users/finnp/repos","events_url":"https://api.github.com/users/finnp/events{/privacy}","received_events_url":"https://api.github.com/users/finnp/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:04:59Z","updated_at":"2015-01-01T15:04:59Z","body":"Awesome to have another chapter in Germany :+1:  I invited you to the org. You can now go ahed and [create a repo](https://github.com/nodeschool/organizers#1). Make sure to make a PR to the homepage to have the capter be featured there."}},"public":true,"created_at":"2015-01-01T15:04:59Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}}
,{"id":"2489653344","type":"IssuesEvent","actor":{"id":841788,"login":"finnp","gravatar_id":"","url":"https://api.github.com/users/finnp","avatar_url":"https://avatars.githubusercontent.com/u/841788?"},"repo":{"id":23203674,"name":"nodeschool/organizers","url":"https://api.github.com/repos/nodeschool/organizers"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/nodeschool/organizers/issues/106","labels_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/comments","events_url":"https://api.github.com/repos/nodeschool/organizers/issues/106/events","html_url":"https://github.com/nodeschool/organizers/issues/106","id":53216625,"number":106,"title":"Nodeschool chapter for Stuttgart, Germany","user":{"login":"kwakayama","id":2142829,"avatar_url":"https://avatars.githubusercontent.com/u/2142829?v=3","gravatar_id":"","url":"https://api.github.com/users/kwakayama","html_url":"https://github.com/kwakayama","followers_url":"https://api.github.com/users/kwakayama/followers","following_url":"https://api.github.com/users/kwakayama/following{/other_user}","gists_url":"https://api.github.com/users/kwakayama/gists{/gist_id}","starred_url":"https://api.github.com/users/kwakayama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kwakayama/subscriptions","organizations_url":"https://api.github.com/users/kwakayama/orgs","repos_url":"https://api.github.com/users/kwakayama/repos","events_url":"https://api.github.com/users/kwakayama/events{/privacy}","received_events_url":"https://api.github.com/users/kwakayama/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T09:47:17Z","updated_at":"2015-01-01T15:04:59Z","closed_at":"2015-01-01T15:04:59Z","body":"Hi, I would like to start a nodeschool chapter for Stuttgart, Germany. I am @wakayamakentaro on twitter and work at [Brandwatch](http://www.brandwatch.com/). I have been co-organizing the [JS meetup in Stuttgart](http://www.meetup.com/stuttgartjs/) and want to create an event which focus on Node.js. I have been using Node.js for more than 4 years and would like to help others learn as well.\r\n"}},"public":true,"created_at":"2015-01-01T15:04:59Z","org":{"id":5437587,"login":"nodeschool","gravatar_id":"","url":"https://api.github.com/orgs/nodeschool","avatar_url":"https://avatars.githubusercontent.com/u/5437587?"}}
,{"id":"2489653347","type":"CommitCommentEvent","actor":{"id":467030,"login":"walmik","gravatar_id":"","url":"https://api.github.com/users/walmik","avatar_url":"https://avatars.githubusercontent.com/u/467030?"},"repo":{"id":3484837,"name":"walmik/timer.jquery","url":"https://api.github.com/repos/walmik/timer.jquery"},"payload":{"comment":{"url":"https://api.github.com/repos/walmik/timer.jquery/comments/9132431","html_url":"https://github.com/walmik/timer.jquery/commit/fcf2715634a85af52d7544203ed5792bf685e329#commitcomment-9132431","id":9132431,"user":{"login":"walmik","id":467030,"avatar_url":"https://avatars.githubusercontent.com/u/467030?v=3","gravatar_id":"","url":"https://api.github.com/users/walmik","html_url":"https://github.com/walmik","followers_url":"https://api.github.com/users/walmik/followers","following_url":"https://api.github.com/users/walmik/following{/other_user}","gists_url":"https://api.github.com/users/walmik/gists{/gist_id}","starred_url":"https://api.github.com/users/walmik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/walmik/subscriptions","organizations_url":"https://api.github.com/users/walmik/orgs","repos_url":"https://api.github.com/users/walmik/repos","events_url":"https://api.github.com/users/walmik/events{/privacy}","received_events_url":"https://api.github.com/users/walmik/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"fcf2715634a85af52d7544203ed5792bf685e329","created_at":"2015-01-01T15:04:59Z","updated_at":"2015-01-01T15:04:59Z","body":"@@rebuild"}},"public":true,"created_at":"2015-01-01T15:04:59Z"}
,{"id":"2489653349","type":"PushEvent","actor":{"id":406045,"login":"uutan","gravatar_id":"","url":"https://api.github.com/users/uutan","avatar_url":"https://avatars.githubusercontent.com/u/406045?"},"repo":{"id":23510507,"name":"uutan/tsaoko","url":"https://api.github.com/repos/uutan/tsaoko"},"payload":{"push_id":536865046,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a5cffb446a6dc14ba79e9804dc0a1ba473edefb1","before":"da39bb1fa94163f5b0ea97f49f0df7dc5d2118fe","commits":[{"sha":"a5cffb446a6dc14ba79e9804dc0a1ba473edefb1","author":{"email":"5dcf220993dd9832453f96092756561102e52171@qq.com","name":"UUTAN"},"message":"草果官網","distinct":true,"url":"https://api.github.com/repos/uutan/tsaoko/commits/a5cffb446a6dc14ba79e9804dc0a1ba473edefb1"}]},"public":true,"created_at":"2015-01-01T15:04:59Z"}
,{"id":"2489653351","type":"WatchEvent","actor":{"id":660405,"login":"musketyr","gravatar_id":"","url":"https://api.github.com/users/musketyr","avatar_url":"https://avatars.githubusercontent.com/u/660405?"},"repo":{"id":15878519,"name":"ukdtom/SRT2UTF-8.bundle","url":"https://api.github.com/repos/ukdtom/SRT2UTF-8.bundle"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:00Z"}
,{"id":"2489653352","type":"WatchEvent","actor":{"id":226445,"login":"efantasia","gravatar_id":"","url":"https://api.github.com/users/efantasia","avatar_url":"https://avatars.githubusercontent.com/u/226445?"},"repo":{"id":22317183,"name":"philipz/docker-nginx-hhvm-wordpress","url":"https://api.github.com/repos/philipz/docker-nginx-hhvm-wordpress"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:00Z"}
,{"id":"2489653355","type":"IssueCommentEvent","actor":{"id":63502,"login":"ferventcoder","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","avatar_url":"https://avatars.githubusercontent.com/u/63502?"},"repo":{"id":22735696,"name":"chocolatey/chocolatey-package-updater","url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","labels_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/comments","events_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7/events","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7","id":47026963,"number":7,"title":"Support for passing {{checksum}} variable","user":{"login":"dtgm","id":3309431,"avatar_url":"https://avatars.githubusercontent.com/u/3309431?v=3","gravatar_id":"","url":"https://api.github.com/users/dtgm","html_url":"https://github.com/dtgm","followers_url":"https://api.github.com/users/dtgm/followers","following_url":"https://api.github.com/users/dtgm/following{/other_user}","gists_url":"https://api.github.com/users/dtgm/gists{/gist_id}","starred_url":"https://api.github.com/users/dtgm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dtgm/subscriptions","organizations_url":"https://api.github.com/users/dtgm/orgs","repos_url":"https://api.github.com/users/dtgm/repos","events_url":"https://api.github.com/users/dtgm/events{/privacy}","received_events_url":"https://api.github.com/users/dtgm/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-10-28T13:44:42Z","updated_at":"2015-01-01T15:05:00Z","closed_at":null,"body":"Please add support for passing {{checksum}} with ChocoPkgUp.exe.\r\n\r\nSee: https://github.com/chocolatey/chocolatey/issues/427#issuecomment-60740928"},"comment":{"url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/comments/68488576","html_url":"https://github.com/chocolatey/chocolatey-package-updater/issues/7#issuecomment-68488576","issue_url":"https://api.github.com/repos/chocolatey/chocolatey-package-updater/issues/7","id":68488576,"user":{"login":"ferventcoder","id":63502,"avatar_url":"https://avatars.githubusercontent.com/u/63502?v=3","gravatar_id":"","url":"https://api.github.com/users/ferventcoder","html_url":"https://github.com/ferventcoder","followers_url":"https://api.github.com/users/ferventcoder/followers","following_url":"https://api.github.com/users/ferventcoder/following{/other_user}","gists_url":"https://api.github.com/users/ferventcoder/gists{/gist_id}","starred_url":"https://api.github.com/users/ferventcoder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ferventcoder/subscriptions","organizations_url":"https://api.github.com/users/ferventcoder/orgs","repos_url":"https://api.github.com/users/ferventcoder/repos","events_url":"https://api.github.com/users/ferventcoder/events{/privacy}","received_events_url":"https://api.github.com/users/ferventcoder/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:00Z","updated_at":"2015-01-01T15:05:00Z","body":"Checksum and Checksumx64"}},"public":true,"created_at":"2015-01-01T15:05:00Z","org":{"id":811025,"login":"chocolatey","gravatar_id":"","url":"https://api.github.com/orgs/chocolatey","avatar_url":"https://avatars.githubusercontent.com/u/811025?"}}
,{"id":"2489653358","type":"PushEvent","actor":{"id":8898656,"login":"manhtai","gravatar_id":"","url":"https://api.github.com/users/manhtai","avatar_url":"https://avatars.githubusercontent.com/u/8898656?"},"repo":{"id":27435369,"name":"hochanh/rblog","url":"https://api.github.com/repos/hochanh/rblog"},"payload":{"push_id":536865049,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"f08bd6fb352d3b0730c68b1a02b0c3e3083030cb","before":"199c92e2a0d9c97a9d39231db8d5cfd3ed7ad5e4","commits":[{"sha":"f08bd6fb352d3b0730c68b1a02b0c3e3083030cb","author":{"email":"fadd56ec452f32494dcac8d1adde33d451bf70c7@manhtai.com","name":"manhtai"},"message":"replace pics","distinct":true,"url":"https://api.github.com/repos/hochanh/rblog/commits/f08bd6fb352d3b0730c68b1a02b0c3e3083030cb"}]},"public":true,"created_at":"2015-01-01T15:05:00Z","org":{"id":10047909,"login":"hochanh","gravatar_id":"","url":"https://api.github.com/orgs/hochanh","avatar_url":"https://avatars.githubusercontent.com/u/10047909?"}}
,{"id":"2489653360","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19423184,"name":"cloudify-cosmo/cloudify-nodecellar-example","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-nodecellar-example"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"A sample Cloudify 3 application consisted of a nodejs server and mongodb database. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:00Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653362","type":"PushEvent","actor":{"id":9973025,"login":"hpraveen","gravatar_id":"","url":"https://api.github.com/users/hpraveen","avatar_url":"https://avatars.githubusercontent.com/u/9973025?"},"repo":{"id":27212560,"name":"hpraveen/OSWD","url":"https://api.github.com/repos/hpraveen/OSWD"},"payload":{"push_id":536865053,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6825222ff7259838fd57c82a371a239bf1fd658c","before":"f55f8c1884f7218f1e9d69517505d6db6b1360ae","commits":[{"sha":"6825222ff7259838fd57c82a371a239bf1fd658c","author":{"email":"52da7f86a46b435c9123f30308193766489b0d2c@gmail.com","name":"hpraveen"},"message":"Functions to load csv files and plot time series graphs","distinct":true,"url":"https://api.github.com/repos/hpraveen/OSWD/commits/6825222ff7259838fd57c82a371a239bf1fd658c"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653363","type":"ReleaseEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/libyal/libcfile/releases/818685","assets_url":"https://api.github.com/repos/libyal/libcfile/releases/818685/assets","upload_url":"https://uploads.github.com/repos/libyal/libcfile/releases/818685/assets{?name}","html_url":"https://github.com/libyal/libcfile/releases/tag/20150101","id":818685,"tag_name":"20150101","target_commitish":"master","name":"libcfile-alpha-20150101","draft":false,"author":{"login":"joachimmetz","id":3888750,"avatar_url":"https://avatars.githubusercontent.com/u/3888750?v=3","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","html_url":"https://github.com/joachimmetz","followers_url":"https://api.github.com/users/joachimmetz/followers","following_url":"https://api.github.com/users/joachimmetz/following{/other_user}","gists_url":"https://api.github.com/users/joachimmetz/gists{/gist_id}","starred_url":"https://api.github.com/users/joachimmetz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joachimmetz/subscriptions","organizations_url":"https://api.github.com/users/joachimmetz/orgs","repos_url":"https://api.github.com/users/joachimmetz/repos","events_url":"https://api.github.com/users/joachimmetz/events{/privacy}","received_events_url":"https://api.github.com/users/joachimmetz/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2014-12-29T06:00:39Z","published_at":"2015-01-01T15:05:01Z","assets":[],"tarball_url":"https://api.github.com/repos/libyal/libcfile/tarball/20150101","zipball_url":"https://api.github.com/repos/libyal/libcfile/zipball/20150101","body":"Release of version 20150101"}},"public":true,"created_at":"2015-01-01T15:05:02Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}}
,{"id":"2489653365","type":"CreateEvent","actor":{"id":3888750,"login":"joachimmetz","gravatar_id":"","url":"https://api.github.com/users/joachimmetz","avatar_url":"https://avatars.githubusercontent.com/u/3888750?"},"repo":{"id":24068439,"name":"libyal/libcfile","url":"https://api.github.com/repos/libyal/libcfile"},"payload":{"ref":"20150101","ref_type":"tag","master_branch":"master","description":"Library for cross-platform C file functions","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z","org":{"id":8692283,"login":"libyal","gravatar_id":"","url":"https://api.github.com/orgs/libyal","avatar_url":"https://avatars.githubusercontent.com/u/8692283?"}}
,{"id":"2489653367","type":"CreateEvent","actor":{"id":1905149,"login":"oggehej","gravatar_id":"","url":"https://api.github.com/users/oggehej","avatar_url":"https://avatars.githubusercontent.com/u/1905149?"},"repo":{"id":28688690,"name":"oggehej/ForceDismount","url":"https://api.github.com/repos/oggehej/ForceDismount"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653368","type":"DeleteEvent","actor":{"id":1334295,"login":"bfontaine","gravatar_id":"","url":"https://api.github.com/users/bfontaine","avatar_url":"https://avatars.githubusercontent.com/u/1334295?"},"repo":{"id":26602131,"name":"bfontaine/homebrew","url":"https://api.github.com/repos/bfontaine/homebrew"},"payload":{"ref":"mp3-file","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653372","type":"CreateEvent","actor":{"id":8950411,"login":"keren13","gravatar_id":"","url":"https://api.github.com/users/keren13","avatar_url":"https://avatars.githubusercontent.com/u/8950411?"},"repo":{"id":28688678,"name":"keren13/Java-Two-Dimensional-Arrays","url":"https://api.github.com/repos/keren13/Java-Two-Dimensional-Arrays"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Experimenting with two dimensional arrays by printing out its contents, computing its sums, and other functions.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653374","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653376","type":"PushEvent","actor":{"id":8425583,"login":"adinosaur","gravatar_id":"","url":"https://api.github.com/users/adinosaur","avatar_url":"https://avatars.githubusercontent.com/u/8425583?"},"repo":{"id":28687419,"name":"adinosaur/Intelligence_analysis_system","url":"https://api.github.com/repos/adinosaur/Intelligence_analysis_system"},"payload":{"push_id":536865058,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"671f0c3b366eff3b4f2065213abaa6116eaeaa72","before":"8d91c0a4fd7bd8400a7a020e2f2632134aa38c6c","commits":[{"sha":"671f0c3b366eff3b4f2065213abaa6116eaeaa72","author":{"email":"ea7852616db8108387ccd9877c42431cc05307e8@gmail.com","name":"dinosaur"},"message":"without data","distinct":true,"url":"https://api.github.com/repos/adinosaur/Intelligence_analysis_system/commits/671f0c3b366eff3b4f2065213abaa6116eaeaa72"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653379","type":"PushEvent","actor":{"id":4897842,"login":"aiya000","gravatar_id":"","url":"https://api.github.com/users/aiya000","avatar_url":"https://avatars.githubusercontent.com/u/4897842?"},"repo":{"id":23388672,"name":"aiya000/dotfiles","url":"https://api.github.com/repos/aiya000/dotfiles"},"payload":{"push_id":536865061,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"543c6d10a7aa1858ac4250e978f6a77810f442eb","before":"294eab71e173a6e594ffcfe78f9fd4a36aa5f0cc","commits":[{"sha":"ae493a7a34b0fbdd4c4179fbb4e6805a7f7a53bf","author":{"email":"62b7be0f4091fe1dc13d7236d1aa371af3f368b5@gmail.com","name":"aiya000"},"message":"Added an alias","distinct":true,"url":"https://api.github.com/repos/aiya000/dotfiles/commits/ae493a7a34b0fbdd4c4179fbb4e6805a7f7a53bf"},{"sha":"543c6d10a7aa1858ac4250e978f6a77810f442eb","author":{"email":"62b7be0f4091fe1dc13d7236d1aa371af3f368b5@gmail.com","name":"aiya000"},"message":"Fixed Conflict","distinct":true,"url":"https://api.github.com/repos/aiya000/dotfiles/commits/543c6d10a7aa1858ac4250e978f6a77810f442eb"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653383","type":"PushEvent","actor":{"id":818850,"login":"stubma","gravatar_id":"","url":"https://api.github.com/users/stubma","avatar_url":"https://avatars.githubusercontent.com/u/818850?"},"repo":{"id":26906938,"name":"stubma/cocos2dx-classical","url":"https://api.github.com/repos/stubma/cocos2dx-classical"},"payload":{"push_id":536865062,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1d6a481fcaccb57a27f4570fe855244f7ccb4bf1","before":"6298fcb73b8725dc7ee41adf0880f6e3cce88c73","commits":[{"sha":"1d6a481fcaccb57a27f4570fe855244f7ccb4bf1","author":{"email":"9c6f8d6f1d16fe77e2bee75389a742db1b82600f@gmail.com","name":"luma"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/stubma/cocos2dx-classical/commits/1d6a481fcaccb57a27f4570fe855244f7ccb4bf1"}]},"public":true,"created_at":"2015-01-01T15:05:02Z"}
,{"id":"2489653391","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19569477,"name":"cloudify-cosmo/cloudify-cloudstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:03Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653392","type":"PullRequestEvent","actor":{"id":1201409,"login":"zordius","gravatar_id":"","url":"https://api.github.com/users/zordius","avatar_url":"https://avatars.githubusercontent.com/u/1201409?"},"repo":{"id":28685419,"name":"zordius/gulp-github","url":"https://api.github.com/repos/zordius/gulp-github"},"payload":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/zordius/gulp-github/pulls/2","id":26743805,"html_url":"https://github.com/zordius/gulp-github/pull/2","diff_url":"https://github.com/zordius/gulp-github/pull/2.diff","patch_url":"https://github.com/zordius/gulp-github/pull/2.patch","issue_url":"https://api.github.com/repos/zordius/gulp-github/issues/2","number":2,"state":"open","locked":false,"title":"test","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:05:03Z","updated_at":"2015-01-01T15:05:03Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/zordius/gulp-github/pulls/2/commits","review_comments_url":"https://api.github.com/repos/zordius/gulp-github/pulls/2/comments","review_comment_url":"https://api.github.com/repos/zordius/gulp-github/pulls/comments/{number}","comments_url":"https://api.github.com/repos/zordius/gulp-github/issues/2/comments","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/7e5a80a0e5483cb9df1b571dccc031dcb45f7d50","head":{"label":"zordius:test_pr","ref":"test_pr","sha":"7e5a80a0e5483cb9df1b571dccc031dcb45f7d50","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"repo":{"id":28685419,"name":"gulp-github","full_name":"zordius/gulp-github","owner":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zordius/gulp-github","description":"A gulp plugin to pipe contents to github pull request comments.","fork":false,"url":"https://api.github.com/repos/zordius/gulp-github","forks_url":"https://api.github.com/repos/zordius/gulp-github/forks","keys_url":"https://api.github.com/repos/zordius/gulp-github/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zordius/gulp-github/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zordius/gulp-github/teams","hooks_url":"https://api.github.com/repos/zordius/gulp-github/hooks","issue_events_url":"https://api.github.com/repos/zordius/gulp-github/issues/events{/number}","events_url":"https://api.github.com/repos/zordius/gulp-github/events","assignees_url":"https://api.github.com/repos/zordius/gulp-github/assignees{/user}","branches_url":"https://api.github.com/repos/zordius/gulp-github/branches{/branch}","tags_url":"https://api.github.com/repos/zordius/gulp-github/tags","blobs_url":"https://api.github.com/repos/zordius/gulp-github/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zordius/gulp-github/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zordius/gulp-github/git/refs{/sha}","trees_url":"https://api.github.com/repos/zordius/gulp-github/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/{sha}","languages_url":"https://api.github.com/repos/zordius/gulp-github/languages","stargazers_url":"https://api.github.com/repos/zordius/gulp-github/stargazers","contributors_url":"https://api.github.com/repos/zordius/gulp-github/contributors","subscribers_url":"https://api.github.com/repos/zordius/gulp-github/subscribers","subscription_url":"https://api.github.com/repos/zordius/gulp-github/subscription","commits_url":"https://api.github.com/repos/zordius/gulp-github/commits{/sha}","git_commits_url":"https://api.github.com/repos/zordius/gulp-github/git/commits{/sha}","comments_url":"https://api.github.com/repos/zordius/gulp-github/comments{/number}","issue_comment_url":"https://api.github.com/repos/zordius/gulp-github/issues/comments/{number}","contents_url":"https://api.github.com/repos/zordius/gulp-github/contents/{+path}","compare_url":"https://api.github.com/repos/zordius/gulp-github/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zordius/gulp-github/merges","archive_url":"https://api.github.com/repos/zordius/gulp-github/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zordius/gulp-github/downloads","issues_url":"https://api.github.com/repos/zordius/gulp-github/issues{/number}","pulls_url":"https://api.github.com/repos/zordius/gulp-github/pulls{/number}","milestones_url":"https://api.github.com/repos/zordius/gulp-github/milestones{/number}","notifications_url":"https://api.github.com/repos/zordius/gulp-github/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zordius/gulp-github/labels{/name}","releases_url":"https://api.github.com/repos/zordius/gulp-github/releases{/id}","created_at":"2015-01-01T11:28:34Z","updated_at":"2015-01-01T15:01:34Z","pushed_at":"2015-01-01T15:04:58Z","git_url":"git://github.com/zordius/gulp-github.git","ssh_url":"git@github.com:zordius/gulp-github.git","clone_url":"https://github.com/zordius/gulp-github.git","svn_url":"https://github.com/zordius/gulp-github","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"zordius:master","ref":"master","sha":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","user":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"repo":{"id":28685419,"name":"gulp-github","full_name":"zordius/gulp-github","owner":{"login":"zordius","id":1201409,"avatar_url":"https://avatars.githubusercontent.com/u/1201409?v=3","gravatar_id":"","url":"https://api.github.com/users/zordius","html_url":"https://github.com/zordius","followers_url":"https://api.github.com/users/zordius/followers","following_url":"https://api.github.com/users/zordius/following{/other_user}","gists_url":"https://api.github.com/users/zordius/gists{/gist_id}","starred_url":"https://api.github.com/users/zordius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zordius/subscriptions","organizations_url":"https://api.github.com/users/zordius/orgs","repos_url":"https://api.github.com/users/zordius/repos","events_url":"https://api.github.com/users/zordius/events{/privacy}","received_events_url":"https://api.github.com/users/zordius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/zordius/gulp-github","description":"A gulp plugin to pipe contents to github pull request comments.","fork":false,"url":"https://api.github.com/repos/zordius/gulp-github","forks_url":"https://api.github.com/repos/zordius/gulp-github/forks","keys_url":"https://api.github.com/repos/zordius/gulp-github/keys{/key_id}","collaborators_url":"https://api.github.com/repos/zordius/gulp-github/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/zordius/gulp-github/teams","hooks_url":"https://api.github.com/repos/zordius/gulp-github/hooks","issue_events_url":"https://api.github.com/repos/zordius/gulp-github/issues/events{/number}","events_url":"https://api.github.com/repos/zordius/gulp-github/events","assignees_url":"https://api.github.com/repos/zordius/gulp-github/assignees{/user}","branches_url":"https://api.github.com/repos/zordius/gulp-github/branches{/branch}","tags_url":"https://api.github.com/repos/zordius/gulp-github/tags","blobs_url":"https://api.github.com/repos/zordius/gulp-github/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/zordius/gulp-github/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/zordius/gulp-github/git/refs{/sha}","trees_url":"https://api.github.com/repos/zordius/gulp-github/git/trees{/sha}","statuses_url":"https://api.github.com/repos/zordius/gulp-github/statuses/{sha}","languages_url":"https://api.github.com/repos/zordius/gulp-github/languages","stargazers_url":"https://api.github.com/repos/zordius/gulp-github/stargazers","contributors_url":"https://api.github.com/repos/zordius/gulp-github/contributors","subscribers_url":"https://api.github.com/repos/zordius/gulp-github/subscribers","subscription_url":"https://api.github.com/repos/zordius/gulp-github/subscription","commits_url":"https://api.github.com/repos/zordius/gulp-github/commits{/sha}","git_commits_url":"https://api.github.com/repos/zordius/gulp-github/git/commits{/sha}","comments_url":"https://api.github.com/repos/zordius/gulp-github/comments{/number}","issue_comment_url":"https://api.github.com/repos/zordius/gulp-github/issues/comments/{number}","contents_url":"https://api.github.com/repos/zordius/gulp-github/contents/{+path}","compare_url":"https://api.github.com/repos/zordius/gulp-github/compare/{base}...{head}","merges_url":"https://api.github.com/repos/zordius/gulp-github/merges","archive_url":"https://api.github.com/repos/zordius/gulp-github/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/zordius/gulp-github/downloads","issues_url":"https://api.github.com/repos/zordius/gulp-github/issues{/number}","pulls_url":"https://api.github.com/repos/zordius/gulp-github/pulls{/number}","milestones_url":"https://api.github.com/repos/zordius/gulp-github/milestones{/number}","notifications_url":"https://api.github.com/repos/zordius/gulp-github/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/zordius/gulp-github/labels{/name}","releases_url":"https://api.github.com/repos/zordius/gulp-github/releases{/id}","created_at":"2015-01-01T11:28:34Z","updated_at":"2015-01-01T15:01:34Z","pushed_at":"2015-01-01T15:04:58Z","git_url":"git://github.com/zordius/gulp-github.git","ssh_url":"git@github.com:zordius/gulp-github.git","clone_url":"https://github.com/zordius/gulp-github.git","svn_url":"https://github.com/zordius/gulp-github","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2"},"html":{"href":"https://github.com/zordius/gulp-github/pull/2"},"issue":{"href":"https://api.github.com/repos/zordius/gulp-github/issues/2"},"comments":{"href":"https://api.github.com/repos/zordius/gulp-github/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/zordius/gulp-github/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/zordius/gulp-github/statuses/7e5a80a0e5483cb9df1b571dccc031dcb45f7d50"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:03Z"}
,{"id":"2489653394","type":"PushEvent","actor":{"id":2964928,"login":"taylorhxu","gravatar_id":"","url":"https://api.github.com/users/taylorhxu","avatar_url":"https://avatars.githubusercontent.com/u/2964928?"},"repo":{"id":25008698,"name":"taylorhxu/taylorhxu.github.io","url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io"},"payload":{"push_id":536865066,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a2853c0256efde79b82d18d874c836684be2da08","before":"eb4ff5f19c6fe012784ae06b538c790a4706acdb","commits":[{"sha":"a2853c0256efde79b82d18d874c836684be2da08","author":{"email":"bbaab3af5605ab26fe8b9502a6ab51a673b35a8b@gmail.com","name":"Taylor Xu"},"message":"old theme photo deleted","distinct":true,"url":"https://api.github.com/repos/taylorhxu/taylorhxu.github.io/commits/a2853c0256efde79b82d18d874c836684be2da08"}]},"public":true,"created_at":"2015-01-01T15:05:03Z"}
,{"id":"2489653396","type":"PushEvent","actor":{"id":8790160,"login":"irham0019","gravatar_id":"","url":"https://api.github.com/users/irham0019","avatar_url":"https://avatars.githubusercontent.com/u/8790160?"},"repo":{"id":28379061,"name":"irham0019/product-esb","url":"https://api.github.com/repos/irham0019/product-esb"},"payload":{"push_id":536865067,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fcb3048471acb1de5ca455cad6fb20b395d0fb4d","before":"18b06afd890685a6d1c4023eaffe6b37a330e887","commits":[{"sha":"fcb3048471acb1de5ca455cad6fb20b395d0fb4d","author":{"email":"8c912c39e70806ce574df9ee73874b1d6d5405e5@gmail.com","name":"mirhamiqbal"},"message":"changes requested","distinct":true,"url":"https://api.github.com/repos/irham0019/product-esb/commits/fcb3048471acb1de5ca455cad6fb20b395d0fb4d"}]},"public":true,"created_at":"2015-01-01T15:05:04Z"}
,{"id":"2489653397","type":"WatchEvent","actor":{"id":1946663,"login":"qinix","gravatar_id":"","url":"https://api.github.com/users/qinix","avatar_url":"https://avatars.githubusercontent.com/u/1946663?"},"repo":{"id":3727706,"name":"emacs-helm/helm","url":"https://api.github.com/repos/emacs-helm/helm"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:04Z","org":{"id":1541688,"login":"emacs-helm","gravatar_id":"","url":"https://api.github.com/orgs/emacs-helm","avatar_url":"https://avatars.githubusercontent.com/u/1541688?"}}
,{"id":"2489653400","type":"PushEvent","actor":{"id":10152921,"login":"Antidelay","gravatar_id":"","url":"https://api.github.com/users/Antidelay","avatar_url":"https://avatars.githubusercontent.com/u/10152921?"},"repo":{"id":28637715,"name":"Antidelay/antidelay.github.io","url":"https://api.github.com/repos/Antidelay/antidelay.github.io"},"payload":{"push_id":536865069,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"60116a8a001671c70532298795fe1ff04c67fccb","before":"e4176b4e3c7de41c883b09d4d78b9743582afd12","commits":[{"sha":"60116a8a001671c70532298795fe1ff04c67fccb","author":{"email":"881baaede9ab674cbb97cddae8bfda41d8ad51c3@example.com","name":"ep"},"message":"Site updated at 2015-01-01 15:04:59 UTC","distinct":true,"url":"https://api.github.com/repos/Antidelay/antidelay.github.io/commits/60116a8a001671c70532298795fe1ff04c67fccb"}]},"public":true,"created_at":"2015-01-01T15:05:04Z"}
,{"id":"2489653401","type":"CreateEvent","actor":{"id":821709,"login":"kmcgrath","gravatar_id":"","url":"https://api.github.com/users/kmcgrath","avatar_url":"https://avatars.githubusercontent.com/u/821709?"},"repo":{"id":28688691,"name":"kmcgrath/marathon-haproxy","url":"https://api.github.com/repos/kmcgrath/marathon-haproxy"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"HAProxy container for Mesos Marathon","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:04Z"}
,{"id":"2489653402","type":"PullRequestEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"closed","number":49,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49","id":26743799,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49","number":49,"state":"closed","locked":false,"title":"middleman build","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:21Z","updated_at":"2015-01-01T15:05:04Z","closed_at":"2015-01-01T15:05:04Z","merged_at":"2015-01-01T15:05:04Z","merge_commit_sha":"e70240f5e6ee377aaa9e832cefbccd5c111c7cb2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937","head":{"label":"syon:master","ref":"master","sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"andy-hiroyuki:master","ref":"master","sha":"a5a3782480c4ecfc08c105cb88dfcd8841df1783","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T15:05:04Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":1,"forks":1,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/49"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/49/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/49/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/8363b1bc893a653daaf6fef0fee79580d3a9d937"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:04Z"}
,{"id":"2489653403","type":"PushEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"push_id":536865070,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"e9bba315c225126d9adbfa7269f189c9623590ea","before":"a5a3782480c4ecfc08c105cb88dfcd8841df1783","commits":[{"sha":"8363b1bc893a653daaf6fef0fee79580d3a9d937","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"middleman build","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/8363b1bc893a653daaf6fef0fee79580d3a9d937"},{"sha":"e9bba315c225126d9adbfa7269f189c9623590ea","author":{"email":"9caf384f4d1faf46005af9913407078e8d6de5d8@gmail.com","name":"Andy Hiroyuki"},"message":"Merge pull request #49 from syon/master\n\nmiddleman build","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/e9bba315c225126d9adbfa7269f189c9623590ea"}]},"public":true,"created_at":"2015-01-01T15:05:05Z"}
,{"id":"2489653404","type":"IssuesEvent","actor":{"id":6242447,"login":"emilecaron","gravatar_id":"","url":"https://api.github.com/users/emilecaron","avatar_url":"https://avatars.githubusercontent.com/u/6242447?"},"repo":{"id":27214351,"name":"emilecaron/remindme","url":"https://api.github.com/repos/emilecaron/remindme"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/emilecaron/remindme/issues/3","labels_url":"https://api.github.com/repos/emilecaron/remindme/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/emilecaron/remindme/issues/3/comments","events_url":"https://api.github.com/repos/emilecaron/remindme/issues/3/events","html_url":"https://github.com/emilecaron/remindme/issues/3","id":53221429,"number":3,"title":"Handle alert.date in the future","user":{"login":"emilecaron","id":6242447,"avatar_url":"https://avatars.githubusercontent.com/u/6242447?v=3","gravatar_id":"","url":"https://api.github.com/users/emilecaron","html_url":"https://github.com/emilecaron","followers_url":"https://api.github.com/users/emilecaron/followers","following_url":"https://api.github.com/users/emilecaron/following{/other_user}","gists_url":"https://api.github.com/users/emilecaron/gists{/gist_id}","starred_url":"https://api.github.com/users/emilecaron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/emilecaron/subscriptions","organizations_url":"https://api.github.com/users/emilecaron/orgs","repos_url":"https://api.github.com/users/emilecaron/repos","events_url":"https://api.github.com/users/emilecaron/events{/privacy}","received_events_url":"https://api.github.com/users/emilecaron/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:05Z","updated_at":"2015-01-01T15:05:05Z","closed_at":null,"body":""}},"public":true,"created_at":"2015-01-01T15:05:05Z"}
,{"id":"2489653405","type":"PushEvent","actor":{"id":133691,"login":"gurunars","gravatar_id":"","url":"https://api.github.com/users/gurunars","avatar_url":"https://avatars.githubusercontent.com/u/133691?"},"repo":{"id":26864615,"name":"gurunars/gurunars.github.io","url":"https://api.github.com/repos/gurunars/gurunars.github.io"},"payload":{"push_id":536865071,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"00a358962973133f1f87103b034e4bd210d54a5e","before":"b747ea81bd2e80c6381e0aae3c19e11ca147a27f","commits":[{"sha":"00a358962973133f1f87103b034e4bd210d54a5e","author":{"email":"2bae8075423fd09d34532d5328ba3cbe924763f0@gmail.com","name":"Anton Berezin"},"message":"Posts","distinct":true,"url":"https://api.github.com/repos/gurunars/gurunars.github.io/commits/00a358962973133f1f87103b034e4bd210d54a5e"}]},"public":true,"created_at":"2015-01-01T15:05:05Z"}
,{"id":"2489653406","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":19569477,"name":"cloudify-cosmo/cloudify-cloudstack-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cloudstack-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify plugin for CloudStack ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:05Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653410","type":"PushEvent","actor":{"id":5207740,"login":"deavmi","gravatar_id":"","url":"https://api.github.com/users/deavmi","avatar_url":"https://avatars.githubusercontent.com/u/5207740?"},"repo":{"id":28594765,"name":"TermLang/TermLang","url":"https://api.github.com/repos/TermLang/TermLang"},"payload":{"push_id":536865073,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f","before":"d0ff80a8c9f78898f025be918ce63f1f96d0bd23","commits":[{"sha":"3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f","author":{"email":"fa6aee1990af62bf51cd97811e799a79793c3c18@gmail.com","name":"Tristan B. Kildaire"},"message":"Much update.","distinct":true,"url":"https://api.github.com/repos/TermLang/TermLang/commits/3bc8fe4eb7f388e9d28ed9256e8b7c867f99477f"}]},"public":true,"created_at":"2015-01-01T15:05:05Z","org":{"id":10340174,"login":"TermLang","gravatar_id":"","url":"https://api.github.com/orgs/TermLang","avatar_url":"https://avatars.githubusercontent.com/u/10340174?"}}
,{"id":"2489653414","type":"PushEvent","actor":{"id":926454,"login":"lukeis","gravatar_id":"","url":"https://api.github.com/users/lukeis","avatar_url":"https://avatars.githubusercontent.com/u/926454?"},"repo":{"id":9457897,"name":"SeleniumHQ/irc-logs","url":"https://api.github.com/repos/SeleniumHQ/irc-logs"},"payload":{"push_id":536865074,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bf468aab3a56fb824f2c5881cb92105b6d454084","before":"42b668380d07c94d83beb1ce1b4ff91109e6a022","commits":[{"sha":"bf468aab3a56fb824f2c5881cb92105b6d454084","author":{"email":"c7f2353e77fbd59227c091422ca81210965ba01d","name":"selloggingbot"},"message":"updating logs","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/irc-logs/commits/bf468aab3a56fb824f2c5881cb92105b6d454084"}]},"public":true,"created_at":"2015-01-01T15:05:05Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}}
,{"id":"2489653415","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":"rails4mysql22","ref_type":"tag","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:05Z"}
,{"id":"2489653417","type":"CreateEvent","actor":{"id":5339055,"login":"Pisces000221","gravatar_id":"","url":"https://api.github.com/users/Pisces000221","avatar_url":"https://avatars.githubusercontent.com/u/5339055?"},"repo":{"id":28688692,"name":"a6trs/accumu-note","url":"https://api.github.com/repos/a6trs/accumu-note"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"每一个伟大的工程背后,都有着无数不为人知的故事和秘密。","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z","org":{"id":10167537,"login":"a6trs","gravatar_id":"","url":"https://api.github.com/orgs/a6trs","avatar_url":"https://avatars.githubusercontent.com/u/10167537?"}}
,{"id":"2489653418","type":"CreateEvent","actor":{"id":1308306,"login":"relativebit","gravatar_id":"","url":"https://api.github.com/users/relativebit","avatar_url":"https://avatars.githubusercontent.com/u/1308306?"},"repo":{"id":28574566,"name":"relativebit/relativebit.com","url":"https://api.github.com/repos/relativebit/relativebit.com"},"payload":{"ref":"doven","ref_type":"branch","master_branch":"master","description":"Source for https://relativebit.com","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653422","type":"PushEvent","actor":{"id":6158630,"login":"greatfire","gravatar_id":"","url":"https://api.github.com/users/greatfire","avatar_url":"https://avatars.githubusercontent.com/u/6158630?"},"repo":{"id":18126008,"name":"greatfire/z","url":"https://api.github.com/repos/greatfire/z"},"payload":{"push_id":536865076,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"88f262e09f7d3b1681c952961985083cfd48bc41","before":"3a3f749dee0da674db13c946d2b74a1f4ded512b","commits":[{"sha":"88f262e09f7d3b1681c952961985083cfd48bc41","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/z/commits/88f262e09f7d3b1681c952961985083cfd48bc41"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653424","type":"PushEvent","actor":{"id":1306576,"login":"LostCrew","gravatar_id":"","url":"https://api.github.com/users/LostCrew","avatar_url":"https://avatars.githubusercontent.com/u/1306576?"},"repo":{"id":10228575,"name":"LostCrew/rateyourmusic","url":"https://api.github.com/repos/LostCrew/rateyourmusic"},"payload":{"push_id":536865078,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db27be999761842098aa2b3455907ca0141853e4","before":"295ebcdb15342f414ef1665af4968d28b5883a99","commits":[{"sha":"db27be999761842098aa2b3455907ca0141853e4","author":{"email":"52d3bae5c1352c5f807c79f488efa95d1c522870@lostcrew.it","name":"Emanuele Marchi"},"message":"updated description and README","distinct":true,"url":"https://api.github.com/repos/LostCrew/rateyourmusic/commits/db27be999761842098aa2b3455907ca0141853e4"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653427","type":"CreateEvent","actor":{"id":7732667,"login":"lihechao","gravatar_id":"","url":"https://api.github.com/users/lihechao","avatar_url":"https://avatars.githubusercontent.com/u/7732667?"},"repo":{"id":28688693,"name":"lihechao/ChatRoom","url":"https://api.github.com/repos/lihechao/ChatRoom"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"C/S模式的网络聊天室客户端和服务器","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653430","type":"PushEvent","actor":{"id":612769,"login":"csabagaspar","gravatar_id":"","url":"https://api.github.com/users/csabagaspar","avatar_url":"https://avatars.githubusercontent.com/u/612769?"},"repo":{"id":24816620,"name":"csabagaspar/example-tools","url":"https://api.github.com/repos/csabagaspar/example-tools"},"payload":{"push_id":536865085,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"477a3c62ab99e6b0805fd86984ad1b21feda0c08","before":"224398ea57849cce2a1fddd92e0ce93343172991","commits":[{"sha":"477a3c62ab99e6b0805fd86984ad1b21feda0c08","author":{"email":"d645ea8f2305bb71f622d0e14248fca98135d66d@gmail.com","name":"csabagaspar"},"message":"logstash and jackson","distinct":true,"url":"https://api.github.com/repos/csabagaspar/example-tools/commits/477a3c62ab99e6b0805fd86984ad1b21feda0c08"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653435","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327432,"name":"cloudify-cosmo/cloudify-openstack-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:08Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653438","type":"IssuesEvent","actor":{"id":1665772,"login":"ondrejsika","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","avatar_url":"https://avatars.githubusercontent.com/u/1665772?"},"repo":{"id":13438321,"name":"phphost/phphost","url":"https://api.github.com/repos/phphost/phphost"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/phphost/phphost/issues/5","labels_url":"https://api.github.com/repos/phphost/phphost/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/phphost/phphost/issues/5/comments","events_url":"https://api.github.com/repos/phphost/phphost/issues/5/events","html_url":"https://github.com/phphost/phphost/issues/5","id":53221431,"number":5,"title":"postgres support","user":{"login":"ondrejsika","id":1665772,"avatar_url":"https://avatars.githubusercontent.com/u/1665772?v=3","gravatar_id":"","url":"https://api.github.com/users/ondrejsika","html_url":"https://github.com/ondrejsika","followers_url":"https://api.github.com/users/ondrejsika/followers","following_url":"https://api.github.com/users/ondrejsika/following{/other_user}","gists_url":"https://api.github.com/users/ondrejsika/gists{/gist_id}","starred_url":"https://api.github.com/users/ondrejsika/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ondrejsika/subscriptions","organizations_url":"https://api.github.com/users/ondrejsika/orgs","repos_url":"https://api.github.com/users/ondrejsika/repos","events_url":"https://api.github.com/users/ondrejsika/events{/privacy}","received_events_url":"https://api.github.com/users/ondrejsika/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:08Z","updated_at":"2015-01-01T15:05:08Z","closed_at":null,"body":"https://github.com/phphost/phm/issues/2"}},"public":true,"created_at":"2015-01-01T15:05:08Z","org":{"id":5645680,"login":"phphost","gravatar_id":"","url":"https://api.github.com/orgs/phphost","avatar_url":"https://avatars.githubusercontent.com/u/5645680?"}}
,{"id":"2489653440","type":"PushEvent","actor":{"id":6771700,"login":"cjwddtc","gravatar_id":"","url":"https://api.github.com/users/cjwddtc","avatar_url":"https://avatars.githubusercontent.com/u/6771700?"},"repo":{"id":28661026,"name":"cjwddtc/asd","url":"https://api.github.com/repos/cjwddtc/asd"},"payload":{"push_id":536865089,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8917c3c8d3752d735b48b2d7e0942ca0d2d73936","before":"4d727b37440f523c204f463e0f4a3f939de06688","commits":[{"sha":"8917c3c8d3752d735b48b2d7e0942ca0d2d73936","author":{"email":"cce0ee3666d2a8038a5486a3a2e0ef7df45eb8e9@ssmail.hit.edu.cn","name":"cjwddtc"},"message":"修复\n\n修复","distinct":true,"url":"https://api.github.com/repos/cjwddtc/asd/commits/8917c3c8d3752d735b48b2d7e0942ca0d2d73936"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653444","type":"PushEvent","actor":{"id":201138,"login":"exuperok","gravatar_id":"","url":"https://api.github.com/users/exuperok","avatar_url":"https://avatars.githubusercontent.com/u/201138?"},"repo":{"id":28685012,"name":"exuperok/dojo_rules","url":"https://api.github.com/repos/exuperok/dojo_rules"},"payload":{"push_id":536865091,"size":1,"distinct_size":1,"ref":"refs/heads/release_branch_1.0","head":"03c94e8f323ad20a3d72766734a86d609acf9e43","before":"61fef70ed01accb61d78eceadebf2213098fc9aa","commits":[{"sha":"03c94e8f323ad20a3d72766734a86d609acf9e43","author":{"email":"5c42cbeae7aa5f4bd3816fa47f49e5ce7a88d270@yahoo.fr","name":"Exuper O"},"message":"task(kill_list): replace kill list with coding practices instead of assassins","distinct":true,"url":"https://api.github.com/repos/exuperok/dojo_rules/commits/03c94e8f323ad20a3d72766734a86d609acf9e43"}]},"public":true,"created_at":"2015-01-01T15:05:08Z"}
,{"id":"2489653447","type":"WatchEvent","actor":{"id":1730702,"login":"mquandalle","gravatar_id":"","url":"https://api.github.com/users/mquandalle","avatar_url":"https://avatars.githubusercontent.com/u/1730702?"},"repo":{"id":11654790,"name":"techfort/LokiJS","url":"https://api.github.com/repos/techfort/LokiJS"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:09Z"}
,{"id":"2489653448","type":"PushEvent","actor":{"id":6158630,"login":"greatfire","gravatar_id":"","url":"https://api.github.com/users/greatfire","avatar_url":"https://avatars.githubusercontent.com/u/6158630?"},"repo":{"id":15100395,"name":"greatfire/wiki","url":"https://api.github.com/repos/greatfire/wiki"},"payload":{"push_id":536865080,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fc8fa23156b2f8e0324c2b1ccc31eded475ab640","before":"285f31f23dfe56b375350a6daa8b79afe65adbe7","commits":[{"sha":"fc8fa23156b2f8e0324c2b1ccc31eded475ab640","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/wiki/commits/fc8fa23156b2f8e0324c2b1ccc31eded475ab640"}]},"public":true,"created_at":"2015-01-01T15:05:09Z"}
,{"id":"2489653451","type":"PushEvent","actor":{"id":72053,"login":"graemeg","gravatar_id":"","url":"https://api.github.com/users/graemeg","avatar_url":"https://avatars.githubusercontent.com/u/72053?"},"repo":{"id":171777,"name":"graemeg/lazarus","url":"https://api.github.com/repos/graemeg/lazarus"},"payload":{"push_id":536865094,"size":1,"distinct_size":1,"ref":"refs/heads/upstream","head":"189169453e44e900f72254097226403eaeaf3ed0","before":"5bb7df77780ec5b358ba4976f2904425ea49df9a","commits":[{"sha":"189169453e44e900f72254097226403eaeaf3ed0","author":{"email":"9e2282b90ff89d0d1e4630c2f585c6220d1db1bc@4005530d-fff6-0310-9dd1-cebe43e6787f","name":"joost"},"message":"fpmake: Search in all available packages for packages with the LazarusDsgnPkg flag. Include those packages in the ide using staticpackages.inc\n\ngit-svn-id: http://svn.freepascal.org/svn/lazarus/trunk@47277 4005530d-fff6-0310-9dd1-cebe43e6787f","distinct":true,"url":"https://api.github.com/repos/graemeg/lazarus/commits/189169453e44e900f72254097226403eaeaf3ed0"}]},"public":true,"created_at":"2015-01-01T15:05:09Z"}
,{"id":"2489653453","type":"IssuesEvent","actor":{"id":1459257,"login":"lloydbenson","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","avatar_url":"https://avatars.githubusercontent.com/u/1459257?"},"repo":{"id":23658480,"name":"fishin/gills","url":"https://api.github.com/repos/fishin/gills"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/fishin/gills/issues/36","labels_url":"https://api.github.com/repos/fishin/gills/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/fishin/gills/issues/36/comments","events_url":"https://api.github.com/repos/fishin/gills/issues/36/events","html_url":"https://github.com/fishin/gills/issues/36","id":52898665,"number":36,"title":"fix git pull","user":{"login":"lloydbenson","id":1459257,"avatar_url":"https://avatars.githubusercontent.com/u/1459257?v=3","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","html_url":"https://github.com/lloydbenson","followers_url":"https://api.github.com/users/lloydbenson/followers","following_url":"https://api.github.com/users/lloydbenson/following{/other_user}","gists_url":"https://api.github.com/users/lloydbenson/gists{/gist_id}","starred_url":"https://api.github.com/users/lloydbenson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lloydbenson/subscriptions","organizations_url":"https://api.github.com/users/lloydbenson/orgs","repos_url":"https://api.github.com/users/lloydbenson/repos","events_url":"https://api.github.com/users/lloydbenson/events{/privacy}","received_events_url":"https://api.github.com/users/lloydbenson/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"lloydbenson","id":1459257,"avatar_url":"https://avatars.githubusercontent.com/u/1459257?v=3","gravatar_id":"","url":"https://api.github.com/users/lloydbenson","html_url":"https://github.com/lloydbenson","followers_url":"https://api.github.com/users/lloydbenson/followers","following_url":"https://api.github.com/users/lloydbenson/following{/other_user}","gists_url":"https://api.github.com/users/lloydbenson/gists{/gist_id}","starred_url":"https://api.github.com/users/lloydbenson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lloydbenson/subscriptions","organizations_url":"https://api.github.com/users/lloydbenson/orgs","repos_url":"https://api.github.com/users/lloydbenson/repos","events_url":"https://api.github.com/users/lloydbenson/events{/privacy}","received_events_url":"https://api.github.com/users/lloydbenson/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2014-12-26T12:50:05Z","updated_at":"2015-01-01T15:05:09Z","closed_at":"2015-01-01T15:05:09Z","body":"Fix git pull issues if you change branch, it doesnt care."}},"public":true,"created_at":"2015-01-01T15:05:09Z","org":{"id":8632751,"login":"fishin","gravatar_id":"","url":"https://api.github.com/orgs/fishin","avatar_url":"https://avatars.githubusercontent.com/u/8632751?"}}
,{"id":"2489653456","type":"PushEvent","actor":{"id":803768,"login":"backbone","gravatar_id":"","url":"https://api.github.com/users/backbone","avatar_url":"https://avatars.githubusercontent.com/u/803768?"},"repo":{"id":24404721,"name":"backbone/portage-tree","url":"https://api.github.com/repos/backbone/portage-tree"},"payload":{"push_id":536865097,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4f94bfc2c04c28d19a4713826ba603c7c8964830","before":"ab7ad151e49108132a8fb91ba259fd31f196e04e","commits":[{"sha":"4f94bfc2c04c28d19a4713826ba603c7c8964830","author":{"email":"4da38e79dbf743adc207e22b3829ee998325e896@backbone.ws","name":"Kolan Sh"},"message":"Sync with portage [Thu Jan  1 18:05:03 MSK 2015].","distinct":true,"url":"https://api.github.com/repos/backbone/portage-tree/commits/4f94bfc2c04c28d19a4713826ba603c7c8964830"}]},"public":true,"created_at":"2015-01-01T15:05:10Z"}
,{"id":"2489653457","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327432,"name":"cloudify-cosmo/cloudify-openstack-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-openstack-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify OpenStack Provider","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:10Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653463","type":"PushEvent","actor":{"id":4510675,"login":"mojo1643","gravatar_id":"","url":"https://api.github.com/users/mojo1643","avatar_url":"https://avatars.githubusercontent.com/u/4510675?"},"repo":{"id":27554864,"name":"mojo1643/Dalal_v2","url":"https://api.github.com/repos/mojo1643/Dalal_v2"},"payload":{"push_id":536865100,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"a09ea229fb445b91bd21dc50e1f0c115624475e4","before":"ab3bac8f1795d5980b3905e7be2b400061364d22","commits":[{"sha":"918200d0165aa12aa797eee361c963c15d4cf718","author":{"email":"35018c8890fea7a8ef5cb6cb9e1bcfa0dcf3c2c7@gmail.com","name":"mojo1643"},"message":"buy_sell_updates","distinct":true,"url":"https://api.github.com/repos/mojo1643/Dalal_v2/commits/918200d0165aa12aa797eee361c963c15d4cf718"},{"sha":"4938d5c25d7b275d22ef6a0238803a5440747892","author":{"email":"35018c8890fea7a8ef5cb6cb9e1bcfa0dcf3c2c7@gmail.com","name":"mojo1643"},"message":"century","distinct":true,"url":"https://api.github.com/repos/mojo1643/Dalal_v2/commits/4938d5c25d7b275d22ef6a0238803a5440747892"},{"sha":"a09ea229fb445b91bd21dc50e1f0c115624475e4","author":{"email":"35018c8890fea7a8ef5cb6cb9e1bcfa0dcf3c2c7@gmail.com","name":"mojo1643"},"message":"century","distinct":true,"url":"https://api.github.com/repos/mojo1643/Dalal_v2/commits/a09ea229fb445b91bd21dc50e1f0c115624475e4"}]},"public":true,"created_at":"2015-01-01T15:05:11Z"}
,{"id":"2489653464","type":"PushEvent","actor":{"id":4151414,"login":"simplement-e","gravatar_id":"","url":"https://api.github.com/users/simplement-e","avatar_url":"https://avatars.githubusercontent.com/u/4151414?"},"repo":{"id":22617225,"name":"simplement-e/aurore","url":"https://api.github.com/repos/simplement-e/aurore"},"payload":{"push_id":536865101,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7a0982f31a48e0a11dc8078ca1e8191702c1c60b","before":"e12c2e467e290c9aff390e251efdf94f34c01e09","commits":[{"sha":"7a0982f31a48e0a11dc8078ca1e8191702c1c60b","author":{"email":"17b9e1c64588c7fa6419b4d29dc1f4426279ba01@simplement-e.fr","name":"Michael"},"message":"Obtention ip locale zipato depuis serveur cloud","distinct":true,"url":"https://api.github.com/repos/simplement-e/aurore/commits/7a0982f31a48e0a11dc8078ca1e8191702c1c60b"}]},"public":true,"created_at":"2015-01-01T15:05:11Z"}
,{"id":"2489653467","type":"IssueCommentEvent","actor":{"id":564592,"login":"HeinrichApfelmus","gravatar_id":"","url":"https://api.github.com/users/HeinrichApfelmus","avatar_url":"https://avatars.githubusercontent.com/u/564592?"},"repo":{"id":6774018,"name":"fpco/stackage","url":"https://api.github.com/repos/fpco/stackage"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fpco/stackage/issues/295","labels_url":"https://api.github.com/repos/fpco/stackage/issues/295/labels{/name}","comments_url":"https://api.github.com/repos/fpco/stackage/issues/295/comments","events_url":"https://api.github.com/repos/fpco/stackage/issues/295/events","html_url":"https://github.com/fpco/stackage/issues/295","id":44212499,"number":295,"title":"threepenny-gui: does not support websockets 0.9","user":{"login":"snoyberg","id":49415,"avatar_url":"https://avatars.githubusercontent.com/u/49415?v=3","gravatar_id":"","url":"https://api.github.com/users/snoyberg","html_url":"https://github.com/snoyberg","followers_url":"https://api.github.com/users/snoyberg/followers","following_url":"https://api.github.com/users/snoyberg/following{/other_user}","gists_url":"https://api.github.com/users/snoyberg/gists{/gist_id}","starred_url":"https://api.github.com/users/snoyberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/snoyberg/subscriptions","organizations_url":"https://api.github.com/users/snoyberg/orgs","repos_url":"https://api.github.com/users/snoyberg/repos","events_url":"https://api.github.com/users/snoyberg/events{/privacy}","received_events_url":"https://api.github.com/users/snoyberg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-09-28T04:10:15Z","updated_at":"2015-01-01T15:05:11Z","closed_at":"2014-12-31T09:05:11Z","body":"threepenny-gui-0.4.2.0 (FP Complete <michael@fpcomplete.com> ) cannot use: \r\n- websockets-0.9.0.1 -- ==0.8.*\r\n- websockets-snap-0.9.0.0 -- ==0.8.*\r\n\r\nPinging @HeinrichApfelmus"},"comment":{"url":"https://api.github.com/repos/fpco/stackage/issues/comments/68488578","html_url":"https://github.com/fpco/stackage/issues/295#issuecomment-68488578","issue_url":"https://api.github.com/repos/fpco/stackage/issues/295","id":68488578,"user":{"login":"HeinrichApfelmus","id":564592,"avatar_url":"https://avatars.githubusercontent.com/u/564592?v=3","gravatar_id":"","url":"https://api.github.com/users/HeinrichApfelmus","html_url":"https://github.com/HeinrichApfelmus","followers_url":"https://api.github.com/users/HeinrichApfelmus/followers","following_url":"https://api.github.com/users/HeinrichApfelmus/following{/other_user}","gists_url":"https://api.github.com/users/HeinrichApfelmus/gists{/gist_id}","starred_url":"https://api.github.com/users/HeinrichApfelmus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/HeinrichApfelmus/subscriptions","organizations_url":"https://api.github.com/users/HeinrichApfelmus/orgs","repos_url":"https://api.github.com/users/HeinrichApfelmus/repos","events_url":"https://api.github.com/users/HeinrichApfelmus/events{/privacy}","received_events_url":"https://api.github.com/users/HeinrichApfelmus/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:11Z","updated_at":"2015-01-01T15:05:11Z","body":"Unfortunately, I don't think I'll be able to fulfill the maintainer's agreement in the foreseeable future, so I have to decline."}},"public":true,"created_at":"2015-01-01T15:05:11Z","org":{"id":2163372,"login":"fpco","gravatar_id":"","url":"https://api.github.com/orgs/fpco","avatar_url":"https://avatars.githubusercontent.com/u/2163372?"}}
,{"id":"2489653473","type":"PullRequestEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"action":"closed","number":48,"pull_request":{"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48","id":26743796,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48","diff_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.diff","patch_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48.patch","issue_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48","number":48,"state":"closed","locked":false,"title":"Silver Forest","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:04:07Z","updated_at":"2015-01-01T15:05:12Z","closed_at":"2015-01-01T15:05:12Z","merged_at":"2015-01-01T15:05:12Z","merge_commit_sha":"68eaced4ddc7c7de603a40d4205694a1cd752cf8","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits","review_comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments","review_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573","head":{"label":"syon:middleman","ref":"middleman","sha":"a133ccb43da62f8b35640a3519e5a519669e1573","user":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"repo":{"id":21061659,"name":"andy-hiroyuki.github.io","full_name":"syon/andy-hiroyuki.github.io","owner":{"login":"syon","id":3148102,"avatar_url":"https://avatars.githubusercontent.com/u/3148102?v=3","gravatar_id":"","url":"https://api.github.com/users/syon","html_url":"https://github.com/syon","followers_url":"https://api.github.com/users/syon/followers","following_url":"https://api.github.com/users/syon/following{/other_user}","gists_url":"https://api.github.com/users/syon/gists{/gist_id}","starred_url":"https://api.github.com/users/syon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/syon/subscriptions","organizations_url":"https://api.github.com/users/syon/orgs","repos_url":"https://api.github.com/users/syon/repos","events_url":"https://api.github.com/users/syon/events{/privacy}","received_events_url":"https://api.github.com/users/syon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/syon/andy-hiroyuki.github.io","description":"","fork":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T06:00:23Z","updated_at":"2014-12-23T17:37:01Z","pushed_at":"2015-01-01T15:03:46Z","git_url":"git://github.com/syon/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:syon/andy-hiroyuki.github.io.git","clone_url":"https://github.com/syon/andy-hiroyuki.github.io.git","svn_url":"https://github.com/syon/andy-hiroyuki.github.io","homepage":null,"size":16189,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"andy-hiroyuki:middleman","ref":"middleman","sha":"2321737bf1add6a64d3cefb5f3e4699fd2d93491","user":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"repo":{"id":21061553,"name":"andy-hiroyuki.github.io","full_name":"andy-hiroyuki/andy-hiroyuki.github.io","owner":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","description":"","fork":false,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io","forks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/forks","keys_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/teams","hooks_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/hooks","issue_events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/events{/number}","events_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/events","assignees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/assignees{/user}","branches_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/branches{/branch}","tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/tags","blobs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/refs{/sha}","trees_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/{sha}","languages_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/languages","stargazers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/stargazers","contributors_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contributors","subscribers_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscribers","subscription_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/subscription","commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits{/sha}","git_commits_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/git/commits{/sha}","comments_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/comments{/number}","issue_comment_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/comments/{number}","contents_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/contents/{+path}","compare_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/merges","archive_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/downloads","issues_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues{/number}","pulls_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls{/number}","milestones_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/milestones{/number}","notifications_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/labels{/name}","releases_url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/releases{/id}","created_at":"2014-06-21T05:52:31Z","updated_at":"2014-12-23T17:40:26Z","pushed_at":"2015-01-01T15:05:12Z","git_url":"git://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","ssh_url":"git@github.com:andy-hiroyuki/andy-hiroyuki.github.io.git","clone_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io.git","svn_url":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io","homepage":null,"size":16162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48"},"html":{"href":"https://github.com/andy-hiroyuki/andy-hiroyuki.github.io/pull/48"},"issue":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48"},"comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/issues/48/comments"},"review_comments":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/comments"},"review_comment":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/pulls/48/commits"},"statuses":{"href":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/statuses/a133ccb43da62f8b35640a3519e5a519669e1573"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"andy-hiroyuki","id":7948328,"avatar_url":"https://avatars.githubusercontent.com/u/7948328?v=3","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","html_url":"https://github.com/andy-hiroyuki","followers_url":"https://api.github.com/users/andy-hiroyuki/followers","following_url":"https://api.github.com/users/andy-hiroyuki/following{/other_user}","gists_url":"https://api.github.com/users/andy-hiroyuki/gists{/gist_id}","starred_url":"https://api.github.com/users/andy-hiroyuki/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andy-hiroyuki/subscriptions","organizations_url":"https://api.github.com/users/andy-hiroyuki/orgs","repos_url":"https://api.github.com/users/andy-hiroyuki/repos","events_url":"https://api.github.com/users/andy-hiroyuki/events{/privacy}","received_events_url":"https://api.github.com/users/andy-hiroyuki/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:05:12Z"}
,{"id":"2489653476","type":"PushEvent","actor":{"id":106133,"login":"Tiggar","gravatar_id":"","url":"https://api.github.com/users/Tiggar","avatar_url":"https://avatars.githubusercontent.com/u/106133?"},"repo":{"id":27003508,"name":"Tiggar/isp-performance","url":"https://api.github.com/repos/Tiggar/isp-performance"},"payload":{"push_id":536865106,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"4d45b8162036efa140652e55c1fb406e473b0c22","before":"7b2ec211d48bc075a9c6e34d9a7dd24605edd7b1","commits":[{"sha":"4d45b8162036efa140652e55c1fb406e473b0c22","author":{"email":"5069df3b8e9785f1eb5e6bda1f2483f61b73e1aa@gmail.com","name":"Jan Michael"},"message":"updates all charts","distinct":true,"url":"https://api.github.com/repos/Tiggar/isp-performance/commits/4d45b8162036efa140652e55c1fb406e473b0c22"}]},"public":true,"created_at":"2015-01-01T15:05:12Z"}
,{"id":"2489653477","type":"PushEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"push_id":536865107,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3d532869ebb6a02dd7eb1786471c1cf54005b36f","before":"bd3c8779721d3827942678df29146920b28a67d1","commits":[{"sha":"3d532869ebb6a02dd7eb1786471c1cf54005b36f","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@hudson.samsungcloud.org","name":"root"},"message":"rails4mysql2","distinct":true,"url":"https://api.github.com/repos/syssys123/apiproject20141/commits/3d532869ebb6a02dd7eb1786471c1cf54005b36f"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"}
,{"id":"2489653478","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684007,"name":"cloudify-cosmo/cloudify-libcloud-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:13Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653480","type":"PushEvent","actor":{"id":7948328,"login":"andy-hiroyuki","gravatar_id":"","url":"https://api.github.com/users/andy-hiroyuki","avatar_url":"https://avatars.githubusercontent.com/u/7948328?"},"repo":{"id":21061553,"name":"andy-hiroyuki/andy-hiroyuki.github.io","url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io"},"payload":{"push_id":536865109,"size":2,"distinct_size":2,"ref":"refs/heads/middleman","head":"17d81123f1814cc4bc30a8b5cde2ad676ddb3942","before":"2321737bf1add6a64d3cefb5f3e4699fd2d93491","commits":[{"sha":"a133ccb43da62f8b35640a3519e5a519669e1573","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"Silver Forest","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/a133ccb43da62f8b35640a3519e5a519669e1573"},{"sha":"17d81123f1814cc4bc30a8b5cde2ad676ddb3942","author":{"email":"9caf384f4d1faf46005af9913407078e8d6de5d8@gmail.com","name":"Andy Hiroyuki"},"message":"Merge pull request #48 from syon/middleman\n\nSilver Forest","distinct":true,"url":"https://api.github.com/repos/andy-hiroyuki/andy-hiroyuki.github.io/commits/17d81123f1814cc4bc30a8b5cde2ad676ddb3942"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"}
,{"id":"2489653481","type":"PushEvent","actor":{"id":436691,"login":"lfarrell","gravatar_id":"","url":"https://api.github.com/users/lfarrell","avatar_url":"https://avatars.githubusercontent.com/u/436691?"},"repo":{"id":27356689,"name":"lfarrell/DPLA-Metadata-Explorer","url":"https://api.github.com/repos/lfarrell/DPLA-Metadata-Explorer"},"payload":{"push_id":536865110,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ec36ae152b35bd2c1ace255ca14d7da73b70650a","before":"acf158b3040f94659f754c8ad186fc36f55cf0dd","commits":[{"sha":"ec36ae152b35bd2c1ace255ca14d7da73b70650a","author":{"email":"b11d4f2999ccc74f2c93bc88775bb7be7fad72d9@gmail.com","name":"Larry Farrell"},"message":"Add link out searching. Links work correctly.","distinct":true,"url":"https://api.github.com/repos/lfarrell/DPLA-Metadata-Explorer/commits/ec36ae152b35bd2c1ace255ca14d7da73b70650a"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"}
,{"id":"2489653483","type":"PushEvent","actor":{"id":8448394,"login":"puneetkumaragarwall","gravatar_id":"","url":"https://api.github.com/users/puneetkumaragarwall","avatar_url":"https://avatars.githubusercontent.com/u/8448394?"},"repo":{"id":28298619,"name":"puneetkumaragarwall/ExpediaHotelDeals","url":"https://api.github.com/repos/puneetkumaragarwall/ExpediaHotelDeals"},"payload":{"push_id":536865112,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ae3b8dc179345ecf3bde5f34065470578bf860be","before":"b5cb75f124823bbebb8ac343e0c744c9755b07ca","commits":[{"sha":"ae3b8dc179345ecf3bde5f34065470578bf860be","author":{"email":"a0c95c08074bbbc08b2fd2a825e9033dde96ec55@yahoo.co.in","name":"puneetkumaragarwall"},"message":"added jetty runner","distinct":true,"url":"https://api.github.com/repos/puneetkumaragarwall/ExpediaHotelDeals/commits/ae3b8dc179345ecf3bde5f34065470578bf860be"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"}
,{"id":"2489653484","type":"CreateEvent","actor":{"id":7875273,"login":"Paz23","gravatar_id":"","url":"https://api.github.com/users/Paz23","avatar_url":"https://avatars.githubusercontent.com/u/7875273?"},"repo":{"id":28688686,"name":"Paz23/cd_mongoose_dashboard","url":"https://api.github.com/repos/Paz23/cd_mongoose_dashboard"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"node.js w/mongodb & mongoose - basic CRUD operations","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:13Z"}
,{"id":"2489653486","type":"PushEvent","actor":{"id":6895040,"login":"codertradergambler","gravatar_id":"","url":"https://api.github.com/users/codertradergambler","avatar_url":"https://avatars.githubusercontent.com/u/6895040?"},"repo":{"id":18620619,"name":"chancecoin/chancecoinj","url":"https://api.github.com/repos/chancecoin/chancecoinj"},"payload":{"push_id":536865113,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f5591d055c838387eaa8fe838bacb99c15c16e58","before":"2b46c90ae6537603fc0591b4dbb92f9bb70a5535","commits":[{"sha":"f5591d055c838387eaa8fe838bacb99c15c16e58","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/f5591d055c838387eaa8fe838bacb99c15c16e58"}]},"public":true,"created_at":"2015-01-01T15:05:13Z"}
,{"id":"2489653492","type":"PushEvent","actor":{"id":3724388,"login":"cheyang","gravatar_id":"","url":"https://api.github.com/users/cheyang","avatar_url":"https://avatars.githubusercontent.com/u/3724388?"},"repo":{"id":27756669,"name":"cheyang/docker_brick","url":"https://api.github.com/repos/cheyang/docker_brick"},"payload":{"push_id":536865116,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"796e2f27cbc854c8a3778928ad810679b8b213f6","before":"e4a573c9b97b253d785a550171944c09400d2bef","commits":[{"sha":"796e2f27cbc854c8a3778928ad810679b8b213f6","author":{"email":"a29c45cf07a273bd58fb05ec870d18d562d741a4@163.com","name":"cheyang"},"message":"commit 2","distinct":true,"url":"https://api.github.com/repos/cheyang/docker_brick/commits/796e2f27cbc854c8a3778928ad810679b8b213f6"}]},"public":true,"created_at":"2015-01-01T15:05:14Z"}
,{"id":"2489653493","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":20684007,"name":"cloudify-cosmo/cloudify-libcloud-provider","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-libcloud-provider"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify Libcloud provider","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:14Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653494","type":"IssuesEvent","actor":{"id":7356386,"login":"Poulern","gravatar_id":"","url":"https://api.github.com/users/Poulern","avatar_url":"https://avatars.githubusercontent.com/u/7356386?"},"repo":{"id":27872927,"name":"cptnnick/F3_PA","url":"https://api.github.com/repos/cptnnick/F3_PA"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4","labels_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4/comments","events_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/4/events","html_url":"https://github.com/cptnnick/F3_PA/issues/4","id":53221433,"number":4,"title":"What do with radios while waiting for newest F3.","user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cptnnick/F3_PA/labels/question","name":"question","color":"cc317c"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:14Z","updated_at":"2015-01-01T15:05:14Z","closed_at":null,"body":"While we can easily utilize the modules, I'm a bit afraid of the new mission makers, as they will most likely have the whole 31-39 thing happen and people bitching in the AAR. We could update the mission.sqm to include these preplaced, but I'm not sure if thats a good idea at all. \r\n\r\nStick with what we got for now i guess?"}},"public":true,"created_at":"2015-01-01T15:05:14Z"}
,{"id":"2489653496","type":"PushEvent","actor":{"id":6229503,"login":"divingteng","gravatar_id":"","url":"https://api.github.com/users/divingteng","avatar_url":"https://avatars.githubusercontent.com/u/6229503?"},"repo":{"id":24402101,"name":"divingteng/divingteng.github.io","url":"https://api.github.com/repos/divingteng/divingteng.github.io"},"payload":{"push_id":536865117,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6bae03ee51cf01572012128f822c4b2d68a274e8","before":"efd6cb545b08eabf7bd9032bd13926e28b7667d7","commits":[{"sha":"6bae03ee51cf01572012128f822c4b2d68a274e8","author":{"email":"6300585194b05b18f92030355740c498c19577f1@gmail.com","name":"tengyue"},"message":"修改瀑布流加载时背景","distinct":true,"url":"https://api.github.com/repos/divingteng/divingteng.github.io/commits/6bae03ee51cf01572012128f822c4b2d68a274e8"}]},"public":true,"created_at":"2015-01-01T15:05:14Z"}
,{"id":"2489653499","type":"PushEvent","actor":{"id":216771,"login":"jmchilton","gravatar_id":"","url":"https://api.github.com/users/jmchilton","avatar_url":"https://avatars.githubusercontent.com/u/216771?"},"repo":{"id":6923705,"name":"jmchilton/galaxy-central","url":"https://api.github.com/repos/jmchilton/galaxy-central"},"payload":{"push_id":536865120,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"264f7e16bc7026b6557a613edaf58afb148720f5","before":"76382e8b83d0447f23566fa6537c1930dde3782e","commits":[{"sha":"71016e2b8deb423b0acfbd2072e3fc9a06821e05","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"PEP-8 fix for lib/tool_shed/tools/tool_version_manager.py.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/71016e2b8deb423b0acfbd2072e3fc9a06821e05"},{"sha":"fa70d39fdb82b0608220a8601fffd0a6aa3e2a23","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"Unit test to verify tool panel handles multiple successive TS install...\nIn particular that the integrated panel reflects all the installed tools but that they are groupped correctly in ToolBox._tool_panel.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/fa70d39fdb82b0608220a8601fffd0a6aa3e2a23"},{"sha":"ef421522e5d0d050e081202a7c8bb8cfaba4f57e","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"Tweak InstallManger handle_repository_contents to clarify...\n... that this method is only used within this class.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/ef421522e5d0d050e081202a7c8bb8cfaba4f57e"},{"sha":"264f7e16bc7026b6557a613edaf58afb148720f5","author":{"email":"e361bfc8c8526c02f5efd3e71aa466615402f28f@gmail.com","name":"John Chilton"},"message":"Bugfix: Populte tool lineage stuff prior to install.\nDuring tool shed tool installs populate lineage information in tool shed install database prior to adding tool to the tool panel so that the lineage information may be used to group tools. Previously I believe these tools would only be correctly groupped after restarting Galaxy.","distinct":true,"url":"https://api.github.com/repos/jmchilton/galaxy-central/commits/264f7e16bc7026b6557a613edaf58afb148720f5"}]},"public":true,"created_at":"2015-01-01T15:05:15Z"}
,{"id":"2489653504","type":"IssueCommentEvent","actor":{"id":180264,"login":"sethrubenstein","gravatar_id":"","url":"https://api.github.com/users/sethrubenstein","avatar_url":"https://avatars.githubusercontent.com/u/180264?"},"repo":{"id":14286513,"name":"PixelRocket-Biz/cliff-michaels","url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","labels_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/labels{/name}","comments_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/comments","events_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/events","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163","id":53198415,"number":163,"title":"HOW DO PEOPLE KNOW HOW TO PRINT THEIR SAVED TOOLS?","user":{"login":"cliffmichaelsgithub","id":6202539,"avatar_url":"https://avatars.githubusercontent.com/u/6202539?v=3","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","html_url":"https://github.com/cliffmichaelsgithub","followers_url":"https://api.github.com/users/cliffmichaelsgithub/followers","following_url":"https://api.github.com/users/cliffmichaelsgithub/following{/other_user}","gists_url":"https://api.github.com/users/cliffmichaelsgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/cliffmichaelsgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cliffmichaelsgithub/subscriptions","organizations_url":"https://api.github.com/users/cliffmichaelsgithub/orgs","repos_url":"https://api.github.com/users/cliffmichaelsgithub/repos","events_url":"https://api.github.com/users/cliffmichaelsgithub/events{/privacy}","received_events_url":"https://api.github.com/users/cliffmichaelsgithub/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T19:05:12Z","updated_at":"2015-01-01T15:05:16Z","closed_at":"2015-01-01T15:05:16Z","body":"Will we have a PINT BUTTON ON the tool or exercise edit page?"},"comment":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/comments/68488580","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163#issuecomment-68488580","issue_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","id":68488580,"user":{"login":"sethrubenstein","id":180264,"avatar_url":"https://avatars.githubusercontent.com/u/180264?v=3","gravatar_id":"","url":"https://api.github.com/users/sethrubenstein","html_url":"https://github.com/sethrubenstein","followers_url":"https://api.github.com/users/sethrubenstein/followers","following_url":"https://api.github.com/users/sethrubenstein/following{/other_user}","gists_url":"https://api.github.com/users/sethrubenstein/gists{/gist_id}","starred_url":"https://api.github.com/users/sethrubenstein/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sethrubenstein/subscriptions","organizations_url":"https://api.github.com/users/sethrubenstein/orgs","repos_url":"https://api.github.com/users/sethrubenstein/repos","events_url":"https://api.github.com/users/sethrubenstein/events{/privacy}","received_events_url":"https://api.github.com/users/sethrubenstein/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:16Z","updated_at":"2015-01-01T15:05:16Z","body":"Part of Chris Coveys notes - add a print button. Thats in my todo list for things to get out Sunday."}},"public":true,"created_at":"2015-01-01T15:05:16Z","org":{"id":4207428,"login":"PixelRocket-Biz","gravatar_id":"","url":"https://api.github.com/orgs/PixelRocket-Biz","avatar_url":"https://avatars.githubusercontent.com/u/4207428?"}}
,{"id":"2489653505","type":"IssuesEvent","actor":{"id":180264,"login":"sethrubenstein","gravatar_id":"","url":"https://api.github.com/users/sethrubenstein","avatar_url":"https://avatars.githubusercontent.com/u/180264?"},"repo":{"id":14286513,"name":"PixelRocket-Biz/cliff-michaels","url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163","labels_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/labels{/name}","comments_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/comments","events_url":"https://api.github.com/repos/PixelRocket-Biz/cliff-michaels/issues/163/events","html_url":"https://github.com/PixelRocket-Biz/cliff-michaels/issues/163","id":53198415,"number":163,"title":"HOW DO PEOPLE KNOW HOW TO PRINT THEIR SAVED TOOLS?","user":{"login":"cliffmichaelsgithub","id":6202539,"avatar_url":"https://avatars.githubusercontent.com/u/6202539?v=3","gravatar_id":"","url":"https://api.github.com/users/cliffmichaelsgithub","html_url":"https://github.com/cliffmichaelsgithub","followers_url":"https://api.github.com/users/cliffmichaelsgithub/followers","following_url":"https://api.github.com/users/cliffmichaelsgithub/following{/other_user}","gists_url":"https://api.github.com/users/cliffmichaelsgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/cliffmichaelsgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cliffmichaelsgithub/subscriptions","organizations_url":"https://api.github.com/users/cliffmichaelsgithub/orgs","repos_url":"https://api.github.com/users/cliffmichaelsgithub/repos","events_url":"https://api.github.com/users/cliffmichaelsgithub/events{/privacy}","received_events_url":"https://api.github.com/users/cliffmichaelsgithub/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-31T19:05:12Z","updated_at":"2015-01-01T15:05:16Z","closed_at":"2015-01-01T15:05:16Z","body":"Will we have a PINT BUTTON ON the tool or exercise edit page?"}},"public":true,"created_at":"2015-01-01T15:05:16Z","org":{"id":4207428,"login":"PixelRocket-Biz","gravatar_id":"","url":"https://api.github.com/orgs/PixelRocket-Biz","avatar_url":"https://avatars.githubusercontent.com/u/4207428?"}}
,{"id":"2489653506","type":"WatchEvent","actor":{"id":853977,"login":"yous","gravatar_id":"","url":"https://api.github.com/users/yous","avatar_url":"https://avatars.githubusercontent.com/u/853977?"},"repo":{"id":28237300,"name":"SatanWoo/3D-Github-Contribution","url":"https://api.github.com/repos/SatanWoo/3D-Github-Contribution"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:16Z"}
,{"id":"2489653508","type":"CreateEvent","actor":{"id":2987505,"login":"syssys123","gravatar_id":"","url":"https://api.github.com/users/syssys123","avatar_url":"https://avatars.githubusercontent.com/u/2987505?"},"repo":{"id":28688687,"name":"syssys123/apiproject20141","url":"https://api.github.com/repos/syssys123/apiproject20141"},"payload":{"ref":"rails4mysql2","ref_type":"tag","master_branch":"master","description":"cloudpiapiClientTest create!","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:17Z"}
,{"id":"2489653509","type":"PushEvent","actor":{"id":433583,"login":"shlomizadok","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","avatar_url":"https://avatars.githubusercontent.com/u/433583?"},"repo":{"id":27426416,"name":"shlomizadok/foreman_openscap","url":"https://api.github.com/repos/shlomizadok/foreman_openscap"},"payload":{"push_id":536865124,"size":1,"distinct_size":1,"ref":"refs/heads/policy_ui","head":"e568ab2e87b915fb104ae3b8795533352dbfdf41","before":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","commits":[{"sha":"e568ab2e87b915fb104ae3b8795533352dbfdf41","author":{"email":"6f01bf2e882e3bb6371d28d1418e5f729e7183e6@ben-hanna.com","name":"Shlomi Zadok"},"message":"fixes","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/e568ab2e87b915fb104ae3b8795533352dbfdf41"}]},"public":true,"created_at":"2015-01-01T15:05:17Z"}
,{"id":"2489653510","type":"PushEvent","actor":{"id":1513207,"login":"Bdot42","gravatar_id":"","url":"https://api.github.com/users/Bdot42","avatar_url":"https://avatars.githubusercontent.com/u/1513207?"},"repo":{"id":3653720,"name":"Bdot42/mfakto","url":"https://api.github.com/repos/Bdot42/mfakto"},"payload":{"push_id":536865125,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9accebd5209be993d9fc12f5211fe88c51b82d9e","before":"8d8caa4de2d7cc8a23b62308be9a4bb1b67e5e90","commits":[{"sha":"9accebd5209be993d9fc12f5211fe88c51b82d9e","author":{"email":"1dafffdfcfa27b533e3a83f9d95b5a9a64c05a7f@gmx.net","name":"Bertram Franz"},"message":"Adjust to APP SDK 3.0","distinct":true,"url":"https://api.github.com/repos/Bdot42/mfakto/commits/9accebd5209be993d9fc12f5211fe88c51b82d9e"}]},"public":true,"created_at":"2015-01-01T15:05:17Z"}
,{"id":"2489653512","type":"CreateEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"master","ref_type":"branch","master_branch":"0.1","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:17Z"}
,{"id":"2489653513","type":"PushEvent","actor":{"id":23115,"login":"simonask","gravatar_id":"","url":"https://api.github.com/users/simonask","avatar_url":"https://avatars.githubusercontent.com/u/23115?"},"repo":{"id":16694023,"name":"simonask/rust-reflect","url":"https://api.github.com/repos/simonask/rust-reflect"},"payload":{"push_id":536865128,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b9bbcb85acbeb4fab2b6aefab67dca23dad41871","before":"77776402c831bc60e4c6e27cd688e99c2ef84cd9","commits":[{"sha":"b9bbcb85acbeb4fab2b6aefab67dca23dad41871","author":{"email":"088e16a1019277b15d58faf0541e11910eb756f6@ulsnes.dk","name":"Simon Ask Ulsnes"},"message":"Updated README","distinct":true,"url":"https://api.github.com/repos/simonask/rust-reflect/commits/b9bbcb85acbeb4fab2b6aefab67dca23dad41871"}]},"public":true,"created_at":"2015-01-01T15:05:17Z"}
,{"id":"2489653514","type":"WatchEvent","actor":{"id":725190,"login":"developerworks","gravatar_id":"","url":"https://api.github.com/users/developerworks","avatar_url":"https://avatars.githubusercontent.com/u/725190?"},"repo":{"id":10495300,"name":"developerworks/mydocs","url":"https://api.github.com/repos/developerworks/mydocs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:18Z"}
,{"id":"2489653522","type":"PushEvent","actor":{"id":99252,"login":"chiro","gravatar_id":"","url":"https://api.github.com/users/chiro","avatar_url":"https://avatars.githubusercontent.com/u/99252?"},"repo":{"id":16001919,"name":"chiro/WXCS","url":"https://api.github.com/repos/chiro/WXCS"},"payload":{"push_id":536865130,"size":1,"distinct_size":1,"ref":"refs/heads/update-deps","head":"5c0361757503fa2252da68abc722d28c6d85da52","before":"11715ccc1b66cdd2cfed656db60cf68eda8bae71","commits":[{"sha":"5c0361757503fa2252da68abc722d28c6d85da52","author":{"email":"040ec873a7ea95be0cb1de524988dd73d8a254f4@gmail.com","name":"chiro"},"message":"Update dependencies.","distinct":true,"url":"https://api.github.com/repos/chiro/WXCS/commits/5c0361757503fa2252da68abc722d28c6d85da52"}]},"public":true,"created_at":"2015-01-01T15:05:19Z"}
,{"id":"2489653523","type":"PushEvent","actor":{"id":4692633,"login":"PoulpiFr","gravatar_id":"","url":"https://api.github.com/users/PoulpiFr","avatar_url":"https://avatars.githubusercontent.com/u/4692633?"},"repo":{"id":28680235,"name":"PoulpiFr/poulpifr.github.io","url":"https://api.github.com/repos/PoulpiFr/poulpifr.github.io"},"payload":{"push_id":536865131,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"69c0275ec7faed0366f7010da120e9649641a5c0","before":"22558f99fd64eb0f85c37b3dae6ad50e64e182aa","commits":[{"sha":"69c0275ec7faed0366f7010da120e9649641a5c0","author":{"email":"dcab404f98ba7310a3001578a4eced9bbf94dc6f@MacBook-Pro-de-Pierre.local","name":"Pierre de Poulpiquet"},"message":"Add Jemoji support","distinct":true,"url":"https://api.github.com/repos/PoulpiFr/poulpifr.github.io/commits/69c0275ec7faed0366f7010da120e9649641a5c0"}]},"public":true,"created_at":"2015-01-01T15:05:19Z"}
,{"id":"2489653527","type":"CreateEvent","actor":{"id":10364620,"login":"quixing","gravatar_id":"","url":"https://api.github.com/users/quixing","avatar_url":"https://avatars.githubusercontent.com/u/10364620?"},"repo":{"id":28688447,"name":"quixing/hell0-world","url":"https://api.github.com/repos/quixing/hell0-world"},"payload":{"ref":"readme-edits","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:19Z"}
,{"id":"2489653530","type":"PushEvent","actor":{"id":1133652,"login":"keum","gravatar_id":"","url":"https://api.github.com/users/keum","avatar_url":"https://avatars.githubusercontent.com/u/1133652?"},"repo":{"id":18115347,"name":"keum/data_display","url":"https://api.github.com/repos/keum/data_display"},"payload":{"push_id":536865135,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7d080fa167d746936343c3f88a69d54fbb09152e","before":"a80c707a15e89573a64bce56f220ff7b3cae1964","commits":[{"sha":"7d080fa167d746936343c3f88a69d54fbb09152e","author":{"email":"77be1f27789ed5ba740c04e6493c37160e58f28c@gmail.com","name":"Peter Keum"},"message":"\"Data Upload: 2015-01-01 07:05:17 AM\"","distinct":true,"url":"https://api.github.com/repos/keum/data_display/commits/7d080fa167d746936343c3f88a69d54fbb09152e"}]},"public":true,"created_at":"2015-01-01T15:05:19Z"}
,{"id":"2489653531","type":"IssueCommentEvent","actor":{"id":378279,"login":"oblador","gravatar_id":"","url":"https://api.github.com/users/oblador","avatar_url":"https://avatars.githubusercontent.com/u/378279?"},"repo":{"id":17359035,"name":"expressjs/errorhandler","url":"https://api.github.com/repos/expressjs/errorhandler"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/expressjs/errorhandler/issues/10","labels_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/comments","events_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/events","html_url":"https://github.com/expressjs/errorhandler/pull/10","id":53221369,"number":10,"title":"Whole stack trace is outputted in the headline","user":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T15:01:59Z","updated_at":"2015-01-01T15:05:19Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10","html_url":"https://github.com/expressjs/errorhandler/pull/10","diff_url":"https://github.com/expressjs/errorhandler/pull/10.diff","patch_url":"https://github.com/expressjs/errorhandler/pull/10.patch"},"body":"When viewing errors as HTML/in browser the whole stack trace is outputted twice. A regression that I believe was introduced in https://github.com/expressjs/errorhandler/commit/9ae818155de261ef9af74a480a35071b8c1951f4"},"comment":{"url":"https://api.github.com/repos/expressjs/errorhandler/issues/comments/68488583","html_url":"https://github.com/expressjs/errorhandler/pull/10#issuecomment-68488583","issue_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10","id":68488583,"user":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:19Z","updated_at":"2015-01-01T15:05:19Z","body":"Uh, just saw https://github.com/expressjs/errorhandler/pull/8 Maybe you'd like another implementation."}},"public":true,"created_at":"2015-01-01T15:05:20Z","org":{"id":5658226,"login":"expressjs","gravatar_id":"","url":"https://api.github.com/orgs/expressjs","avatar_url":"https://avatars.githubusercontent.com/u/5658226?"}}
,{"id":"2489653532","type":"WatchEvent","actor":{"id":5133487,"login":"Pierozi","gravatar_id":"","url":"https://api.github.com/users/Pierozi","avatar_url":"https://avatars.githubusercontent.com/u/5133487?"},"repo":{"id":2909429,"name":"nicolargo/glances","url":"https://api.github.com/repos/nicolargo/glances"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:20Z"}
,{"id":"2489653533","type":"PushEvent","actor":{"id":9318079,"login":"FeridunMekec","gravatar_id":"","url":"https://api.github.com/users/FeridunMekec","avatar_url":"https://avatars.githubusercontent.com/u/9318079?"},"repo":{"id":26536869,"name":"fabianroeber/Raumplaner2","url":"https://api.github.com/repos/fabianroeber/Raumplaner2"},"payload":{"push_id":536865136,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f","before":"d1c1b5d69aaf55b871711cde2f31f946bb1a22d3","commits":[{"sha":"a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f","author":{"email":"9f9f9c66bff12210938444ad767edb58dae5497c@hdm-stuttgart.de","name":"Feridun Mekec"},"message":"GUI - Neue <div> für die Klasse HauptLayout hinzugefügt. Alle Elemente\nwerden automatisch in der Mitte des Bildschirms angezeigt","distinct":true,"url":"https://api.github.com/repos/fabianroeber/Raumplaner2/commits/a44f61f7eeba7d21a07ad1d4e2f693a0792dd90f"}]},"public":true,"created_at":"2015-01-01T15:05:20Z"}
,{"id":"2489653538","type":"WatchEvent","actor":{"id":5564569,"login":"jgoldfar","gravatar_id":"","url":"https://api.github.com/users/jgoldfar","avatar_url":"https://avatars.githubusercontent.com/u/5564569?"},"repo":{"id":28233099,"name":"isohuntto/openbay","url":"https://api.github.com/repos/isohuntto/openbay"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:23Z"}
,{"id":"2489653539","type":"CreateEvent","actor":{"id":8510870,"login":"ZyTZag","gravatar_id":"","url":"https://api.github.com/users/ZyTZag","avatar_url":"https://avatars.githubusercontent.com/u/8510870?"},"repo":{"id":28688696,"name":"ZyTZag/Hexapod","url":"https://api.github.com/repos/ZyTZag/Hexapod"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z"}
,{"id":"2489653547","type":"CreateEvent","actor":{"id":1266011,"login":"danprince","gravatar_id":"","url":"https://api.github.com/users/danprince","avatar_url":"https://avatars.githubusercontent.com/u/1266011?"},"repo":{"id":28223366,"name":"danprince/ng-picky","url":"https://api.github.com/repos/danprince/ng-picky"},"payload":{"ref":"v0.1.1","ref_type":"tag","master_branch":"master","description":"A pure Angular color picker.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z"}
,{"id":"2489653548","type":"CreateEvent","actor":{"id":2290904,"login":"Dokman","gravatar_id":"","url":"https://api.github.com/users/Dokman","avatar_url":"https://avatars.githubusercontent.com/u/2290904?"},"repo":{"id":28672261,"name":"Dokman/EvilCraft","url":"https://api.github.com/repos/Dokman/EvilCraft"},"payload":{"ref":"Squashed","ref_type":"branch","master_branch":"master","description":"An evil mod for Minecraft.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z"}
,{"id":"2489653550","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":26163802,"name":"cloudify-cosmo/cloudify-softlayer-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:23Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653552","type":"PushEvent","actor":{"id":1806581,"login":"liveralmask","gravatar_id":"","url":"https://api.github.com/users/liveralmask","avatar_url":"https://avatars.githubusercontent.com/u/1806581?"},"repo":{"id":28663086,"name":"liveralmask/unity","url":"https://api.github.com/repos/liveralmask/unity"},"payload":{"push_id":536865138,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f63b16184f3b105d7b7bf88b6f42a3b746ec3264","before":"86606882d7c131cbed766426f207988285311c84","commits":[{"sha":"f63b16184f3b105d7b7bf88b6f42a3b746ec3264","author":{"email":"bc2d5017dcfc5f59ae5df9dd3e45d99c151e4b7a@gmail.com","name":"liveralmask"},"message":"より使いやすくした","distinct":true,"url":"https://api.github.com/repos/liveralmask/unity/commits/f63b16184f3b105d7b7bf88b6f42a3b746ec3264"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"}
,{"id":"2489653553","type":"PushEvent","actor":{"id":9846486,"login":"juho-lee","gravatar_id":"","url":"https://api.github.com/users/juho-lee","avatar_url":"https://avatars.githubusercontent.com/u/9846486?"},"repo":{"id":28086025,"name":"juho-lee/nrmm.cpp","url":"https://api.github.com/repos/juho-lee/nrmm.cpp"},"payload":{"push_id":536865139,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6325e642fd6dab632d4be2d097aad24730ccbe3d","before":"6ad39007e56f5790fe2ba89bd9e1f34938c7bcaa","commits":[{"sha":"27de6f4e1ea0e1f5a462608079dde7b1ff82162f","author":{"email":"70c111ef9daf23ae806e3dca342d54613e06e414@postech.ac.kr","name":"juho-lee"},"message":"bhcs","distinct":true,"url":"https://api.github.com/repos/juho-lee/nrmm.cpp/commits/27de6f4e1ea0e1f5a462608079dde7b1ff82162f"},{"sha":"6325e642fd6dab632d4be2d097aad24730ccbe3d","author":{"email":"70c111ef9daf23ae806e3dca342d54613e06e414@postech.ac.kr","name":"juho-lee"},"message":"bhcs","distinct":true,"url":"https://api.github.com/repos/juho-lee/nrmm.cpp/commits/6325e642fd6dab632d4be2d097aad24730ccbe3d"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"}
,{"id":"2489653554","type":"PushEvent","actor":{"id":5804922,"login":"taukir4u","gravatar_id":"","url":"https://api.github.com/users/taukir4u","avatar_url":"https://avatars.githubusercontent.com/u/5804922?"},"repo":{"id":28688623,"name":"taukir4u/ResultUIApp","url":"https://api.github.com/repos/taukir4u/ResultUIApp"},"payload":{"push_id":536865140,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f901f42723a34c5cc84cde02e5a19d561a1f8fc4","before":"548d811003f89bbe75e9a06238d5bce9bcaa365f","commits":[{"sha":"f901f42723a34c5cc84cde02e5a19d561a1f8fc4","author":{"email":"9616f0f530f91329424a239eb7a70e9aeaec3d55@gmail.com","name":"taukir4u"},"message":"C#\n\nSigned-off-by: taukir4u <taukir4u@gmail.com>","distinct":true,"url":"https://api.github.com/repos/taukir4u/ResultUIApp/commits/f901f42723a34c5cc84cde02e5a19d561a1f8fc4"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"}
,{"id":"2489653555","type":"PushEvent","actor":{"id":938567,"login":"abhardwaj","gravatar_id":"","url":"https://api.github.com/users/abhardwaj","avatar_url":"https://avatars.githubusercontent.com/u/938567?"},"repo":{"id":13134203,"name":"abhardwaj/datahub","url":"https://api.github.com/repos/abhardwaj/datahub"},"payload":{"push_id":536865142,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c189108b7b28513f0bc0d94284135f9d5804662c","before":"123a619699a240e3cefae4187042dcd132888f31","commits":[{"sha":"c189108b7b28513f0bc0d94284135f9d5804662c","author":{"email":"04cd62effbece7d264364f151d3cb7040fe7e8f6@csail.mit.edu","name":"Anant Bhardwaj"},"message":"a little re-style","distinct":true,"url":"https://api.github.com/repos/abhardwaj/datahub/commits/c189108b7b28513f0bc0d94284135f9d5804662c"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"}
,{"id":"2489653559","type":"IssueCommentEvent","actor":{"id":1696148,"login":"bgcngm","gravatar_id":"","url":"https://api.github.com/users/bgcngm","avatar_url":"https://avatars.githubusercontent.com/u/1696148?"},"repo":{"id":5242494,"name":"bgcngm/mtk-tools","url":"https://api.github.com/repos/bgcngm/mtk-tools"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8","labels_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8/comments","events_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8/events","html_url":"https://github.com/bgcngm/mtk-tools/pull/8","id":53009548,"number":8,"title":"add support for new platforms - mt6595","user":{"login":"carliv","id":4932350,"avatar_url":"https://avatars.githubusercontent.com/u/4932350?v=3","gravatar_id":"","url":"https://api.github.com/users/carliv","html_url":"https://github.com/carliv","followers_url":"https://api.github.com/users/carliv/followers","following_url":"https://api.github.com/users/carliv/following{/other_user}","gists_url":"https://api.github.com/users/carliv/gists{/gist_id}","starred_url":"https://api.github.com/users/carliv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carliv/subscriptions","organizations_url":"https://api.github.com/users/carliv/orgs","repos_url":"https://api.github.com/users/carliv/repos","events_url":"https://api.github.com/users/carliv/events{/privacy}","received_events_url":"https://api.github.com/users/carliv/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/bgcngm/mtk-tools/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":25,"created_at":"2014-12-28T20:53:18Z","updated_at":"2015-01-01T15:05:24Z","closed_at":"2014-12-29T09:49:34Z","pull_request":{"url":"https://api.github.com/repos/bgcngm/mtk-tools/pulls/8","html_url":"https://github.com/bgcngm/mtk-tools/pull/8","diff_url":"https://github.com/bgcngm/mtk-tools/pull/8.diff","patch_url":"https://github.com/bgcngm/mtk-tools/pull/8.patch"},"body":"Hi Bruno,\r\nI updated your tools to support new MTK platforms, which require to pass extra arguments (offsets) in repacking command line. For this the script will create a new file \"boot.img-Args.txt\" - as example for boot image - will copy in it values like this: \"--base 0x10000000 --pagesize 2048 --kernel_offset 0x00008000 --ramdisk_offset 0x01000000 --second_offset 0x00f00000 --tags_offset 0x00000100\". They will be shown on the screen also. At repacking all these are passed in command and the resulting image will work in these new phones. It has no impact on older platforms - I tested this myself, and for new platform was tested in zopo zp999 thread. Additionally I created a new script which will only show image infos, if there is no need to unpack it. I compiled again all binaries modules to support these extra arguments, and also I compiled the required modules for info script. I couldn't do it for OSX, but I have the repo with boot-info in my gihub if you can build it. Also mkbootimg has to be compiled again for OSX to accept extra arguments.\r\nLiviu"},"comment":{"url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/comments/68488584","html_url":"https://github.com/bgcngm/mtk-tools/pull/8#issuecomment-68488584","issue_url":"https://api.github.com/repos/bgcngm/mtk-tools/issues/8","id":68488584,"user":{"login":"bgcngm","id":1696148,"avatar_url":"https://avatars.githubusercontent.com/u/1696148?v=3","gravatar_id":"","url":"https://api.github.com/users/bgcngm","html_url":"https://github.com/bgcngm","followers_url":"https://api.github.com/users/bgcngm/followers","following_url":"https://api.github.com/users/bgcngm/following{/other_user}","gists_url":"https://api.github.com/users/bgcngm/gists{/gist_id}","starred_url":"https://api.github.com/users/bgcngm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bgcngm/subscriptions","organizations_url":"https://api.github.com/users/bgcngm/orgs","repos_url":"https://api.github.com/users/bgcngm/repos","events_url":"https://api.github.com/users/bgcngm/events{/privacy}","received_events_url":"https://api.github.com/users/bgcngm/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:24Z","updated_at":"2015-01-01T15:05:24Z","body":"Yeah, it's a good idea, to show more info when repacking. Thanks!"}},"public":true,"created_at":"2015-01-01T15:05:24Z"}
,{"id":"2489653560","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":26163802,"name":"cloudify-cosmo/cloudify-softlayer-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-softlayer-plugin"},"payload":{"ref":"1.2m1","ref_type":"tag","master_branch":"master","description":"Plugin for the softlayer cloud","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:24Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653561","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536865147,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4facd5246e793a5f37bd2b6fe5681139bcf57193","before":"3378b12357f5839faf1fb6f5c96d259320e2e359","commits":[{"sha":"4facd5246e793a5f37bd2b6fe5681139bcf57193","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Create Palindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/4facd5246e793a5f37bd2b6fe5681139bcf57193"}]},"public":true,"created_at":"2015-01-01T15:05:24Z"}
,{"id":"2489653567","type":"PushEvent","actor":{"id":1879746,"login":"leon-barrett","gravatar_id":"","url":"https://api.github.com/users/leon-barrett","avatar_url":"https://avatars.githubusercontent.com/u/1879746?"},"repo":{"id":16740838,"name":"TheClimateCorporation/claypoole","url":"https://api.github.com/repos/TheClimateCorporation/claypoole"},"payload":{"push_id":536865150,"size":4,"distinct_size":4,"ref":"refs/heads/lazy","head":"6ac501aeab9cb1a2a5e33a2395a3caa10ef53855","before":"9f4e7d893af396d3eeadc717106506ffa58d2e65","commits":[{"sha":"7f27b421a85a9025c751ab39a38bba1394186fd2","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Add license header to file","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/7f27b421a85a9025c751ab39a38bba1394186fd2"},{"sha":"f7a23f9924703ec00100a758847ee2a138091278","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Simplified tests somewhat","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/f7a23f9924703ec00100a758847ee2a138091278"},{"sha":"2d88b1fd27ee54de6ed5806b41b5a7f760badbda","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Ported tests to lazy, fixed lazy bug","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/2d88b1fd27ee54de6ed5806b41b5a7f760badbda"},{"sha":"6ac501aeab9cb1a2a5e33a2395a3caa10ef53855","author":{"email":"be92910ae7bb6f58bb9b7c6f845bc30640119592@climate.com","name":"Leon Barrett"},"message":"Expand -manual functions, add tests","distinct":true,"url":"https://api.github.com/repos/TheClimateCorporation/claypoole/commits/6ac501aeab9cb1a2a5e33a2395a3caa10ef53855"}]},"public":true,"created_at":"2015-01-01T15:05:25Z","org":{"id":1661603,"login":"TheClimateCorporation","gravatar_id":"","url":"https://api.github.com/orgs/TheClimateCorporation","avatar_url":"https://avatars.githubusercontent.com/u/1661603?"}}
,{"id":"2489653570","type":"WatchEvent","actor":{"id":2033346,"login":"DalekVoid","gravatar_id":"","url":"https://api.github.com/users/DalekVoid","avatar_url":"https://avatars.githubusercontent.com/u/2033346?"},"repo":{"id":19584534,"name":"joshpuckett/SketchPlugins","url":"https://api.github.com/repos/joshpuckett/SketchPlugins"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:25Z"}
,{"id":"2489653573","type":"PushEvent","actor":{"id":2713846,"login":"Valicek1","gravatar_id":"","url":"https://api.github.com/users/Valicek1","avatar_url":"https://avatars.githubusercontent.com/u/2713846?"},"repo":{"id":19545865,"name":"fpc-svn/logs","url":"https://api.github.com/repos/fpc-svn/logs"},"payload":{"push_id":536865153,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e3449359c8e3d440bb8cc63a43bffeac259a6fbd","before":"c872b17a211fa98937c7c822422e1d00835c069f","commits":[{"sha":"e3449359c8e3d440bb8cc63a43bffeac259a6fbd","author":{"email":"365ec17a675f3273bc16c74761ad83f2cf07c59a@mailinator.com","name":"nobody"},"message":"Updatelogs script","distinct":true,"url":"https://api.github.com/repos/fpc-svn/logs/commits/e3449359c8e3d440bb8cc63a43bffeac259a6fbd"}]},"public":true,"created_at":"2015-01-01T15:05:26Z","org":{"id":7508884,"login":"fpc-svn","gravatar_id":"","url":"https://api.github.com/orgs/fpc-svn","avatar_url":"https://avatars.githubusercontent.com/u/7508884?"}}
,{"id":"2489653574","type":"WatchEvent","actor":{"id":2033346,"login":"DalekVoid","gravatar_id":"","url":"https://api.github.com/users/DalekVoid","avatar_url":"https://avatars.githubusercontent.com/u/2033346?"},"repo":{"id":12081573,"name":"almonk/SketchGit","url":"https://api.github.com/repos/almonk/SketchGit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:26Z"}
,{"id":"2489653575","type":"ReleaseEvent","actor":{"id":9699715,"login":"D0nBilb0","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","avatar_url":"https://avatars.githubusercontent.com/u/9699715?"},"repo":{"id":26546687,"name":"D0nBilb0/AAL","url":"https://api.github.com/repos/D0nBilb0/AAL"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/D0nBilb0/AAL/releases/818686","assets_url":"https://api.github.com/repos/D0nBilb0/AAL/releases/818686/assets","upload_url":"https://uploads.github.com/repos/D0nBilb0/AAL/releases/818686/assets{?name}","html_url":"https://github.com/D0nBilb0/AAL/releases/tag/v0.2","id":818686,"tag_name":"v0.2","target_commitish":"master","name":"Version 0.2","draft":false,"author":{"login":"D0nBilb0","id":9699715,"avatar_url":"https://avatars.githubusercontent.com/u/9699715?v=3","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","html_url":"https://github.com/D0nBilb0","followers_url":"https://api.github.com/users/D0nBilb0/followers","following_url":"https://api.github.com/users/D0nBilb0/following{/other_user}","gists_url":"https://api.github.com/users/D0nBilb0/gists{/gist_id}","starred_url":"https://api.github.com/users/D0nBilb0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/D0nBilb0/subscriptions","organizations_url":"https://api.github.com/users/D0nBilb0/orgs","repos_url":"https://api.github.com/users/D0nBilb0/repos","events_url":"https://api.github.com/users/D0nBilb0/events{/privacy}","received_events_url":"https://api.github.com/users/D0nBilb0/received_events","type":"User","site_admin":false},"prerelease":true,"created_at":"2015-01-01T15:04:30Z","published_at":"2015-01-01T15:05:26Z","assets":[],"tarball_url":"https://api.github.com/repos/D0nBilb0/AAL/tarball/v0.2","zipball_url":"https://api.github.com/repos/D0nBilb0/AAL/zipball/v0.2","body":"with bath tub and radio"}},"public":true,"created_at":"2015-01-01T15:05:26Z"}
,{"id":"2489653577","type":"PushEvent","actor":{"id":4371337,"login":"jostw","gravatar_id":"","url":"https://api.github.com/users/jostw","avatar_url":"https://avatars.githubusercontent.com/u/4371337?"},"repo":{"id":20407433,"name":"jostw/jos.tw","url":"https://api.github.com/repos/jostw/jos.tw"},"payload":{"push_id":536865154,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"49cb8d03c9ac7d58670b55398fec4b5e59ac725e","before":"b37b9685c5d61bb51bb16e9ba8705c04dd5fea02","commits":[{"sha":"49cb8d03c9ac7d58670b55398fec4b5e59ac725e","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@jos.tw","name":"jos"},"message":"Add: npm init","distinct":true,"url":"https://api.github.com/repos/jostw/jos.tw/commits/49cb8d03c9ac7d58670b55398fec4b5e59ac725e"}]},"public":true,"created_at":"2015-01-01T15:05:26Z"}
,{"id":"2489653579","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326701,"name":"cloudify-cosmo/cloudify-cli","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:27Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653581","type":"PushEvent","actor":{"id":7299909,"login":"paddatrapper","gravatar_id":"","url":"https://api.github.com/users/paddatrapper","avatar_url":"https://avatars.githubusercontent.com/u/7299909?"},"repo":{"id":28605092,"name":"paddatrapper/CaseTracker","url":"https://api.github.com/repos/paddatrapper/CaseTracker"},"payload":{"push_id":536865157,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"536567e2c967b8c94d5bd847b3509e7b64bf6c3b","before":"a9932f96e11bbfe690679f0a3a04ff365ef3d934","commits":[{"sha":"536567e2c967b8c94d5bd847b3509e7b64bf6c3b","author":{"email":"5654cbe3d60e8de8a726d6300843254de49a3a3e@gmail.com","name":"Kyle Robertze"},"message":"initial server code","distinct":true,"url":"https://api.github.com/repos/paddatrapper/CaseTracker/commits/536567e2c967b8c94d5bd847b3509e7b64bf6c3b"}]},"public":true,"created_at":"2015-01-01T15:05:27Z"}
,{"id":"2489653582","type":"CreateEvent","actor":{"id":9699715,"login":"D0nBilb0","gravatar_id":"","url":"https://api.github.com/users/D0nBilb0","avatar_url":"https://avatars.githubusercontent.com/u/9699715?"},"repo":{"id":26546687,"name":"D0nBilb0/AAL","url":"https://api.github.com/repos/D0nBilb0/AAL"},"payload":{"ref":"v0.2","ref_type":"tag","master_branch":"master","description":"Git for AAL project","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:27Z"}
,{"id":"2489653586","type":"PushEvent","actor":{"id":9201970,"login":"qdm","gravatar_id":"","url":"https://api.github.com/users/qdm","avatar_url":"https://avatars.githubusercontent.com/u/9201970?"},"repo":{"id":25173910,"name":"qdm/qdm.github.io","url":"https://api.github.com/repos/qdm/qdm.github.io"},"payload":{"push_id":536865158,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"19aa3690d277ebeb3a2448c6170fd0c14cbacf9b","before":"ce43e0c4202c607f17925699c0f8212855585392","commits":[{"sha":"19aa3690d277ebeb3a2448c6170fd0c14cbacf9b","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/19aa3690d277ebeb3a2448c6170fd0c14cbacf9b"}]},"public":true,"created_at":"2015-01-01T15:05:28Z"}
,{"id":"2489653587","type":"PushEvent","actor":{"id":2325817,"login":"Dinoshauer","gravatar_id":"","url":"https://api.github.com/users/Dinoshauer","avatar_url":"https://avatars.githubusercontent.com/u/2325817?"},"repo":{"id":28606497,"name":"Dinoshauer/ImportConfig","url":"https://api.github.com/repos/Dinoshauer/ImportConfig"},"payload":{"push_id":536865160,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f17cd2b734b1011394cc8b4b154657c4a5aa5b18","before":"9562ee0d10aaf1d20583ba698c88fdd503ae1775","commits":[{"sha":"f17cd2b734b1011394cc8b4b154657c4a5aa5b18","author":{"email":"13fbd79c3d390e5d6585a21e11ff5ec1970cff0c@mackwerk.dk","name":"Kasper Jacobsen"},"message":"Moved classes into their own files, made it installable with setup.py. Nasty hack for dependencies to get the version and other __'s","distinct":true,"url":"https://api.github.com/repos/Dinoshauer/ImportConfig/commits/f17cd2b734b1011394cc8b4b154657c4a5aa5b18"}]},"public":true,"created_at":"2015-01-01T15:05:29Z"}
,{"id":"2489653588","type":"PushEvent","actor":{"id":6895272,"login":"kimalec","gravatar_id":"","url":"https://api.github.com/users/kimalec","avatar_url":"https://avatars.githubusercontent.com/u/6895272?"},"repo":{"id":22725052,"name":"kimalec/BlogSyncer","url":"https://api.github.com/repos/kimalec/BlogSyncer"},"payload":{"push_id":536865161,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"658e7ec3e2f424840a5fe0b11cf2f4facc176c40","before":"cd8ec1c93d6bc541cbbe6d6ca0c969d1dcf57318","commits":[{"sha":"6d116b3e8e2f050a701110f927bd78e234a83399","author":{"email":"6361a942e62052bd6f5507de1f1b3e6c2b339567@gmail.com","name":"Kim Alec"},"message":"Merge pull request #136 from kimalec/master\n\nResolved JUS-93 JSHint Error 수정하기. Fixed #128","distinct":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer/commits/6d116b3e8e2f050a701110f927bd78e234a83399"},{"sha":"5aa118113d22f98e52d08475206a3086d68e2ade","author":{"email":"6361a942e62052bd6f5507de1f1b3e6c2b339567@gmail.com","name":"Alec Kim"},"message":"JUS-91 Google Invalid Credentials 에러 수정하기. Fixed #125\n\n* google.js\n- refresh token을 받기 위해서 accessType offline과 approvalPrompt force를 추가함.\n- _updateAccessToken() 추가 : 401이 발생하면, accessToken을 갱신함.\n  Todo 401이 발생한 요청사항은 현재 버려짐.\n- log message 모양 일부 변경함.","distinct":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer/commits/5aa118113d22f98e52d08475206a3086d68e2ade"},{"sha":"658e7ec3e2f424840a5fe0b11cf2f4facc176c40","author":{"email":"6361a942e62052bd6f5507de1f1b3e6c2b339567@gmail.com","name":"Alec Kim"},"message":"JUS-91 Google Invalid Credentials 에러 수정하기. Fixed #125","distinct":true,"url":"https://api.github.com/repos/kimalec/BlogSyncer/commits/658e7ec3e2f424840a5fe0b11cf2f4facc176c40"}]},"public":true,"created_at":"2015-01-01T15:05:29Z"}
,{"id":"2489653590","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18326701,"name":"cloudify-cosmo/cloudify-cli","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify's CLI","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:29Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653592","type":"PushEvent","actor":{"id":172753,"login":"oehmiche","gravatar_id":"","url":"https://api.github.com/users/oehmiche","avatar_url":"https://avatars.githubusercontent.com/u/172753?"},"repo":{"id":26650146,"name":"oehmiche/isp-performance","url":"https://api.github.com/repos/oehmiche/isp-performance"},"payload":{"push_id":536865162,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"620a7742df7a052f4fadb5872abde49ba3c02f34","before":"49c8eba7b118fdaa85d7b8e3a55e48cdd0467d32","commits":[{"sha":"620a7742df7a052f4fadb5872abde49ba3c02f34","author":{"email":"37955833ebc42115603c87ad993837f95227dc9d@raspberry.pi","name":"smokeping.script"},"message":"updates all charts","distinct":true,"url":"https://api.github.com/repos/oehmiche/isp-performance/commits/620a7742df7a052f4fadb5872abde49ba3c02f34"}]},"public":true,"created_at":"2015-01-01T15:05:29Z"}
,{"id":"2489653593","type":"WatchEvent","actor":{"id":2231444,"login":"antogg","gravatar_id":"","url":"https://api.github.com/users/antogg","avatar_url":"https://avatars.githubusercontent.com/u/2231444?"},"repo":{"id":4869294,"name":"radare/radare2","url":"https://api.github.com/repos/radare/radare2"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:29Z"}
,{"id":"2489653596","type":"IssuesEvent","actor":{"id":681359,"login":"gregorej","gravatar_id":"","url":"https://api.github.com/users/gregorej","avatar_url":"https://avatars.githubusercontent.com/u/681359?"},"repo":{"id":28038035,"name":"gregorej/vala-intellij-plugin","url":"https://api.github.com/repos/gregorej/vala-intellij-plugin"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10","labels_url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10/comments","events_url":"https://api.github.com/repos/gregorej/vala-intellij-plugin/issues/10/events","html_url":"https://github.com/gregorej/vala-intellij-plugin/issues/10","id":53221439,"number":10,"title":"Add support for missing tokens","user":{"login":"gregorej","id":681359,"avatar_url":"https://avatars.githubusercontent.com/u/681359?v=3","gravatar_id":"","url":"https://api.github.com/users/gregorej","html_url":"https://github.com/gregorej","followers_url":"https://api.github.com/users/gregorej/followers","following_url":"https://api.github.com/users/gregorej/following{/other_user}","gists_url":"https://api.github.com/users/gregorej/gists{/gist_id}","starred_url":"https://api.github.com/users/gregorej/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gregorej/subscriptions","organizations_url":"https://api.github.com/users/gregorej/orgs","repos_url":"https://api.github.com/users/gregorej/repos","events_url":"https://api.github.com/users/gregorej/events{/privacy}","received_events_url":"https://api.github.com/users/gregorej/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:29Z","updated_at":"2015-01-01T15:05:29Z","closed_at":null,"body":"real number literals\r\nstring literals\r\ntrue, false\r\noperators (++, --, etc)"}},"public":true,"created_at":"2015-01-01T15:05:29Z"}
,{"id":"2489653600","type":"PullRequestEvent","actor":{"id":433583,"login":"shlomizadok","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","avatar_url":"https://avatars.githubusercontent.com/u/433583?"},"repo":{"id":27426416,"name":"shlomizadok/foreman_openscap","url":"https://api.github.com/repos/shlomizadok/foreman_openscap"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1","id":26743660,"html_url":"https://github.com/shlomizadok/foreman_openscap/pull/1","diff_url":"https://github.com/shlomizadok/foreman_openscap/pull/1.diff","patch_url":"https://github.com/shlomizadok/foreman_openscap/pull/1.patch","issue_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1","number":1,"state":"closed","locked":false,"title":"Policy ui","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T14:46:56Z","updated_at":"2015-01-01T15:05:29Z","closed_at":"2015-01-01T15:05:29Z","merged_at":"2015-01-01T15:05:29Z","merge_commit_sha":"955303fe7d8046774b96a5fc0f718be18d833b46","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/commits","review_comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/comments","review_comment_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/{number}","comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1/comments","statuses_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/7d9e161019a3f17b7ed003f306b41a61d0a3260e","head":{"label":"ohadlevy:policy-ui","ref":"policy-ui","sha":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","user":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"repo":{"id":27348763,"name":"foreman_openscap","full_name":"ohadlevy/foreman_openscap","owner":{"login":"ohadlevy","id":20167,"avatar_url":"https://avatars.githubusercontent.com/u/20167?v=3","gravatar_id":"","url":"https://api.github.com/users/ohadlevy","html_url":"https://github.com/ohadlevy","followers_url":"https://api.github.com/users/ohadlevy/followers","following_url":"https://api.github.com/users/ohadlevy/following{/other_user}","gists_url":"https://api.github.com/users/ohadlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/ohadlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ohadlevy/subscriptions","organizations_url":"https://api.github.com/users/ohadlevy/orgs","repos_url":"https://api.github.com/users/ohadlevy/repos","events_url":"https://api.github.com/users/ohadlevy/events{/privacy}","received_events_url":"https://api.github.com/users/ohadlevy/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ohadlevy/foreman_openscap","description":"Foreman plug-in for displaying OpenSCAP audit reports","fork":true,"url":"https://api.github.com/repos/ohadlevy/foreman_openscap","forks_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/forks","keys_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/teams","hooks_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/hooks","issue_events_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues/events{/number}","events_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/events","assignees_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/assignees{/user}","branches_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/branches{/branch}","tags_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/tags","blobs_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/refs{/sha}","trees_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/statuses/{sha}","languages_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/languages","stargazers_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/stargazers","contributors_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/contributors","subscribers_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/subscribers","subscription_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/subscription","commits_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/commits{/sha}","git_commits_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/git/commits{/sha}","comments_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/comments{/number}","issue_comment_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues/comments/{number}","contents_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/contents/{+path}","compare_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/merges","archive_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/downloads","issues_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/issues{/number}","pulls_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/pulls{/number}","milestones_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/milestones{/number}","notifications_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/labels{/name}","releases_url":"https://api.github.com/repos/ohadlevy/foreman_openscap/releases{/id}","created_at":"2014-11-30T20:22:33Z","updated_at":"2014-11-30T20:22:33Z","pushed_at":"2015-01-01T14:48:10Z","git_url":"git://github.com/ohadlevy/foreman_openscap.git","ssh_url":"git@github.com:ohadlevy/foreman_openscap.git","clone_url":"https://github.com/ohadlevy/foreman_openscap.git","svn_url":"https://github.com/ohadlevy/foreman_openscap","homepage":null,"size":257,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"shlomizadok:policy_ui","ref":"policy_ui","sha":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","user":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"repo":{"id":27426416,"name":"foreman_openscap","full_name":"shlomizadok/foreman_openscap","owner":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/shlomizadok/foreman_openscap","description":"Foreman plug-in for displaying OpenSCAP audit reports","fork":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap","forks_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/forks","keys_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/teams","hooks_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/hooks","issue_events_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/events{/number}","events_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/events","assignees_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/assignees{/user}","branches_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/branches{/branch}","tags_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/tags","blobs_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/refs{/sha}","trees_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/{sha}","languages_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/languages","stargazers_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/stargazers","contributors_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/contributors","subscribers_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/subscribers","subscription_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/subscription","commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits{/sha}","git_commits_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/git/commits{/sha}","comments_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/comments{/number}","issue_comment_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/comments/{number}","contents_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/contents/{+path}","compare_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/merges","archive_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/downloads","issues_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues{/number}","pulls_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls{/number}","milestones_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/milestones{/number}","notifications_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/labels{/name}","releases_url":"https://api.github.com/repos/shlomizadok/foreman_openscap/releases{/id}","created_at":"2014-12-02T10:04:02Z","updated_at":"2014-12-15T07:08:17Z","pushed_at":"2015-01-01T15:05:29Z","git_url":"git://github.com/shlomizadok/foreman_openscap.git","ssh_url":"git@github.com:shlomizadok/foreman_openscap.git","clone_url":"https://github.com/shlomizadok/foreman_openscap.git","svn_url":"https://github.com/shlomizadok/foreman_openscap","homepage":null,"size":364,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1"},"html":{"href":"https://github.com/shlomizadok/foreman_openscap/pull/1"},"issue":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1"},"comments":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/shlomizadok/foreman_openscap/statuses/7d9e161019a3f17b7ed003f306b41a61d0a3260e"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"shlomizadok","id":433583,"avatar_url":"https://avatars.githubusercontent.com/u/433583?v=3","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","html_url":"https://github.com/shlomizadok","followers_url":"https://api.github.com/users/shlomizadok/followers","following_url":"https://api.github.com/users/shlomizadok/following{/other_user}","gists_url":"https://api.github.com/users/shlomizadok/gists{/gist_id}","starred_url":"https://api.github.com/users/shlomizadok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlomizadok/subscriptions","organizations_url":"https://api.github.com/users/shlomizadok/orgs","repos_url":"https://api.github.com/users/shlomizadok/repos","events_url":"https://api.github.com/users/shlomizadok/events{/privacy}","received_events_url":"https://api.github.com/users/shlomizadok/received_events","type":"User","site_admin":false},"comments":0,"review_comments":1,"commits":2,"additions":64,"deletions":30,"changed_files":11}},"public":true,"created_at":"2015-01-01T15:05:30Z"}
,{"id":"2489653603","type":"PushEvent","actor":{"id":433583,"login":"shlomizadok","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","avatar_url":"https://avatars.githubusercontent.com/u/433583?"},"repo":{"id":27426416,"name":"shlomizadok/foreman_openscap","url":"https://api.github.com/repos/shlomizadok/foreman_openscap"},"payload":{"push_id":536865165,"size":3,"distinct_size":3,"ref":"refs/heads/policy_ui","head":"89bab3aa2d4dba55a5651d154c63685d47a8b951","before":"e568ab2e87b915fb104ae3b8795533352dbfdf41","commits":[{"sha":"0f7efdcb78fe0ed59903fd9dac632881d344f121","author":{"email":"6f01bf2e882e3bb6371d28d1418e5f729e7183e6@ben-hanna.com","name":"Shlomi Zadok"},"message":"validations on hostgroup","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/0f7efdcb78fe0ed59903fd9dac632881d344f121"},{"sha":"7d9e161019a3f17b7ed003f306b41a61d0a3260e","author":{"email":"76585193381c02075ccad46923cb2f8cd8aee274@gmail.com","name":"Ohad Levy"},"message":"minor fixes, wip","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/7d9e161019a3f17b7ed003f306b41a61d0a3260e"},{"sha":"89bab3aa2d4dba55a5651d154c63685d47a8b951","author":{"email":"6f01bf2e882e3bb6371d28d1418e5f729e7183e6@ben-hanna.com","name":"Shlomi Zadok"},"message":"Merge pull request #1 from ohadlevy/policy-ui\n\nPolicy ui","distinct":true,"url":"https://api.github.com/repos/shlomizadok/foreman_openscap/commits/89bab3aa2d4dba55a5651d154c63685d47a8b951"}]},"public":true,"created_at":"2015-01-01T15:05:30Z"}
,{"id":"2489653607","type":"IssuesEvent","actor":{"id":10178301,"login":"MarkusAV","gravatar_id":"","url":"https://api.github.com/users/MarkusAV","avatar_url":"https://avatars.githubusercontent.com/u/10178301?"},"repo":{"id":23853939,"name":"WorldCretornica/PlotMe-Core","url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66","labels_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66/labels{/name}","comments_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66/comments","events_url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/issues/66/events","html_url":"https://github.com/WorldCretornica/PlotMe-Core/issues/66","id":53218917,"number":66,"title":"cant load DynmapPlotMe.jar","user":{"login":"Burockk","id":10358468,"avatar_url":"https://avatars.githubusercontent.com/u/10358468?v=3","gravatar_id":"","url":"https://api.github.com/users/Burockk","html_url":"https://github.com/Burockk","followers_url":"https://api.github.com/users/Burockk/followers","following_url":"https://api.github.com/users/Burockk/following{/other_user}","gists_url":"https://api.github.com/users/Burockk/gists{/gist_id}","starred_url":"https://api.github.com/users/Burockk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Burockk/subscriptions","organizations_url":"https://api.github.com/users/Burockk/orgs","repos_url":"https://api.github.com/users/Burockk/repos","events_url":"https://api.github.com/users/Burockk/events{/privacy}","received_events_url":"https://api.github.com/users/Burockk/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/WorldCretornica/PlotMe-Core/labels/invalid","name":"invalid","color":"e6e6e6"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T12:37:14Z","updated_at":"2015-01-01T15:05:31Z","closed_at":"2015-01-01T15:05:31Z","body":"[14:31:51] [Server thread/INFO]: Set PluginClassLoader as parallel capable\r\n[14:31:51] [Server thread/ERROR]: Could not load 'plugins\\DynmapPlotMe.jar' in folder 'plugins'\r\norg.bukkit.plugin.UnknownDependencyException: dynmap\r\n\tat org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:225) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugins(CraftServer.java:369) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat net.minecraft.server.v1_7_R4.DedicatedServer.init(DedicatedServer.java:152) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:458) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n\tat net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot.jar:git-Spigot-1.7.9-R0.2-208-ge0f2e95]\r\n"}},"public":true,"created_at":"2015-01-01T15:05:31Z","org":{"id":6457147,"login":"WorldCretornica","gravatar_id":"","url":"https://api.github.com/orgs/WorldCretornica","avatar_url":"https://avatars.githubusercontent.com/u/6457147?"}}
,{"id":"2489653611","type":"DeleteEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327768,"name":"cloudify-cosmo/cloudify-cli-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:31Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653613","type":"WatchEvent","actor":{"id":1712577,"login":"IvanD87","gravatar_id":"","url":"https://api.github.com/users/IvanD87","avatar_url":"https://avatars.githubusercontent.com/u/1712577?"},"repo":{"id":8659145,"name":"MizzleDK/Mizuu","url":"https://api.github.com/repos/MizzleDK/Mizuu"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:32Z"}
,{"id":"2489653616","type":"PushEvent","actor":{"id":5101884,"login":"Atvaark","gravatar_id":"","url":"https://api.github.com/users/Atvaark","avatar_url":"https://avatars.githubusercontent.com/u/5101884?"},"repo":{"id":28562333,"name":"Atvaark/FtexTool","url":"https://api.github.com/repos/Atvaark/FtexTool"},"payload":{"push_id":536865169,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"d7ac2071381fda8e1aad67308168618156e7be2a","before":"96e5f6968cadaaf41ce5e5e016b94e40cd73452d","commits":[{"sha":"3c7980bb5a830ab5af6a72d5c46642905f946c5e","author":{"email":"90d00659f465990581b68b3fc25b67ddc2f2fb58@users.noreply.github.com","name":"Atvaark"},"message":"Cleaned up code.","distinct":true,"url":"https://api.github.com/repos/Atvaark/FtexTool/commits/3c7980bb5a830ab5af6a72d5c46642905f946c5e"},{"sha":"d7ac2071381fda8e1aad67308168618156e7be2a","author":{"email":"90d00659f465990581b68b3fc25b67ddc2f2fb58@users.noreply.github.com","name":"Atvaark"},"message":"Incremented assembly version to 0.2.","distinct":true,"url":"https://api.github.com/repos/Atvaark/FtexTool/commits/d7ac2071381fda8e1aad67308168618156e7be2a"}]},"public":true,"created_at":"2015-01-01T15:05:32Z"}
,{"id":"2489653617","type":"IssuesEvent","actor":{"id":2170188,"login":"e-motiv","gravatar_id":"","url":"https://api.github.com/users/e-motiv","avatar_url":"https://avatars.githubusercontent.com/u/2170188?"},"repo":{"id":2464908,"name":"joomla/joomla-cms","url":"https://api.github.com/repos/joomla/joomla-cms"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579","labels_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579/labels{/name}","comments_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579/comments","events_url":"https://api.github.com/repos/joomla/joomla-cms/issues/5579/events","html_url":"https://github.com/joomla/joomla-cms/issues/5579","id":53221441,"number":5579,"title":"Joomla changes component segments first dash/hyphen into colon.","user":{"login":"e-motiv","id":2170188,"avatar_url":"https://avatars.githubusercontent.com/u/2170188?v=3","gravatar_id":"","url":"https://api.github.com/users/e-motiv","html_url":"https://github.com/e-motiv","followers_url":"https://api.github.com/users/e-motiv/followers","following_url":"https://api.github.com/users/e-motiv/following{/other_user}","gists_url":"https://api.github.com/users/e-motiv/gists{/gist_id}","starred_url":"https://api.github.com/users/e-motiv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e-motiv/subscriptions","organizations_url":"https://api.github.com/users/e-motiv/orgs","repos_url":"https://api.github.com/users/e-motiv/repos","events_url":"https://api.github.com/users/e-motiv/events{/privacy}","received_events_url":"https://api.github.com/users/e-motiv/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:05:32Z","updated_at":"2015-01-01T15:05:32Z","closed_at":null,"body":"#### Steps to reproduce the issue\r\nMaking a component's router: router.php.\r\nIn the function \"parse(&$segments)\" the segments have already been tampered with by joomla itself (while not after the build function which is not consistent).\r\nE.g. **\"my-personal-sef-url\" becomes \"my:personal-sef-url\"**\r\n\r\n\r\n#### Expected result\r\nSince it is up to the component router to build the segments in the first place (by the build function) and thus his responsibility to make segments, Joomla should leave the segments sent afterwards to the parser alone. I am of course talking only about the segments targeted for this component and not the segments before that. Joomla can do what it wants with that.  \r\n\r\nI know this probably has to do with slug or similar, but whatever the reason, this is forcing component developers to use that \"concept\" of routing.  This concept should be up to the component developer. \r\n\r\nBut OK, if any developer doesn't agree with the above concept responsibilty, then one should be consistent and make it so that the segments returned by the build function are also changed accordingly after building them. Than at least for someone not knowing this concept, both functions in router.php are complying to each other.  \r\n\r\nFYI:\r\nThis \"bug\" is already here since a long time it seems and people have changed the dash back to a colon in their routing.  (Isn't that a bit inefficient, and again inconsistent?).\r\nHere is one example, but more can be found via google:\r\nhttp://stackoverflow.com/questions/13471360/joomla-component-sef-links-on-and-jrequestgetvar-not-returning-variables-fro\r\n\r\n\r\n\r\n\r\n\r\n"}},"public":true,"created_at":"2015-01-01T15:05:32Z","org":{"id":751633,"login":"joomla","gravatar_id":"","url":"https://api.github.com/orgs/joomla","avatar_url":"https://avatars.githubusercontent.com/u/751633?"}}
,{"id":"2489653620","type":"PullRequestEvent","actor":{"id":1303626,"login":"lunarok","gravatar_id":"","url":"https://api.github.com/users/lunarok","avatar_url":"https://avatars.githubusercontent.com/u/1303626?"},"repo":{"id":24268760,"name":"conselio/jeedom_mysensors","url":"https://api.github.com/repos/conselio/jeedom_mysensors"},"payload":{"action":"opened","number":8,"pull_request":{"url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8","id":26743810,"html_url":"https://github.com/conselio/jeedom_mysensors/pull/8","diff_url":"https://github.com/conselio/jeedom_mysensors/pull/8.diff","patch_url":"https://github.com/conselio/jeedom_mysensors/pull/8.patch","issue_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8","number":8,"state":"open","locked":false,"title":"Pulling version 1.9.2","user":{"login":"lunarok","id":1303626,"avatar_url":"https://avatars.githubusercontent.com/u/1303626?v=3","gravatar_id":"","url":"https://api.github.com/users/lunarok","html_url":"https://github.com/lunarok","followers_url":"https://api.github.com/users/lunarok/followers","following_url":"https://api.github.com/users/lunarok/following{/other_user}","gists_url":"https://api.github.com/users/lunarok/gists{/gist_id}","starred_url":"https://api.github.com/users/lunarok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lunarok/subscriptions","organizations_url":"https://api.github.com/users/lunarok/orgs","repos_url":"https://api.github.com/users/lunarok/repos","events_url":"https://api.github.com/users/lunarok/events{/privacy}","received_events_url":"https://api.github.com/users/lunarok/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:05:33Z","updated_at":"2015-01-01T15:05:33Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/commits","review_comments_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/comments","review_comment_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/comments/{number}","comments_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8/comments","statuses_url":"https://api.github.com/repos/conselio/jeedom_mysensors/statuses/c9e34df46285235d6428914a5ab3d0f8cacbf69b","head":{"label":"lunarok:master","ref":"master","sha":"c9e34df46285235d6428914a5ab3d0f8cacbf69b","user":{"login":"lunarok","id":1303626,"avatar_url":"https://avatars.githubusercontent.com/u/1303626?v=3","gravatar_id":"","url":"https://api.github.com/users/lunarok","html_url":"https://github.com/lunarok","followers_url":"https://api.github.com/users/lunarok/followers","following_url":"https://api.github.com/users/lunarok/following{/other_user}","gists_url":"https://api.github.com/users/lunarok/gists{/gist_id}","starred_url":"https://api.github.com/users/lunarok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lunarok/subscriptions","organizations_url":"https://api.github.com/users/lunarok/orgs","repos_url":"https://api.github.com/users/lunarok/repos","events_url":"https://api.github.com/users/lunarok/events{/privacy}","received_events_url":"https://api.github.com/users/lunarok/received_events","type":"User","site_admin":false},"repo":{"id":25791212,"name":"jeedom_mysensors","full_name":"lunarok/jeedom_mysensors","owner":{"login":"lunarok","id":1303626,"avatar_url":"https://avatars.githubusercontent.com/u/1303626?v=3","gravatar_id":"","url":"https://api.github.com/users/lunarok","html_url":"https://github.com/lunarok","followers_url":"https://api.github.com/users/lunarok/followers","following_url":"https://api.github.com/users/lunarok/following{/other_user}","gists_url":"https://api.github.com/users/lunarok/gists{/gist_id}","starred_url":"https://api.github.com/users/lunarok/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lunarok/subscriptions","organizations_url":"https://api.github.com/users/lunarok/orgs","repos_url":"https://api.github.com/users/lunarok/repos","events_url":"https://api.github.com/users/lunarok/events{/privacy}","received_events_url":"https://api.github.com/users/lunarok/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lunarok/jeedom_mysensors","description":"Plugin pour Jeedom pour MySensors V1.6","fork":true,"url":"https://api.github.com/repos/lunarok/jeedom_mysensors","forks_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/forks","keys_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/teams","hooks_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/hooks","issue_events_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/issues/events{/number}","events_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/events","assignees_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/assignees{/user}","branches_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/branches{/branch}","tags_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/tags","blobs_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/refs{/sha}","trees_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/statuses/{sha}","languages_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/languages","stargazers_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/stargazers","contributors_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/contributors","subscribers_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/subscribers","subscription_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/subscription","commits_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/commits{/sha}","git_commits_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/git/commits{/sha}","comments_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/comments{/number}","issue_comment_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/issues/comments/{number}","contents_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/contents/{+path}","compare_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/merges","archive_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/downloads","issues_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/issues{/number}","pulls_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/pulls{/number}","milestones_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/milestones{/number}","notifications_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/labels{/name}","releases_url":"https://api.github.com/repos/lunarok/jeedom_mysensors/releases{/id}","created_at":"2014-10-26T21:13:20Z","updated_at":"2014-12-24T13:53:29Z","pushed_at":"2014-12-24T13:53:29Z","git_url":"git://github.com/lunarok/jeedom_mysensors.git","ssh_url":"git@github.com:lunarok/jeedom_mysensors.git","clone_url":"https://github.com/lunarok/jeedom_mysensors.git","svn_url":"https://github.com/lunarok/jeedom_mysensors","homepage":"","size":9173,"stargazers_count":0,"watchers_count":0,"language":"C","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"conselio:master","ref":"master","sha":"3d9ff859d3584f0356e246c536487e9c39baddd7","user":{"login":"conselio","id":1991433,"avatar_url":"https://avatars.githubusercontent.com/u/1991433?v=3","gravatar_id":"","url":"https://api.github.com/users/conselio","html_url":"https://github.com/conselio","followers_url":"https://api.github.com/users/conselio/followers","following_url":"https://api.github.com/users/conselio/following{/other_user}","gists_url":"https://api.github.com/users/conselio/gists{/gist_id}","starred_url":"https://api.github.com/users/conselio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/conselio/subscriptions","organizations_url":"https://api.github.com/users/conselio/orgs","repos_url":"https://api.github.com/users/conselio/repos","events_url":"https://api.github.com/users/conselio/events{/privacy}","received_events_url":"https://api.github.com/users/conselio/received_events","type":"User","site_admin":false},"repo":{"id":24268760,"name":"jeedom_mysensors","full_name":"conselio/jeedom_mysensors","owner":{"login":"conselio","id":1991433,"avatar_url":"https://avatars.githubusercontent.com/u/1991433?v=3","gravatar_id":"","url":"https://api.github.com/users/conselio","html_url":"https://github.com/conselio","followers_url":"https://api.github.com/users/conselio/followers","following_url":"https://api.github.com/users/conselio/following{/other_user}","gists_url":"https://api.github.com/users/conselio/gists{/gist_id}","starred_url":"https://api.github.com/users/conselio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/conselio/subscriptions","organizations_url":"https://api.github.com/users/conselio/orgs","repos_url":"https://api.github.com/users/conselio/repos","events_url":"https://api.github.com/users/conselio/events{/privacy}","received_events_url":"https://api.github.com/users/conselio/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/conselio/jeedom_mysensors","description":"Plugin pour Jeedom pour MySensors V1.4","fork":false,"url":"https://api.github.com/repos/conselio/jeedom_mysensors","forks_url":"https://api.github.com/repos/conselio/jeedom_mysensors/forks","keys_url":"https://api.github.com/repos/conselio/jeedom_mysensors/keys{/key_id}","collaborators_url":"https://api.github.com/repos/conselio/jeedom_mysensors/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/conselio/jeedom_mysensors/teams","hooks_url":"https://api.github.com/repos/conselio/jeedom_mysensors/hooks","issue_events_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/events{/number}","events_url":"https://api.github.com/repos/conselio/jeedom_mysensors/events","assignees_url":"https://api.github.com/repos/conselio/jeedom_mysensors/assignees{/user}","branches_url":"https://api.github.com/repos/conselio/jeedom_mysensors/branches{/branch}","tags_url":"https://api.github.com/repos/conselio/jeedom_mysensors/tags","blobs_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/refs{/sha}","trees_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/trees{/sha}","statuses_url":"https://api.github.com/repos/conselio/jeedom_mysensors/statuses/{sha}","languages_url":"https://api.github.com/repos/conselio/jeedom_mysensors/languages","stargazers_url":"https://api.github.com/repos/conselio/jeedom_mysensors/stargazers","contributors_url":"https://api.github.com/repos/conselio/jeedom_mysensors/contributors","subscribers_url":"https://api.github.com/repos/conselio/jeedom_mysensors/subscribers","subscription_url":"https://api.github.com/repos/conselio/jeedom_mysensors/subscription","commits_url":"https://api.github.com/repos/conselio/jeedom_mysensors/commits{/sha}","git_commits_url":"https://api.github.com/repos/conselio/jeedom_mysensors/git/commits{/sha}","comments_url":"https://api.github.com/repos/conselio/jeedom_mysensors/comments{/number}","issue_comment_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/comments/{number}","contents_url":"https://api.github.com/repos/conselio/jeedom_mysensors/contents/{+path}","compare_url":"https://api.github.com/repos/conselio/jeedom_mysensors/compare/{base}...{head}","merges_url":"https://api.github.com/repos/conselio/jeedom_mysensors/merges","archive_url":"https://api.github.com/repos/conselio/jeedom_mysensors/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/conselio/jeedom_mysensors/downloads","issues_url":"https://api.github.com/repos/conselio/jeedom_mysensors/issues{/number}","pulls_url":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls{/number}","milestones_url":"https://api.github.com/repos/conselio/jeedom_mysensors/milestones{/number}","notifications_url":"https://api.github.com/repos/conselio/jeedom_mysensors/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/conselio/jeedom_mysensors/labels{/name}","releases_url":"https://api.github.com/repos/conselio/jeedom_mysensors/releases{/id}","created_at":"2014-09-20T17:02:43Z","updated_at":"2014-11-23T20:45:26Z","pushed_at":"2014-11-23T20:45:26Z","git_url":"git://github.com/conselio/jeedom_mysensors.git","ssh_url":"git@github.com:conselio/jeedom_mysensors.git","clone_url":"https://github.com/conselio/jeedom_mysensors.git","svn_url":"https://github.com/conselio/jeedom_mysensors","homepage":"","size":2010,"stargazers_count":2,"watchers_count":2,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8"},"html":{"href":"https://github.com/conselio/jeedom_mysensors/pull/8"},"issue":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8"},"comments":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/issues/8/comments"},"review_comments":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/comments"},"review_comment":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/pulls/8/commits"},"statuses":{"href":"https://api.github.com/repos/conselio/jeedom_mysensors/statuses/c9e34df46285235d6428914a5ab3d0f8cacbf69b"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":153,"additions":42993,"deletions":190,"changed_files":755}},"public":true,"created_at":"2015-01-01T15:05:33Z"}
,{"id":"2489653621","type":"CreateEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18327768,"name":"cloudify-cosmo/cloudify-cli-packager","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-cli-packager"},"payload":{"ref":"3.2m1","ref_type":"tag","master_branch":"master","description":"Cloudify CLI Package Generator","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:05:33Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489653622","type":"PushEvent","actor":{"id":4948391,"login":"cnt0","gravatar_id":"","url":"https://api.github.com/users/cnt0","avatar_url":"https://avatars.githubusercontent.com/u/4948391?"},"repo":{"id":22261730,"name":"cnt0/lfseries","url":"https://api.github.com/repos/cnt0/lfseries"},"payload":{"push_id":536865170,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db5c6d32582cbdecd5134e765dd55173a770aece","before":"f54adae920801f015d4776ea2986e48cb5a0887c","commits":[{"sha":"db5c6d32582cbdecd5134e765dd55173a770aece","author":{"email":"1d3bb8be64db81658a2f14c82af419e2c4c63f60@yandex.ru","name":"cnt0"},"message":"improved code quality","distinct":true,"url":"https://api.github.com/repos/cnt0/lfseries/commits/db5c6d32582cbdecd5134e765dd55173a770aece"}]},"public":true,"created_at":"2015-01-01T15:05:34Z"}
,{"id":"2489653625","type":"PushEvent","actor":{"id":3081466,"login":"mdietze","gravatar_id":"","url":"https://api.github.com/users/mdietze","avatar_url":"https://avatars.githubusercontent.com/u/3081466?"},"repo":{"id":19502747,"name":"PecanProject/PecanProject.github.io","url":"https://api.github.com/repos/PecanProject/PecanProject.github.io"},"payload":{"push_id":536865173,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9cff2b1952461c1e7d395be025305b6b517e0ae3","before":"e3548d0038d6ed57065757b24808b328e0ebfcd8","commits":[{"sha":"9cff2b1952461c1e7d395be025305b6b517e0ae3","author":{"email":"41e9a1c6c5cf0926708208f35f5e72a2cd2b8363@bu.edu","name":"Mike Dietze"},"message":"old news: cleaning up 2013 and early 2014 timeline","distinct":true,"url":"https://api.github.com/repos/PecanProject/PecanProject.github.io/commits/9cff2b1952461c1e7d395be025305b6b517e0ae3"}]},"public":true,"created_at":"2015-01-01T15:05:34Z","org":{"id":2879854,"login":"PecanProject","gravatar_id":"","url":"https://api.github.com/orgs/PecanProject","avatar_url":"https://avatars.githubusercontent.com/u/2879854?"}}
,{"id":"2489653630","type":"PushEvent","actor":{"id":8036795,"login":"lilutanya","gravatar_id":"","url":"https://api.github.com/users/lilutanya","avatar_url":"https://avatars.githubusercontent.com/u/8036795?"},"repo":{"id":28629261,"name":"lilutanya/dojo_rules","url":"https://api.github.com/repos/lilutanya/dojo_rules"},"payload":{"push_id":536865175,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9111975d8b080da1e8e482b3e1888c4d27a3efcc","before":"b55908ddd0e0b2cf1d2d05ad6e4eccc56902d0d7","commits":[{"sha":"9111975d8b080da1e8e482b3e1888c4d27a3efcc","author":{"email":"8458e22f204983eea9394bb266c8181ba024a86f@gmail.com","name":"lilutanya"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/lilutanya/dojo_rules/commits/9111975d8b080da1e8e482b3e1888c4d27a3efcc"}]},"public":true,"created_at":"2015-01-01T15:05:34Z"}
,{"id":"2489653632","type":"WatchEvent","actor":{"id":529110,"login":"zenbaku","gravatar_id":"","url":"https://api.github.com/users/zenbaku","avatar_url":"https://avatars.githubusercontent.com/u/529110?"},"repo":{"id":2943911,"name":"montagejs/montage","url":"https://api.github.com/repos/montagejs/montage"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:05:35Z","org":{"id":2008799,"login":"montagejs","gravatar_id":"","url":"https://api.github.com/orgs/montagejs","avatar_url":"https://avatars.githubusercontent.com/u/2008799?"}}
,{"id":"2489653641","type":"IssueCommentEvent","actor":{"id":7045663,"login":"arjenhiemstra","gravatar_id":"","url":"https://api.github.com/users/arjenhiemstra","avatar_url":"https://avatars.githubusercontent.com/u/7045663?"},"repo":{"id":6233804,"name":"emoncms/emoncms","url":"https://api.github.com/repos/emoncms/emoncms"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/emoncms/emoncms/issues/265","labels_url":"https://api.github.com/repos/emoncms/emoncms/issues/265/labels{/name}","comments_url":"https://api.github.com/repos/emoncms/emoncms/issues/265/comments","events_url":"https://api.github.com/repos/emoncms/emoncms/issues/265/events","html_url":"https://github.com/emoncms/emoncms/issues/265","id":51758223,"number":265,"title":"Auto remove old data","user":{"login":"bettinz","id":9438037,"avatar_url":"https://avatars.githubusercontent.com/u/9438037?v=3","gravatar_id":"","url":"https://api.github.com/users/bettinz","html_url":"https://github.com/bettinz","followers_url":"https://api.github.com/users/bettinz/followers","following_url":"https://api.github.com/users/bettinz/following{/other_user}","gists_url":"https://api.github.com/users/bettinz/gists{/gist_id}","starred_url":"https://api.github.com/users/bettinz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bettinz/subscriptions","organizations_url":"https://api.github.com/users/bettinz/orgs","repos_url":"https://api.github.com/users/bettinz/repos","events_url":"https://api.github.com/users/bettinz/events{/privacy}","received_events_url":"https://api.github.com/users/bettinz/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-12T00:49:27Z","updated_at":"2015-01-01T15:05:37Z","closed_at":null,"body":"Hello,\r\nIf I use PHPFIWA or PHPFINA I can't delete old data. The best thing is to set an interval like \"delete data old than 90 days \". This allow me to manage a small interval without a lot of disk space. For some feeds in fact, i need kwh/d of 5 years (for example), but I don't need every value for 5 years (the graph in Full screen doesn't delete the interval with phpfiwa or phpfina).\r\nThank you"},"comment":{"url":"https://api.github.com/repos/emoncms/emoncms/issues/comments/68488586","html_url":"https://github.com/emoncms/emoncms/issues/265#issuecomment-68488586","issue_url":"https://api.github.com/repos/emoncms/emoncms/issues/265","id":68488586,"user":{"login":"arjenhiemstra","id":7045663,"avatar_url":"https://avatars.githubusercontent.com/u/7045663?v=3","gravatar_id":"","url":"https://api.github.com/users/arjenhiemstra","html_url":"https://github.com/arjenhiemstra","followers_url":"https://api.github.com/users/arjenhiemstra/followers","following_url":"https://api.github.com/users/arjenhiemstra/following{/other_user}","gists_url":"https://api.github.com/users/arjenhiemstra/gists{/gist_id}","starred_url":"https://api.github.com/users/arjenhiemstra/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arjenhiemstra/subscriptions","organizations_url":"https://api.github.com/users/arjenhiemstra/orgs","repos_url":"https://api.github.com/users/arjenhiemstra/repos","events_url":"https://api.github.com/users/arjenhiemstra/events{/privacy}","received_events_url":"https://api.github.com/users/arjenhiemstra/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:05:37Z","updated_at":"2015-01-01T15:05:37Z","body":"Would be a great feature!"}},"public":true,"created_at":"2015-01-01T15:05:37Z","org":{"id":2532311,"login":"emoncms","gravatar_id":"","url":"https://api.github.com/orgs/emoncms","avatar_url":"https://avatars.githubusercontent.com/u/2532311?"}}
,{"id":"2489653644","type":"PushEvent","actor":{"id":8362849,"login":"fuxiangduan","gravatar_id":"","url":"https://api.github.com/users/fuxiangduan","avatar_url":"https://avatars.githubusercontent.com/u/8362849?"},"repo":{"id":28590482,"name":"fuxiangduan/fuxiangduan.github.io","url":"https://api.github.com/repos/fuxiangduan/fuxiangduan.github.io"},"payload":{"push_id":536865180,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"711498cdcb9056f212b4c09aa304a95f60c4ff48","before":"b8050fc3de513852825068708c4071d3a4a9b0ca","commits":[{"sha":"711498cdcb9056f212b4c09aa304a95f60c4ff48","author":{"email":"24486e45c352ca994e17983b9893e19a3e0c7221@outlook.com","name":"fuxiangduan"},"message":"delete all","distinct":true,"url":"https://api.github.com/repos/fuxiangduan/fuxiangduan.github.io/commits/711498cdcb9056f212b4c09aa304a95f60c4ff48"}]},"public":true,"created_at":"2015-01-01T15:05:37Z"}
]