-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults2.json
3029 lines (3029 loc) · 186 KB
/
results2.json
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": 10,
"incomplete_results": false,
"items": [
{
"id": 40158752,
"name": "direwolf",
"full_name": "wb2osz/direwolf",
"owner": {
"login": "wb2osz",
"id": 6499991,
"avatar_url": "https://avatars1.githubusercontent.com/u/6499991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/wb2osz",
"html_url": "https://github.com/wb2osz",
"followers_url": "https://api.github.com/users/wb2osz/followers",
"following_url": "https://api.github.com/users/wb2osz/following{/other_user}",
"gists_url": "https://api.github.com/users/wb2osz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/wb2osz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wb2osz/subscriptions",
"organizations_url": "https://api.github.com/users/wb2osz/orgs",
"repos_url": "https://api.github.com/users/wb2osz/repos",
"events_url": "https://api.github.com/users/wb2osz/events{/privacy}",
"received_events_url": "https://api.github.com/users/wb2osz/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/wb2osz/direwolf",
"description": "Dire Wolf is a software \"soundcard\" AX.25 packet modem/TNC and APRS encoder/decoder. It can be used stand-alone to observe APRS traffic, as a tracker, digipeater, APRStt gateway, or Internet Gateway (IGate). For more information, look at the bottom 1/4 of this page and in https://github.com/wb2osz/direwolf/blob/dev/doc/README.md ",
"fork": false,
"url": "https://api.github.com/repos/wb2osz/direwolf",
"forks_url": "https://api.github.com/repos/wb2osz/direwolf/forks",
"keys_url": "https://api.github.com/repos/wb2osz/direwolf/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/wb2osz/direwolf/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/wb2osz/direwolf/teams",
"hooks_url": "https://api.github.com/repos/wb2osz/direwolf/hooks",
"issue_events_url": "https://api.github.com/repos/wb2osz/direwolf/issues/events{/number}",
"events_url": "https://api.github.com/repos/wb2osz/direwolf/events",
"assignees_url": "https://api.github.com/repos/wb2osz/direwolf/assignees{/user}",
"branches_url": "https://api.github.com/repos/wb2osz/direwolf/branches{/branch}",
"tags_url": "https://api.github.com/repos/wb2osz/direwolf/tags",
"blobs_url": "https://api.github.com/repos/wb2osz/direwolf/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/wb2osz/direwolf/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/wb2osz/direwolf/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/wb2osz/direwolf/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/wb2osz/direwolf/statuses/{sha}",
"languages_url": "https://api.github.com/repos/wb2osz/direwolf/languages",
"stargazers_url": "https://api.github.com/repos/wb2osz/direwolf/stargazers",
"contributors_url": "https://api.github.com/repos/wb2osz/direwolf/contributors",
"subscribers_url": "https://api.github.com/repos/wb2osz/direwolf/subscribers",
"subscription_url": "https://api.github.com/repos/wb2osz/direwolf/subscription",
"commits_url": "https://api.github.com/repos/wb2osz/direwolf/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/wb2osz/direwolf/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/wb2osz/direwolf/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/wb2osz/direwolf/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/wb2osz/direwolf/contents/{+path}",
"compare_url": "https://api.github.com/repos/wb2osz/direwolf/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/wb2osz/direwolf/merges",
"archive_url": "https://api.github.com/repos/wb2osz/direwolf/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/wb2osz/direwolf/downloads",
"issues_url": "https://api.github.com/repos/wb2osz/direwolf/issues{/number}",
"pulls_url": "https://api.github.com/repos/wb2osz/direwolf/pulls{/number}",
"milestones_url": "https://api.github.com/repos/wb2osz/direwolf/milestones{/number}",
"notifications_url": "https://api.github.com/repos/wb2osz/direwolf/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/wb2osz/direwolf/labels{/name}",
"releases_url": "https://api.github.com/repos/wb2osz/direwolf/releases{/id}",
"deployments_url": "https://api.github.com/repos/wb2osz/direwolf/deployments",
"created_at": "2015-08-04T02:24:27Z",
"updated_at": "2018-04-26T04:45:29Z",
"pushed_at": "2018-04-04T19:45:48Z",
"git_url": "git://github.com/wb2osz/direwolf.git",
"ssh_url": "[email protected]:wb2osz/direwolf.git",
"clone_url": "https://github.com/wb2osz/direwolf.git",
"svn_url": "https://github.com/wb2osz/direwolf",
"homepage": "",
"size": 112565,
"stargazers_count": 341,
"watchers_count": 341,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 87,
"mirror_url": null,
"archived": false,
"open_issues_count": 57,
"license": {
"key": "other",
"name": "Other",
"spdx_id": null,
"url": null
},
"forks": 87,
"open_issues": 57,
"watchers": 341,
"default_branch": "master",
"score": 3.6082616
},
{
"id": 14486883,
"name": "Legacy-L1Ntuples",
"full_name": "cms-l1-dpg/Legacy-L1Ntuples",
"owner": {
"login": "cms-l1-dpg",
"id": 4698643,
"avatar_url": "https://avatars0.githubusercontent.com/u/4698643?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cms-l1-dpg",
"html_url": "https://github.com/cms-l1-dpg",
"followers_url": "https://api.github.com/users/cms-l1-dpg/followers",
"following_url": "https://api.github.com/users/cms-l1-dpg/following{/other_user}",
"gists_url": "https://api.github.com/users/cms-l1-dpg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cms-l1-dpg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cms-l1-dpg/subscriptions",
"organizations_url": "https://api.github.com/users/cms-l1-dpg/orgs",
"repos_url": "https://api.github.com/users/cms-l1-dpg/repos",
"events_url": "https://api.github.com/users/cms-l1-dpg/events{/privacy}",
"received_events_url": "https://api.github.com/users/cms-l1-dpg/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/cms-l1-dpg/Legacy-L1Ntuples",
"description": "Tool to build L1 DPG ntuples as used in LHC run 1 Ducumentation Twiki Page: https://twiki.cern.ch/twiki/bin/viewauth/CMS/L1TriggerDPGNtupleProduction",
"fork": false,
"url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples",
"forks_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/forks",
"keys_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/teams",
"hooks_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/hooks",
"issue_events_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/issues/events{/number}",
"events_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/events",
"assignees_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/assignees{/user}",
"branches_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/branches{/branch}",
"tags_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/tags",
"blobs_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/languages",
"stargazers_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/stargazers",
"contributors_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/contributors",
"subscribers_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/subscribers",
"subscription_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/subscription",
"commits_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/contents/{+path}",
"compare_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/merges",
"archive_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/downloads",
"issues_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/issues{/number}",
"pulls_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/labels{/name}",
"releases_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/releases{/id}",
"deployments_url": "https://api.github.com/repos/cms-l1-dpg/Legacy-L1Ntuples/deployments",
"created_at": "2013-11-18T08:43:30Z",
"updated_at": "2017-05-31T15:26:35Z",
"pushed_at": "2015-12-01T09:12:55Z",
"git_url": "git://github.com/cms-l1-dpg/Legacy-L1Ntuples.git",
"ssh_url": "[email protected]:cms-l1-dpg/Legacy-L1Ntuples.git",
"clone_url": "https://github.com/cms-l1-dpg/Legacy-L1Ntuples.git",
"svn_url": "https://github.com/cms-l1-dpg/Legacy-L1Ntuples",
"homepage": null,
"size": 475,
"stargazers_count": 2,
"watchers_count": 2,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 15,
"mirror_url": null,
"archived": false,
"open_issues_count": 1,
"license": null,
"forks": 15,
"open_issues": 1,
"watchers": 2,
"default_branch": "master",
"score": 2.7154427
},
{
"id": 45550454,
"name": "CandyCrisis",
"full_name": "philstopford/CandyCrisis",
"owner": {
"login": "philstopford",
"id": 1983851,
"avatar_url": "https://avatars2.githubusercontent.com/u/1983851?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philstopford",
"html_url": "https://github.com/philstopford",
"followers_url": "https://api.github.com/users/philstopford/followers",
"following_url": "https://api.github.com/users/philstopford/following{/other_user}",
"gists_url": "https://api.github.com/users/philstopford/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philstopford/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philstopford/subscriptions",
"organizations_url": "https://api.github.com/users/philstopford/orgs",
"repos_url": "https://api.github.com/users/philstopford/repos",
"events_url": "https://api.github.com/users/philstopford/events{/privacy}",
"received_events_url": "https://api.github.com/users/philstopford/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/philstopford/CandyCrisis",
"description": "From Sourceforge.net project page, 1.3b1",
"fork": false,
"url": "https://api.github.com/repos/philstopford/CandyCrisis",
"forks_url": "https://api.github.com/repos/philstopford/CandyCrisis/forks",
"keys_url": "https://api.github.com/repos/philstopford/CandyCrisis/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/philstopford/CandyCrisis/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/philstopford/CandyCrisis/teams",
"hooks_url": "https://api.github.com/repos/philstopford/CandyCrisis/hooks",
"issue_events_url": "https://api.github.com/repos/philstopford/CandyCrisis/issues/events{/number}",
"events_url": "https://api.github.com/repos/philstopford/CandyCrisis/events",
"assignees_url": "https://api.github.com/repos/philstopford/CandyCrisis/assignees{/user}",
"branches_url": "https://api.github.com/repos/philstopford/CandyCrisis/branches{/branch}",
"tags_url": "https://api.github.com/repos/philstopford/CandyCrisis/tags",
"blobs_url": "https://api.github.com/repos/philstopford/CandyCrisis/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/philstopford/CandyCrisis/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/philstopford/CandyCrisis/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/philstopford/CandyCrisis/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/philstopford/CandyCrisis/statuses/{sha}",
"languages_url": "https://api.github.com/repos/philstopford/CandyCrisis/languages",
"stargazers_url": "https://api.github.com/repos/philstopford/CandyCrisis/stargazers",
"contributors_url": "https://api.github.com/repos/philstopford/CandyCrisis/contributors",
"subscribers_url": "https://api.github.com/repos/philstopford/CandyCrisis/subscribers",
"subscription_url": "https://api.github.com/repos/philstopford/CandyCrisis/subscription",
"commits_url": "https://api.github.com/repos/philstopford/CandyCrisis/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/philstopford/CandyCrisis/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/philstopford/CandyCrisis/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/philstopford/CandyCrisis/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/philstopford/CandyCrisis/contents/{+path}",
"compare_url": "https://api.github.com/repos/philstopford/CandyCrisis/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/philstopford/CandyCrisis/merges",
"archive_url": "https://api.github.com/repos/philstopford/CandyCrisis/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/philstopford/CandyCrisis/downloads",
"issues_url": "https://api.github.com/repos/philstopford/CandyCrisis/issues{/number}",
"pulls_url": "https://api.github.com/repos/philstopford/CandyCrisis/pulls{/number}",
"milestones_url": "https://api.github.com/repos/philstopford/CandyCrisis/milestones{/number}",
"notifications_url": "https://api.github.com/repos/philstopford/CandyCrisis/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/philstopford/CandyCrisis/labels{/name}",
"releases_url": "https://api.github.com/repos/philstopford/CandyCrisis/releases{/id}",
"deployments_url": "https://api.github.com/repos/philstopford/CandyCrisis/deployments",
"created_at": "2015-11-04T16:05:39Z",
"updated_at": "2015-11-04T16:06:52Z",
"pushed_at": "2015-11-04T16:06:50Z",
"git_url": "git://github.com/philstopford/CandyCrisis.git",
"ssh_url": "[email protected]:philstopford/CandyCrisis.git",
"clone_url": "https://github.com/philstopford/CandyCrisis.git",
"svn_url": "https://github.com/philstopford/CandyCrisis",
"homepage": null,
"size": 8352,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 1.348218
},
{
"id": 88773176,
"name": "os_assignment_4",
"full_name": "kevinshurtzacu/os_assignment_4",
"owner": {
"login": "kevinshurtzacu",
"id": 20984444,
"avatar_url": "https://avatars2.githubusercontent.com/u/20984444?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kevinshurtzacu",
"html_url": "https://github.com/kevinshurtzacu",
"followers_url": "https://api.github.com/users/kevinshurtzacu/followers",
"following_url": "https://api.github.com/users/kevinshurtzacu/following{/other_user}",
"gists_url": "https://api.github.com/users/kevinshurtzacu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kevinshurtzacu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kevinshurtzacu/subscriptions",
"organizations_url": "https://api.github.com/users/kevinshurtzacu/orgs",
"repos_url": "https://api.github.com/users/kevinshurtzacu/repos",
"events_url": "https://api.github.com/users/kevinshurtzacu/events{/privacy}",
"received_events_url": "https://api.github.com/users/kevinshurtzacu/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/kevinshurtzacu/os_assignment_4",
"description": "Assignment to modify paging in Minix 3.1.3.",
"fork": false,
"url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4",
"forks_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/forks",
"keys_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/teams",
"hooks_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/hooks",
"issue_events_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/issues/events{/number}",
"events_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/events",
"assignees_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/assignees{/user}",
"branches_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/branches{/branch}",
"tags_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/tags",
"blobs_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/statuses/{sha}",
"languages_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/languages",
"stargazers_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/stargazers",
"contributors_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/contributors",
"subscribers_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/subscribers",
"subscription_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/subscription",
"commits_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/contents/{+path}",
"compare_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/merges",
"archive_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/downloads",
"issues_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/issues{/number}",
"pulls_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/pulls{/number}",
"milestones_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/milestones{/number}",
"notifications_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/labels{/name}",
"releases_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/releases{/id}",
"deployments_url": "https://api.github.com/repos/kevinshurtzacu/os_assignment_4/deployments",
"created_at": "2017-04-19T17:41:33Z",
"updated_at": "2017-04-19T19:46:56Z",
"pushed_at": "2017-04-24T18:31:48Z",
"git_url": "git://github.com/kevinshurtzacu/os_assignment_4.git",
"ssh_url": "[email protected]:kevinshurtzacu/os_assignment_4.git",
"clone_url": "https://github.com/kevinshurtzacu/os_assignment_4.git",
"svn_url": "https://github.com/kevinshurtzacu/os_assignment_4",
"homepage": null,
"size": 767,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 1.129375
},
{
"id": 1974870,
"name": "DGD-HTTPD",
"full_name": "romland/DGD-HTTPD",
"owner": {
"login": "romland",
"id": 184137,
"avatar_url": "https://avatars1.githubusercontent.com/u/184137?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/romland",
"html_url": "https://github.com/romland",
"followers_url": "https://api.github.com/users/romland/followers",
"following_url": "https://api.github.com/users/romland/following{/other_user}",
"gists_url": "https://api.github.com/users/romland/gists{/gist_id}",
"starred_url": "https://api.github.com/users/romland/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/romland/subscriptions",
"organizations_url": "https://api.github.com/users/romland/orgs",
"repos_url": "https://api.github.com/users/romland/repos",
"events_url": "https://api.github.com/users/romland/events{/privacy}",
"received_events_url": "https://api.github.com/users/romland/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/romland/DGD-HTTPD",
"description": "One I wrote earlier... This is a HTTPD (+WebDAV) written in LPC for (vanilla) DGD. It has a webserver that supports HTTP 1.0 (and a subset of HTTP 1.1 features, such as keep-alive). Additionally it has a WEBDAV server; which was actually the main reason for writing the HTTPD. In the package you'll find assorted goods such as XML parser and unit-test \"framework\" and other stuff. With an included \"extension plugin\" you get support for scripting LPC in \"web pages\".",
"fork": false,
"url": "https://api.github.com/repos/romland/DGD-HTTPD",
"forks_url": "https://api.github.com/repos/romland/DGD-HTTPD/forks",
"keys_url": "https://api.github.com/repos/romland/DGD-HTTPD/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/romland/DGD-HTTPD/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/romland/DGD-HTTPD/teams",
"hooks_url": "https://api.github.com/repos/romland/DGD-HTTPD/hooks",
"issue_events_url": "https://api.github.com/repos/romland/DGD-HTTPD/issues/events{/number}",
"events_url": "https://api.github.com/repos/romland/DGD-HTTPD/events",
"assignees_url": "https://api.github.com/repos/romland/DGD-HTTPD/assignees{/user}",
"branches_url": "https://api.github.com/repos/romland/DGD-HTTPD/branches{/branch}",
"tags_url": "https://api.github.com/repos/romland/DGD-HTTPD/tags",
"blobs_url": "https://api.github.com/repos/romland/DGD-HTTPD/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/romland/DGD-HTTPD/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/romland/DGD-HTTPD/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/romland/DGD-HTTPD/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/romland/DGD-HTTPD/statuses/{sha}",
"languages_url": "https://api.github.com/repos/romland/DGD-HTTPD/languages",
"stargazers_url": "https://api.github.com/repos/romland/DGD-HTTPD/stargazers",
"contributors_url": "https://api.github.com/repos/romland/DGD-HTTPD/contributors",
"subscribers_url": "https://api.github.com/repos/romland/DGD-HTTPD/subscribers",
"subscription_url": "https://api.github.com/repos/romland/DGD-HTTPD/subscription",
"commits_url": "https://api.github.com/repos/romland/DGD-HTTPD/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/romland/DGD-HTTPD/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/romland/DGD-HTTPD/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/romland/DGD-HTTPD/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/romland/DGD-HTTPD/contents/{+path}",
"compare_url": "https://api.github.com/repos/romland/DGD-HTTPD/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/romland/DGD-HTTPD/merges",
"archive_url": "https://api.github.com/repos/romland/DGD-HTTPD/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/romland/DGD-HTTPD/downloads",
"issues_url": "https://api.github.com/repos/romland/DGD-HTTPD/issues{/number}",
"pulls_url": "https://api.github.com/repos/romland/DGD-HTTPD/pulls{/number}",
"milestones_url": "https://api.github.com/repos/romland/DGD-HTTPD/milestones{/number}",
"notifications_url": "https://api.github.com/repos/romland/DGD-HTTPD/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/romland/DGD-HTTPD/labels{/name}",
"releases_url": "https://api.github.com/repos/romland/DGD-HTTPD/releases{/id}",
"deployments_url": "https://api.github.com/repos/romland/DGD-HTTPD/deployments",
"created_at": "2011-06-29T21:14:05Z",
"updated_at": "2015-08-11T13:01:46Z",
"pushed_at": "2011-06-29T21:19:30Z",
"git_url": "git://github.com/romland/DGD-HTTPD.git",
"ssh_url": "[email protected]:romland/DGD-HTTPD.git",
"clone_url": "https://github.com/romland/DGD-HTTPD.git",
"svn_url": "https://github.com/romland/DGD-HTTPD",
"homepage": "",
"size": 819,
"stargazers_count": 3,
"watchers_count": 3,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 2,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 2,
"open_issues": 0,
"watchers": 3,
"default_branch": "master",
"score": 0.9987191
},
{
"id": 94953412,
"name": "Tianxin",
"full_name": "jiligulu001/Tianxin",
"owner": {
"login": "jiligulu001",
"id": 20310246,
"avatar_url": "https://avatars0.githubusercontent.com/u/20310246?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jiligulu001",
"html_url": "https://github.com/jiligulu001",
"followers_url": "https://api.github.com/users/jiligulu001/followers",
"following_url": "https://api.github.com/users/jiligulu001/following{/other_user}",
"gists_url": "https://api.github.com/users/jiligulu001/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jiligulu001/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jiligulu001/subscriptions",
"organizations_url": "https://api.github.com/users/jiligulu001/orgs",
"repos_url": "https://api.github.com/users/jiligulu001/repos",
"events_url": "https://api.github.com/users/jiligulu001/events{/privacy}",
"received_events_url": "https://api.github.com/users/jiligulu001/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/jiligulu001/Tianxin",
"description": "update version to 1.0;update main page key-value & get data from the server",
"fork": false,
"url": "https://api.github.com/repos/jiligulu001/Tianxin",
"forks_url": "https://api.github.com/repos/jiligulu001/Tianxin/forks",
"keys_url": "https://api.github.com/repos/jiligulu001/Tianxin/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/jiligulu001/Tianxin/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/jiligulu001/Tianxin/teams",
"hooks_url": "https://api.github.com/repos/jiligulu001/Tianxin/hooks",
"issue_events_url": "https://api.github.com/repos/jiligulu001/Tianxin/issues/events{/number}",
"events_url": "https://api.github.com/repos/jiligulu001/Tianxin/events",
"assignees_url": "https://api.github.com/repos/jiligulu001/Tianxin/assignees{/user}",
"branches_url": "https://api.github.com/repos/jiligulu001/Tianxin/branches{/branch}",
"tags_url": "https://api.github.com/repos/jiligulu001/Tianxin/tags",
"blobs_url": "https://api.github.com/repos/jiligulu001/Tianxin/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/jiligulu001/Tianxin/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/jiligulu001/Tianxin/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/jiligulu001/Tianxin/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/jiligulu001/Tianxin/statuses/{sha}",
"languages_url": "https://api.github.com/repos/jiligulu001/Tianxin/languages",
"stargazers_url": "https://api.github.com/repos/jiligulu001/Tianxin/stargazers",
"contributors_url": "https://api.github.com/repos/jiligulu001/Tianxin/contributors",
"subscribers_url": "https://api.github.com/repos/jiligulu001/Tianxin/subscribers",
"subscription_url": "https://api.github.com/repos/jiligulu001/Tianxin/subscription",
"commits_url": "https://api.github.com/repos/jiligulu001/Tianxin/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/jiligulu001/Tianxin/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/jiligulu001/Tianxin/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/jiligulu001/Tianxin/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/jiligulu001/Tianxin/contents/{+path}",
"compare_url": "https://api.github.com/repos/jiligulu001/Tianxin/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/jiligulu001/Tianxin/merges",
"archive_url": "https://api.github.com/repos/jiligulu001/Tianxin/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/jiligulu001/Tianxin/downloads",
"issues_url": "https://api.github.com/repos/jiligulu001/Tianxin/issues{/number}",
"pulls_url": "https://api.github.com/repos/jiligulu001/Tianxin/pulls{/number}",
"milestones_url": "https://api.github.com/repos/jiligulu001/Tianxin/milestones{/number}",
"notifications_url": "https://api.github.com/repos/jiligulu001/Tianxin/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/jiligulu001/Tianxin/labels{/name}",
"releases_url": "https://api.github.com/repos/jiligulu001/Tianxin/releases{/id}",
"deployments_url": "https://api.github.com/repos/jiligulu001/Tianxin/deployments",
"created_at": "2017-06-21T02:13:53Z",
"updated_at": "2017-06-23T02:00:56Z",
"pushed_at": "2017-08-29T06:58:59Z",
"git_url": "git://github.com/jiligulu001/Tianxin.git",
"ssh_url": "[email protected]:jiligulu001/Tianxin.git",
"clone_url": "https://github.com/jiligulu001/Tianxin.git",
"svn_url": "https://github.com/jiligulu001/Tianxin",
"homepage": null,
"size": 59733,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 0.90358365
},
{
"id": 58286933,
"name": "Cafiine-410-551",
"full_name": "dedChar/Cafiine-410-551",
"owner": {
"login": "dedChar",
"id": 12657301,
"avatar_url": "https://avatars2.githubusercontent.com/u/12657301?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dedChar",
"html_url": "https://github.com/dedChar",
"followers_url": "https://api.github.com/users/dedChar/followers",
"following_url": "https://api.github.com/users/dedChar/following{/other_user}",
"gists_url": "https://api.github.com/users/dedChar/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dedChar/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dedChar/subscriptions",
"organizations_url": "https://api.github.com/users/dedChar/orgs",
"repos_url": "https://api.github.com/users/dedChar/repos",
"events_url": "https://api.github.com/users/dedChar/events{/privacy}",
"received_events_url": "https://api.github.com/users/dedChar/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/dedChar/Cafiine-410-551",
"description": "A Cafiine version that allows you to choose your IP on the page, rather than compile it. Works from 4.1.0 to 5.5.1.",
"fork": false,
"url": "https://api.github.com/repos/dedChar/Cafiine-410-551",
"forks_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/forks",
"keys_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/teams",
"hooks_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/hooks",
"issue_events_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/issues/events{/number}",
"events_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/events",
"assignees_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/assignees{/user}",
"branches_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/branches{/branch}",
"tags_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/tags",
"blobs_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/statuses/{sha}",
"languages_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/languages",
"stargazers_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/stargazers",
"contributors_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/contributors",
"subscribers_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/subscribers",
"subscription_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/subscription",
"commits_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/contents/{+path}",
"compare_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/merges",
"archive_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/downloads",
"issues_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/issues{/number}",
"pulls_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/pulls{/number}",
"milestones_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/milestones{/number}",
"notifications_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/labels{/name}",
"releases_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/releases{/id}",
"deployments_url": "https://api.github.com/repos/dedChar/Cafiine-410-551/deployments",
"created_at": "2016-05-07T22:27:47Z",
"updated_at": "2016-09-13T15:20:13Z",
"pushed_at": "2016-05-07T23:08:06Z",
"git_url": "git://github.com/dedChar/Cafiine-410-551.git",
"ssh_url": "[email protected]:dedChar/Cafiine-410-551.git",
"clone_url": "https://github.com/dedChar/Cafiine-410-551.git",
"svn_url": "https://github.com/dedChar/Cafiine-410-551",
"homepage": null,
"size": 1100,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 0.8138336
},
{
"id": 99333882,
"name": "MHA_Kernel",
"full_name": "Nicholas1126/MHA_Kernel",
"owner": {
"login": "Nicholas1126",
"id": 18223848,
"avatar_url": "https://avatars2.githubusercontent.com/u/18223848?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Nicholas1126",
"html_url": "https://github.com/Nicholas1126",
"followers_url": "https://api.github.com/users/Nicholas1126/followers",
"following_url": "https://api.github.com/users/Nicholas1126/following{/other_user}",
"gists_url": "https://api.github.com/users/Nicholas1126/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Nicholas1126/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Nicholas1126/subscriptions",
"organizations_url": "https://api.github.com/users/Nicholas1126/orgs",
"repos_url": "https://api.github.com/users/Nicholas1126/repos",
"events_url": "https://api.github.com/users/Nicholas1126/events{/privacy}",
"received_events_url": "https://api.github.com/users/Nicholas1126/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/Nicholas1126/MHA_Kernel",
"description": "This kernel branch comes from opensource web page. Kernel version base on linux 4.1.18, and add KCOV feature for syzkaller kernel fuzzing on MHA devices.",
"fork": false,
"url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel",
"forks_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/forks",
"keys_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/teams",
"hooks_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/hooks",
"issue_events_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/issues/events{/number}",
"events_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/events",
"assignees_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/assignees{/user}",
"branches_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/branches{/branch}",
"tags_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/tags",
"blobs_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/statuses/{sha}",
"languages_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/languages",
"stargazers_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/stargazers",
"contributors_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/contributors",
"subscribers_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/subscribers",
"subscription_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/subscription",
"commits_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/contents/{+path}",
"compare_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/merges",
"archive_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/downloads",
"issues_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/issues{/number}",
"pulls_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/pulls{/number}",
"milestones_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/milestones{/number}",
"notifications_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/labels{/name}",
"releases_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/releases{/id}",
"deployments_url": "https://api.github.com/repos/Nicholas1126/MHA_Kernel/deployments",
"created_at": "2017-08-04T10:48:41Z",
"updated_at": "2017-08-24T13:00:40Z",
"pushed_at": "2017-08-05T11:39:14Z",
"git_url": "git://github.com/Nicholas1126/MHA_Kernel.git",
"ssh_url": "[email protected]:Nicholas1126/MHA_Kernel.git",
"clone_url": "https://github.com/Nicholas1126/MHA_Kernel.git",
"svn_url": "https://github.com/Nicholas1126/MHA_Kernel",
"homepage": "",
"size": 185208,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": null,
"url": null
},
"forks": 1,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 0.6773231
},
{
"id": 2223950,
"name": "lighttpd-1.4.x",
"full_name": "ctdk/lighttpd-1.4.x",
"owner": {
"login": "ctdk",
"id": 83435,
"avatar_url": "https://avatars0.githubusercontent.com/u/83435?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ctdk",
"html_url": "https://github.com/ctdk",
"followers_url": "https://api.github.com/users/ctdk/followers",
"following_url": "https://api.github.com/users/ctdk/following{/other_user}",
"gists_url": "https://api.github.com/users/ctdk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ctdk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ctdk/subscriptions",
"organizations_url": "https://api.github.com/users/ctdk/orgs",
"repos_url": "https://api.github.com/users/ctdk/repos",
"events_url": "https://api.github.com/users/ctdk/events{/privacy}",
"received_events_url": "https://api.github.com/users/ctdk/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/ctdk/lighttpd-1.4.x",
"description": "lighttpd 1.4 svn git clone. The ct_custom branch contains chunked encoding and mod_deflate backported from 1.5, and the mod_mcpage module for caching fully rendered pages in memcached.",
"fork": false,
"url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x",
"forks_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/forks",
"keys_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/teams",
"hooks_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/hooks",
"issue_events_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/issues/events{/number}",
"events_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/events",
"assignees_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/assignees{/user}",
"branches_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/branches{/branch}",
"tags_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/tags",
"blobs_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/statuses/{sha}",
"languages_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/languages",
"stargazers_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/stargazers",
"contributors_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/contributors",
"subscribers_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/subscribers",
"subscription_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/subscription",
"commits_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/contents/{+path}",
"compare_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/merges",
"archive_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/downloads",
"issues_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/issues{/number}",
"pulls_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/pulls{/number}",
"milestones_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/milestones{/number}",
"notifications_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/labels{/name}",
"releases_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/releases{/id}",
"deployments_url": "https://api.github.com/repos/ctdk/lighttpd-1.4.x/deployments",
"created_at": "2011-08-17T19:45:10Z",
"updated_at": "2014-02-12T12:00:13Z",
"pushed_at": "2012-09-14T18:03:51Z",
"git_url": "git://github.com/ctdk/lighttpd-1.4.x.git",
"ssh_url": "[email protected]:ctdk/lighttpd-1.4.x.git",
"clone_url": "https://github.com/ctdk/lighttpd-1.4.x.git",
"svn_url": "https://github.com/ctdk/lighttpd-1.4.x",
"homepage": "www.lighttpd.net",
"size": 4088,
"stargazers_count": 1,
"watchers_count": 1,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "bsd-3-clause",
"name": "BSD 3-Clause \"New\" or \"Revised\" License",
"spdx_id": "BSD-3-Clause",
"url": "https://api.github.com/licenses/bsd-3-clause"
},
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 0.67650783
},
{
"id": 28808447,
"name": "chronos",
"full_name": "charlesDGY/chronos",
"owner": {
"login": "charlesDGY",
"id": 9391799,
"avatar_url": "https://avatars3.githubusercontent.com/u/9391799?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/charlesDGY",
"html_url": "https://github.com/charlesDGY",
"followers_url": "https://api.github.com/users/charlesDGY/followers",
"following_url": "https://api.github.com/users/charlesDGY/following{/other_user}",
"gists_url": "https://api.github.com/users/charlesDGY/gists{/gist_id}",
"starred_url": "https://api.github.com/users/charlesDGY/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/charlesDGY/subscriptions",
"organizations_url": "https://api.github.com/users/charlesDGY/orgs",
"repos_url": "https://api.github.com/users/charlesDGY/repos",
"events_url": "https://api.github.com/users/charlesDGY/events{/privacy}",
"received_events_url": "https://api.github.com/users/charlesDGY/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/charlesDGY/chronos",
"description": "@article{Chronos-tool, author = \"Xianfeng Li and Yun Liang and Tulika Mitra and Abhik Roychoudury\", title = \"Chronos: A Timing Analyzer for Embedded Software\", journal=\"Science of Computer Programming\", volume=\"69\", number=\"1-3\", pages=\"56-67\" year = \"2007\", note = \"\\url{http://www.comp.nus.edu.sg/~rpembed/chronos}\" }",
"fork": false,
"url": "https://api.github.com/repos/charlesDGY/chronos",
"forks_url": "https://api.github.com/repos/charlesDGY/chronos/forks",
"keys_url": "https://api.github.com/repos/charlesDGY/chronos/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/charlesDGY/chronos/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/charlesDGY/chronos/teams",
"hooks_url": "https://api.github.com/repos/charlesDGY/chronos/hooks",
"issue_events_url": "https://api.github.com/repos/charlesDGY/chronos/issues/events{/number}",
"events_url": "https://api.github.com/repos/charlesDGY/chronos/events",
"assignees_url": "https://api.github.com/repos/charlesDGY/chronos/assignees{/user}",
"branches_url": "https://api.github.com/repos/charlesDGY/chronos/branches{/branch}",
"tags_url": "https://api.github.com/repos/charlesDGY/chronos/tags",
"blobs_url": "https://api.github.com/repos/charlesDGY/chronos/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/charlesDGY/chronos/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/charlesDGY/chronos/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/charlesDGY/chronos/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/charlesDGY/chronos/statuses/{sha}",
"languages_url": "https://api.github.com/repos/charlesDGY/chronos/languages",
"stargazers_url": "https://api.github.com/repos/charlesDGY/chronos/stargazers",
"contributors_url": "https://api.github.com/repos/charlesDGY/chronos/contributors",
"subscribers_url": "https://api.github.com/repos/charlesDGY/chronos/subscribers",
"subscription_url": "https://api.github.com/repos/charlesDGY/chronos/subscription",
"commits_url": "https://api.github.com/repos/charlesDGY/chronos/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/charlesDGY/chronos/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/charlesDGY/chronos/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/charlesDGY/chronos/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/charlesDGY/chronos/contents/{+path}",
"compare_url": "https://api.github.com/repos/charlesDGY/chronos/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/charlesDGY/chronos/merges",
"archive_url": "https://api.github.com/repos/charlesDGY/chronos/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/charlesDGY/chronos/downloads",
"issues_url": "https://api.github.com/repos/charlesDGY/chronos/issues{/number}",
"pulls_url": "https://api.github.com/repos/charlesDGY/chronos/pulls{/number}",
"milestones_url": "https://api.github.com/repos/charlesDGY/chronos/milestones{/number}",
"notifications_url": "https://api.github.com/repos/charlesDGY/chronos/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/charlesDGY/chronos/labels{/name}",
"releases_url": "https://api.github.com/repos/charlesDGY/chronos/releases{/id}",
"deployments_url": "https://api.github.com/repos/charlesDGY/chronos/deployments",
"created_at": "2015-01-05T10:40:39Z",
"updated_at": "2015-03-17T07:42:09Z",
"pushed_at": "2015-03-17T07:41:39Z",
"git_url": "git://github.com/charlesDGY/chronos.git",
"ssh_url": "[email protected]:charlesDGY/chronos.git",
"clone_url": "https://github.com/charlesDGY/chronos.git",
"svn_url": "https://github.com/charlesDGY/chronos",
"homepage": null,
"size": 73464,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 0.45179182
}
]
}
{
"total_count": 4,
"incomplete_results": false,
"items": [
{
"id": 75107616,
"name": "PageReplacementAlgorithm",
"full_name": "tushardas/PageReplacementAlgorithm",
"owner": {
"login": "tushardas",
"id": 15714075,
"avatar_url": "https://avatars1.githubusercontent.com/u/15714075?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tushardas",
"html_url": "https://github.com/tushardas",
"followers_url": "https://api.github.com/users/tushardas/followers",
"following_url": "https://api.github.com/users/tushardas/following{/other_user}",
"gists_url": "https://api.github.com/users/tushardas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tushardas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tushardas/subscriptions",
"organizations_url": "https://api.github.com/users/tushardas/orgs",
"repos_url": "https://api.github.com/users/tushardas/repos",
"events_url": "https://api.github.com/users/tushardas/events{/privacy}",
"received_events_url": "https://api.github.com/users/tushardas/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/tushardas/PageReplacementAlgorithm",
"description": "Implementaion and depiction of 2 Page Replacement Algorithms (FIFO,LRU) using OpenGL in C Programming.",
"fork": false,
"url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm",
"forks_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/forks",
"keys_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/teams",
"hooks_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/hooks",
"issue_events_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/issues/events{/number}",
"events_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/events",
"assignees_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/assignees{/user}",
"branches_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/branches{/branch}",
"tags_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/tags",
"blobs_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/statuses/{sha}",
"languages_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/languages",
"stargazers_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/stargazers",
"contributors_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/contributors",
"subscribers_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/subscribers",
"subscription_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/subscription",
"commits_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/contents/{+path}",
"compare_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/tushardas/PageReplacementAlgorithm/merges",