-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse.json
More file actions
2645 lines (2645 loc) · 169 KB
/
Copy pathresponse.json
File metadata and controls
2645 lines (2645 loc) · 169 KB
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
{
"total_count": 33,
"items": [
{
"id": 3138926,
"name": "Space-Invaders-HTML-5",
"full_name": "adelinolobao/Space-Invaders-HTML-5",
"owner": {
"login": "adelinolobao",
"id": 865568,
"avatar_url": "https://gravatar.com/avatar/903771edca4d12cdf517119e28a7a537?d=https%3A%2F%2Fidenticons.github.com%2F23b53018e0db512adbc93aa0abdb33e4.png&r=x",
"gravatar_id": "903771edca4d12cdf517119e28a7a537",
"url": "https://api.github.com/users/adelinolobao",
"html_url": "https://github.com/adelinolobao",
"followers_url": "https://api.github.com/users/adelinolobao/followers",
"following_url": "https://api.github.com/users/adelinolobao/following{/other_user}",
"gists_url": "https://api.github.com/users/adelinolobao/gists{/gist_id}",
"starred_url": "https://api.github.com/users/adelinolobao/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/adelinolobao/subscriptions",
"organizations_url": "https://api.github.com/users/adelinolobao/orgs",
"repos_url": "https://api.github.com/users/adelinolobao/repos",
"events_url": "https://api.github.com/users/adelinolobao/events{/privacy}",
"received_events_url": "https://api.github.com/users/adelinolobao/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/adelinolobao/Space-Invaders-HTML-5",
"description": "Space Invaders HTML 5",
"fork": false,
"url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5",
"forks_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/forks",
"keys_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/teams",
"hooks_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/hooks",
"issue_events_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/issues/events{/number}",
"events_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/events",
"assignees_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/assignees{/user}",
"branches_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/branches{/branch}",
"tags_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/tags",
"blobs_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/statuses/{sha}",
"languages_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/languages",
"stargazers_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/stargazers",
"contributors_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/contributors",
"subscribers_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/subscribers",
"subscription_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/subscription",
"commits_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/contents/{+path}",
"compare_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/merges",
"archive_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/downloads",
"issues_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/issues{/number}",
"pulls_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/pulls{/number}",
"milestones_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/milestones{/number}",
"notifications_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/labels{/name}",
"releases_url": "https://api.github.com/repos/adelinolobao/Space-Invaders-HTML-5/releases{/id}",
"created_at": "2012-01-09T18:36:40Z",
"updated_at": "2013-11-13T21:06:52Z",
"pushed_at": "2013-05-22T17:19:51Z",
"git_url": "git://github.com/adelinolobao/Space-Invaders-HTML-5.git",
"ssh_url": "git@github.com:adelinolobao/Space-Invaders-HTML-5.git",
"clone_url": "https://github.com/adelinolobao/Space-Invaders-HTML-5.git",
"svn_url": "https://github.com/adelinolobao/Space-Invaders-HTML-5",
"homepage": "",
"size": 136,
"stargazers_count": 10,
"watchers_count": 10,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 5,
"mirror_url": null,
"open_issues_count": 1,
"forks": 5,
"open_issues": 1,
"watchers": 10,
"default_branch": "master",
"master_branch": "master",
"score": 12.946847
},
{
"id": 2863442,
"name": "invaders404",
"full_name": "pjnovas/invaders404",
"owner": {
"login": "pjnovas",
"id": 712927,
"avatar_url": "https://gravatar.com/avatar/d3f99e8dde1d28f0f7bd34578b2e015b?d=https%3A%2F%2Fidenticons.github.com%2F3fc4d59d7ede5675dcc6346be925a55f.png&r=x",
"gravatar_id": "d3f99e8dde1d28f0f7bd34578b2e015b",
"url": "https://api.github.com/users/pjnovas",
"html_url": "https://github.com/pjnovas",
"followers_url": "https://api.github.com/users/pjnovas/followers",
"following_url": "https://api.github.com/users/pjnovas/following{/other_user}",
"gists_url": "https://api.github.com/users/pjnovas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pjnovas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pjnovas/subscriptions",
"organizations_url": "https://api.github.com/users/pjnovas/orgs",
"repos_url": "https://api.github.com/users/pjnovas/repos",
"events_url": "https://api.github.com/users/pjnovas/events{/privacy}",
"received_events_url": "https://api.github.com/users/pjnovas/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/pjnovas/invaders404",
"description": "Another custom HTML5 CANVAS 404 error page with the classic game Space Invaders made in JavaScript.",
"fork": false,
"url": "https://api.github.com/repos/pjnovas/invaders404",
"forks_url": "https://api.github.com/repos/pjnovas/invaders404/forks",
"keys_url": "https://api.github.com/repos/pjnovas/invaders404/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/pjnovas/invaders404/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/pjnovas/invaders404/teams",
"hooks_url": "https://api.github.com/repos/pjnovas/invaders404/hooks",
"issue_events_url": "https://api.github.com/repos/pjnovas/invaders404/issues/events{/number}",
"events_url": "https://api.github.com/repos/pjnovas/invaders404/events",
"assignees_url": "https://api.github.com/repos/pjnovas/invaders404/assignees{/user}",
"branches_url": "https://api.github.com/repos/pjnovas/invaders404/branches{/branch}",
"tags_url": "https://api.github.com/repos/pjnovas/invaders404/tags",
"blobs_url": "https://api.github.com/repos/pjnovas/invaders404/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/pjnovas/invaders404/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/pjnovas/invaders404/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/pjnovas/invaders404/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/pjnovas/invaders404/statuses/{sha}",
"languages_url": "https://api.github.com/repos/pjnovas/invaders404/languages",
"stargazers_url": "https://api.github.com/repos/pjnovas/invaders404/stargazers",
"contributors_url": "https://api.github.com/repos/pjnovas/invaders404/contributors",
"subscribers_url": "https://api.github.com/repos/pjnovas/invaders404/subscribers",
"subscription_url": "https://api.github.com/repos/pjnovas/invaders404/subscription",
"commits_url": "https://api.github.com/repos/pjnovas/invaders404/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/pjnovas/invaders404/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/pjnovas/invaders404/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/pjnovas/invaders404/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/pjnovas/invaders404/contents/{+path}",
"compare_url": "https://api.github.com/repos/pjnovas/invaders404/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/pjnovas/invaders404/merges",
"archive_url": "https://api.github.com/repos/pjnovas/invaders404/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/pjnovas/invaders404/downloads",
"issues_url": "https://api.github.com/repos/pjnovas/invaders404/issues{/number}",
"pulls_url": "https://api.github.com/repos/pjnovas/invaders404/pulls{/number}",
"milestones_url": "https://api.github.com/repos/pjnovas/invaders404/milestones{/number}",
"notifications_url": "https://api.github.com/repos/pjnovas/invaders404/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/pjnovas/invaders404/labels{/name}",
"releases_url": "https://api.github.com/repos/pjnovas/invaders404/releases{/id}",
"created_at": "2011-11-27T22:55:05Z",
"updated_at": "2014-01-10T03:14:03Z",
"pushed_at": "2012-02-03T05:01:41Z",
"git_url": "git://github.com/pjnovas/invaders404.git",
"ssh_url": "git@github.com:pjnovas/invaders404.git",
"clone_url": "https://github.com/pjnovas/invaders404.git",
"svn_url": "https://github.com/pjnovas/invaders404",
"homepage": "http://fernetjs.com/?s=notfound",
"size": 298,
"stargazers_count": 10,
"watchers_count": 10,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 8,
"mirror_url": null,
"open_issues_count": 2,
"forks": 8,
"open_issues": 2,
"watchers": 10,
"default_branch": "master",
"master_branch": "master",
"score": 12.557269
},
{
"id": 15873088,
"name": "SpaceInvaders-HTML5",
"full_name": "DaveTCode/SpaceInvaders-HTML5",
"owner": {
"login": "DaveTCode",
"id": 1358414,
"avatar_url": "https://gravatar.com/avatar/0445d258b51fec4d3748d2c31cece5a4?d=https%3A%2F%2Fidenticons.github.com%2F2e1ef4fd197f7b7a6a49e1d088886a2e.png&r=x",
"gravatar_id": "0445d258b51fec4d3748d2c31cece5a4",
"url": "https://api.github.com/users/DaveTCode",
"html_url": "https://github.com/DaveTCode",
"followers_url": "https://api.github.com/users/DaveTCode/followers",
"following_url": "https://api.github.com/users/DaveTCode/following{/other_user}",
"gists_url": "https://api.github.com/users/DaveTCode/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DaveTCode/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DaveTCode/subscriptions",
"organizations_url": "https://api.github.com/users/DaveTCode/orgs",
"repos_url": "https://api.github.com/users/DaveTCode/repos",
"events_url": "https://api.github.com/users/DaveTCode/events{/privacy}",
"received_events_url": "https://api.github.com/users/DaveTCode/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/DaveTCode/SpaceInvaders-HTML5",
"description": "A copy of space invaders written in the HTML 5 canvas API without making use of external libraries. Education project to learn Canvas API for games and javascript gaming paradigms.",
"fork": false,
"url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5",
"forks_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/forks",
"keys_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/teams",
"hooks_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/hooks",
"issue_events_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/issues/events{/number}",
"events_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/events",
"assignees_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/assignees{/user}",
"branches_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/branches{/branch}",
"tags_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/tags",
"blobs_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/statuses/{sha}",
"languages_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/languages",
"stargazers_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/stargazers",
"contributors_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/contributors",
"subscribers_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/subscribers",
"subscription_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/subscription",
"commits_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/contents/{+path}",
"compare_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/merges",
"archive_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/downloads",
"issues_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/issues{/number}",
"pulls_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/pulls{/number}",
"milestones_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/milestones{/number}",
"notifications_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/labels{/name}",
"releases_url": "https://api.github.com/repos/DaveTCode/SpaceInvaders-HTML5/releases{/id}",
"created_at": "2014-01-13T15:57:48Z",
"updated_at": "2014-01-17T17:02:35Z",
"pushed_at": "2014-01-17T17:02:35Z",
"git_url": "git://github.com/DaveTCode/SpaceInvaders-HTML5.git",
"ssh_url": "git@github.com:DaveTCode/SpaceInvaders-HTML5.git",
"clone_url": "https://github.com/DaveTCode/SpaceInvaders-HTML5.git",
"svn_url": "https://github.com/DaveTCode/SpaceInvaders-HTML5",
"homepage": null,
"size": 156,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"master_branch": "master",
"score": 9.792258
},
{
"id": 16020642,
"name": "SpaceInvaders",
"full_name": "kqb/SpaceInvaders",
"owner": {
"login": "kqb",
"id": 5428898,
"avatar_url": "https://gravatar.com/avatar/da7e9ef4304b8342a732aba80d184d5d?d=https%3A%2F%2Fidenticons.github.com%2F7d5b265863b433aa2ba70f45159ea097.png&r=x",
"gravatar_id": "da7e9ef4304b8342a732aba80d184d5d",
"url": "https://api.github.com/users/kqb",
"html_url": "https://github.com/kqb",
"followers_url": "https://api.github.com/users/kqb/followers",
"following_url": "https://api.github.com/users/kqb/following{/other_user}",
"gists_url": "https://api.github.com/users/kqb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kqb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kqb/subscriptions",
"organizations_url": "https://api.github.com/users/kqb/orgs",
"repos_url": "https://api.github.com/users/kqb/repos",
"events_url": "https://api.github.com/users/kqb/events{/privacy}",
"received_events_url": "https://api.github.com/users/kqb/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/kqb/SpaceInvaders",
"description": "HTML5 implementation of the game",
"fork": false,
"url": "https://api.github.com/repos/kqb/SpaceInvaders",
"forks_url": "https://api.github.com/repos/kqb/SpaceInvaders/forks",
"keys_url": "https://api.github.com/repos/kqb/SpaceInvaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/kqb/SpaceInvaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/kqb/SpaceInvaders/teams",
"hooks_url": "https://api.github.com/repos/kqb/SpaceInvaders/hooks",
"issue_events_url": "https://api.github.com/repos/kqb/SpaceInvaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/kqb/SpaceInvaders/events",
"assignees_url": "https://api.github.com/repos/kqb/SpaceInvaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/kqb/SpaceInvaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/kqb/SpaceInvaders/tags",
"blobs_url": "https://api.github.com/repos/kqb/SpaceInvaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/kqb/SpaceInvaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/kqb/SpaceInvaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/kqb/SpaceInvaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/kqb/SpaceInvaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/kqb/SpaceInvaders/languages",
"stargazers_url": "https://api.github.com/repos/kqb/SpaceInvaders/stargazers",
"contributors_url": "https://api.github.com/repos/kqb/SpaceInvaders/contributors",
"subscribers_url": "https://api.github.com/repos/kqb/SpaceInvaders/subscribers",
"subscription_url": "https://api.github.com/repos/kqb/SpaceInvaders/subscription",
"commits_url": "https://api.github.com/repos/kqb/SpaceInvaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/kqb/SpaceInvaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/kqb/SpaceInvaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/kqb/SpaceInvaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/kqb/SpaceInvaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/kqb/SpaceInvaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/kqb/SpaceInvaders/merges",
"archive_url": "https://api.github.com/repos/kqb/SpaceInvaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/kqb/SpaceInvaders/downloads",
"issues_url": "https://api.github.com/repos/kqb/SpaceInvaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/kqb/SpaceInvaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/kqb/SpaceInvaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/kqb/SpaceInvaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/kqb/SpaceInvaders/labels{/name}",
"releases_url": "https://api.github.com/repos/kqb/SpaceInvaders/releases{/id}",
"created_at": "2014-01-18T06:44:25Z",
"updated_at": "2014-02-05T18:15:55Z",
"pushed_at": "2014-02-05T18:15:55Z",
"git_url": "git://github.com/kqb/SpaceInvaders.git",
"ssh_url": "git@github.com:kqb/SpaceInvaders.git",
"clone_url": "https://github.com/kqb/SpaceInvaders.git",
"svn_url": "https://github.com/kqb/SpaceInvaders",
"homepage": null,
"size": 3916,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"master_branch": "master",
"score": 9.246819
},
{
"id": 6106845,
"name": "SpaceInvaders",
"full_name": "ozelentok/SpaceInvaders",
"owner": {
"login": "ozelentok",
"id": 1478966,
"avatar_url": "https://gravatar.com/avatar/78330ed6ac765d678e07eb4281edb83f?d=https%3A%2F%2Fidenticons.github.com%2F22ebe60bd97982df92af164523936350.png&r=x",
"gravatar_id": "78330ed6ac765d678e07eb4281edb83f",
"url": "https://api.github.com/users/ozelentok",
"html_url": "https://github.com/ozelentok",
"followers_url": "https://api.github.com/users/ozelentok/followers",
"following_url": "https://api.github.com/users/ozelentok/following{/other_user}",
"gists_url": "https://api.github.com/users/ozelentok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ozelentok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ozelentok/subscriptions",
"organizations_url": "https://api.github.com/users/ozelentok/orgs",
"repos_url": "https://api.github.com/users/ozelentok/repos",
"events_url": "https://api.github.com/users/ozelentok/events{/privacy}",
"received_events_url": "https://api.github.com/users/ozelentok/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/ozelentok/SpaceInvaders",
"description": "Space Invaders in HTML5 and JS",
"fork": false,
"url": "https://api.github.com/repos/ozelentok/SpaceInvaders",
"forks_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/forks",
"keys_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/teams",
"hooks_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/hooks",
"issue_events_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/events",
"assignees_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/tags",
"blobs_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/languages",
"stargazers_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/stargazers",
"contributors_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/contributors",
"subscribers_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/subscribers",
"subscription_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/subscription",
"commits_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/merges",
"archive_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/downloads",
"issues_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/labels{/name}",
"releases_url": "https://api.github.com/repos/ozelentok/SpaceInvaders/releases{/id}",
"created_at": "2012-10-06T21:17:11Z",
"updated_at": "2013-05-09T21:34:12Z",
"pushed_at": "2013-05-09T21:34:11Z",
"git_url": "git://github.com/ozelentok/SpaceInvaders.git",
"ssh_url": "git@github.com:ozelentok/SpaceInvaders.git",
"clone_url": "https://github.com/ozelentok/SpaceInvaders.git",
"svn_url": "https://github.com/ozelentok/SpaceInvaders",
"homepage": null,
"size": 1172,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"master_branch": "master",
"score": 8.995154
},
{
"id": 2355143,
"name": "invaders",
"full_name": "MartinJKurz/invaders",
"owner": {
"login": "MartinJKurz",
"id": 898159,
"avatar_url": "https://gravatar.com/avatar/19b0daa323b6af55864f706d8e25100e?d=https%3A%2F%2Fidenticons.github.com%2F39470254d4c9d201884f833a778bc824.png&r=x",
"gravatar_id": "19b0daa323b6af55864f706d8e25100e",
"url": "https://api.github.com/users/MartinJKurz",
"html_url": "https://github.com/MartinJKurz",
"followers_url": "https://api.github.com/users/MartinJKurz/followers",
"following_url": "https://api.github.com/users/MartinJKurz/following{/other_user}",
"gists_url": "https://api.github.com/users/MartinJKurz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MartinJKurz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MartinJKurz/subscriptions",
"organizations_url": "https://api.github.com/users/MartinJKurz/orgs",
"repos_url": "https://api.github.com/users/MartinJKurz/repos",
"events_url": "https://api.github.com/users/MartinJKurz/events{/privacy}",
"received_events_url": "https://api.github.com/users/MartinJKurz/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/MartinJKurz/invaders",
"description": "space invaders clone, using html5 audio and canvas",
"fork": false,
"url": "https://api.github.com/repos/MartinJKurz/invaders",
"forks_url": "https://api.github.com/repos/MartinJKurz/invaders/forks",
"keys_url": "https://api.github.com/repos/MartinJKurz/invaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/MartinJKurz/invaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/MartinJKurz/invaders/teams",
"hooks_url": "https://api.github.com/repos/MartinJKurz/invaders/hooks",
"issue_events_url": "https://api.github.com/repos/MartinJKurz/invaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/MartinJKurz/invaders/events",
"assignees_url": "https://api.github.com/repos/MartinJKurz/invaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/MartinJKurz/invaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/MartinJKurz/invaders/tags",
"blobs_url": "https://api.github.com/repos/MartinJKurz/invaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/MartinJKurz/invaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/MartinJKurz/invaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/MartinJKurz/invaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/MartinJKurz/invaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/MartinJKurz/invaders/languages",
"stargazers_url": "https://api.github.com/repos/MartinJKurz/invaders/stargazers",
"contributors_url": "https://api.github.com/repos/MartinJKurz/invaders/contributors",
"subscribers_url": "https://api.github.com/repos/MartinJKurz/invaders/subscribers",
"subscription_url": "https://api.github.com/repos/MartinJKurz/invaders/subscription",
"commits_url": "https://api.github.com/repos/MartinJKurz/invaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/MartinJKurz/invaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/MartinJKurz/invaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/MartinJKurz/invaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/MartinJKurz/invaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/MartinJKurz/invaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/MartinJKurz/invaders/merges",
"archive_url": "https://api.github.com/repos/MartinJKurz/invaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/MartinJKurz/invaders/downloads",
"issues_url": "https://api.github.com/repos/MartinJKurz/invaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/MartinJKurz/invaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/MartinJKurz/invaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/MartinJKurz/invaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/MartinJKurz/invaders/labels{/name}",
"releases_url": "https://api.github.com/repos/MartinJKurz/invaders/releases{/id}",
"created_at": "2011-09-09T12:01:41Z",
"updated_at": "2014-01-05T23:30:06Z",
"pushed_at": "2011-10-28T22:22:13Z",
"git_url": "git://github.com/MartinJKurz/invaders.git",
"ssh_url": "git@github.com:MartinJKurz/invaders.git",
"clone_url": "https://github.com/MartinJKurz/invaders.git",
"svn_url": "https://github.com/MartinJKurz/invaders",
"homepage": "",
"size": 1916,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"master_branch": "master",
"score": 8.989054
},
{
"id": 13066235,
"name": "space-invaders",
"full_name": "pedroha/space-invaders",
"owner": {
"login": "pedroha",
"id": 62430,
"avatar_url": "https://gravatar.com/avatar/a6b1e79dd67a76ee103942b874faab06?d=https%3A%2F%2Fidenticons.github.com%2F33a398cdc4ee4392d969e847547ff78f.png&r=x",
"gravatar_id": "a6b1e79dd67a76ee103942b874faab06",
"url": "https://api.github.com/users/pedroha",
"html_url": "https://github.com/pedroha",
"followers_url": "https://api.github.com/users/pedroha/followers",
"following_url": "https://api.github.com/users/pedroha/following{/other_user}",
"gists_url": "https://api.github.com/users/pedroha/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pedroha/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pedroha/subscriptions",
"organizations_url": "https://api.github.com/users/pedroha/orgs",
"repos_url": "https://api.github.com/users/pedroha/repos",
"events_url": "https://api.github.com/users/pedroha/events{/privacy}",
"received_events_url": "https://api.github.com/users/pedroha/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/pedroha/space-invaders",
"description": "Space Invaders using HTML5 and JS",
"fork": false,
"url": "https://api.github.com/repos/pedroha/space-invaders",
"forks_url": "https://api.github.com/repos/pedroha/space-invaders/forks",
"keys_url": "https://api.github.com/repos/pedroha/space-invaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/pedroha/space-invaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/pedroha/space-invaders/teams",
"hooks_url": "https://api.github.com/repos/pedroha/space-invaders/hooks",
"issue_events_url": "https://api.github.com/repos/pedroha/space-invaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/pedroha/space-invaders/events",
"assignees_url": "https://api.github.com/repos/pedroha/space-invaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/pedroha/space-invaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/pedroha/space-invaders/tags",
"blobs_url": "https://api.github.com/repos/pedroha/space-invaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/pedroha/space-invaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/pedroha/space-invaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/pedroha/space-invaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/pedroha/space-invaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/pedroha/space-invaders/languages",
"stargazers_url": "https://api.github.com/repos/pedroha/space-invaders/stargazers",
"contributors_url": "https://api.github.com/repos/pedroha/space-invaders/contributors",
"subscribers_url": "https://api.github.com/repos/pedroha/space-invaders/subscribers",
"subscription_url": "https://api.github.com/repos/pedroha/space-invaders/subscription",
"commits_url": "https://api.github.com/repos/pedroha/space-invaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/pedroha/space-invaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/pedroha/space-invaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/pedroha/space-invaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/pedroha/space-invaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/pedroha/space-invaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/pedroha/space-invaders/merges",
"archive_url": "https://api.github.com/repos/pedroha/space-invaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/pedroha/space-invaders/downloads",
"issues_url": "https://api.github.com/repos/pedroha/space-invaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/pedroha/space-invaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/pedroha/space-invaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/pedroha/space-invaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/pedroha/space-invaders/labels{/name}",
"releases_url": "https://api.github.com/repos/pedroha/space-invaders/releases{/id}",
"created_at": "2013-09-24T14:08:01Z",
"updated_at": "2014-01-26T19:31:48Z",
"pushed_at": "2013-09-24T14:25:13Z",
"git_url": "git://github.com/pedroha/space-invaders.git",
"ssh_url": "git@github.com:pedroha/space-invaders.git",
"clone_url": "https://github.com/pedroha/space-invaders.git",
"svn_url": "https://github.com/pedroha/space-invaders",
"homepage": null,
"size": 176,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"master_branch": "master",
"score": 8.694973
},
{
"id": 9910154,
"name": "SpaceInvaders",
"full_name": "freakypain/SpaceInvaders",
"owner": {
"login": "freakypain",
"id": 1230909,
"avatar_url": "https://gravatar.com/avatar/160cccadaf1fa297f57c84bfe4d3f60c?d=https%3A%2F%2Fidenticons.github.com%2F927c449413aed212a1c4c1226ce30332.png&r=x",
"gravatar_id": "160cccadaf1fa297f57c84bfe4d3f60c",
"url": "https://api.github.com/users/freakypain",
"html_url": "https://github.com/freakypain",
"followers_url": "https://api.github.com/users/freakypain/followers",
"following_url": "https://api.github.com/users/freakypain/following{/other_user}",
"gists_url": "https://api.github.com/users/freakypain/gists{/gist_id}",
"starred_url": "https://api.github.com/users/freakypain/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/freakypain/subscriptions",
"organizations_url": "https://api.github.com/users/freakypain/orgs",
"repos_url": "https://api.github.com/users/freakypain/repos",
"events_url": "https://api.github.com/users/freakypain/events{/privacy}",
"received_events_url": "https://api.github.com/users/freakypain/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/freakypain/SpaceInvaders",
"description": "Multiplayer Space Invaders HTML5, NODEJS",
"fork": false,
"url": "https://api.github.com/repos/freakypain/SpaceInvaders",
"forks_url": "https://api.github.com/repos/freakypain/SpaceInvaders/forks",
"keys_url": "https://api.github.com/repos/freakypain/SpaceInvaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/freakypain/SpaceInvaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/freakypain/SpaceInvaders/teams",
"hooks_url": "https://api.github.com/repos/freakypain/SpaceInvaders/hooks",
"issue_events_url": "https://api.github.com/repos/freakypain/SpaceInvaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/freakypain/SpaceInvaders/events",
"assignees_url": "https://api.github.com/repos/freakypain/SpaceInvaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/freakypain/SpaceInvaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/freakypain/SpaceInvaders/tags",
"blobs_url": "https://api.github.com/repos/freakypain/SpaceInvaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/freakypain/SpaceInvaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/freakypain/SpaceInvaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/freakypain/SpaceInvaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/freakypain/SpaceInvaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/freakypain/SpaceInvaders/languages",
"stargazers_url": "https://api.github.com/repos/freakypain/SpaceInvaders/stargazers",
"contributors_url": "https://api.github.com/repos/freakypain/SpaceInvaders/contributors",
"subscribers_url": "https://api.github.com/repos/freakypain/SpaceInvaders/subscribers",
"subscription_url": "https://api.github.com/repos/freakypain/SpaceInvaders/subscription",
"commits_url": "https://api.github.com/repos/freakypain/SpaceInvaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/freakypain/SpaceInvaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/freakypain/SpaceInvaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/freakypain/SpaceInvaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/freakypain/SpaceInvaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/freakypain/SpaceInvaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/freakypain/SpaceInvaders/merges",
"archive_url": "https://api.github.com/repos/freakypain/SpaceInvaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/freakypain/SpaceInvaders/downloads",
"issues_url": "https://api.github.com/repos/freakypain/SpaceInvaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/freakypain/SpaceInvaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/freakypain/SpaceInvaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/freakypain/SpaceInvaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/freakypain/SpaceInvaders/labels{/name}",
"releases_url": "https://api.github.com/repos/freakypain/SpaceInvaders/releases{/id}",
"created_at": "2013-05-07T11:16:54Z",
"updated_at": "2013-11-01T14:04:28Z",
"pushed_at": "2013-06-14T22:43:39Z",
"git_url": "git://github.com/freakypain/SpaceInvaders.git",
"ssh_url": "git@github.com:freakypain/SpaceInvaders.git",
"clone_url": "https://github.com/freakypain/SpaceInvaders.git",
"svn_url": "https://github.com/freakypain/SpaceInvaders",
"homepage": "",
"size": 160,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"master_branch": "master",
"score": 8.657179
},
{
"id": 4684531,
"name": "space-invaders",
"full_name": "whostolemyhat/space-invaders",
"owner": {
"login": "whostolemyhat",
"id": 376786,
"avatar_url": "https://gravatar.com/avatar/1056cea302c956d62f8066bd15c4b3cf?d=https%3A%2F%2Fidenticons.github.com%2F3e5ed8df532ba26b3a021cf09742b6bf.png&r=x",
"gravatar_id": "1056cea302c956d62f8066bd15c4b3cf",
"url": "https://api.github.com/users/whostolemyhat",
"html_url": "https://github.com/whostolemyhat",
"followers_url": "https://api.github.com/users/whostolemyhat/followers",
"following_url": "https://api.github.com/users/whostolemyhat/following{/other_user}",
"gists_url": "https://api.github.com/users/whostolemyhat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/whostolemyhat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/whostolemyhat/subscriptions",
"organizations_url": "https://api.github.com/users/whostolemyhat/orgs",
"repos_url": "https://api.github.com/users/whostolemyhat/repos",
"events_url": "https://api.github.com/users/whostolemyhat/events{/privacy}",
"received_events_url": "https://api.github.com/users/whostolemyhat/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/whostolemyhat/space-invaders",
"description": "HTML5 Canvas/Javascript space invaders game",
"fork": false,
"url": "https://api.github.com/repos/whostolemyhat/space-invaders",
"forks_url": "https://api.github.com/repos/whostolemyhat/space-invaders/forks",
"keys_url": "https://api.github.com/repos/whostolemyhat/space-invaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/whostolemyhat/space-invaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/whostolemyhat/space-invaders/teams",
"hooks_url": "https://api.github.com/repos/whostolemyhat/space-invaders/hooks",
"issue_events_url": "https://api.github.com/repos/whostolemyhat/space-invaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/whostolemyhat/space-invaders/events",
"assignees_url": "https://api.github.com/repos/whostolemyhat/space-invaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/whostolemyhat/space-invaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/whostolemyhat/space-invaders/tags",
"blobs_url": "https://api.github.com/repos/whostolemyhat/space-invaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/whostolemyhat/space-invaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/whostolemyhat/space-invaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/whostolemyhat/space-invaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/whostolemyhat/space-invaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/whostolemyhat/space-invaders/languages",
"stargazers_url": "https://api.github.com/repos/whostolemyhat/space-invaders/stargazers",
"contributors_url": "https://api.github.com/repos/whostolemyhat/space-invaders/contributors",
"subscribers_url": "https://api.github.com/repos/whostolemyhat/space-invaders/subscribers",
"subscription_url": "https://api.github.com/repos/whostolemyhat/space-invaders/subscription",
"commits_url": "https://api.github.com/repos/whostolemyhat/space-invaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/whostolemyhat/space-invaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/whostolemyhat/space-invaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/whostolemyhat/space-invaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/whostolemyhat/space-invaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/whostolemyhat/space-invaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/whostolemyhat/space-invaders/merges",
"archive_url": "https://api.github.com/repos/whostolemyhat/space-invaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/whostolemyhat/space-invaders/downloads",
"issues_url": "https://api.github.com/repos/whostolemyhat/space-invaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/whostolemyhat/space-invaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/whostolemyhat/space-invaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/whostolemyhat/space-invaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/whostolemyhat/space-invaders/labels{/name}",
"releases_url": "https://api.github.com/repos/whostolemyhat/space-invaders/releases{/id}",
"created_at": "2012-06-16T12:46:03Z",
"updated_at": "2013-11-25T08:31:34Z",
"pushed_at": "2012-06-16T12:54:16Z",
"git_url": "git://github.com/whostolemyhat/space-invaders.git",
"ssh_url": "git@github.com:whostolemyhat/space-invaders.git",
"clone_url": "https://github.com/whostolemyhat/space-invaders.git",
"svn_url": "https://github.com/whostolemyhat/space-invaders",
"homepage": null,
"size": 94,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 1,
"mirror_url": null,
"open_issues_count": 0,
"forks": 1,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"master_branch": "master",
"score": 8.657179
},
{
"id": 13109539,
"name": "html5-invaders",
"full_name": "abnercarleto/html5-invaders",
"owner": {
"login": "abnercarleto",
"id": 576669,
"avatar_url": "https://gravatar.com/avatar/0bdca64565e48e94dfa29fa9b3ed653b?d=https%3A%2F%2Fidenticons.github.com%2F16ffb20276f54916e5306bd9222423c2.png&r=x",
"gravatar_id": "0bdca64565e48e94dfa29fa9b3ed653b",
"url": "https://api.github.com/users/abnercarleto",
"html_url": "https://github.com/abnercarleto",
"followers_url": "https://api.github.com/users/abnercarleto/followers",
"following_url": "https://api.github.com/users/abnercarleto/following{/other_user}",
"gists_url": "https://api.github.com/users/abnercarleto/gists{/gist_id}",
"starred_url": "https://api.github.com/users/abnercarleto/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/abnercarleto/subscriptions",
"organizations_url": "https://api.github.com/users/abnercarleto/orgs",
"repos_url": "https://api.github.com/users/abnercarleto/repos",
"events_url": "https://api.github.com/users/abnercarleto/events{/privacy}",
"received_events_url": "https://api.github.com/users/abnercarleto/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/abnercarleto/html5-invaders",
"description": "Space Invaders in HTML5 and WebCanvas",
"fork": false,
"url": "https://api.github.com/repos/abnercarleto/html5-invaders",
"forks_url": "https://api.github.com/repos/abnercarleto/html5-invaders/forks",
"keys_url": "https://api.github.com/repos/abnercarleto/html5-invaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/abnercarleto/html5-invaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/abnercarleto/html5-invaders/teams",
"hooks_url": "https://api.github.com/repos/abnercarleto/html5-invaders/hooks",
"issue_events_url": "https://api.github.com/repos/abnercarleto/html5-invaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/abnercarleto/html5-invaders/events",
"assignees_url": "https://api.github.com/repos/abnercarleto/html5-invaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/abnercarleto/html5-invaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/abnercarleto/html5-invaders/tags",
"blobs_url": "https://api.github.com/repos/abnercarleto/html5-invaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/abnercarleto/html5-invaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/abnercarleto/html5-invaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/abnercarleto/html5-invaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/abnercarleto/html5-invaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/abnercarleto/html5-invaders/languages",
"stargazers_url": "https://api.github.com/repos/abnercarleto/html5-invaders/stargazers",
"contributors_url": "https://api.github.com/repos/abnercarleto/html5-invaders/contributors",
"subscribers_url": "https://api.github.com/repos/abnercarleto/html5-invaders/subscribers",
"subscription_url": "https://api.github.com/repos/abnercarleto/html5-invaders/subscription",
"commits_url": "https://api.github.com/repos/abnercarleto/html5-invaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/abnercarleto/html5-invaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/abnercarleto/html5-invaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/abnercarleto/html5-invaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/abnercarleto/html5-invaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/abnercarleto/html5-invaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/abnercarleto/html5-invaders/merges",
"archive_url": "https://api.github.com/repos/abnercarleto/html5-invaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/abnercarleto/html5-invaders/downloads",
"issues_url": "https://api.github.com/repos/abnercarleto/html5-invaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/abnercarleto/html5-invaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/abnercarleto/html5-invaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/abnercarleto/html5-invaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/abnercarleto/html5-invaders/labels{/name}",
"releases_url": "https://api.github.com/repos/abnercarleto/html5-invaders/releases{/id}",
"created_at": "2013-09-26T00:58:19Z",
"updated_at": "2013-09-26T02:01:46Z",
"pushed_at": "2013-09-26T02:01:41Z",
"git_url": "git://github.com/abnercarleto/html5-invaders.git",
"ssh_url": "git@github.com:abnercarleto/html5-invaders.git",
"clone_url": "https://github.com/abnercarleto/html5-invaders.git",
"svn_url": "https://github.com/abnercarleto/html5-invaders",
"homepage": null,
"size": 160,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"master_branch": "master",
"score": 8.633088
},
{
"id": 11264969,
"name": "invaders",
"full_name": "Quantium/invaders",
"owner": {
"login": "Quantium",
"id": 2090436,
"avatar_url": "https://gravatar.com/avatar/5605cc5162092265d4dd60927ac6d3cb?d=https%3A%2F%2Fidenticons.github.com%2F69e95f025771fb675faef32d90e0528b.png&r=x",
"gravatar_id": "5605cc5162092265d4dd60927ac6d3cb",
"url": "https://api.github.com/users/Quantium",
"html_url": "https://github.com/Quantium",
"followers_url": "https://api.github.com/users/Quantium/followers",
"following_url": "https://api.github.com/users/Quantium/following{/other_user}",
"gists_url": "https://api.github.com/users/Quantium/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Quantium/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Quantium/subscriptions",
"organizations_url": "https://api.github.com/users/Quantium/orgs",
"repos_url": "https://api.github.com/users/Quantium/repos",
"events_url": "https://api.github.com/users/Quantium/events{/privacy}",
"received_events_url": "https://api.github.com/users/Quantium/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/Quantium/invaders",
"description": "HTML5 Canvas Game.This a tribute to Space Invaders (スペースインベーダー Supēsu Inbēdā?) designed by Tomohiro Nishikado in 1978",
"fork": false,
"url": "https://api.github.com/repos/Quantium/invaders",
"forks_url": "https://api.github.com/repos/Quantium/invaders/forks",
"keys_url": "https://api.github.com/repos/Quantium/invaders/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/Quantium/invaders/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/Quantium/invaders/teams",
"hooks_url": "https://api.github.com/repos/Quantium/invaders/hooks",
"issue_events_url": "https://api.github.com/repos/Quantium/invaders/issues/events{/number}",
"events_url": "https://api.github.com/repos/Quantium/invaders/events",
"assignees_url": "https://api.github.com/repos/Quantium/invaders/assignees{/user}",
"branches_url": "https://api.github.com/repos/Quantium/invaders/branches{/branch}",
"tags_url": "https://api.github.com/repos/Quantium/invaders/tags",
"blobs_url": "https://api.github.com/repos/Quantium/invaders/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/Quantium/invaders/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/Quantium/invaders/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/Quantium/invaders/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/Quantium/invaders/statuses/{sha}",
"languages_url": "https://api.github.com/repos/Quantium/invaders/languages",
"stargazers_url": "https://api.github.com/repos/Quantium/invaders/stargazers",
"contributors_url": "https://api.github.com/repos/Quantium/invaders/contributors",
"subscribers_url": "https://api.github.com/repos/Quantium/invaders/subscribers",
"subscription_url": "https://api.github.com/repos/Quantium/invaders/subscription",
"commits_url": "https://api.github.com/repos/Quantium/invaders/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/Quantium/invaders/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/Quantium/invaders/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/Quantium/invaders/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/Quantium/invaders/contents/{+path}",
"compare_url": "https://api.github.com/repos/Quantium/invaders/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/Quantium/invaders/merges",
"archive_url": "https://api.github.com/repos/Quantium/invaders/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/Quantium/invaders/downloads",
"issues_url": "https://api.github.com/repos/Quantium/invaders/issues{/number}",
"pulls_url": "https://api.github.com/repos/Quantium/invaders/pulls{/number}",
"milestones_url": "https://api.github.com/repos/Quantium/invaders/milestones{/number}",
"notifications_url": "https://api.github.com/repos/Quantium/invaders/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/Quantium/invaders/labels{/name}",
"releases_url": "https://api.github.com/repos/Quantium/invaders/releases{/id}",
"created_at": "2013-07-08T20:44:42Z",
"updated_at": "2013-07-09T21:04:11Z",
"pushed_at": "2013-07-09T21:04:10Z",
"git_url": "git://github.com/Quantium/invaders.git",
"ssh_url": "git@github.com:Quantium/invaders.git",
"clone_url": "https://github.com/Quantium/invaders.git",
"svn_url": "https://github.com/Quantium/invaders",
"homepage": null,
"size": 120,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"master_branch": "master",
"score": 8.570796
},
{
"id": 1403492,
"name": "SpaceInvaders",
"full_name": "DenisDantsev/SpaceInvaders",
"owner": {
"login": "DenisDantsev",
"id": 634543,
"avatar_url": "https://gravatar.com/avatar/d93961f6b3f2d29c65be469eaa864850?d=https%3A%2F%2Fidenticons.github.com%2Ffa26ab288931f6496415e348371a437a.png&r=x",
"gravatar_id": "d93961f6b3f2d29c65be469eaa864850",
"url": "https://api.github.com/users/DenisDantsev",
"html_url": "https://github.com/DenisDantsev",
"followers_url": "https://api.github.com/users/DenisDantsev/followers",
"following_url": "https://api.github.com/users/DenisDantsev/following{/other_user}",
"gists_url": "https://api.github.com/users/DenisDantsev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DenisDantsev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DenisDantsev/subscriptions",
"organizations_url": "https://api.github.com/users/DenisDantsev/orgs",
"repos_url": "https://api.github.com/users/DenisDantsev/repos",
"events_url": "https://api.github.com/users/DenisDantsev/events{/privacy}",
"received_events_url": "https://api.github.com/users/DenisDantsev/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/DenisDantsev/SpaceInvaders",
"description": "game demo for Space invaders using JS + HTML5/CSS3",
"fork": false,
"url": "https://api.github.com/repos/DenisDantsev/SpaceInvaders",
"forks_url": "https://api.github.com/repos/DenisDantsev/SpaceInvaders/forks",