-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.urll
3168 lines (2938 loc) · 152 KB
/
README.urll
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
////URLL-version=3;
//// https://github.com/seanpm2001/URLL-Specification
//// FileName: Seanpm2001_REPOLIST.urll
//// An attempt to make a REPOLIST file of all of my source repositories
//// To calculate the total, press CTRL + F, type `https://github.com/seanpm2001` and reduce 2 from the given total (subtract an additional 6, as there are 6 forks listed, as of 2023, Tuesday, August 22nd. To find forks, press CTRL + F, type `//// (fork)` and minus 1 from this count
//// Current total: 2433 / 3855 (as of 2023, Tuesday, August 22nd) (063.11%)
//// This list is incomplete
//// Notes
//// Not allowed categories:
//// Libraries (reason: Major overlap)
//// SNU 2D (reason: Major overlap)
//// Templates (reason: Major overlap)
//// Video Games (reason: Major overlap)
//// Joke Programs (reason: Major overlap)
//// Import reference section
//// !MISC/Unsorted
//// AI2001 : AI2001/AI2001_REPOLIST.urll (last updated: 2023, August 22nd)
//// Android x128 : Android-x128/REPOLIST.urll
//// Android x32 : Android-x32/REPOLIST.urll
//// Android x32x64 : Android-x32x64/REPOLIST.urll
//// Android x64 : Android-x64/REPOLIST.urll
//// Anime Studio : Anime-Studio/REPOLIST.urll
//// AquariOS {
//// - AquariOS main
//// - AquariOS documentation
//// }
//// BathHouseOS {
//// - BathHouseOS main
//// - BathHouseOS core
//// - BathHouseOS documentation
//// }
//// BlazeOS {
//// - BlazeOS main
//// - BWS main
//// - BlazeOS documentation
//// - BWS Hardware
//// - BWS clients
//// - BlazeOS applications
//// - BlazeOS frameworks and layers
//// - BlazeOS animations
//// - BlazeOS software LIBraries
//// - BlazeOS browser
//// - BlazeOS Peak
//// }
//// Bliss Browser : Bliss-Browser/Bliss_Browser_REPOLIST.urll {
//// - Bliss Browser main
//// - Bliss Browser core
//// - Bliss Browser support modules
//// - Bliss Browser OSMode ports
//// - Bliss Browser OSMode components
//// - Bliss Browser Language support
//// }
//// BluPhone {
//// - BluPhone main
//// - BluPhone documentation
//// - BluPhone operating system
//// - BluPhone ports
//// - BluPhone website
//// }
//// Candroid : Candroid/REPOLIST.urll
//// DeGoogle-your-Life : DeGoogle-your-Life/REPO_LIST.urll
//// DIFFicult {
//// - DIFFicult main
//// }
//// Go!gle :
//// Hospital Defender {
//// - Hospital Defender main
//// - Hospital Defender website
//// }
//// Learn : Learn/Learn_REPOLIST.urll
//// LennyOS : LennyOS/LennyOS_REPOLIST.urll
//// LightSpeed Relay Technologies {
//// - LightSpeed Relay Technologies main
//// - LightSpeed Relay Documentation
//// - LightSpeed Relay Technologies Database
//// - LightSpeed Relay Technologies communications
//// }
//// Linux Defender {
//// - Linux Defender main
//// - Linux Defender documentation
//// - Linux Defender Database
//// - Linux Defender ports
//// }
//// MCPYE {
//// - MCPYE main
//// - MCPYE documentation
//// - MCPYE command language
//// - MCPYE Ports
//// - MCPYE Wiki
//// }
//// Meadows {
//// - Meadows main
//// - Meadows documentation
//// - Meadows file systems
//// - Meadows components
//// - Meadows programs
//// - Meadows general modules
//// - Meadows general settings
//// - Meadows profile modules
//// - Meadows developer modules
//// - Meadows legacy modules
//// - Meadows UI
//// - Meadows templates
//// - Meadows websites
//// }
//// MEDOS {
//// - MEDOS Main
//// - MEDOS mediums
//// - MEDOS Albums
//// - MEDOS Remote Control
//// }
//// MetroTechno {
//// - MetroTechno main
//// - MetroTechno subsystems
//// }
//// NetM :
//// NUNIX : NUNIX/NUNIX_REPOLIST.urll
//// OpenGov {
//// - OpenGov main
//// - OpenGov components
//// }
//// SDE MobileServer : SDE_MobileServer/SDE_MobileServer_REPOLIST.urll {
//// - SDE MobileServer Main
//// - SDE MobileServer Core
//// - SDE MobileServer OSPorts
//// - SDE MobileServer Plugins
//// }
//// SNU 0D {
//// - SNU 0D Main
//// - SNU 0D Homepage
//// - SNU 0D Website
//// }
//// SNU 2D Programming Tools :
//// The REAL Data Liberation Front
//// UCALC {
//// - UCALC main
//// - UCALC ports
//// }
//// uOffice {
//// - uOffice main
//// - uOffice documentation
//// - uOffice components
//// - uOffice software LIBraries
//// - uOffice joke programs
//// - uOffice ports
//// - uOffice website
//// }
//// WacOS {
//// - WacOS home
//// - WacOS Docs
//// - WacOS BaSYS
//// - WacOS BaSYS Software
//// - WacOS Legacy Applications
//// - Classic WacOS
//// - wOS
//// - wOS Software
//// - whyPhoneOS
//// - whyPhoneOS software
//// - whyPadOS
//// - whyPadOS software
//// - WacTVOS
//// - WacTVOS software
//// - WacOS X
//// - WacOS X software
//// - WOAHS-X
//// - WOAHS-X software
//// - WacOS Modern
//// - WacOS Modern Software
//// - Sir Isaac NewtonOS
//// - WacOS OpenCyberdog
//// - WacOS Savannah
//// - WacOS Languages
//// - WacOS Kiri
//// - WacOS Wiki
//// - OnESTEP
//// - WacOS OpenGS
//// - WacOS Sherman
//// - WAMMY
//// - WacOS Cloud
//// - WhyWatchOS
//// - WhyWatchOS software
//// - WacOS API
//// - iCandy
//// - WacOS DOS Mode
//// - WacOS Drivers
//// - WacOS File Systems
//// - WacOS Hardware
//// }
//// YKDefender :
//// Zag {
//// - Zag main
//// }
//// Major todo
//// Hundreds of projects need to be separated into lists, and set for inclusion.
//// Other projects
//// !MISC/UNSORTED
//// As of 2023, Tuesday, August 22nd
//// GitHub (3)
https://github.com/seanpm2001/Space_Defender_2_Eiffel
https://github.com/seanpm2001/SeansLifeArchive_Images_MEDOS
https://github.com/seanpm2001/Rasple
//// AI2001
//// As of 2023, Tuesday, August 22nd
//// GitHub (337)
https://github.com/seanpm2001/AI2001
https://github.com/seanpm2001/AI2001_Docs
https://github.com/seanpm2001/AI2001_Category-Documents
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Articles
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Books
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-Wikipedia
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-Wiktionary
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-WikiVoyage
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-WikiData
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-WikiBooks
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-WikiVersity
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-WikiNews
https://github.com/seanpm2001/AI2001_Category-Documents-SC-Wikis-S-WikiSpecies
https://github.com/seanpm2001/AI2001_Category-Source_code
https://github.com/seanpm2001/AI2001_Category-Images
https://github.com/seanpm2001/AI2001_Category-Images-SC-Photography
https://github.com/seanpm2001/AI2001_Category-Images-SC-Photography-S-Nature
https://github.com/seanpm2001/AI2001_Category-Images-SC-Photography-S-Portrait
https://github.com/seanpm2001/AI2001_Category-Images-SC-Photography-S-Construction
https://github.com/seanpm2001/AI2001_Category-Images-SC-Photography-S-War
https://github.com/seanpm2001/AI2001_Category-Images-SC-Photography-S-Space
https://github.com/seanpm2001/AI2001_Category-Images-SC-Screenshots
https://github.com/seanpm2001/AI2001_Category-Images-SC-Graphic-Design
https://github.com/seanpm2001/AI2001_Category-Images-SC-Graphic-Design-S-Icons
https://github.com/seanpm2001/AI2001_Category-Images-SC-Graphic-Design-S-Wallpapers
https://github.com/seanpm2001/AI2001_Category-Images-SC-Graphic-Design-S-Logos
https://github.com/seanpm2001/AI2001_Category-Images-SC-Graphic-Design-S-Vexillology
https://github.com/seanpm2001/AI2001_Category-Images-SC-Heraldry
https://github.com/seanpm2001/AI2001_Category-Videos
https://github.com/seanpm2001/AI2001_Category-Videos-SC-Photography
https://github.com/seanpm2001/AI2001_Category-Videos-SC-Gameplay
https://github.com/seanpm2001/AI2001_Category-Videos-SC-Nature
https://github.com/seanpm2001/AI2001_Category-Videos-SC-Animation
https://github.com/seanpm2001/AI2001_Category-Videos-SC-Animation-S-Anime
https://github.com/seanpm2001/AI2001_Category-META_SC-MT-Time_Lapse
https://github.com/seanpm2001/AI2001_Category-META_SC-Tags-NSFW
https://github.com/seanpm2001/AI2001_Category-META_SC-Tags-SFW
https://github.com/seanpm2001/AI2001_Category-Audio
https://github.com/seanpm2001/AI2001_Category-Audio-SC-Music
https://github.com/seanpm2001/AI2001_Category-Audio-SC-Music-S-Ambient
https://github.com/seanpm2001/AI2001_Category-Audio-SC-Music-S-Vocals
https://github.com/seanpm2001/AI2001_Category-Audio-SC-Sound_Effects
https://github.com/seanpm2001/AI2001_Category-Audio-SC-Speeches
https://github.com/seanpm2001/AI2001_Category-Linguistics
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-English
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Spanish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-French
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-German
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Japanese
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Ukrainian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Latin
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Greek
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Arabic
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Hebrew
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Russian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Urdu
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Hindi
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Portuguese
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Romanian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Azerbaijan
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Chinese-Traditional
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Chinese-Simplified
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Korean-South
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Thai
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Telugu
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Sindhi
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Berber
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Sanskrit
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Cuneiform
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Ruthenian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Zulu
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Afrikaans
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Hungarian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Javanese
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Laos
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Ethiopian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Kurdish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Turkish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Yiddish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Yoruba
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Afar
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Bulgarian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Belarusian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Korean-North
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Greenlandic
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Ancient-Egyptian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Pashto
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Punjabi
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Welsh
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Irish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Scottish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Dutch
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Swedish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Finnish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Norwegian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Danish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Italian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Bosnian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Mongolian-Cyrillic
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Mongolian-Classic
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Uzbek
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Uyghur
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Filipino
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Xhosa
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Tajik
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Tatar
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Chechen
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Polish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Latvian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Lithuanian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Igbo
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Catalan
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Corsican
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Cornish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Persian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Akkadian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Swahili
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Sundanese
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Esperanto
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Walloon
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Luxembourgish
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Armenian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Frisian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Bengali
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Indonesian
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Marathi
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Tamil
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Vietnamese
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Tagalog
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Somali
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Czech
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ABAP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ActionScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ALGOL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-AWK
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-AngelScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ASP.NET
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ASP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Astro
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Agda
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-AMPL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-AppleScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Ada
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-BrightScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-BrighterScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-B
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Brainfuck
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Bikeshed
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Batchfile
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-C
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Clean
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CSharp
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CSS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CSV
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Cadence
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-C-Plus-Plus
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CSound
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CartoCSS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CAML
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-D
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Dafny
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Dart
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Desktop
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Diff
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Dhall
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-DIGITAL-Command-Language
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-E
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Erlang
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Eiffel
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-EJS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Epigram
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-F-Sharp
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Fish
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Factor
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Fluent
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Fancy
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Fortran95
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-GoogleGo
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Go-
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-GDScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-GLSL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-GAP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Gherkin
https://github.com/seanpm2001/AI2001_Category-Meta
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-GSC
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Haskell
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-HTML
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-HTTP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-HaProxy
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Hy
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-HyPhy
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Haxe
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Hack
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Inno-Setup
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-INI
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Java
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-JavaScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-JSON
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-J
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Jsonnet
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-JetBrains-MPS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Kotlin
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Lua
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Less
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Logos
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Lisp
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Limbo
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Lean
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-M
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Macaulay2
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Motoko
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Mako
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Makefile
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Mathematica
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Monkey
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Monkey-C
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Max
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-MAXScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Metal
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Markdown
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Nim
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Nemerle
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-NSIS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-NetREXX
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Objective-C
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Objective-C-Plus-Plus
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Objective-J
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-OCaml
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Octave
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Pascal
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Perl
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-PHP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Python3
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Python2
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Pod
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-QML
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Q
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Q-Sharp
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-R
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Red
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Raku
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Ragel
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-RMarkdown
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Rust
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-RenPy
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Reason
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ReScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-RouterOS-Script
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Scala
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Svelte
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Shell
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Sage
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Slim
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-TypeScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Tcl
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-TOML
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-TeX
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-UnrealScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Uno
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-URLL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Vala
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-VBScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-VB.NET
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-V
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-VHDL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-WebAssembly
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Wren
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Windows-Registry-Entry
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-YASnippet
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Zig
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ZenScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ZAP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ZIL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Zeek
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Sami
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Lushootseed
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Amharic
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Burmese
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Lingala
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Nepali
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Kashmiri
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Konkani
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Maithili
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Malayalam
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Hindustani
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Meitei
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Santali
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Fula
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Wolof
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Bambara
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Eagle
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-EmacsLisp
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Cebuano
https://github.com/seanpm2001/AI2001_Category-Linguistics-SC-Tigrinya
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Ezhil
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-EBNF
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Earthly
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Euphoria
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Elixir
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Elm
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-DogeScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Dylan
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-ReStructuredText
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Racket
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-DM
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-DTrace
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Coq
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Ceylon
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CoffeeScript
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Crystal
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-COBOL
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Component-Pascal
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Clojure
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CMake
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CSON
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CLIPS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Creole
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CUDA
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Chapel
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Cython
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Cap-n-Proto
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CAP-CDS
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Rascal
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Scheme
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CommonLisp
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Cool
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CommonWorkflowLanguage
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Closure-Templates
https://github.com/seanpm2001/AI2001_API
https://github.com/seanpm2001/Awesome-AI2001
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Classic-ASP
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-CUE
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-Ballerina
https://github.com/seanpm2001/AI2001_Category-Source_Code-SC-BASIC
//// Android x128
//// As of 2022, Tuesday, November 22nd
//// GitHub (2)
https://github.com/seanpm2001/Android-x128
https://github.com/seanpm2001/Android-x128_Docs
//// Android x32
//// As of 2023, Thursday, January 19th
//// GitHub (121)
https://github.com/seanpm2001/Android-x32
https://github.com/seanpm2001/Android-x32_Docs
https://github.com/seanpm2001/Android-x32_LiveCD_4.4C
https://github.com/seanpm2001/Android-x32_LiveCD_4.4B
https://github.com/seanpm2001/Android-x32_LiveCD_4.4A
https://github.com/seanpm2001/Android-x32_LiveCD_4.3C
https://github.com/seanpm2001/Android-x32_LiveCD_4.3B
https://github.com/seanpm2001/Android-x32_LiveCD_4.3A
https://github.com/seanpm2001/Android-x32_LiveCD_4.2C
https://github.com/seanpm2001/Android-x32_LiveCD_4.2B
https://github.com/seanpm2001/Android-x32_LiveCD_4.2A
https://github.com/seanpm2001/Android-x32_LiveCD_4.1C
https://github.com/seanpm2001/Android-x32_LiveCD_4.1B
https://github.com/seanpm2001/Android-x32_LiveCD_4.1A
https://github.com/seanpm2001/Android-x32_LiveCD_4.0C
https://github.com/seanpm2001/Android-x32_LiveCD_4.0B
https://github.com/seanpm2001/Android-x32_LiveCD_4.0A
https://github.com/seanpm2001/Android-x32_LiveCD_3.2C
https://github.com/seanpm2001/Android-x32_LiveCD_3.2B
https://github.com/seanpm2001/Android-x32_LiveCD_3.2A
https://github.com/seanpm2001/Android-x32_LiveCD_3.1C
https://github.com/seanpm2001/Android-x32_LiveCD_3.1B
https://github.com/seanpm2001/Android-x32_LiveCD_3.1A
https://github.com/seanpm2001/Android-x32_LiveCD_3.0C
https://github.com/seanpm2001/Android-x32_LiveCD_3.0B
https://github.com/seanpm2001/Android-x32_LiveCD_3.0A
https://github.com/seanpm2001/Android-x32_LiveCD_2.3C
https://github.com/seanpm2001/Android-x32_LiveCD_2.3B
https://github.com/seanpm2001/Android-x32_LiveCD_2.3A
https://github.com/seanpm2001/Android-x32_LiveCD_2.2C
https://github.com/seanpm2001/Android-x32_LiveCD_2.2B
https://github.com/seanpm2001/Android-x32_LiveCD_2.2A
https://github.com/seanpm2001/Android-x32_LiveCD_2.1C
https://github.com/seanpm2001/Android-x32_LiveCD_2.1B
https://github.com/seanpm2001/Android-x32_LiveCD_2.1A
https://github.com/seanpm2001/Android-x32_LiveCD_2.0C
https://github.com/seanpm2001/Android-x32_LiveCD_2.0B
https://github.com/seanpm2001/Android-x32_LiveCD_2.0A
https://github.com/seanpm2001/Android-x32_LiveCD_1.6C
https://github.com/seanpm2001/Android-x32_LiveCD_1.6B
https://github.com/seanpm2001/Android-x32_LiveCD_1.6A
https://github.com/seanpm2001/Android-x32_LiveCD_1.5C
https://github.com/seanpm2001/Android-x32_LiveCD_1.5B
https://github.com/seanpm2001/Android-x32_LiveCD_1.5A
https://github.com/seanpm2001/Android-x32_LiveCD_1.1C
https://github.com/seanpm2001/Android-x32_LiveCD_1.1B
https://github.com/seanpm2001/Android-x32_LiveCD_1.1A
https://github.com/seanpm2001/Android-x32_LiveCD_1.0B
https://github.com/seanpm2001/Android-x32_LiveCD_1.0A
https://github.com/seanpm2001/Android-x32_LiveCD_1.0C
https://github.com/seanpm2001/Android-x32_LiveCD_0.9C
https://github.com/seanpm2001/Android-x32_LiveCD_0.9B
https://github.com/seanpm2001/Android-x32_LiveCD_0.9A
https://github.com/seanpm2001/Android-x32_Android4.4_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android4.4_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android4.4_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android4.4_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android4.3_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android4.3_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android4.3_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android4.3_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android4.2_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android4.2_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android4.2_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android4.2_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android4.1_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android4.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android4.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android4.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android4.0_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android4.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android4.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android4.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android3.2_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android3.2_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android3.2_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android3.2_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android3.1_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android3.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android3.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android3.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android3.0_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android3.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android3.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android3.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android2.3_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android2.3_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android2.3_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android2.3_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android2.2_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android2.2_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android2.2_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android2.2_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android2.1_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android2.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android2.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android2.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android2.0_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android2.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android2.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android2.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android1.6_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android1.6_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android1.6_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android1.6_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android1.5_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android1.5_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android1.5_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android1.5_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android1.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android1.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android1.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android1.1_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android1.0_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android1.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android1.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android1.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x32_Android0.9_Heavy_Edition
https://github.com/seanpm2001/Android-x32_Android0.9_Vanilla_Edition
https://github.com/seanpm2001/Android-x32_Android0.9_DeGoogled_Edition
https://github.com/seanpm2001/Android-x32_Android0.9_LiveCD_Edition
//// Android x32x64
//// As of 2022, Tuesday, November 22nd
//// GitHub (18)
https://github.com/seanpm2001/Android-x32x64
https://github.com/seanpm2001/Android-x32x64_Docs
https://github.com/seanpm2001/Android-x32x64_LiveCD_15A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_14A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_13A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_12B_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_12A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_11A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_10A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_9A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_8B_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_8A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_7B_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_7A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_6B_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_6A_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_5B_Edition
https://github.com/seanpm2001/Android-x32x64_LiveCD_5A_Edition
//// Android x64
//// As of 2022, Tuesday, December 20th
//// GitHub (90)
https://github.com/seanpm2001/Android-x64
https://github.com/seanpm2001/Android-x64_Docs
https://github.com/seanpm2001/Android-x64_Workspace_Firefox
https://github.com/seanpm2001/Android-x64_LiveCD_15A
https://github.com/seanpm2001/Android-x64_LiveCD_14A
https://github.com/seanpm2001/Android-x64_LiveCD_13A
https://github.com/seanpm2001/Android-x64_LiveCD_12C
https://github.com/seanpm2001/Android-x64_LiveCD_12B
https://github.com/seanpm2001/Android-x64_LiveCD_12A
https://github.com/seanpm2001/Android-x64_LiveCD_11A
https://github.com/seanpm2001/Android-x64_LiveCD_10A
https://github.com/seanpm2001/Android-x64_LiveCD_9C
https://github.com/seanpm2001/Android-x64_LiveCD_9B
https://github.com/seanpm2001/Android-x64_LiveCD_9A
https://github.com/seanpm2001/Android-x64_LiveCD_8C
https://github.com/seanpm2001/Android-x64_LiveCD_8B
https://github.com/seanpm2001/Android-x64_LiveCD_8A
https://github.com/seanpm2001/Android-x64_LiveCD_7C
https://github.com/seanpm2001/Android-x64_LiveCD_7B
https://github.com/seanpm2001/Android-x64_LiveCD_7A
https://github.com/seanpm2001/Android-x64_LiveCD_6C
https://github.com/seanpm2001/Android-x64_LiveCD_6B
https://github.com/seanpm2001/Android-x64_LiveCD_6A
https://github.com/seanpm2001/Android-x64_LiveCD_5C
https://github.com/seanpm2001/Android-x64_LiveCD_5B
https://github.com/seanpm2001/Android-x64_LiveCD_5A
https://github.com/seanpm2001/Android-x64_Android15.0_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android15.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android15.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android15.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android14.0_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android14.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android14.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android14.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android13_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android13_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android13_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android13_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android12.1_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android12.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android12.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android12.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android12_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android12_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android12_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android12_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android11_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android11_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android11_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android11_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android10_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android10_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android10_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android10_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android9_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android9_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android9_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android9_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android8.1_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android8.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android8.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android8.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android8.0_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android8.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android8.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android8.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android7.1_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android7.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android7.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android7.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android7.0_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android7.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android7.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android7.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android6.1_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android6.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android6.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android6.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android6.0_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android6.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android6.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android6.0_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android5.1_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android5.1_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android5.1_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android5.1_LiveCD_Edition
https://github.com/seanpm2001/Android-x64_Android5.0_Heavy_Edition
https://github.com/seanpm2001/Android-x64_Android5.0_Vanilla_Edition
https://github.com/seanpm2001/Android-x64_Android5.0_DeGoogled_Edition
https://github.com/seanpm2001/Android-x64_Android5.0_LiveCD_Edition
//// Anime Studio
//// As of 2023, Wednesday, March 15th at 3:41 pm PST
//// GitHub (26)
https://github.com/seanpm2001/Anime_Studio
https://github.com/seanpm2001/Anime_Studio_Docs
https://github.com/seanpm2001/Anime_Studio_OpenAnime
https://github.com/seanpm2001/Anime_Studio_AnimAI
https://github.com/seanpm2001/Anime_Studio_Manga-Studio
https://github.com/seanpm2001/Anime_Studio_Subs-and-Dubs
https://github.com/seanpm2001/Anime_Studio_Video-Editor
https://github.com/seanpm2001/Anime_Studio_ApplicationCore
https://github.com/seanpm2001/Anime_Studio_Hentai
https://github.com/seanpm2001/Anime_Studio_AvatarStudio
https://github.com/seanpm2001/Anime_Studio_StyleManager
https://github.com/seanpm2001/Anime_Studio_Library
https://github.com/seanpm2001/Anime_Studio_Exporter
https://github.com/seanpm2001/Anime_Studio_Image-Editor
https://github.com/seanpm2001/Anime_Studio_Audio-Editor
https://github.com/seanpm2001/Anime_Studio_SocialShare
https://github.com/seanpm2001/Anime_Studio_Website
https://github.com/seanpm2001/Anime_Studio_ChatBot
https://github.com/seanpm2001/Anime_Studio_SubtitleTool
https://github.com/seanpm2001/Anime_Studio_Game-Studio
https://github.com/seanpm2001/Anime_Studio_Manga-File-Format
https://github.com/seanpm2001/Anime_Studio_Woodblock_Printer
https://github.com/seanpm2001/Anime_Studio_Dictionary
https://github.com/seanpm2001/Anime_Studio_Encyclopedia
https://github.com/seanpm2001/Anime_Studio_Glossary
https://github.com/seanpm2001/Anime_Studio_Wiki
//// AquariOS
//// As of 2023, Tuesday, March 22nd at 4:21 pm PST
//// GitHub (2)
//// AquariOS main (1)
https://github.com/seanpm2001/AquariOS
//// AquariOS documentation (1)
https://github.com/seanpm2001/Project-Aquarius
//// BathHouseOS
//// As of 2023, Tuesday, March 22nd at 4:19 pm PST
//// GitHub (3)
//// BathHouseOS main (1)
https://github.com/seanpm2001/BathHouseOS
//// BathHouseOS core (1)
https://github.com/seanpm2001/BathHouseOS_Core_ControlPanel
//// BathHouseOS documentation (1)
https://github.com/seanpm2001/BathHouseOS_Docs
//// BlazeOS
//// As of 2023, Wednesday, March 15th at 3:41 pm PST
//// GitHub (21)
//// BlazeOS main (1)
https://github.com/seanpm2001/BlazeOS
//// BWS main (1)
https://github.com/seanpm2001/BWS
//// BlazeOS documentation (1)
https://github.com/seanpm2001/BlazeOS_Docs
//// BWS Hardware (6)
https://github.com/seanpm2001/BWS_Hardware
https://github.com/seanpm2001/BWS_Hardware_Ice
https://github.com/seanpm2001/BWS_Icicle
https://github.com/seanpm2001/BWS_IceCube
https://github.com/seanpm2001/BWS_IceBlocks
https://github.com/seanpm2001/BWS_IceBerg
//// BWS clients (1)
https://github.com/seanpm2001/BWS_Zamboni
//// BlazeOS applications (1)
https://github.com/seanpm2001/BlazeOS_App_Store
//// BlazeOS frameworks and layers (4)
https://github.com/seanpm2001/BlAPK
https://github.com/seanpm2001/BlazeOS_ePubStation
https://github.com/seanpm2001/IgniteBook
https://github.com/seanpm2001/BlazeOS_Userland
//// BlazeOS animations (1)
https://github.com/seanpm2001/BlazeOS_bpage
//// BlazeOS software LIBraries (2)
https://github.com/seanpm2001/Mobi_Dick
https://github.com/seanpm2001/Blazed_Cafe
//// BlazeOS browser (1)
https://github.com/seanpm2001/Silkworm_web_browser
//// BlazeOS Peak (2)
https://github.com/seanpm2001/BlazeOS_Peak
https://github.com/seanpm2001/BlazeOS_Peak_Video
//// Bliss Browser
//// As of 2023, Tuesday, August 22nd
//// GitHub (199)
//// Bliss Browser main (2)
https://github.com/seanpm2001/Bliss_Browser
https://github.com/seanpm2001/Bliss_Browser_Docs
//// Bliss Browser core (4)
https://github.com/seanpm2001/Bliss_Browser_Core
https://github.com/seanpm2001/Bliss_Browser_Settings
https://github.com/seanpm2001/Bliss_Browser_Installer
https://github.com/seanpm2001/Bliss_Browser_Uninstaller
//// Bliss Browser support modules (53)
https://github.com/seanpm2001/Bliss_Browser_VideoPlayer
https://github.com/seanpm2001/Bliss_Browser_PDFMode
https://github.com/seanpm2001/Bliss_Browser_ImageViewer
https://github.com/seanpm2001/Bliss_Browser_AudioPlayer
https://github.com/seanpm2001/Bliss_Browser_Tabs
https://github.com/seanpm2001/Bliss_Browser_Themes
https://github.com/seanpm2001/Bliss_Browser_SearchEngines
https://github.com/seanpm2001/Bliss_Browser_DocumentViewer
https://github.com/seanpm2001/Bliss_Browser_EPUBMode
https://github.com/seanpm2001/Bliss_Browser_Fonts
https://github.com/seanpm2001/Bliss_Browser_Onion
https://github.com/seanpm2001/Bliss_Browser_OnionRouter
https://github.com/seanpm2001/Bliss_Browser_JQuery
https://github.com/seanpm2001/Bliss_Browser_RSS
https://github.com/seanpm2001/Bliss_Browser_AtomFeed
https://github.com/seanpm2001/Bliss_Browser_OpenGL
https://github.com/seanpm2001/Bliss_Browser_Acid1
https://github.com/seanpm2001/Bliss_Browser_Acid2
https://github.com/seanpm2001/Bliss_Browser_Acid3
https://github.com/seanpm2001/Bliss_Browser_Notification-Manager
https://github.com/seanpm2001/Bliss_Browser_Theme-Maker
https://github.com/seanpm2001/Bliss_Browser_Addon-Studio
https://github.com/seanpm2001/Bliss_Browser_XUL_Support
https://github.com/seanpm2001/Bliss_Browser_Popup-Manager
https://github.com/seanpm2001/Bliss_Browser_WebGL
https://github.com/seanpm2001/Bliss_Browser_Bookmarks
https://github.com/seanpm2001/Bliss_Browser_Reload
https://github.com/seanpm2001/Bliss_Browser_History
https://github.com/seanpm2001/Bliss_Browser_Import-from-another-browser
https://github.com/seanpm2001/Bliss_Browser_Screenshot-Tool
https://github.com/seanpm2001/Bliss_Browser_Redirection
https://github.com/seanpm2001/Bliss_Browser_Data-Manager
https://github.com/seanpm2001/Bliss_Browser_Cookie-Jar
https://github.com/seanpm2001/Bliss_Browser_SNU-Addon
https://github.com/seanpm2001/Bliss_Browser_Safe-Mode
https://github.com/seanpm2001/Bliss_Browser_File-Manager
https://github.com/seanpm2001/Bliss_Browser_Pocket-Addon
https://github.com/seanpm2001/Bliss_Browser_Account-Manager
https://github.com/seanpm2001/Bliss_Browser_Password-Manager
https://github.com/seanpm2001/Bliss_Browser_MFA-Client
https://github.com/seanpm2001/Bliss_Browser_XMPP
https://github.com/seanpm2001/Bliss_Browser_AJAX
https://github.com/seanpm2001/Bliss_Browser_Widgets
https://github.com/seanpm2001/Bliss_Browser_Favicon
https://github.com/seanpm2001/Bliss_Browser_DoNotTrack
https://github.com/seanpm2001/Bliss_Browser_Allocation
https://github.com/seanpm2001/Bliss_Browser_Page-Inspector
https://github.com/seanpm2001/Bliss_Browser_HTTP
https://github.com/seanpm2001/Bliss_Browser_Torrent
https://github.com/seanpm2001/Bliss_Browser_MobiMode
https://github.com/seanpm2001/Bliss_Browser_Game-Tools
https://github.com/seanpm2001/Bliss_Browser_Performance-Monitor
https://github.com/seanpm2001/Bliss_Browser_Task-Manager
//// Bliss Browser OSMode ports (36)
https://github.com/seanpm2001/Bliss_Browser_OSMode
https://github.com/seanpm2001/Bliss_Browser_OSMode_Ubuntu-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_Debian-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_POSIX-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_Fedora-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_RedHat-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_Gentoo-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_Raspberry-Pi-OS-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode-DragonflyBSD-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode-Arch-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode-LFS-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode-Meadows-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode-Windows-NT-Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_MacOS_Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_iOS_Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_iPadOS_Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_WacOS_Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_NixOS_Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_Android_Shell
https://github.com/seanpm2001/Bliss_Browser_OSMode_FireOS_Shell