forked from unbug/codelf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepos.json
More file actions
8702 lines (8702 loc) · 500 KB
/
repos.json
File metadata and controls
8702 lines (8702 loc) · 500 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
[
{
"id": 14196241,
"name": "Aardwolf",
"full_name": "unbug/Aardwolf",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/Aardwolf",
"description": "A remote JavaScript debugger for Android/iOS/WindowsPhone7/BlackBerry6. Written in JavaScript.",
"fork": true,
"url": "https://api.github.com/repos/unbug/Aardwolf",
"forks_url": "https://api.github.com/repos/unbug/Aardwolf/forks",
"keys_url": "https://api.github.com/repos/unbug/Aardwolf/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/Aardwolf/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/Aardwolf/teams",
"hooks_url": "https://api.github.com/repos/unbug/Aardwolf/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/Aardwolf/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/Aardwolf/events",
"assignees_url": "https://api.github.com/repos/unbug/Aardwolf/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/Aardwolf/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/Aardwolf/tags",
"blobs_url": "https://api.github.com/repos/unbug/Aardwolf/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/Aardwolf/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/Aardwolf/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/Aardwolf/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/Aardwolf/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/Aardwolf/languages",
"stargazers_url": "https://api.github.com/repos/unbug/Aardwolf/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/Aardwolf/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/Aardwolf/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/Aardwolf/subscription",
"commits_url": "https://api.github.com/repos/unbug/Aardwolf/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/Aardwolf/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/Aardwolf/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/Aardwolf/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/Aardwolf/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/Aardwolf/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/Aardwolf/merges",
"archive_url": "https://api.github.com/repos/unbug/Aardwolf/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/Aardwolf/downloads",
"issues_url": "https://api.github.com/repos/unbug/Aardwolf/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/Aardwolf/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/Aardwolf/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/Aardwolf/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/Aardwolf/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/Aardwolf/releases{/id}",
"created_at": "2013-11-07T06:36:47Z",
"updated_at": "2013-11-07T06:36:48Z",
"pushed_at": "2013-03-11T12:23:46Z",
"git_url": "git://github.com/unbug/Aardwolf.git",
"ssh_url": "[email protected]:unbug/Aardwolf.git",
"clone_url": "https://github.com/unbug/Aardwolf.git",
"svn_url": "https://github.com/unbug/Aardwolf",
"homepage": "http://lexandera.com/aardwolf/",
"size": 60,
"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"
},
{
"id": 11144297,
"name": "ADBPlugin",
"full_name": "unbug/ADBPlugin",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/ADBPlugin",
"description": "Google Chrome Extension with ADB Daemon",
"fork": true,
"url": "https://api.github.com/repos/unbug/ADBPlugin",
"forks_url": "https://api.github.com/repos/unbug/ADBPlugin/forks",
"keys_url": "https://api.github.com/repos/unbug/ADBPlugin/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/ADBPlugin/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/ADBPlugin/teams",
"hooks_url": "https://api.github.com/repos/unbug/ADBPlugin/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/ADBPlugin/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/ADBPlugin/events",
"assignees_url": "https://api.github.com/repos/unbug/ADBPlugin/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/ADBPlugin/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/ADBPlugin/tags",
"blobs_url": "https://api.github.com/repos/unbug/ADBPlugin/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/ADBPlugin/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/ADBPlugin/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/ADBPlugin/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/ADBPlugin/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/ADBPlugin/languages",
"stargazers_url": "https://api.github.com/repos/unbug/ADBPlugin/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/ADBPlugin/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/ADBPlugin/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/ADBPlugin/subscription",
"commits_url": "https://api.github.com/repos/unbug/ADBPlugin/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/ADBPlugin/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/ADBPlugin/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/ADBPlugin/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/ADBPlugin/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/ADBPlugin/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/ADBPlugin/merges",
"archive_url": "https://api.github.com/repos/unbug/ADBPlugin/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/ADBPlugin/downloads",
"issues_url": "https://api.github.com/repos/unbug/ADBPlugin/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/ADBPlugin/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/ADBPlugin/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/ADBPlugin/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/ADBPlugin/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/ADBPlugin/releases{/id}",
"created_at": "2013-07-03T07:13:00Z",
"updated_at": "2013-07-03T07:13:00Z",
"pushed_at": "2013-07-01T19:29:57Z",
"git_url": "git://github.com/unbug/ADBPlugin.git",
"ssh_url": "[email protected]:unbug/ADBPlugin.git",
"clone_url": "https://github.com/unbug/ADBPlugin.git",
"svn_url": "https://github.com/unbug/ADBPlugin",
"homepage": null,
"size": 15704,
"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"
},
{
"id": 29509728,
"name": "amdclean",
"full_name": "unbug/amdclean",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/amdclean",
"description": "A build tool that converts AMD code to standard JavaScript",
"fork": true,
"url": "https://api.github.com/repos/unbug/amdclean",
"forks_url": "https://api.github.com/repos/unbug/amdclean/forks",
"keys_url": "https://api.github.com/repos/unbug/amdclean/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/amdclean/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/amdclean/teams",
"hooks_url": "https://api.github.com/repos/unbug/amdclean/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/amdclean/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/amdclean/events",
"assignees_url": "https://api.github.com/repos/unbug/amdclean/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/amdclean/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/amdclean/tags",
"blobs_url": "https://api.github.com/repos/unbug/amdclean/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/amdclean/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/amdclean/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/amdclean/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/amdclean/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/amdclean/languages",
"stargazers_url": "https://api.github.com/repos/unbug/amdclean/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/amdclean/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/amdclean/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/amdclean/subscription",
"commits_url": "https://api.github.com/repos/unbug/amdclean/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/amdclean/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/amdclean/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/amdclean/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/amdclean/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/amdclean/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/amdclean/merges",
"archive_url": "https://api.github.com/repos/unbug/amdclean/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/amdclean/downloads",
"issues_url": "https://api.github.com/repos/unbug/amdclean/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/amdclean/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/amdclean/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/amdclean/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/amdclean/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/amdclean/releases{/id}",
"created_at": "2015-01-20T03:23:27Z",
"updated_at": "2015-01-20T03:23:28Z",
"pushed_at": "2014-12-15T21:15:11Z",
"git_url": "git://github.com/unbug/amdclean.git",
"ssh_url": "[email protected]:unbug/amdclean.git",
"clone_url": "https://github.com/unbug/amdclean.git",
"svn_url": "https://github.com/unbug/amdclean",
"homepage": "http://gregfranko.com/amdclean/",
"size": 10545,
"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"
},
{
"id": 45156556,
"name": "amphtml",
"full_name": "unbug/amphtml",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/amphtml",
"description": "AMP HTML source code, samples, and documentation. See below for more info.",
"fork": true,
"url": "https://api.github.com/repos/unbug/amphtml",
"forks_url": "https://api.github.com/repos/unbug/amphtml/forks",
"keys_url": "https://api.github.com/repos/unbug/amphtml/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/amphtml/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/amphtml/teams",
"hooks_url": "https://api.github.com/repos/unbug/amphtml/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/amphtml/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/amphtml/events",
"assignees_url": "https://api.github.com/repos/unbug/amphtml/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/amphtml/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/amphtml/tags",
"blobs_url": "https://api.github.com/repos/unbug/amphtml/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/amphtml/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/amphtml/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/amphtml/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/amphtml/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/amphtml/languages",
"stargazers_url": "https://api.github.com/repos/unbug/amphtml/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/amphtml/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/amphtml/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/amphtml/subscription",
"commits_url": "https://api.github.com/repos/unbug/amphtml/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/amphtml/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/amphtml/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/amphtml/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/amphtml/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/amphtml/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/amphtml/merges",
"archive_url": "https://api.github.com/repos/unbug/amphtml/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/amphtml/downloads",
"issues_url": "https://api.github.com/repos/unbug/amphtml/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/amphtml/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/amphtml/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/amphtml/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/amphtml/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/amphtml/releases{/id}",
"created_at": "2015-10-29T02:58:10Z",
"updated_at": "2015-10-29T02:58:11Z",
"pushed_at": "2015-10-29T01:17:43Z",
"git_url": "git://github.com/unbug/amphtml.git",
"ssh_url": "[email protected]:unbug/amphtml.git",
"clone_url": "https://github.com/unbug/amphtml.git",
"svn_url": "https://github.com/unbug/amphtml",
"homepage": "https://ampproject.org",
"size": 13055,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": false,
"has_downloads": false,
"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"
},
{
"id": 24216362,
"name": "angular-education",
"full_name": "unbug/angular-education",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/angular-education",
"description": "A collection of useful resources to learn and improve your AngularJS skills.",
"fork": true,
"url": "https://api.github.com/repos/unbug/angular-education",
"forks_url": "https://api.github.com/repos/unbug/angular-education/forks",
"keys_url": "https://api.github.com/repos/unbug/angular-education/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/angular-education/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/angular-education/teams",
"hooks_url": "https://api.github.com/repos/unbug/angular-education/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/angular-education/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/angular-education/events",
"assignees_url": "https://api.github.com/repos/unbug/angular-education/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/angular-education/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/angular-education/tags",
"blobs_url": "https://api.github.com/repos/unbug/angular-education/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/angular-education/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/angular-education/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/angular-education/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/angular-education/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/angular-education/languages",
"stargazers_url": "https://api.github.com/repos/unbug/angular-education/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/angular-education/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/angular-education/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/angular-education/subscription",
"commits_url": "https://api.github.com/repos/unbug/angular-education/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/angular-education/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/angular-education/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/angular-education/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/angular-education/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/angular-education/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/angular-education/merges",
"archive_url": "https://api.github.com/repos/unbug/angular-education/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/angular-education/downloads",
"issues_url": "https://api.github.com/repos/unbug/angular-education/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/angular-education/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/angular-education/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/angular-education/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/angular-education/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/angular-education/releases{/id}",
"created_at": "2014-09-19T04:37:50Z",
"updated_at": "2014-09-19T04:37:48Z",
"pushed_at": "2014-09-03T09:33:04Z",
"git_url": "git://github.com/unbug/angular-education.git",
"ssh_url": "[email protected]:unbug/angular-education.git",
"clone_url": "https://github.com/unbug/angular-education.git",
"svn_url": "https://github.com/unbug/angular-education",
"homepage": "",
"size": 412,
"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"
},
{
"id": 22704912,
"name": "angularjs-cn",
"full_name": "unbug/angularjs-cn",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/angularjs-cn",
"description": "AngularJS",
"fork": true,
"url": "https://api.github.com/repos/unbug/angularjs-cn",
"forks_url": "https://api.github.com/repos/unbug/angularjs-cn/forks",
"keys_url": "https://api.github.com/repos/unbug/angularjs-cn/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/angularjs-cn/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/angularjs-cn/teams",
"hooks_url": "https://api.github.com/repos/unbug/angularjs-cn/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/angularjs-cn/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/angularjs-cn/events",
"assignees_url": "https://api.github.com/repos/unbug/angularjs-cn/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/angularjs-cn/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/angularjs-cn/tags",
"blobs_url": "https://api.github.com/repos/unbug/angularjs-cn/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/angularjs-cn/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/angularjs-cn/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/angularjs-cn/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/angularjs-cn/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/angularjs-cn/languages",
"stargazers_url": "https://api.github.com/repos/unbug/angularjs-cn/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/angularjs-cn/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/angularjs-cn/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/angularjs-cn/subscription",
"commits_url": "https://api.github.com/repos/unbug/angularjs-cn/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/angularjs-cn/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/angularjs-cn/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/angularjs-cn/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/angularjs-cn/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/angularjs-cn/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/angularjs-cn/merges",
"archive_url": "https://api.github.com/repos/unbug/angularjs-cn/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/angularjs-cn/downloads",
"issues_url": "https://api.github.com/repos/unbug/angularjs-cn/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/angularjs-cn/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/angularjs-cn/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/angularjs-cn/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/angularjs-cn/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/angularjs-cn/releases{/id}",
"created_at": "2014-08-07T02:05:58Z",
"updated_at": "2014-08-06T15:16:44Z",
"pushed_at": "2013-06-15T17:33:33Z",
"git_url": "git://github.com/unbug/angularjs-cn.git",
"ssh_url": "[email protected]:unbug/angularjs-cn.git",
"clone_url": "https://github.com/unbug/angularjs-cn.git",
"svn_url": "https://github.com/unbug/angularjs-cn",
"homepage": null,
"size": 1509,
"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"
},
{
"id": 12401031,
"name": "animate.css",
"full_name": "unbug/animate.css",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/animate.css",
"description": "Cross-browser CSS3 animations. Plug and play. Do a little dance.",
"fork": true,
"url": "https://api.github.com/repos/unbug/animate.css",
"forks_url": "https://api.github.com/repos/unbug/animate.css/forks",
"keys_url": "https://api.github.com/repos/unbug/animate.css/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/animate.css/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/animate.css/teams",
"hooks_url": "https://api.github.com/repos/unbug/animate.css/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/animate.css/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/animate.css/events",
"assignees_url": "https://api.github.com/repos/unbug/animate.css/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/animate.css/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/animate.css/tags",
"blobs_url": "https://api.github.com/repos/unbug/animate.css/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/animate.css/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/animate.css/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/animate.css/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/animate.css/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/animate.css/languages",
"stargazers_url": "https://api.github.com/repos/unbug/animate.css/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/animate.css/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/animate.css/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/animate.css/subscription",
"commits_url": "https://api.github.com/repos/unbug/animate.css/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/animate.css/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/animate.css/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/animate.css/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/animate.css/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/animate.css/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/animate.css/merges",
"archive_url": "https://api.github.com/repos/unbug/animate.css/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/animate.css/downloads",
"issues_url": "https://api.github.com/repos/unbug/animate.css/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/animate.css/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/animate.css/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/animate.css/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/animate.css/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/animate.css/releases{/id}",
"created_at": "2013-08-27T08:34:04Z",
"updated_at": "2014-05-07T10:31:53Z",
"pushed_at": "2013-08-22T20:52:45Z",
"git_url": "git://github.com/unbug/animate.css.git",
"ssh_url": "[email protected]:unbug/animate.css.git",
"clone_url": "https://github.com/unbug/animate.css.git",
"svn_url": "https://github.com/unbug/animate.css",
"homepage": "http://daneden.me/animate",
"size": 226,
"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"
},
{
"id": 27030969,
"name": "app-router",
"full_name": "unbug/app-router",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/app-router",
"description": "Router for Web Components",
"fork": true,
"url": "https://api.github.com/repos/unbug/app-router",
"forks_url": "https://api.github.com/repos/unbug/app-router/forks",
"keys_url": "https://api.github.com/repos/unbug/app-router/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/app-router/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/app-router/teams",
"hooks_url": "https://api.github.com/repos/unbug/app-router/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/app-router/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/app-router/events",
"assignees_url": "https://api.github.com/repos/unbug/app-router/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/app-router/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/app-router/tags",
"blobs_url": "https://api.github.com/repos/unbug/app-router/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/app-router/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/app-router/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/app-router/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/app-router/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/app-router/languages",
"stargazers_url": "https://api.github.com/repos/unbug/app-router/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/app-router/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/app-router/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/app-router/subscription",
"commits_url": "https://api.github.com/repos/unbug/app-router/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/app-router/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/app-router/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/app-router/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/app-router/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/app-router/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/app-router/merges",
"archive_url": "https://api.github.com/repos/unbug/app-router/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/app-router/downloads",
"issues_url": "https://api.github.com/repos/unbug/app-router/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/app-router/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/app-router/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/app-router/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/app-router/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/app-router/releases{/id}",
"created_at": "2014-11-23T11:59:34Z",
"updated_at": "2014-11-23T11:59:35Z",
"pushed_at": "2014-11-20T01:00:15Z",
"git_url": "git://github.com/unbug/app-router.git",
"ssh_url": "[email protected]:unbug/app-router.git",
"clone_url": "https://github.com/unbug/app-router.git",
"svn_url": "https://github.com/unbug/app-router",
"homepage": "https://erikringsmuth.github.io/app-router/",
"size": 9144,
"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"
},
{
"id": 42150744,
"name": "artDialog",
"full_name": "unbug/artDialog",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/artDialog",
"description": "经典的网页对话框组件",
"fork": true,
"url": "https://api.github.com/repos/unbug/artDialog",
"forks_url": "https://api.github.com/repos/unbug/artDialog/forks",
"keys_url": "https://api.github.com/repos/unbug/artDialog/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/artDialog/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/artDialog/teams",
"hooks_url": "https://api.github.com/repos/unbug/artDialog/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/artDialog/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/artDialog/events",
"assignees_url": "https://api.github.com/repos/unbug/artDialog/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/artDialog/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/artDialog/tags",
"blobs_url": "https://api.github.com/repos/unbug/artDialog/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/artDialog/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/artDialog/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/artDialog/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/artDialog/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/artDialog/languages",
"stargazers_url": "https://api.github.com/repos/unbug/artDialog/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/artDialog/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/artDialog/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/artDialog/subscription",
"commits_url": "https://api.github.com/repos/unbug/artDialog/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/artDialog/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/artDialog/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/artDialog/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/artDialog/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/artDialog/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/artDialog/merges",
"archive_url": "https://api.github.com/repos/unbug/artDialog/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/artDialog/downloads",
"issues_url": "https://api.github.com/repos/unbug/artDialog/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/artDialog/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/artDialog/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/artDialog/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/artDialog/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/artDialog/releases{/id}",
"created_at": "2015-09-09T02:18:13Z",
"updated_at": "2015-09-09T02:18:13Z",
"pushed_at": "2015-07-04T01:55:20Z",
"git_url": "git://github.com/unbug/artDialog.git",
"ssh_url": "[email protected]:unbug/artDialog.git",
"clone_url": "https://github.com/unbug/artDialog.git",
"svn_url": "https://github.com/unbug/artDialog",
"homepage": "http://aui.github.com/artDialog/",
"size": 2058,
"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"
},
{
"id": 27275553,
"name": "assetgraph-builder",
"full_name": "unbug/assetgraph-builder",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/assetgraph-builder",
"description": "AssetGraph-based build system for web apps and web pages.",
"fork": true,
"url": "https://api.github.com/repos/unbug/assetgraph-builder",
"forks_url": "https://api.github.com/repos/unbug/assetgraph-builder/forks",
"keys_url": "https://api.github.com/repos/unbug/assetgraph-builder/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/assetgraph-builder/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/assetgraph-builder/teams",
"hooks_url": "https://api.github.com/repos/unbug/assetgraph-builder/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/assetgraph-builder/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/assetgraph-builder/events",
"assignees_url": "https://api.github.com/repos/unbug/assetgraph-builder/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/assetgraph-builder/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/assetgraph-builder/tags",
"blobs_url": "https://api.github.com/repos/unbug/assetgraph-builder/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/assetgraph-builder/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/assetgraph-builder/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/assetgraph-builder/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/assetgraph-builder/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/assetgraph-builder/languages",
"stargazers_url": "https://api.github.com/repos/unbug/assetgraph-builder/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/assetgraph-builder/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/assetgraph-builder/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/assetgraph-builder/subscription",
"commits_url": "https://api.github.com/repos/unbug/assetgraph-builder/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/assetgraph-builder/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/assetgraph-builder/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/assetgraph-builder/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/assetgraph-builder/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/assetgraph-builder/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/assetgraph-builder/merges",
"archive_url": "https://api.github.com/repos/unbug/assetgraph-builder/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/assetgraph-builder/downloads",
"issues_url": "https://api.github.com/repos/unbug/assetgraph-builder/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/assetgraph-builder/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/assetgraph-builder/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/assetgraph-builder/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/assetgraph-builder/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/assetgraph-builder/releases{/id}",
"created_at": "2014-11-28T17:01:31Z",
"updated_at": "2014-11-28T17:01:31Z",
"pushed_at": "2014-11-24T14:00:54Z",
"git_url": "git://github.com/unbug/assetgraph-builder.git",
"ssh_url": "[email protected]:unbug/assetgraph-builder.git",
"clone_url": "https://github.com/unbug/assetgraph-builder.git",
"svn_url": "https://github.com/unbug/assetgraph-builder",
"homepage": "",
"size": 2335,
"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"
},
{
"id": 10248133,
"name": "AtariArcadeSDK",
"full_name": "unbug/AtariArcadeSDK",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/AtariArcadeSDK",
"description": "SDK for the Atari Arcade, http://www.atari.com/arcade",
"fork": true,
"url": "https://api.github.com/repos/unbug/AtariArcadeSDK",
"forks_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/forks",
"keys_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/teams",
"hooks_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/events",
"assignees_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/tags",
"blobs_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/languages",
"stargazers_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/stargazers",
"contributors_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/contributors",
"subscribers_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/subscribers",
"subscription_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/subscription",
"commits_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/contents/{+path}",
"compare_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/merges",
"archive_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/downloads",
"issues_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/issues{/number}",
"pulls_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/labels{/name}",
"releases_url": "https://api.github.com/repos/unbug/AtariArcadeSDK/releases{/id}",
"created_at": "2013-05-23T16:26:58Z",
"updated_at": "2013-05-23T16:26:59Z",
"pushed_at": "2012-11-14T23:08:14Z",
"git_url": "git://github.com/unbug/AtariArcadeSDK.git",
"ssh_url": "[email protected]:unbug/AtariArcadeSDK.git",
"clone_url": "https://github.com/unbug/AtariArcadeSDK.git",
"svn_url": "https://github.com/unbug/AtariArcadeSDK",
"homepage": null,
"size": 5057,
"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"
},
{
"id": 47553209,
"name": "awesome-css",
"full_name": "unbug/awesome-css",
"owner": {
"login": "unbug",
"id": 799578,
"avatar_url": "https://avatars.githubusercontent.com/u/799578?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/unbug",
"html_url": "https://github.com/unbug",
"followers_url": "https://api.github.com/users/unbug/followers",
"following_url": "https://api.github.com/users/unbug/following{/other_user}",
"gists_url": "https://api.github.com/users/unbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unbug/subscriptions",
"organizations_url": "https://api.github.com/users/unbug/orgs",
"repos_url": "https://api.github.com/users/unbug/repos",
"events_url": "https://api.github.com/users/unbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/unbug/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/unbug/awesome-css",
"description": "A collection of awesome CSS libraries, tools, frameworks and software",
"fork": true,
"url": "https://api.github.com/repos/unbug/awesome-css",
"forks_url": "https://api.github.com/repos/unbug/awesome-css/forks",
"keys_url": "https://api.github.com/repos/unbug/awesome-css/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unbug/awesome-css/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unbug/awesome-css/teams",
"hooks_url": "https://api.github.com/repos/unbug/awesome-css/hooks",
"issue_events_url": "https://api.github.com/repos/unbug/awesome-css/issues/events{/number}",
"events_url": "https://api.github.com/repos/unbug/awesome-css/events",
"assignees_url": "https://api.github.com/repos/unbug/awesome-css/assignees{/user}",
"branches_url": "https://api.github.com/repos/unbug/awesome-css/branches{/branch}",
"tags_url": "https://api.github.com/repos/unbug/awesome-css/tags",
"blobs_url": "https://api.github.com/repos/unbug/awesome-css/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unbug/awesome-css/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unbug/awesome-css/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unbug/awesome-css/git/trees{/sha}",