-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.json
5665 lines (5665 loc) · 340 KB
/
example.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": 684804334,
"node_id": "R_kgDOKNFI7g",
"name": "angular-github_user_info",
"full_name": "scottgriv/angular-github_user_info",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/angular-github_user_info",
"description": "A web application that allows you to search for a GitHub user by username in order to view their profile information and other details.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/angular-github_user_info",
"forks_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/forks",
"keys_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/events",
"assignees_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/merges",
"archive_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/angular-github_user_info/deployments",
"created_at": "2023-08-29T22:23:02Z",
"updated_at": "2023-08-29T22:41:39Z",
"pushed_at": "2023-08-29T22:42:37Z",
"git_url": "git://github.com/scottgriv/angular-github_user_info.git",
"ssh_url": "git@github.com:scottgriv/angular-github_user_info.git",
"clone_url": "https://github.com/scottgriv/angular-github_user_info.git",
"svn_url": "https://github.com/scottgriv/angular-github_user_info",
"homepage": "https://scottgriv.github.io/angular-github_user_info/",
"size": 682,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"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": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"angular",
"github-api",
"github-profile",
"html",
"sass",
"typescript"
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 677229626,
"node_id": "R_kgDOKF20Og",
"name": "assembly-welcome",
"full_name": "scottgriv/assembly-welcome",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/assembly-welcome",
"description": "Welcome to my GitHub! (In Assembly and Binary)",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/assembly-welcome",
"forks_url": "https://api.github.com/repos/scottgriv/assembly-welcome/forks",
"keys_url": "https://api.github.com/repos/scottgriv/assembly-welcome/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/assembly-welcome/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/assembly-welcome/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/assembly-welcome/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/assembly-welcome/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/assembly-welcome/events",
"assignees_url": "https://api.github.com/repos/scottgriv/assembly-welcome/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/assembly-welcome/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/assembly-welcome/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/assembly-welcome/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/assembly-welcome/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/assembly-welcome/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/assembly-welcome/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/assembly-welcome/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/assembly-welcome/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/assembly-welcome/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/assembly-welcome/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/assembly-welcome/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/assembly-welcome/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/assembly-welcome/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/assembly-welcome/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/assembly-welcome/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/assembly-welcome/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/assembly-welcome/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/assembly-welcome/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/assembly-welcome/merges",
"archive_url": "https://api.github.com/repos/scottgriv/assembly-welcome/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/assembly-welcome/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/assembly-welcome/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/assembly-welcome/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/assembly-welcome/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/assembly-welcome/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/assembly-welcome/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/assembly-welcome/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/assembly-welcome/deployments",
"created_at": "2023-08-11T04:00:49Z",
"updated_at": "2023-08-11T04:01:27Z",
"pushed_at": "2023-08-12T00:57:25Z",
"git_url": "git://github.com/scottgriv/assembly-welcome.git",
"ssh_url": "git@github.com:scottgriv/assembly-welcome.git",
"clone_url": "https://github.com/scottgriv/assembly-welcome.git",
"svn_url": "https://github.com/scottgriv/assembly-welcome",
"homepage": null,
"size": 1,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"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": 677218005,
"node_id": "R_kgDOKF2G1Q",
"name": "bash-utility_scripts",
"full_name": "scottgriv/bash-utility_scripts",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/bash-utility_scripts",
"description": "Simple backup and deployment scripts written in Bash.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/bash-utility_scripts",
"forks_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/forks",
"keys_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/events",
"assignees_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/merges",
"archive_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/bash-utility_scripts/deployments",
"created_at": "2023-08-11T03:09:09Z",
"updated_at": "2023-08-11T03:10:14Z",
"pushed_at": "2023-08-12T00:54:40Z",
"git_url": "git://github.com/scottgriv/bash-utility_scripts.git",
"ssh_url": "git@github.com:scottgriv/bash-utility_scripts.git",
"clone_url": "https://github.com/scottgriv/bash-utility_scripts.git",
"svn_url": "https://github.com/scottgriv/bash-utility_scripts",
"homepage": null,
"size": 3,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Shell",
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"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": 677212493,
"node_id": "R_kgDOKF1xTQ",
"name": "basic-calculator",
"full_name": "scottgriv/basic-calculator",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/basic-calculator",
"description": "This simple calculator program allows users to perform basic arithmetic operations such as addition, subtraction, multiplication, and division.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/basic-calculator",
"forks_url": "https://api.github.com/repos/scottgriv/basic-calculator/forks",
"keys_url": "https://api.github.com/repos/scottgriv/basic-calculator/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/basic-calculator/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/basic-calculator/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/basic-calculator/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/basic-calculator/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/basic-calculator/events",
"assignees_url": "https://api.github.com/repos/scottgriv/basic-calculator/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/basic-calculator/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/basic-calculator/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/basic-calculator/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/basic-calculator/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/basic-calculator/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/basic-calculator/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/basic-calculator/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/basic-calculator/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/basic-calculator/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/basic-calculator/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/basic-calculator/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/basic-calculator/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/basic-calculator/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/basic-calculator/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/basic-calculator/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/basic-calculator/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/basic-calculator/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/basic-calculator/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/basic-calculator/merges",
"archive_url": "https://api.github.com/repos/scottgriv/basic-calculator/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/basic-calculator/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/basic-calculator/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/basic-calculator/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/basic-calculator/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/basic-calculator/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/basic-calculator/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/basic-calculator/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/basic-calculator/deployments",
"created_at": "2023-08-11T02:44:15Z",
"updated_at": "2023-08-11T03:04:30Z",
"pushed_at": "2023-08-12T00:54:45Z",
"git_url": "git://github.com/scottgriv/basic-calculator.git",
"ssh_url": "git@github.com:scottgriv/basic-calculator.git",
"clone_url": "https://github.com/scottgriv/basic-calculator.git",
"svn_url": "https://github.com/scottgriv/basic-calculator",
"homepage": null,
"size": 3,
"stargazers_count": 0,
"watchers_count": 0,
"language": "BASIC",
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"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": 586060486,
"node_id": "R_kgDOIu6Sxg",
"name": "batch-useful_bat_files",
"full_name": "scottgriv/batch-useful_bat_files",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/batch-useful_bat_files",
"description": "A collection of useful Windows Batch files.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files",
"forks_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/forks",
"keys_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/events",
"assignees_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/merges",
"archive_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/batch-useful_bat_files/deployments",
"created_at": "2023-01-06T20:46:26Z",
"updated_at": "2023-01-07T00:51:34Z",
"pushed_at": "2023-01-19T18:19:30Z",
"git_url": "git://github.com/scottgriv/batch-useful_bat_files.git",
"ssh_url": "git@github.com:scottgriv/batch-useful_bat_files.git",
"clone_url": "https://github.com/scottgriv/batch-useful_bat_files.git",
"svn_url": "https://github.com/scottgriv/batch-useful_bat_files",
"homepage": null,
"size": 23,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Batchfile",
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"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": 677580803,
"node_id": "R_kgDOKGMQAw",
"name": "c-factorial_calculator",
"full_name": "scottgriv/c-factorial_calculator",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/c-factorial_calculator",
"description": "This simple C project calculates the factorial of a given number.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/c-factorial_calculator",
"forks_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/forks",
"keys_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/events",
"assignees_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/merges",
"archive_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/c-factorial_calculator/deployments",
"created_at": "2023-08-12T00:50:03Z",
"updated_at": "2023-08-12T00:50:57Z",
"pushed_at": "2023-08-12T00:50:54Z",
"git_url": "git://github.com/scottgriv/c-factorial_calculator.git",
"ssh_url": "git@github.com:scottgriv/c-factorial_calculator.git",
"clone_url": "https://github.com/scottgriv/c-factorial_calculator.git",
"svn_url": "https://github.com/scottgriv/c-factorial_calculator",
"homepage": null,
"size": 2,
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"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": 677777316,
"node_id": "R_kgDOKGYPpA",
"name": "cobol-ascii_robot_art",
"full_name": "scottgriv/cobol-ascii_robot_art",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/cobol-ascii_robot_art",
"description": "This simple COBOL program displays an ASCII art robot \"COLBOT\", along with the message \"BEEP BOP\". The robot ASCII art is rendered in the terminal when the program is executed.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art",
"forks_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/forks",
"keys_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/events",
"assignees_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/merges",
"archive_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/cobol-ascii_robot_art/deployments",
"created_at": "2023-08-12T15:53:28Z",
"updated_at": "2023-08-12T15:56:12Z",
"pushed_at": "2023-08-12T15:56:37Z",
"git_url": "git://github.com/scottgriv/cobol-ascii_robot_art.git",
"ssh_url": "git@github.com:scottgriv/cobol-ascii_robot_art.git",
"clone_url": "https://github.com/scottgriv/cobol-ascii_robot_art.git",
"svn_url": "https://github.com/scottgriv/cobol-ascii_robot_art",
"homepage": "",
"size": 5,
"stargazers_count": 0,
"watchers_count": 0,
"language": "COBOL",
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cobol",
"cobol-example",
"cobol-programming",
"cobol-programs"
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 584989592,
"node_id": "R_kgDOIt47mA",
"name": "cpp-room_demo",
"full_name": "scottgriv/cpp-room_demo",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/cpp-room_demo",
"description": "C++ demo to get the sum square footage of multiple rooms.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/cpp-room_demo",
"forks_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/forks",
"keys_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/events",
"assignees_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/merges",
"archive_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/cpp-room_demo/deployments",
"created_at": "2023-01-04T03:07:02Z",
"updated_at": "2023-01-04T03:10:47Z",
"pushed_at": "2023-01-19T18:19:42Z",
"git_url": "git://github.com/scottgriv/cpp-room_demo.git",
"ssh_url": "git@github.com:scottgriv/cpp-room_demo.git",
"clone_url": "https://github.com/scottgriv/cpp-room_demo.git",
"svn_url": "https://github.com/scottgriv/cpp-room_demo",
"homepage": "",
"size": 6,
"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": {
"key": "unlicense",
"name": "The Unlicense",
"spdx_id": "Unlicense",
"url": "https://api.github.com/licenses/unlicense",
"node_id": "MDc6TGljZW5zZTE1"
},
"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": 585390401,
"node_id": "R_kgDOIuRZQQ",
"name": "csharp-audio_recorder",
"full_name": "scottgriv/csharp-audio_recorder",
"private": false,
"owner": {
"login": "scottgriv",
"id": 91580393,
"node_id": "U_kgDOBXVn6Q",
"avatar_url": "https://avatars.githubusercontent.com/u/91580393?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scottgriv",
"html_url": "https://github.com/scottgriv",
"followers_url": "https://api.github.com/users/scottgriv/followers",
"following_url": "https://api.github.com/users/scottgriv/following{/other_user}",
"gists_url": "https://api.github.com/users/scottgriv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scottgriv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scottgriv/subscriptions",
"organizations_url": "https://api.github.com/users/scottgriv/orgs",
"repos_url": "https://api.github.com/users/scottgriv/repos",
"events_url": "https://api.github.com/users/scottgriv/events{/privacy}",
"received_events_url": "https://api.github.com/users/scottgriv/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/scottgriv/csharp-audio_recorder",
"description": "A simple Audio Recorder and Playback C# App.",
"fork": false,
"url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder",
"forks_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/forks",
"keys_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/teams",
"hooks_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/hooks",
"issue_events_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/issues/events{/number}",
"events_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/events",
"assignees_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/assignees{/user}",
"branches_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/branches{/branch}",
"tags_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/tags",
"blobs_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/statuses/{sha}",
"languages_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/languages",
"stargazers_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/stargazers",
"contributors_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/contributors",
"subscribers_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/subscribers",
"subscription_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/subscription",
"commits_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/contents/{+path}",
"compare_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/merges",
"archive_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/downloads",
"issues_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/issues{/number}",
"pulls_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/pulls{/number}",
"milestones_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/milestones{/number}",
"notifications_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/labels{/name}",
"releases_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/releases{/id}",
"deployments_url": "https://api.github.com/repos/scottgriv/csharp-audio_recorder/deployments",
"created_at": "2023-01-05T03:34:55Z",
"updated_at": "2023-07-24T23:29:58Z",
"pushed_at": "2023-01-25T02:45:09Z",
"git_url": "git://github.com/scottgriv/csharp-audio_recorder.git",
"ssh_url": "git@github.com:scottgriv/csharp-audio_recorder.git",
"clone_url": "https://github.com/scottgriv/csharp-audio_recorder.git",
"svn_url": "https://github.com/scottgriv/csharp-audio_recorder",
"homepage": "",
"size": 136,
"stargazers_count": 0,
"watchers_count": 0,
"language": "C#",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,