-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrepos.json
More file actions
2920 lines (2920 loc) · 178 KB
/
Copy pathrepos.json
File metadata and controls
2920 lines (2920 loc) · 178 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
{"data":
[
{
"id": 181920235,
"node_id": "MDEwOlJlcG9zaXRvcnkxODE5MjAyMzU=",
"name": "acl2017-neural_end2end_am",
"full_name": "emaadmanzoor/acl2017-neural_end2end_am",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/acl2017-neural_end2end_am",
"description": "Accompanying code for our ACL-2017 publication on Neural End-to-End Learning for Computational Argumentation Mining",
"fork": true,
"url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am",
"forks_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/acl2017-neural_end2end_am/deployments",
"created_at": "2019-04-17T15:33:54Z",
"updated_at": "2021-09-28T01:52:54Z",
"pushed_at": "2019-03-26T21:14:37Z",
"git_url": "git://github.com/emaadmanzoor/acl2017-neural_end2end_am.git",
"ssh_url": "git@github.com:emaadmanzoor/acl2017-neural_end2end_am.git",
"clone_url": "https://github.com/emaadmanzoor/acl2017-neural_end2end_am.git",
"svn_url": "https://github.com/emaadmanzoor/acl2017-neural_end2end_am",
"homepage": "",
"size": 3734,
"stargazers_count": 2,
"watchers_count": 2,
"language": "Python",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 2,
"default_branch": "master"
},
{
"id": 189485150,
"node_id": "MDEwOlJlcG9zaXRvcnkxODk0ODUxNTA=",
"name": "arguman-scraper",
"full_name": "emaadmanzoor/arguman-scraper",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/arguman-scraper",
"description": "Scraps http://arguman.org for debates.",
"fork": true,
"url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper",
"forks_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/arguman-scraper/deployments",
"created_at": "2019-05-30T21:31:12Z",
"updated_at": "2019-05-30T21:31:17Z",
"pushed_at": "2016-08-10T13:43:46Z",
"git_url": "git://github.com/emaadmanzoor/arguman-scraper.git",
"ssh_url": "git@github.com:emaadmanzoor/arguman-scraper.git",
"clone_url": "https://github.com/emaadmanzoor/arguman-scraper.git",
"svn_url": "https://github.com/emaadmanzoor/arguman-scraper",
"homepage": "",
"size": 1129,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Ruby",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 181916770,
"node_id": "MDEwOlJlcG9zaXRvcnkxODE5MTY3NzA=",
"name": "argument-reasoning-patterns",
"full_name": "emaadmanzoor/argument-reasoning-patterns",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/argument-reasoning-patterns",
"description": null,
"fork": true,
"url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns",
"forks_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/argument-reasoning-patterns/deployments",
"created_at": "2019-04-17T15:13:32Z",
"updated_at": "2019-04-17T15:13:35Z",
"pushed_at": "2018-11-01T15:49:49Z",
"git_url": "git://github.com/emaadmanzoor/argument-reasoning-patterns.git",
"ssh_url": "git@github.com:emaadmanzoor/argument-reasoning-patterns.git",
"clone_url": "https://github.com/emaadmanzoor/argument-reasoning-patterns.git",
"svn_url": "https://github.com/emaadmanzoor/argument-reasoning-patterns",
"homepage": null,
"size": 117,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 255712976,
"node_id": "MDEwOlJlcG9zaXRvcnkyNTU3MTI5NzY=",
"name": "awesome-taxonomy",
"full_name": "emaadmanzoor/awesome-taxonomy",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/awesome-taxonomy",
"description": "A curated resource for taxonomy research",
"fork": true,
"url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy",
"forks_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/awesome-taxonomy/deployments",
"created_at": "2020-04-14T20:01:56Z",
"updated_at": "2020-04-14T20:04:46Z",
"pushed_at": "2020-04-14T20:04:43Z",
"git_url": "git://github.com/emaadmanzoor/awesome-taxonomy.git",
"ssh_url": "git@github.com:emaadmanzoor/awesome-taxonomy.git",
"clone_url": "https://github.com/emaadmanzoor/awesome-taxonomy.git",
"svn_url": "https://github.com/emaadmanzoor/awesome-taxonomy",
"homepage": null,
"size": 20,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 4133693,
"node_id": "MDEwOlJlcG9zaXRvcnk0MTMzNjkz",
"name": "bbd-prediction",
"full_name": "emaadmanzoor/bbd-prediction",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/bbd-prediction",
"description": "Predicting benign breast disease with a logistic regression classifier on matched case-control data.",
"fork": false,
"url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction",
"forks_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/bbd-prediction/deployments",
"created_at": "2012-04-25T06:45:20Z",
"updated_at": "2013-12-12T14:10:30Z",
"pushed_at": "2012-04-25T06:47:05Z",
"git_url": "git://github.com/emaadmanzoor/bbd-prediction.git",
"ssh_url": "git@github.com:emaadmanzoor/bbd-prediction.git",
"clone_url": "https://github.com/emaadmanzoor/bbd-prediction.git",
"svn_url": "https://github.com/emaadmanzoor/bbd-prediction",
"homepage": null,
"size": 100,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"forks": 1,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 5919387,
"node_id": "MDEwOlJlcG9zaXRvcnk1OTE5Mzg3",
"name": "beanstalkd-pycon2012-tutorial",
"full_name": "emaadmanzoor/beanstalkd-pycon2012-tutorial",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/beanstalkd-pycon2012-tutorial",
"description": "Presentation and code for our PyCon 2012 Tutorial on building a cluster with Beanstalkd",
"fork": false,
"url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial",
"forks_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/beanstalkd-pycon2012-tutorial/deployments",
"created_at": "2012-09-23T04:22:59Z",
"updated_at": "2017-05-26T12:23:46Z",
"pushed_at": "2012-10-13T04:34:12Z",
"git_url": "git://github.com/emaadmanzoor/beanstalkd-pycon2012-tutorial.git",
"ssh_url": "git@github.com:emaadmanzoor/beanstalkd-pycon2012-tutorial.git",
"clone_url": "https://github.com/emaadmanzoor/beanstalkd-pycon2012-tutorial.git",
"svn_url": "https://github.com/emaadmanzoor/beanstalkd-pycon2012-tutorial",
"homepage": null,
"size": 3090,
"stargazers_count": 2,
"watchers_count": 2,
"language": "Ruby",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"forks": 1,
"open_issues": 0,
"watchers": 2,
"default_branch": "master"
},
{
"id": 307824632,
"node_id": "MDEwOlJlcG9zaXRvcnkzMDc4MjQ2MzI=",
"name": "biases-in-text",
"full_name": "emaadmanzoor/biases-in-text",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/biases-in-text",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/emaadmanzoor/biases-in-text",
"forks_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/biases-in-text/deployments",
"created_at": "2020-10-27T20:50:36Z",
"updated_at": "2021-09-26T19:59:11Z",
"pushed_at": "2020-10-27T21:13:46Z",
"git_url": "git://github.com/emaadmanzoor/biases-in-text.git",
"ssh_url": "git@github.com:emaadmanzoor/biases-in-text.git",
"clone_url": "https://github.com/emaadmanzoor/biases-in-text.git",
"svn_url": "https://github.com/emaadmanzoor/biases-in-text",
"homepage": "http://emaadmanzoor.com/biases-in-text/",
"size": 69183,
"stargazers_count": 3,
"watchers_count": 3,
"language": "Jupyter Notebook",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"forks": 1,
"open_issues": 0,
"watchers": 3,
"default_branch": "master"
},
{
"id": 13865630,
"node_id": "MDEwOlJlcG9zaXRvcnkxMzg2NTYzMA==",
"name": "bib2sqlite",
"full_name": "emaadmanzoor/bib2sqlite",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/bib2sqlite",
"description": "Programming languages and compilers course project. Compiles a BibTex file into a sqlite3 database binary.",
"fork": false,
"url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite",
"forks_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/bib2sqlite/deployments",
"created_at": "2013-10-25T16:14:13Z",
"updated_at": "2013-10-25T16:14:39Z",
"pushed_at": "2013-10-25T16:14:38Z",
"git_url": "git://github.com/emaadmanzoor/bib2sqlite.git",
"ssh_url": "git@github.com:emaadmanzoor/bib2sqlite.git",
"clone_url": "https://github.com/emaadmanzoor/bib2sqlite.git",
"svn_url": "https://github.com/emaadmanzoor/bib2sqlite",
"homepage": null,
"size": 1352,
"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,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 10526556,
"node_id": "MDEwOlJlcG9zaXRvcnkxMDUyNjU1Ng==",
"name": "bmtc-miles",
"full_name": "emaadmanzoor/bmtc-miles",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/bmtc-miles",
"description": "Earn reward miles for public bus transport by uploading a picture of your ticket.",
"fork": true,
"url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles",
"forks_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/bmtc-miles/deployments",
"created_at": "2013-06-06T13:04:22Z",
"updated_at": "2021-09-26T19:50:48Z",
"pushed_at": "2013-06-06T18:14:42Z",
"git_url": "git://github.com/emaadmanzoor/bmtc-miles.git",
"ssh_url": "git@github.com:emaadmanzoor/bmtc-miles.git",
"clone_url": "https://github.com/emaadmanzoor/bmtc-miles.git",
"svn_url": "https://github.com/emaadmanzoor/bmtc-miles",
"homepage": "http://bmtcmiles.herokuapp.com/",
"size": 4214,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Python",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 189940597,
"node_id": "MDEwOlJlcG9zaXRvcnkxODk5NDA1OTc=",
"name": "causal-network-embeddings",
"full_name": "emaadmanzoor/causal-network-embeddings",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/emaadmanzoor/causal-network-embeddings",
"description": "Software and pre-processed data for \"Using Embeddings to Correct for Unobserved Confounding in Networks\"",
"fork": true,
"url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings",
"forks_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/forks",
"keys_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/teams",
"hooks_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/hooks",
"issue_events_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/issues/events{/number}",
"events_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/events",
"assignees_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/assignees{/user}",
"branches_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/branches{/branch}",
"tags_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/tags",
"blobs_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/statuses/{sha}",
"languages_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/languages",
"stargazers_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/stargazers",
"contributors_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/contributors",
"subscribers_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/subscribers",
"subscription_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/subscription",
"commits_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/contents/{+path}",
"compare_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/merges",
"archive_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/downloads",
"issues_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/issues{/number}",
"pulls_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/pulls{/number}",
"milestones_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/milestones{/number}",
"notifications_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/labels{/name}",
"releases_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/releases{/id}",
"deployments_url": "https://api.github.com/repos/emaadmanzoor/causal-network-embeddings/deployments",
"created_at": "2019-06-03T05:32:54Z",
"updated_at": "2019-06-03T05:32:57Z",
"pushed_at": "2019-05-31T17:56:21Z",
"git_url": "git://github.com/emaadmanzoor/causal-network-embeddings.git",
"ssh_url": "git@github.com:emaadmanzoor/causal-network-embeddings.git",
"clone_url": "https://github.com/emaadmanzoor/causal-network-embeddings.git",
"svn_url": "https://github.com/emaadmanzoor/causal-network-embeddings",
"homepage": null,
"size": 122,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Python",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 189940632,
"node_id": "MDEwOlJlcG9zaXRvcnkxODk5NDA2MzI=",
"name": "causal-text-embeddings",
"full_name": "emaadmanzoor/causal-text-embeddings",
"private": false,
"owner": {
"login": "emaadmanzoor",
"id": 501008,
"node_id": "MDQ6VXNlcjUwMTAwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/501008?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaadmanzoor",
"html_url": "https://github.com/emaadmanzoor",
"followers_url": "https://api.github.com/users/emaadmanzoor/followers",
"following_url": "https://api.github.com/users/emaadmanzoor/following{/other_user}",
"gists_url": "https://api.github.com/users/emaadmanzoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaadmanzoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaadmanzoor/subscriptions",
"organizations_url": "https://api.github.com/users/emaadmanzoor/orgs",
"repos_url": "https://api.github.com/users/emaadmanzoor/repos",
"events_url": "https://api.github.com/users/emaadmanzoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaadmanzoor/received_events",
"type": "User",