-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_user_data.json
More file actions
3299 lines (3299 loc) Β· 232 KB
/
github_user_data.json
File metadata and controls
3299 lines (3299 loc) Β· 232 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
{
"yaswanth-142004": {
"profile": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"name": "Yaswanth V",
"company": null,
"blog": "",
"location": null,
"email": null,
"hireable": null,
"bio": "\ud83d\udc68\u200d\ud83d\udcbb Yaswanth Sai | 3rd Year B.Tech Student | Tech Enthusiast \ud83d\ude80\r\n\ud83d\udcbb Proficient in MERN Stack & AI Development\r\n\ud83d\udcda Passionate about building ai applications.",
"twitter_username": null,
"public_repos": 30,
"public_gists": 0,
"followers": 9,
"following": 27,
"created_at": "2023-06-28T01:19:36Z",
"updated_at": "2025-03-20T13:07:47Z"
},
"repos": [
{
"id": 966229068,
"node_id": "R_kgDOOZd8TA",
"name": "lab-agile-planning",
"full_name": "yaswanth-142004/lab-agile-planning",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/lab-agile-planning",
"description": "This repository cointains the lab of agile planning course",
"fork": false,
"url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning",
"forks_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/lab-agile-planning/deployments",
"created_at": "2025-04-14T15:45:54Z",
"updated_at": "2025-04-14T16:08:48Z",
"pushed_at": "2025-04-14T16:08:45Z",
"git_url": "git://github.com/yaswanth-142004/lab-agile-planning.git",
"ssh_url": "git@github.com:yaswanth-142004/lab-agile-planning.git",
"clone_url": "https://github.com/yaswanth-142004/lab-agile-planning.git",
"svn_url": "https://github.com/yaswanth-142004/lab-agile-planning",
"homepage": null,
"size": 2,
"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": 4,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 4,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 930816106,
"node_id": "R_kgDON3sgag",
"name": "Vintage-Vault",
"full_name": "yaswanth-142004/Vintage-Vault",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/Vintage-Vault",
"description": "VintageVault is a web application designed for antique enthusiasts, collectors, and traders to buy, sell, and bid on rare vintage items in a real-time auction environment. Our platform bridges the gap between sellers and buyers globally, ensuring fair bidding, direct communication, and secure transactions.",
"fork": false,
"url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault",
"forks_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/Vintage-Vault/deployments",
"created_at": "2025-02-11T09:03:58Z",
"updated_at": "2025-04-13T09:24:58Z",
"pushed_at": "2025-04-13T09:24:55Z",
"git_url": "git://github.com/yaswanth-142004/Vintage-Vault.git",
"ssh_url": "git@github.com:yaswanth-142004/Vintage-Vault.git",
"clone_url": "https://github.com/yaswanth-142004/Vintage-Vault.git",
"svn_url": "https://github.com/yaswanth-142004/Vintage-Vault",
"homepage": null,
"size": 552,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 2,
"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": 2,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 949287025,
"node_id": "R_kgDOOJT4cQ",
"name": "up.ly",
"full_name": "yaswanth-142004/up.ly",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/up.ly",
"description": "AI-powered career assistance platform",
"fork": true,
"url": "https://api.github.com/repos/yaswanth-142004/up.ly",
"forks_url": "https://api.github.com/repos/yaswanth-142004/up.ly/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/up.ly/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/up.ly/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/up.ly/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/up.ly/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/up.ly/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/up.ly/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/up.ly/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/up.ly/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/up.ly/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/up.ly/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/up.ly/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/up.ly/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/up.ly/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/up.ly/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/up.ly/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/up.ly/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/up.ly/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/up.ly/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/up.ly/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/up.ly/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/up.ly/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/up.ly/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/up.ly/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/up.ly/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/up.ly/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/up.ly/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/up.ly/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/up.ly/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/up.ly/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/up.ly/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/up.ly/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/up.ly/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/up.ly/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/up.ly/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/up.ly/deployments",
"created_at": "2025-03-16T05:10:15Z",
"updated_at": "2025-03-26T06:06:01Z",
"pushed_at": "2025-03-26T06:05:57Z",
"git_url": "git://github.com/yaswanth-142004/up.ly.git",
"ssh_url": "git@github.com:yaswanth-142004/up.ly.git",
"clone_url": "https://github.com/yaswanth-142004/up.ly.git",
"svn_url": "https://github.com/yaswanth-142004/up.ly",
"homepage": null,
"size": 71936,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Jupyter Notebook",
"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": 1,
"default_branch": "main",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 949778201,
"node_id": "R_kgDOOJx3GQ",
"name": "scoreline-ai",
"full_name": "yaswanth-142004/scoreline-ai",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/scoreline-ai",
"description": "Evaluation of handwritten exams using OCR and AI",
"fork": false,
"url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai",
"forks_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/scoreline-ai/deployments",
"created_at": "2025-03-17T05:57:50Z",
"updated_at": "2025-03-25T13:40:50Z",
"pushed_at": "2025-03-25T13:40:46Z",
"git_url": "git://github.com/yaswanth-142004/scoreline-ai.git",
"ssh_url": "git@github.com:yaswanth-142004/scoreline-ai.git",
"clone_url": "https://github.com/yaswanth-142004/scoreline-ai.git",
"svn_url": "https://github.com/yaswanth-142004/scoreline-ai",
"homepage": null,
"size": 1337,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Python",
"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": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 954198335,
"node_id": "R_kgDOON_pPw",
"name": "LLM_finetuning",
"full_name": "yaswanth-142004/LLM_finetuning",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/LLM_finetuning",
"description": "This repo Consists of the Clinacal Bert LLM finetuned on different datasets.",
"fork": false,
"url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning",
"forks_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/LLM_finetuning/deployments",
"created_at": "2025-03-24T17:56:41Z",
"updated_at": "2025-03-24T18:01:25Z",
"pushed_at": "2025-03-24T18:01:21Z",
"git_url": "git://github.com/yaswanth-142004/LLM_finetuning.git",
"ssh_url": "git@github.com:yaswanth-142004/LLM_finetuning.git",
"clone_url": "https://github.com/yaswanth-142004/LLM_finetuning.git",
"svn_url": "https://github.com/yaswanth-142004/LLM_finetuning",
"homepage": null,
"size": 6,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Python",
"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": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 952916129,
"node_id": "R_kgDOOMxYoQ",
"name": "garuda",
"full_name": "yaswanth-142004/garuda",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/garuda",
"description": "This fork consists of the python backend",
"fork": true,
"url": "https://api.github.com/repos/yaswanth-142004/garuda",
"forks_url": "https://api.github.com/repos/yaswanth-142004/garuda/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/garuda/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/garuda/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/garuda/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/garuda/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/garuda/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/garuda/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/garuda/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/garuda/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/garuda/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/garuda/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/garuda/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/garuda/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/garuda/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/garuda/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/garuda/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/garuda/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/garuda/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/garuda/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/garuda/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/garuda/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/garuda/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/garuda/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/garuda/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/garuda/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/garuda/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/garuda/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/garuda/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/garuda/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/garuda/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/garuda/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/garuda/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/garuda/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/garuda/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/garuda/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/garuda/deployments",
"created_at": "2025-03-22T06:20:22Z",
"updated_at": "2025-03-23T07:41:19Z",
"pushed_at": "2025-03-23T07:41:14Z",
"git_url": "git://github.com/yaswanth-142004/garuda.git",
"ssh_url": "git@github.com:yaswanth-142004/garuda.git",
"clone_url": "https://github.com/yaswanth-142004/garuda.git",
"svn_url": "https://github.com/yaswanth-142004/garuda",
"homepage": null,
"size": 72097,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"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": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 951917988,
"node_id": "R_kgDOOL0dpA",
"name": "AP22110011098",
"full_name": "yaswanth-142004/AP22110011098",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/AP22110011098",
"description": "This Repo consists of the solutions for the AFFORDMED Hiring Exam.",
"fork": false,
"url": "https://api.github.com/repos/yaswanth-142004/AP22110011098",
"forks_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/AP22110011098/deployments",
"created_at": "2025-03-20T12:55:35Z",
"updated_at": "2025-03-20T15:22:02Z",
"pushed_at": "2025-03-20T15:21:58Z",
"git_url": "git://github.com/yaswanth-142004/AP22110011098.git",
"ssh_url": "git@github.com:yaswanth-142004/AP22110011098.git",
"clone_url": "https://github.com/yaswanth-142004/AP22110011098.git",
"svn_url": "https://github.com/yaswanth-142004/AP22110011098",
"homepage": null,
"size": 564,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"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": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 898022666,
"node_id": "R_kgDONYa9Cg",
"name": "DSA_Practice",
"full_name": "yaswanth-142004/DSA_Practice",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/DSA_Practice",
"description": "This repo consists of all the important dsa algorithms to refer before an interview ",
"fork": false,
"url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice",
"forks_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/DSA_Practice/deployments",
"created_at": "2024-12-03T16:44:42Z",
"updated_at": "2025-03-11T18:09:06Z",
"pushed_at": "2025-03-11T18:09:02Z",
"git_url": "git://github.com/yaswanth-142004/DSA_Practice.git",
"ssh_url": "git@github.com:yaswanth-142004/DSA_Practice.git",
"clone_url": "https://github.com/yaswanth-142004/DSA_Practice.git",
"svn_url": "https://github.com/yaswanth-142004/DSA_Practice",
"homepage": null,
"size": 84,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C++",
"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": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 925659815,
"node_id": "R_kgDONyxypw",
"name": "MSC-HACKATHON",
"full_name": "yaswanth-142004/MSC-HACKATHON",
"private": false,
"owner": {
"login": "yaswanth-142004",
"id": 137966941,
"node_id": "U_kgDOCDk1XQ",
"avatar_url": "https://avatars.githubusercontent.com/u/137966941?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaswanth-142004",
"html_url": "https://github.com/yaswanth-142004",
"followers_url": "https://api.github.com/users/yaswanth-142004/followers",
"following_url": "https://api.github.com/users/yaswanth-142004/following{/other_user}",
"gists_url": "https://api.github.com/users/yaswanth-142004/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaswanth-142004/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaswanth-142004/subscriptions",
"organizations_url": "https://api.github.com/users/yaswanth-142004/orgs",
"repos_url": "https://api.github.com/users/yaswanth-142004/repos",
"events_url": "https://api.github.com/users/yaswanth-142004/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaswanth-142004/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/yaswanth-142004/MSC-HACKATHON",
"description": null,
"fork": true,
"url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON",
"forks_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/forks",
"keys_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/teams",
"hooks_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/hooks",
"issue_events_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/events",
"assignees_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/tags",
"blobs_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/languages",
"stargazers_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/stargazers",
"contributors_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/contributors",
"subscribers_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/subscribers",
"subscription_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/subscription",
"commits_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/merges",
"archive_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/downloads",
"issues_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/labels{/name}",
"releases_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaswanth-142004/MSC-HACKATHON/deployments",
"created_at": "2025-02-01T12:25:46Z",
"updated_at": "2025-02-01T12:30:07Z",
"pushed_at": "2025-02-01T12:30:04Z",
"git_url": "git://github.com/yaswanth-142004/MSC-HACKATHON.git",
"ssh_url": "git@github.com:yaswanth-142004/MSC-HACKATHON.git",
"clone_url": "https://github.com/yaswanth-142004/MSC-HACKATHON.git",
"svn_url": "https://github.com/yaswanth-142004/MSC-HACKATHON",
"homepage": null,
"size": 54,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"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,