-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.json
3236 lines (3236 loc) · 189 KB
/
github.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
[
{
"id": 391566015,
"node_id": "MDEwOlJlcG9zaXRvcnkzOTE1NjYwMTU=",
"name": "alumini2",
"full_name": "shivesh1606/alumini2",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/alumini2",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/alumini2",
"forks_url": "https://api.github.com/repos/shivesh1606/alumini2/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/alumini2/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/alumini2/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/alumini2/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/alumini2/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/alumini2/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/alumini2/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/alumini2/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/alumini2/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/alumini2/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/alumini2/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/alumini2/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/alumini2/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/alumini2/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/alumini2/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/alumini2/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/alumini2/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/alumini2/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/alumini2/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/alumini2/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/alumini2/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/alumini2/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/alumini2/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/alumini2/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/alumini2/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/alumini2/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/alumini2/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/alumini2/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/alumini2/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/alumini2/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/alumini2/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/alumini2/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/alumini2/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/alumini2/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/alumini2/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/alumini2/deployments",
"created_at": "2021-08-01T08:06:28Z",
"updated_at": "2021-08-01T08:07:10Z",
"pushed_at": "2021-08-01T08:07:07Z",
"git_url": "git://github.com/shivesh1606/alumini2.git",
"ssh_url": "[email protected]:shivesh1606/alumini2.git",
"clone_url": "https://github.com/shivesh1606/alumini2.git",
"svn_url": "https://github.com/shivesh1606/alumini2",
"homepage": null,
"size": 20,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 391566937,
"node_id": "MDEwOlJlcG9zaXRvcnkzOTE1NjY5Mzc=",
"name": "alumini3",
"full_name": "shivesh1606/alumini3",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/alumini3",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/alumini3",
"forks_url": "https://api.github.com/repos/shivesh1606/alumini3/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/alumini3/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/alumini3/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/alumini3/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/alumini3/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/alumini3/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/alumini3/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/alumini3/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/alumini3/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/alumini3/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/alumini3/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/alumini3/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/alumini3/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/alumini3/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/alumini3/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/alumini3/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/alumini3/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/alumini3/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/alumini3/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/alumini3/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/alumini3/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/alumini3/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/alumini3/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/alumini3/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/alumini3/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/alumini3/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/alumini3/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/alumini3/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/alumini3/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/alumini3/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/alumini3/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/alumini3/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/alumini3/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/alumini3/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/alumini3/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/alumini3/deployments",
"created_at": "2021-08-01T08:10:40Z",
"updated_at": "2021-08-01T08:11:49Z",
"pushed_at": "2021-08-01T08:11:47Z",
"git_url": "git://github.com/shivesh1606/alumini3.git",
"ssh_url": "[email protected]:shivesh1606/alumini3.git",
"clone_url": "https://github.com/shivesh1606/alumini3.git",
"svn_url": "https://github.com/shivesh1606/alumini3",
"homepage": null,
"size": 21,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 373028513,
"node_id": "MDEwOlJlcG9zaXRvcnkzNzMwMjg1MTM=",
"name": "amweb",
"full_name": "shivesh1606/amweb",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/amweb",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/amweb",
"forks_url": "https://api.github.com/repos/shivesh1606/amweb/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/amweb/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/amweb/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/amweb/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/amweb/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/amweb/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/amweb/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/amweb/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/amweb/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/amweb/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/amweb/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/amweb/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/amweb/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/amweb/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/amweb/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/amweb/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/amweb/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/amweb/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/amweb/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/amweb/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/amweb/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/amweb/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/amweb/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/amweb/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/amweb/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/amweb/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/amweb/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/amweb/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/amweb/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/amweb/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/amweb/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/amweb/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/amweb/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/amweb/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/amweb/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/amweb/deployments",
"created_at": "2021-06-02T03:30:30Z",
"updated_at": "2022-04-08T10:32:32Z",
"pushed_at": "2021-06-04T16:46:46Z",
"git_url": "git://github.com/shivesh1606/amweb.git",
"ssh_url": "[email protected]:shivesh1606/amweb.git",
"clone_url": "https://github.com/shivesh1606/amweb.git",
"svn_url": "https://github.com/shivesh1606/amweb",
"homepage": null,
"size": 14337,
"stargazers_count": 1,
"watchers_count": 1,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 574039509,
"node_id": "R_kgDOIjcl1Q",
"name": "analog-clock",
"full_name": "shivesh1606/analog-clock",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/analog-clock",
"description": "Simple analog clock made using HTML, CSS, JS",
"fork": true,
"url": "https://api.github.com/repos/shivesh1606/analog-clock",
"forks_url": "https://api.github.com/repos/shivesh1606/analog-clock/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/analog-clock/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/analog-clock/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/analog-clock/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/analog-clock/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/analog-clock/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/analog-clock/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/analog-clock/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/analog-clock/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/analog-clock/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/analog-clock/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/analog-clock/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/analog-clock/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/analog-clock/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/analog-clock/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/analog-clock/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/analog-clock/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/analog-clock/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/analog-clock/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/analog-clock/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/analog-clock/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/analog-clock/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/analog-clock/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/analog-clock/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/analog-clock/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/analog-clock/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/analog-clock/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/analog-clock/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/analog-clock/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/analog-clock/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/analog-clock/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/analog-clock/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/analog-clock/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/analog-clock/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/analog-clock/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/analog-clock/deployments",
"created_at": "2022-12-04T08:23:14Z",
"updated_at": "2022-12-03T14:23:53Z",
"pushed_at": "2022-12-03T16:55:51Z",
"git_url": "git://github.com/shivesh1606/analog-clock.git",
"ssh_url": "[email protected]:shivesh1606/analog-clock.git",
"clone_url": "https://github.com/shivesh1606/analog-clock.git",
"svn_url": "https://github.com/shivesh1606/analog-clock",
"homepage": "https://analog-clock-rouge.vercel.app/",
"size": 72,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 719394394,
"node_id": "R_kgDOKuEWWg",
"name": "ananomly_detection",
"full_name": "shivesh1606/ananomly_detection",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/ananomly_detection",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/ananomly_detection",
"forks_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/ananomly_detection/deployments",
"created_at": "2023-11-16T04:13:59Z",
"updated_at": "2023-11-16T04:17:28Z",
"pushed_at": "2023-11-16T04:52:43Z",
"git_url": "git://github.com/shivesh1606/ananomly_detection.git",
"ssh_url": "[email protected]:shivesh1606/ananomly_detection.git",
"clone_url": "https://github.com/shivesh1606/ananomly_detection.git",
"svn_url": "https://github.com/shivesh1606/ananomly_detection",
"homepage": null,
"size": 25,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 576426249,
"node_id": "R_kgDOIluRCQ",
"name": "APClubIITP",
"full_name": "shivesh1606/APClubIITP",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/APClubIITP",
"description": null,
"fork": true,
"url": "https://api.github.com/repos/shivesh1606/APClubIITP",
"forks_url": "https://api.github.com/repos/shivesh1606/APClubIITP/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/APClubIITP/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/APClubIITP/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/APClubIITP/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/APClubIITP/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/APClubIITP/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/APClubIITP/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/APClubIITP/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/APClubIITP/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/APClubIITP/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/APClubIITP/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/APClubIITP/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/APClubIITP/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/APClubIITP/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/APClubIITP/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/APClubIITP/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/APClubIITP/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/APClubIITP/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/APClubIITP/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/APClubIITP/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/APClubIITP/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/APClubIITP/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/APClubIITP/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/APClubIITP/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/APClubIITP/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/APClubIITP/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/APClubIITP/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/APClubIITP/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/APClubIITP/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/APClubIITP/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/APClubIITP/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/APClubIITP/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/APClubIITP/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/APClubIITP/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/APClubIITP/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/APClubIITP/deployments",
"created_at": "2022-12-09T20:41:27Z",
"updated_at": "2022-12-09T14:29:14Z",
"pushed_at": "2022-12-09T18:34:35Z",
"git_url": "git://github.com/shivesh1606/APClubIITP.git",
"ssh_url": "[email protected]:shivesh1606/APClubIITP.git",
"clone_url": "https://github.com/shivesh1606/APClubIITP.git",
"svn_url": "https://github.com/shivesh1606/APClubIITP",
"homepage": null,
"size": 27759,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 398190119,
"node_id": "MDEwOlJlcG9zaXRvcnkzOTgxOTAxMTk=",
"name": "applic",
"full_name": "shivesh1606/applic",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/applic",
"description": "Copy for Study purpose",
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/applic",
"forks_url": "https://api.github.com/repos/shivesh1606/applic/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/applic/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/applic/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/applic/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/applic/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/applic/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/applic/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/applic/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/applic/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/applic/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/applic/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/applic/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/applic/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/applic/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/applic/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/applic/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/applic/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/applic/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/applic/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/applic/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/applic/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/applic/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/applic/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/applic/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/applic/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/applic/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/applic/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/applic/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/applic/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/applic/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/applic/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/applic/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/applic/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/applic/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/applic/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/applic/deployments",
"created_at": "2021-08-20T07:18:02Z",
"updated_at": "2022-04-08T10:32:15Z",
"pushed_at": "2021-08-20T07:18:03Z",
"git_url": "git://github.com/shivesh1606/applic.git",
"ssh_url": "[email protected]:shivesh1606/applic.git",
"clone_url": "https://github.com/shivesh1606/applic.git",
"svn_url": "https://github.com/shivesh1606/applic",
"homepage": null,
"size": 0,
"stargazers_count": 1,
"watchers_count": 1,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 824873147,
"node_id": "R_kgDOMSqQuw",
"name": "backenddak",
"full_name": "shivesh1606/backenddak",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/backenddak",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/backenddak",
"forks_url": "https://api.github.com/repos/shivesh1606/backenddak/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/backenddak/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/backenddak/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/backenddak/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/backenddak/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/backenddak/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/backenddak/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/backenddak/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/backenddak/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/backenddak/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/backenddak/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/backenddak/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/backenddak/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/backenddak/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/backenddak/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/backenddak/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/backenddak/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/backenddak/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/backenddak/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/backenddak/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/backenddak/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/backenddak/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/backenddak/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/backenddak/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/backenddak/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/backenddak/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/backenddak/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/backenddak/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/backenddak/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/backenddak/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/backenddak/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/backenddak/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/backenddak/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/backenddak/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/backenddak/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/backenddak/deployments",
"created_at": "2024-07-06T07:22:21Z",
"updated_at": "2024-07-06T07:22:41Z",
"pushed_at": "2024-07-06T07:22:38Z",
"git_url": "git://github.com/shivesh1606/backenddak.git",
"ssh_url": "[email protected]:shivesh1606/backenddak.git",
"clone_url": "https://github.com/shivesh1606/backenddak.git",
"svn_url": "https://github.com/shivesh1606/backenddak",
"homepage": null,
"size": 0,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 391564916,
"node_id": "MDEwOlJlcG9zaXRvcnkzOTE1NjQ5MTY=",
"name": "Basic-console",
"full_name": "shivesh1606/Basic-console",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/Basic-console",
"description": "Alumini Cell task ",
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/Basic-console",
"forks_url": "https://api.github.com/repos/shivesh1606/Basic-console/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/Basic-console/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/Basic-console/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/Basic-console/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/Basic-console/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/Basic-console/issues/events{/number}",
"events_url": "https://api.github.com/repos/shivesh1606/Basic-console/events",
"assignees_url": "https://api.github.com/repos/shivesh1606/Basic-console/assignees{/user}",
"branches_url": "https://api.github.com/repos/shivesh1606/Basic-console/branches{/branch}",
"tags_url": "https://api.github.com/repos/shivesh1606/Basic-console/tags",
"blobs_url": "https://api.github.com/repos/shivesh1606/Basic-console/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shivesh1606/Basic-console/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shivesh1606/Basic-console/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shivesh1606/Basic-console/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shivesh1606/Basic-console/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shivesh1606/Basic-console/languages",
"stargazers_url": "https://api.github.com/repos/shivesh1606/Basic-console/stargazers",
"contributors_url": "https://api.github.com/repos/shivesh1606/Basic-console/contributors",
"subscribers_url": "https://api.github.com/repos/shivesh1606/Basic-console/subscribers",
"subscription_url": "https://api.github.com/repos/shivesh1606/Basic-console/subscription",
"commits_url": "https://api.github.com/repos/shivesh1606/Basic-console/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shivesh1606/Basic-console/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shivesh1606/Basic-console/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shivesh1606/Basic-console/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shivesh1606/Basic-console/contents/{+path}",
"compare_url": "https://api.github.com/repos/shivesh1606/Basic-console/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shivesh1606/Basic-console/merges",
"archive_url": "https://api.github.com/repos/shivesh1606/Basic-console/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shivesh1606/Basic-console/downloads",
"issues_url": "https://api.github.com/repos/shivesh1606/Basic-console/issues{/number}",
"pulls_url": "https://api.github.com/repos/shivesh1606/Basic-console/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shivesh1606/Basic-console/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shivesh1606/Basic-console/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shivesh1606/Basic-console/labels{/name}",
"releases_url": "https://api.github.com/repos/shivesh1606/Basic-console/releases{/id}",
"deployments_url": "https://api.github.com/repos/shivesh1606/Basic-console/deployments",
"created_at": "2021-08-01T08:01:24Z",
"updated_at": "2022-04-08T10:32:24Z",
"pushed_at": "2021-08-01T08:17:21Z",
"git_url": "git://github.com/shivesh1606/Basic-console.git",
"ssh_url": "[email protected]:shivesh1606/Basic-console.git",
"clone_url": "https://github.com/shivesh1606/Basic-console.git",
"svn_url": "https://github.com/shivesh1606/Basic-console",
"homepage": null,
"size": 1,
"stargazers_count": 1,
"watchers_count": 1,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 666264220,
"node_id": "R_kgDOJ7ZinA",
"name": "blumeRepo",
"full_name": "shivesh1606/blumeRepo",
"private": false,
"owner": {
"login": "shivesh1606",
"id": 75152702,
"node_id": "MDQ6VXNlcjc1MTUyNzAy",
"avatar_url": "https://avatars.githubusercontent.com/u/75152702?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivesh1606",
"html_url": "https://github.com/shivesh1606",
"followers_url": "https://api.github.com/users/shivesh1606/followers",
"following_url": "https://api.github.com/users/shivesh1606/following{/other_user}",
"gists_url": "https://api.github.com/users/shivesh1606/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivesh1606/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivesh1606/subscriptions",
"organizations_url": "https://api.github.com/users/shivesh1606/orgs",
"repos_url": "https://api.github.com/users/shivesh1606/repos",
"events_url": "https://api.github.com/users/shivesh1606/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivesh1606/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/shivesh1606/blumeRepo",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/shivesh1606/blumeRepo",
"forks_url": "https://api.github.com/repos/shivesh1606/blumeRepo/forks",
"keys_url": "https://api.github.com/repos/shivesh1606/blumeRepo/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shivesh1606/blumeRepo/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shivesh1606/blumeRepo/teams",
"hooks_url": "https://api.github.com/repos/shivesh1606/blumeRepo/hooks",
"issue_events_url": "https://api.github.com/repos/shivesh1606/blumeRepo/issues/events{/number}",