-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSNU_REPOLIST.urll
More file actions
2295 lines (1890 loc) · 107 KB
/
SNU_REPOLIST.urll
File metadata and controls
2295 lines (1890 loc) · 107 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
////URLL-version=3;
//// SNU_REPOLIST.urll
//// https://github.com/seanpm2001/URLL-Specification
//// A list of all SNU repositories by @seanpm2001
//// As of 2025, Tuesday, December 30th
//// Unsorted queue
//// Sort at least 5 entries per day until finished, please (starting 2025, October 24th)
//// Note: adding all of these entries on 2025, October 23rd was a project that used up too much of my time on that day.
//// Queue empty (starting 2025, Thursday, November 6th)
//// Do not remove queue
//// End of queue
//// SNU Core (1)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU
//// What SNU will never do (1)
//// As of 2025, Friday, October 24th
https://github.com/seanpm2001/What-SNU-will-never-do
//// SNU Account (6)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_Account
https://github.com/seanpm2001/SNU_Account_Docs
https://github.com/seanpm2001/SNU_AccountSetup
https://github.com/seanpm2001/SNU_2D_Users_Template_Acc
https://github.com/seanpm2001/SNU_Account_Fail2Ban
https://github.com/seanpm2001/SNU_Account_Fail2Ban_Docs
//// SNU CardStack (43)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_CardStack
https://github.com/seanpm2001/SNU_CardStack_GameHouse
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_3TowerStrategy
https://github.com/seanpm2001/SNU_CardStack_GameHouse_3TowerStrategy_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_3TowerStrategy_SeanWallaWalla-CardRoyale
https://github.com/seanpm2001/SNU_CardStack_GameHouse_3TowerStrategy_SeanWallaWalla-CardRoyale_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Banking
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Banking_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_TwentyOne
https://github.com/seanpm2001/SNU_CardStack_GameHouse_TwentyOne_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Banking_TwentyOne-Thresholds
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Banking_TwentyOne-Thresholds_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_CatchAndCollect
https://github.com/seanpm2001/SNU_CardStack_GameHouse_CatchAndCollect_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Collecting
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Collecting_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Comparing
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Comparing_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Fishing
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Fishing_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Legacy2017
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Legacy2017_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Matching
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Matching_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Poker
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Poker_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Roleplay
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Roleplay_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Shedding
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Shedding_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Shedding_CrazyEights
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Shedding_CrazyEights_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Shedding_Solitaire
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Shedding_Solitaire_Docs
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Tricking
https://github.com/seanpm2001/SNU_CardStack_GameHouse_Tricking_Docs
https://github.com/seanpm2001/SNU_CardStack_Graphics
https://github.com/seanpm2001/SNU_CardStack_Graphics_Docs
https://github.com/seanpm2001/SNU_CardStack_Market
https://github.com/seanpm2001/SNU_CardStack_Market_Docs
https://github.com/seanpm2001/SNU_CardStack_Users
https://github.com/seanpm2001/SNU_CardStack_Users_Docs
//// SNU Evidence Locker (6)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_Evidence_Locker
https://github.com/seanpm2001/SNU_Evidence_Locker_Docs
https://github.com/seanpm2001/SNU_2D_EvidenceLocker
https://github.com/seanpm2001/SNU_2D_EvidenceLocker_Docs
https://github.com/seanpm2001/SNU_EvidenceLocker_AddToEvidenceLocker
https://github.com/seanpm2001/SNU_EvidenceLocker_AddToEvidenceLocker_Docs
//// SNU TableTop Gamehouse (1)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_2D_TableTopGameHouse
//// SNU 0D Mode (1)
//// As of 2025, Monday, October 27th
https://github.com/seanpm2001/SNU_0DMode
//// SNU 1D Mode (1)
//// As of 2025, Monday, October 27th
https://github.com/seanpm2001/SNU_1D_Mode
//// SNU 2D
//// Located elsewhere (in this file)
//// SNU 2D 30th Anniversary of the World Wide Web (1)
//// As of 2025, Monday, October 27th
https://github.com/seanpm2001/SNU_2D_30th-anniversary-of-the-WWW-2019
//// SNU 2D 3D printing (1)
//// As of 2025, Monday, October 27th
https://github.com/seanpm2001/SNU_2D_3DPrinting
//// SNU 2D 4Chan Legends (1)
//// As of 2025, Monday, October 27th
https://github.com/seanpm2001/SNU_2D_4Chan_Legends
//// SNU 2D Ad System (2)
//// As of 2025, Sunday, October 26th
https://github.com/seanpm2001/SNU_2D_AD_SYS
https://github.com/seanpm2001/SNU_2D_AD_SYS_Blockchain
//// SNU 2D Algorithm (1)
//// As of 2025, Sunday, October 26th
https://github.com/seanpm2001/SNU_2D_Algorithm
//// SNU 2D Amazon Compatibility Mode (1)
//// As of 2025, Sunday, October 26th
https://github.com/seanpm2001/SNU_2D_AmazonCompatibilityMode
//// SNU 2D Amish Center (1)
//// As of 2025, Sunday, October 26th
https://github.com/seanpm2001/SNU_2D_AmishCenter
//// SNU 2D App Startup (1)
//// As of 2025, Sunday, October 26th
https://github.com/seanpm2001/SNU_2D_AppStartup
//// SNU 2D Beliefs (32)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_2D_Beliefs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Agnosticism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Agnosticism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Atheism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Atheism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Buddhism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Buddhism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Christianity
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Christianity_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Jainism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Jainism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Baha-i-ism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Baha-i-ism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Judaism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Judaism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Islam
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Islam_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Hinduism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Hinduism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Sikhism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Sikhism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Samaritanism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Samaritanism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Druze
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Druze_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Mormonism
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Mormonism_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Cult.Scientology
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Cult.Scientology_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Cult.Ancient-Egypt
https://github.com/seanpm2001/SNU_2D_Beliefs_Category_Cult.Ancient-Egypt_Docs
https://github.com/seanpm2001/SNU_2D_Beliefs_Docs
//// SNU 2D Big Buck Bunny Full Suite (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_BigBuckBunnyFullSuite
//// SNU 2D Books (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_Books
//// SNU 2D Business (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_Business
//// SNU 2D Cache (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_Cache
//// SNU 2D Calling Center (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_Calling_Center
//// SNU 2D Character Support (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_Character_Support
//// SNU 2D Charcast (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_Charcast
//// SNU 2D Cloud Gaming (1)
//// As of 2025, Tuesday, October 28th
https://github.com/seanpm2001/SNU_2D_CloudGaming
//// SNU 2D Core (1)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_2D
//// SNU 2D CloudDrive (32)
//// As of 2025, Tuesday, October 21st
https://github.com/seanpm2001/SNU_2D_CloudDrive
https://github.com/seanpm2001/SNU_2D_CloudDrive_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Amazon_Drive
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Amazon_Drive_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Degoo
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Degoo_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Dropbox
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Dropbox_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Google_Drive
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Google_Drive_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_MediaFire
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_MediaFire_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_OneDrive
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_OneDrive_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_PCloud
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_PCloud_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_ProtonDrive
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_ProtonDrive_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_SNU-Drive
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_SNU-Drive_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_SNU
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_SNU_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_WacOS_Cloud
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_WacOS_Cloud_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Yandex_Cloud
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Yandex_Cloud_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Yandex_Disk
https://github.com/seanpm2001/SNU_2D_CloudDrive_Modes_Yandex_Disk_Docs
https://github.com/seanpm2001/SNU_2D_CloudDrive_Plans
https://github.com/seanpm2001/SNU_2D_CloudDrive_Plans_Docs
//// SNU 2D Dialup Experience (1)
//// As of 2025, Saturday, October 25th
https://github.com/seanpm2001/SNU_2D_DialupExperience
//// SNU 2D CompuSmell (1)
//// As of 2025, Wednesday, October 29th
https://github.com/seanpm2001/SNU_2D_CompuSmell
//// SNU 2D Copypasta Kitchen (1)
//// As of 2025, Wednesday, October 29th
https://github.com/seanpm2001/SNU_2D_Copypasta_Kitchen
//// SNU 2D CSS Test References (1)
//// As of 2025, Wednesday, October 29th
https://github.com/seanpm2001/SNU_2D_CSS_Test_References
//// SNU 2D Download More RAM (Joke page) (1)
//// As of 2025, Wednesday, October 29th
https://github.com/seanpm2001/SNU_2D_DownloadMoreRAM_JokePage_
//// SNU 2D DMail Client (1)
//// As of 2025, Wednesday, October 29th
https://github.com/seanpm2001/SNU_2D_DMailClient
//// SNU 2D Digg Mode (1)
//// As of 2025, Wednesday, October 29th
https://github.com/seanpm2001/SNU_2D_DiggMode
//// SNU 2D EarthDay (3)
//// As of 2025, Saturday, October 25th
https://github.com/seanpm2001/SNU_2D_EarthDay
https://github.com/seanpm2001/SNU_2D_Earth-Day-2020
https://github.com/seanpm2001/SNU_2D_Earth-Day-2019
//// SNU 2D Ekistics (2)
//// As of 2025, Saturday, October 25th
https://github.com/seanpm2001/SNU_2D_Ekistics
https://github.com/seanpm2001/SNU_2D_Ekistics_Docs
//// SNU 2D Encyclopedia (1)
//// As of 2025, Saturday, October 25th
https://github.com/seanpm2001/SNU_2D_Encyclopedia
//// SNU 2D Engine Room (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_Engine-room
//// SNU 2D eGret (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_eGret
//// SNU 2D Erotica (3)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_Erotica
https://github.com/seanpm2001/SNU_2D_Erotica_Ethnicities
https://github.com/seanpm2001/SNU_2D_Erotica_Ethnicities_Docs
//// SNU 2D eSchool (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_eSchool
//// SNU 2D eSports (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_eSports
//// SNU 2D Evidence Locker (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_EvidenceLocker_Docs
//// SNU 2D Fandom Wikia Mode (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_Fandom_Wikia_Mode
//// SNU 2D FileExtension Help (1)
//// As of 2025, Thursday, October 30th
https://github.com/seanpm2001/SNU_2D_FileExtensionHelp
//// SNU 2D Film Plaza (1)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_Film_Plaza
//// SNU 2D FontMill (1)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_FontMill
//// SNU 2D Fonts (1)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_Fonts
//// SNU 2D GardenTalk (1)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_GardenTalk
//// SNU 2D GardenTalk (2)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_Health
https://github.com/seanpm2001/SNU_2D_Health_Extra_Birdbumps
//// SNU 2D HTML Test References (1)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_HTML_Test_References
//// SNU 2D HTTP Status Code List (1)
//// As of 2025, Friday, October 31st
https://github.com/seanpm2001/SNU_2D_HTTPStatusCodeList
//// SNU 2D IdeaBoard (1)
//// As of 2025, Saturday, November 1st
https://github.com/seanpm2001/SNU_2D_IdeaBoard
//// SNU 2D Internet Museum (1)
//// As of 2025, Saturday, November 1st
https://github.com/seanpm2001/SNU_2D_InternetMuseum
//// SNU 2D JavaScript Math Center (1)
//// As of 2025, Saturday, November 1st
https://github.com/seanpm2001/SNU_2D_JavaScript_Math_Center
//// SNU 2D JavaScript Test References (1)
//// As of 2025, Saturday, November 1st
https://github.com/seanpm2001/SNU_2D_JavaScript_Test_References
//// SNU 2D Jobs (1)
//// As of 2025, Saturday, November 1st
https://github.com/seanpm2001/SNU_2D_Jobs
//// SNU 2D Ken Thompson Memorial (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_KenThompsonMemorial
//// SNU 2D Life Stories (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_LifeStories
//// SNU 2D LoopG (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_LoopG
//// SNU 2D MalwareViru Repo Mode (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_MalwareViru_RepoMode
//// SNU 2D Martin Luther King Jr. Memorial (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_MartinLutherKingJRMemorial
//// SNU 2D Meme Gen (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_Meme_Gen
//// SNU 2D Memes (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_Memes
//// SNU 2D Messenger (1)
//// As of 2025, Sunday, November 2nd
https://github.com/seanpm2001/SNU_2D_Messenger
//// SNU 2D News (1)
//// As of 2025, Monday, November 3rd
https://github.com/seanpm2001/SNU_2D_News
//// SNU 2D New Years SNU Page (1)
//// As of 2025, Monday, November 3rd
https://github.com/seanpm2001/SNU_2D_NewYearsSNUPage
//// SNU 2D Nitter Mode (1)
//// As of 2025, Monday, November 3rd
https://github.com/seanpm2001/SNU_2D_NitterMode
//// SNU 2D OpenVex (2)
//// As of 2025, Monday, November 3rd
https://github.com/seanpm2001/SNU_2D_OpenVex
https://github.com/seanpm2001/SNU_2D_OpenVex_Mod_FOTW_Index
//// SNU 2D Pi Day (3.14) center (1)
//// As of 2025, Monday, November 3rd
https://github.com/seanpm2001/SNU_2D_PiDay_3.14_Center
//// SNU 2D ProgrammingTools (1,108)
//// As of 2025, Tuesday, December 30th
https://github.com/seanpm2001/SNU_ProgrammingTools
https://github.com/seanpm2001/SNU_2D_ProgrammingTools
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_-Repositories
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_-TAG
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_Facade
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_GitHubMode
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_Home
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_Root
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_Samples
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_Snowcraft
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Mod_UserModes
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_Wiki_2021
https://github.com/seanpm2001/Template_SNU_2D_ProgrammingTools_V4
https://github.com/seanpm2001/Template_SNU_2D_ProgrammingTools_V5
https://github.com/seanpm2001/Template_SNU_2D_ProgrammingTools_V6
https://github.com/seanpm2001/Template_SNU_2D_ProgrammingTools_V7
//// Note: some duplicates are present. Community: Find duplicates, and get rewards (stars, follows, code review, etc.)
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Blockly
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cobra
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cyclone
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CPython
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JScript_.NET
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JSSS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jython
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_KiXtart
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MSDOS-Style
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MATLAB
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Nunjucks
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Octave
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scratch
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Squeak
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SXML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Visual_Basic_Script
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BATCH
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GDB
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Procfile
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Earthly
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Singularity
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BitBake
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jinja
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SASS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_B
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SGML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Motorla-S-Record
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Starlark
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Inform
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Inno_Setup
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DIGITAL-Command-Language
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lex
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Puppet
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_POV-RAY-SDL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Shaderlab
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Isabelle
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Julia
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_OpenSCAD
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_E
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NASL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NSIS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AMPL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Java
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JavaScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AssemblyScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Fancy
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Smarty
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_KiXTart
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CoffeeScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Kotlin
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lua
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Caml_-Categorized_Abstract_Machine_Language-
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Smalltalk
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JupyterNotebook
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GAP
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LOLCODE
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Markdown
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_VCL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_IronPython
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RichTextFormat
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FreeMarker
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Liquid
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mathematica
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Modelica
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Dhall
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Apex
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Slim
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NVidia_Cuda
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_XSLT
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Makefile
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-C
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_EJS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Octave
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Verona
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cyclone
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Diff
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-C-Plus-Plus
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Pascal
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Arduino
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jython
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SXML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JSSS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JScript_.NET
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Perl
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Prolog
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mustache
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SWIG
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Nunjucks
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SuperCollider
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TOML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Python
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_QML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Visual_Basic_Script
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CSV
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gradle
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LabVIEW
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Rust
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Raku
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jasmin
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SAS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PythonTraceback
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CSON
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Maxima
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ReStructuredText
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_R
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RobotFramework
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AspectJ
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RUNOFF
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PowerFX
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ABNF
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PostCSS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Max
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ABAP-CDS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_OrgMode
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SublimeText
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scala
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TypeScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SMT
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LiveCode
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_VBA
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_WindowsRegistry
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_INTERCAL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Vala
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_VirtualHardDiskLanguage
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AutoHotKey
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RDoc
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Hy
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RPC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_KRC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Vue.js
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Swift-Apple-
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Befunge
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PLSQL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AGS-Script
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Chapel
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PlantUML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_XML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Zig
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_S-RECODE-Template
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TXL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Module-Management-System
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LiveScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wierd
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Elm
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gherkin
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_S-RECODE-Template
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TXL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Module-Management-System
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LiveScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wierd
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Augeas
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_OpenCL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_X-Pixmap
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FP
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CH
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MoonScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_IDL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TSX
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Textile
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JSON5
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_QueryByExample
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Latte
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_nesC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Yacc
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BlitzBasic
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_McFunction
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SASL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_VisualLogic
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Amulet
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mallard
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RPGLE
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Grammatical-Framework
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DCPU-16-ASM
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lucid
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ISWIM
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JSON
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_C_-EDK2-
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Verilog-AMS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Smali
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Terra
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_KiCad-Layout
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_KiCad-Schematic
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MLIR
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Macaulay2
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Motoko
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Nemerle
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Vim-Snippet
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FreeBasic
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DroppedText
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Seanpm2001-Matrix
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_URLL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JFlex
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cadence
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Unity3DAsset
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ProGuard
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wavefront-Material
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CAP-CDS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jetbrains-MPS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ASP
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ASP.NET
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BSDL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FLUX
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BibTeX
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CSound-Document
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CSound-Score
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gerber-Image
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GetText
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GraphViz-DOT
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_IntelHexBinary
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PostScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LESS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Limbo
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Miranda
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ApachePig
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_REBOL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PureBASIC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Ragel
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Verilog
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Refal
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SCSS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Sed
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SQL_-Structured_Query_Language-
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_StandardML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TeX
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_TSQL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Linker-Script
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Monkey-C
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Pod6
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Perl6
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wavefront-Object
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Berry
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scratch-1.x
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scratch-2.x
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scratch-3.x
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Stan
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Batchfile
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PowerShell
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Groovy
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_VisualBasic.NET
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Roff
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_EBNF
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scheme
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PlPGSQL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PureScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SQLPL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_RenderScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Monkey
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Stata
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BlitzMax
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Scheme
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ASP_Dot_NET
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ActionServerPages-ASP-
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ABC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HTTP
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CSHTML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_VBHTML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_M4Sugar
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Unix-Assembly
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Linux-Kernel-Module
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_STAR
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BrighterScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Closure-Templates
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_PEG.js
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jakarta-Server-Pages
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Java-Server-Pages
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_XTend
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SDLang
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_StrictYAML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_YAML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gleam
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_YASnippet
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wren
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Component-Pascal
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ColdFusion
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Oxygene
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SugarSS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_WebIDL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ColdFusion-CFC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Protocol-Buffer
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_While
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Zeek
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lobster
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MAXScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Little
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Antlers
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_mIRC-Script
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Slash
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Bro
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_jq
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CUE
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SQF
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Processing.js
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BlooP
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FlooP
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BLISS
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SNOBOL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Commenter
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Ermine
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Processing
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DataWeave
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gremlin
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mojom
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wasp
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Sweave
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DSergeant
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GRANNY
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MCPYE-Command-Language
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-CSharp
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-JPlusPlus
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-JSharp
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Beef
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AGRAN
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Ezhil
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BlockQL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Harbour
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Fuzzy-Markup-Language-FML
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Tampio
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cairo
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Plankalk-u-l
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Whitespace
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Wisp
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_XBasePlusPlus
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_SmPL
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GolfScript
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BennuGD
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Triton_OpenAI
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mojo
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MQL4
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MQL5
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CWeb
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_WEB
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Turing
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_1C-Enterprise/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ActionScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AppleScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Assembly/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Agda/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Ada/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_API-Blueprint/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AWK/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Alloy/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AngelScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ApacheConf/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Astro/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ASCIIDoc/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AutoIt/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ABAP/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ALGOL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ALS/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ANTLR/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_AIDL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Boo/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Ballerina/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BrightScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BitBake/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Brainfuck/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Bicep/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Bikeshed/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Blade/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Boogie/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_BASIC
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_C
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_C_Plus_Plus/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_COBOL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_C_Sharp/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CSS_-Cascade_Styling_Sheets-/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cython/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Clean/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Crystal/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Clojure/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CMake/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Ceylon/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Cool/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CartoCSS/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CLIPS/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonWorkflowLanguage/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_CodeQL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_D/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Dylan/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Dart/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DogeScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Docker/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Desktop/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DM/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_DTrace/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Eiffel/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Elm/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Elixir/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Erlang/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Earthly/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_EmacsLisp/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Eagle/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Euphoria/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Epigram/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FORTRAN_-FORmula_TRANslation-/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_F_-Sharp-/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FStar/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Fish/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Fluent/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Factor/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Fantom/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Forth/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_FCL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Go-_-Francis_McCabe_2003-/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Go_-Google_2009-/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GDScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gherkin/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GDB/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GSC/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_G-CODE
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GnuPlot/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GLSL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Gosu/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GCC-Machine-Description/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_GN/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Haskell/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Hack/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Haxe/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HXML/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HaProxy/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HyPhy/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Handlebars/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HCL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HLSL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HAML/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HiveQL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Hope/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_HolyC/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_IDL/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Idris/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_ImageJ/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Inform/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_INI/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Inno-Setup/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Io/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Isabelle/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Julia/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Java/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JavaScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jinja/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_JavaScriptPlusPlus/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jsonnet/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Jade/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Joy/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Kotlin/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_kvlang/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_KiCad/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lua/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LOLCODE/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LogTalk/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LLVM/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lingo/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Logos/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LookML/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Logcat/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Lean/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_LispFlavoredErlang/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MoonScript/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Markdown/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mercury/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mathematica/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Modelica/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Makefile/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_MediaWiki/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Meson/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_M/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Metal/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_M4/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Malbolge/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mako/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Modula-2/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Modula-3/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Mallard/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Nim/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_nesC/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Nix/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NetREXX/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NewLisp/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Nu/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NGINX/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_NextFlow/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-C/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_Objective-CPP/
https://github.com/seanpm2001/SNU_2D_ProgrammingTools_IDE_OpenQASM/