-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathexternal-links.json
More file actions
6854 lines (6854 loc) · 234 KB
/
external-links.json
File metadata and controls
6854 lines (6854 loc) · 234 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
{
"generated_at": "2025-08-31T12:37:58.665Z",
"summary": {
"total_files_processed": 275,
"files_with_errors": 0,
"total_youtube_links": 525,
"total_twitter_links": 406,
"total_image_links": 465,
"youtube_by_type": {
"direct_link": 331,
"iframe_embed": 194
},
"twitter_by_type": {
"direct_link": 212,
"embedded_tweet": 194
},
"unique_domains": [
"doomwiki.org",
"github.com",
"images.igdb.com",
"images.launchbox-app.com",
"images.nintendolife.com",
"images.pcgamingwiki.com",
"mario.wiki.gallery",
"pbs.twimg.com",
"picfiles.alphacoders.com",
"psxdatacenter.com",
"static.wikia.nocookie.net",
"twitter.com",
"upload.wikimedia.org",
"user-images.githubusercontent.com",
"vgboxart.com",
"www.hardcoregaming101.net",
"www.mobygames.com",
"www.oldgames.sk",
"www.youtube.com",
"x.com",
"youtu.be"
]
},
"youtube": {
"ViRR7qoeMpU": {
"url": "https://www.youtube.com/embed/ViRR7qoeMpU",
"type": "direct_link",
"files": [
"categories/Introduction.md"
],
"title": "What Is The Point Of Hexadecimal? (GCSE)",
"author": "The Tech Train",
"fetched_at": "2025-08-31T12:37:59.390Z"
},
"KN8YgJnShPM": {
"url": "https://www.youtube.com/embed/KN8YgJnShPM",
"type": "direct_link",
"files": [
"categories/Introduction.md"
],
"title": "Files & File Systems: Crash Course Computer Science #20",
"author": "CrashCourse",
"fetched_at": "2025-08-30T22:26:15.041Z"
},
"V3_vc7BO9lU": {
"url": "https://www.youtube.com/embed/V3_vc7BO9lU",
"type": "direct_link",
"files": [
"categories/Introduction.md"
],
"title": "Malware Analysis Bootcamp - Extracting Strings",
"author": "HackerSploit",
"fetched_at": "2025-08-30T22:26:16.670Z"
},
"hhgxsrAFyz8": {
"url": "https://www.youtube.com/embed/hhgxsrAFyz8",
"type": "direct_link",
"files": [
"categories/Introduction.md"
],
"title": "What are EXE files made of?",
"author": "Bisqwit",
"fetched_at": "2025-08-30T22:26:18.157Z"
},
"EJh4BIujpHA": {
"url": "https://www.youtube.com/embed/EJh4BIujpHA?si=0OfwRXjM9JiWavqV",
"type": "direct_link",
"files": [
"categories/Introduction.md"
],
"title": "The Complete History of the Home Microprocessor",
"author": "TechKnowledge Video",
"fetched_at": "2025-08-30T22:26:19.948Z"
},
"6jSKldt7Eqs": {
"url": "https://www.youtube.com/embed/6jSKldt7Eqs",
"type": "direct_link",
"files": [
"categories/Introduction.md"
],
"title": "How a CPU works and Introduction to Assembler - bin 0x04",
"author": "LiveOverflow",
"fetched_at": "2025-08-30T22:26:21.585Z"
},
"7vWSi44ZTSw": {
"url": "https://www.youtube.com/embed/7vWSi44ZTSw?si=OHZ1gkfvvUTNeM7k",
"type": "direct_link",
"files": [
"categories/companies/Companies.md",
"categories/misc/Industry.md"
],
"title": "GRAND THEFT AUTO 1996 Making Of - GTA - | Retro Gaming | BBC Archive",
"author": "BBC Archive",
"fetched_at": "2025-08-30T22:27:38.593Z"
},
"usaioMbE8EQ": {
"url": "https://www.youtube.com/embed/usaioMbE8EQ",
"type": "direct_link",
"files": [
"categories/companies/datel.md"
],
"title": "LGR Oddware - DOS PC Action Replay: The Ultimate Game Buster",
"author": "LGR",
"fetched_at": "2025-08-30T22:27:40.098Z"
},
"ImR-TdDAIJE": {
"url": "https://www.youtube.com/embed/ImR-TdDAIJE",
"type": "direct_link",
"files": [
"categories/consoles/3ds.md"
],
"title": "How a Terrible Game Cracked the 3DS's Security - Early Days of 3DS Hacking",
"author": "Tech Rules",
"fetched_at": "2025-08-30T22:27:41.765Z"
},
"8AbiBOK8jZ0": {
"url": "https://www.youtube.com/embed/8AbiBOK8jZ0?si=1ftjO79ry3ld1i6u",
"type": "direct_link",
"files": [
"categories/consoles/Arcade.md"
],
"title": "2014 Eugene Jarvis describes Robotron 2084 in detail",
"author": "John Thompson II",
"fetched_at": "2025-08-30T22:27:43.260Z"
},
"rhM8NAMW_VQ": {
"url": "https://www.youtube.com/embed/rhM8NAMW_VQ?si=hHhQDzRVGSHGOtsp",
"type": "direct_link",
"files": [
"categories/consoles/Arcade.md",
"pages/Industry/Copyright.md"
],
"title": "Classic Game Postmortem: Ms. Pac-Man",
"author": "Game Developers Conference",
"fetched_at": "2025-08-30T22:27:45.044Z"
},
"Mse3Wo0hbLE": {
"url": "https://www.youtube.com/embed/Mse3Wo0hbLE?si=8otkKlDYUzI7koyQ",
"type": "direct_link",
"files": [
"categories/consoles/Arcade.md"
],
"title": "MAME is 25 years old... | MVG",
"author": "Modern Vintage Gamer",
"fetched_at": "2025-08-30T22:28:39.395Z"
},
"wAUnUWYaA5s": {
"url": "https://www.youtube.com/embed/wAUnUWYaA5s?si=zhEr2jsf42yx0Hr-",
"type": "direct_link",
"files": [
"categories/consoles/Arcade.md"
],
"title": "CppCon 2016: Miodrag Milanović “The MAME story: From C to Modern C++"",
"author": "CppCon",
"fetched_at": "2025-08-30T22:28:41.012Z"
},
"6jwtM3EamcQ": {
"url": "https://www.youtube.com/embed/6jwtM3EamcQ",
"type": "direct_link",
"files": [
"categories/consoles/Game.com.md"
],
"title": "Symphony of the Night's Tiger GameCom Port is Unbelievable! | Punching Weight | SSFF",
"author": "Stop Skeletons From Fighting",
"fetched_at": "2025-08-30T22:28:42.680Z"
},
"HyzD8pNlpwI": {
"url": "https://www.youtube.com/embed/HyzD8pNlpwI",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "The Ultimate Game Boy Talk (33c3)",
"author": "media.ccc.de",
"fetched_at": "2025-08-30T22:28:44.334Z"
},
"RZUDEaLa5Nw": {
"url": "https://www.youtube.com/embed/RZUDEaLa5Nw",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "The Game Boy, a hardware autopsy - Part 1: the CPU [PART 2 OUT NOW!]",
"author": "JackTech",
"fetched_at": "2025-08-30T22:28:45.863Z"
},
"ecTQVa42sJc": {
"url": "https://www.youtube.com/embed/ecTQVa42sJc",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "The Game Boy, a hardware autopsy - Part 2: memory mapping",
"author": "JackTech",
"fetched_at": "2025-08-30T22:28:47.454Z"
},
"uaeLY441Fwc": {
"url": "https://www.youtube.com/embed/uaeLY441Fwc?color=white&theme=dark",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "Super Game Boy SNES - Part 1 of 3: The Super Game Boy - A Complete Super Game Boy Review",
"author": "Pug Hoof Gaming",
"fetched_at": "2025-08-30T22:28:48.960Z"
},
"llIz6qjDfLc": {
"url": "https://www.youtube.com/embed/llIz6qjDfLc?color=white&theme=dark",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md",
"pages/consoles/gameboy/GameboyDevelopmentKitHardware.md"
],
"title": "Lost Content: The Wide-Boy 64",
"author": "Pikasprey Yellow",
"fetched_at": "2025-08-30T22:28:50.570Z"
},
"43FfJvd-YP4": {
"url": "https://www.youtube.com/embed/43FfJvd-YP4?color=white&theme=dark",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "Ben Heck Reverse Engineers Game Boy Printer",
"author": "element14 presents",
"fetched_at": "2025-08-30T22:28:52.224Z"
},
"NiMx10PV_cw": {
"url": "https://www.youtube.com/embed/NiMx10PV_cw?color=white&theme=dark",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "Playing Gameboy Games on N64? Super GB Booster Test & Review",
"author": "Pop Culture Exchange",
"fetched_at": "2025-08-30T22:28:53.748Z"
},
"SxF2e6DUMRo": {
"url": "https://www.youtube.com/embed/SxF2e6DUMRo?color=white&theme=dark",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md"
],
"title": "SGR Reviews - Datel Game Booster for Sony Playstation [PS1]",
"author": "JohnnyBareToes",
"fetched_at": "2025-08-30T22:28:55.378Z"
},
"5ilnsca4jYc": {
"url": "https://www.youtube.com/watch?v=5ilnsca4jYc",
"type": "direct_link",
"files": [
"categories/consoles/GameBoy.md",
"categories/misc/Industry.md"
],
"title": "Terminator 2, R-Type, Altered Beast with Jas Austin - The Retro Hour EP320",
"author": "The Retro Hour (Retro Gaming Podcast)",
"fetched_at": "2025-08-30T22:28:56.924Z"
},
"AFRf87SqWrw": {
"url": "https://www.youtube.com/embed/AFRf87SqWrw",
"type": "direct_link",
"files": [
"categories/consoles/MSX.md"
],
"title": "MSX Computers - Scrolling, Sprites, and Stereotypes",
"author": "Displaced Gamers",
"fetched_at": "2025-08-30T22:28:58.668Z"
},
"4R779hMGGC4": {
"url": "https://www.youtube.com/embed/4R779hMGGC4",
"type": "direct_link",
"files": [
"categories/consoles/MSX.md"
],
"title": "MSX - Review - Game Sack",
"author": "Game Sack",
"fetched_at": "2025-08-30T22:29:00.304Z"
},
"Kalmryn9_sE": {
"url": "https://www.youtube.com/embed/Kalmryn9_sE?si=3GarbB4oJDhYoxLY",
"type": "direct_link",
"files": [
"categories/consoles/MegaDrive.md"
],
"title": "Game Physics (in Assembler) - Computerphile",
"author": "Computerphile",
"fetched_at": "2025-08-30T22:29:02.010Z"
},
"PSYhSmXBgIw": {
"url": "https://www.youtube.com/embed/PSYhSmXBgIw",
"type": "direct_link",
"files": [
"categories/consoles/MegaDrive.md"
],
"title": "Will You Code the Next Sonic for SEGA Genesis? I Teach You How #1",
"author": "GameHut",
"fetched_at": "2025-08-30T22:29:03.682Z"
},
"tdjVfl_YWd8": {
"url": "https://www.youtube.com/embed/tdjVfl_YWd8",
"type": "direct_link",
"files": [
"categories/consoles/MegaDrive.md"
],
"title": "Code Your Own SONIC Game - Here's How! #2",
"author": "GameHut",
"fetched_at": "2025-08-30T22:29:05.329Z"
},
"tokaUo_m39M": {
"url": "https://www.youtube.com/embed/tokaUo_m39M",
"type": "direct_link",
"files": [
"categories/consoles/N64.md"
],
"title": "The Making of GoldenEye 007 (N64) | Documentary",
"author": "onaretrotip",
"fetched_at": "2025-08-30T22:29:06.882Z"
},
"videoseries": {
"url": "https://www.youtube.com/embed/videoseries?list=PLbfwQwModb-eb7ZMTaqU7ni62imMqheR8",
"type": "direct_link",
"files": [
"categories/consoles/N64.md"
]
},
"Hvx4xXhZMrU": {
"url": "https://www.youtube.com/embed/Hvx4xXhZMrU",
"type": "direct_link",
"files": [
"categories/consoles/Nes.md"
],
"title": "The Making of: ROM City Rampage (Retro City Rampage)",
"author": "VblankEntertainment",
"fetched_at": "2025-08-30T22:29:09.518Z"
},
"dahbvSYV0KA": {
"url": "https://www.youtube.com/embed/dahbvSYV0KA",
"type": "direct_link",
"files": [
"categories/consoles/Nes.md"
],
"title": "Nintendo (NES) Controller - Electronics",
"author": "Displaced Gamers",
"fetched_at": "2025-08-30T22:29:11.155Z"
},
"ZWQ0591PAxM": {
"url": "https://www.youtube.com/embed/ZWQ0591PAxM?si=x6hKn2GerV5wqSSg",
"type": "direct_link",
"files": [
"categories/consoles/Nes.md"
],
"title": "How we fit an NES game into 40 Kilobytes",
"author": "Morphcat Games",
"fetched_at": "2025-08-30T22:29:12.689Z"
},
"-csXgGstvHg": {
"url": "https://www.youtube.com/embed/-csXgGstvHg",
"type": "direct_link",
"files": [
"categories/consoles/Nes.md",
"pages/Introduction/MemoryCorruption.md"
],
"title": "Deliberate NES Memory Corruption",
"author": "javidx9",
"fetched_at": "2025-08-30T22:29:14.228Z"
},
"4fAeUx8A-OE": {
"url": "https://www.youtube.com/embed/4fAeUx8A-OE?si=w45EcMxhSPX2rLi-",
"type": "direct_link",
"files": [
"categories/consoles/PC.md"
],
"title": "Cicoparser: Full game reverse engineering",
"author": "Gabriel Archandel",
"fetched_at": "2025-08-30T22:29:15.869Z"
},
"YvckyWxHAIw": {
"url": "https://www.youtube.com/embed/YvckyWxHAIw",
"type": "direct_link",
"files": [
"categories/consoles/PC.md"
],
"title": "DOS Gaming Aspect Ratio - 320x200",
"author": "Displaced Gamers",
"fetched_at": "2025-08-30T22:29:17.571Z"
},
"jVoV2VysX3M": {
"url": "https://www.youtube.com/embed/jVoV2VysX3M?si=meImKQclk6YpLbOr",
"type": "direct_link",
"files": [
"categories/consoles/PC.md"
],
"title": "Evolution of NVIDIA Tech Demos 1999-2022 w/ Facts",
"author": "Game Evolutions",
"fetched_at": "2025-08-30T22:29:19.085Z"
},
"gcdxsV0Qo0s": {
"url": "https://www.youtube.com/embed/gcdxsV0Qo0s",
"type": "direct_link",
"files": [
"categories/consoles/PS1.md"
],
"title": "Sony PlayStation VCD Player Add-On Card!",
"author": "Scarlet Sprites",
"fetched_at": "2025-08-30T22:29:20.793Z"
},
"ZchqpHU_Hfk": {
"url": "https://www.youtube.com/embed/ZchqpHU_Hfk",
"type": "direct_link",
"files": [
"categories/consoles/PS1.md"
],
"title": "This Speedrun Tech Breaks PS1 Games (TAS)",
"author": "EZScape",
"fetched_at": "2025-08-30T22:29:22.348Z"
},
"fwCVTqSmioI": {
"url": "https://www.youtube.com/watch?v=fwCVTqSmioI",
"type": "direct_link",
"files": [
"categories/consoles/PS1.md",
"categories/consoles/PS2.md"
],
"title": "20 Years of PlayStation®. Console development past and future - Unite Europe 2015",
"author": "Unity",
"fetched_at": "2025-08-30T22:29:24.061Z"
},
"qBDx83UZ1nw": {
"url": "https://www.youtube.com/embed/qBDx83UZ1nw?si=yfLTdn_1rA9ykb7d",
"type": "direct_link",
"files": [
"categories/consoles/SG1000.md"
],
"title": "The First SEGA TV Game! Meet The SG-1000 (and SC-3000) Every Game Included!!",
"author": "GTV Japan",
"fetched_at": "2025-08-30T22:29:25.593Z"
},
"EgAsiBv1TJk": {
"url": "https://www.youtube.com/embed/EgAsiBv1TJk",
"type": "direct_link",
"files": [
"categories/consoles/Saturn.md"
],
"title": "The Sega ST-V Board - The Best and Worst Games of the Arcade Saturn | Kim Justice",
"author": "Kim Justice",
"fetched_at": "2025-08-30T22:29:27.148Z"
},
"zrn0QavLMyo": {
"url": "https://www.youtube.com/embed/zrn0QavLMyo",
"type": "direct_link",
"files": [
"categories/consoles/SuperNintendo.md"
],
"title": "SNES Audio System Overview - SPC700 Series pt. 1",
"author": "Retro Game Mechanics Explained",
"fetched_at": "2025-08-30T22:29:28.771Z"
},
"ItKIhAiNCLg": {
"url": "https://www.youtube.com/embed/ItKIhAiNCLg",
"type": "direct_link",
"files": [
"categories/consoles/SuperNintendo.md"
],
"title": "The Lost History of The NINTENDO GATEWAY SYSTEM - Rare Console History",
"author": "Top Hat Gaming Man",
"fetched_at": "2025-08-30T22:29:30.410Z"
},
"xurqNOafU6Y": {
"url": "https://www.youtube.com/embed/xurqNOafU6Y",
"type": "direct_link",
"files": [
"categories/consoles/SuperNintendo.md"
],
"title": "SNES vs. GBA: Graphics Comparison of All 48 SNES GBA Ports",
"author": "CaptRobau",
"fetched_at": "2025-08-30T22:29:33.186Z"
},
"dRwjBcqHMpY": {
"url": "https://www.youtube.com/embed/dRwjBcqHMpY",
"type": "direct_link",
"files": [
"categories/consoles/SuperNintendo.md"
],
"title": "SNES Save Editing with Link to the Past (feat. My Life in Gaming and Game Sack)",
"author": "Displaced Gamers",
"fetched_at": "2025-08-30T22:29:34.806Z"
},
"FlOAd81a1aI": {
"url": "https://www.youtube.com/watch?v=FlOAd81a1aI",
"type": "direct_link",
"files": [
"categories/consoles/SuperNintendo.md",
"pages/consoles/snes/SNESDevkitHardware.md"
],
"title": "🚨 RARE!!! Footage Inside 1990 Nintendo Headquarters in Kyoto",
"author": "Pernoelle",
"fetched_at": "2025-08-30T22:29:36.449Z"
},
"Kg6RwOVS334": {
"url": "https://www.youtube.com/embed/Kg6RwOVS334",
"type": "direct_link",
"files": [
"categories/consoles/Vectrex.md"
],
"title": "GCE's Mad Hack of a Console",
"author": "The Science Elf",
"fetched_at": "2025-08-30T22:29:38.681Z"
},
"vYsG_LdaIow": {
"url": "https://www.youtube.com/watch?v=vYsG_LdaIow",
"type": "direct_link",
"files": [
"categories/consoles/Wonderswan.md"
],
"title": "Terrors 01: Ghost Inn (Japanese Horror on the WonderSwan!)",
"author": "Tara A. Devlin",
"fetched_at": "2025-08-30T22:29:40.242Z"
},
"7YwvOPcN2Jw": {
"url": "https://www.youtube.com/watch?v=7YwvOPcN2Jw",
"type": "direct_link",
"files": [
"categories/consoles/Wonderswan.md"
],
"title": "Terrors 02: Dear Friend (Japanese Horror on the WonderSwan!)",
"author": "Tara A. Devlin",
"fetched_at": "2025-08-30T22:29:41.880Z"
},
"XusAmjdHp_8": {
"url": "https://www.youtube.com/watch?v=XusAmjdHp_8",
"type": "direct_link",
"files": [
"categories/consoles/Wonderswan.md"
],
"title": "Terrors 03: The Tiny Haunted House (Japanese Horror on the WonderSwan!)",
"author": "Tara A. Devlin",
"fetched_at": "2025-08-30T22:29:43.523Z"
},
"57_TobJFzEE": {
"url": "https://www.youtube.com/embed/57_TobJFzEE",
"type": "direct_link",
"files": [
"categories/consoles/Wonderswan.md"
],
"title": "Ring Infinity (Japanese Horror on the WonderSwan!)",
"author": "Tara A. Devlin",
"fetched_at": "2025-08-30T22:29:45.248Z"
},
"LMhrnuj01oY": {
"url": "https://www.youtube.com/embed/LMhrnuj01oY?si=7orEHKZ8cIsoG6V2",
"type": "direct_link",
"files": [
"categories/misc/Books.md"
],
"title": "Writing a 3D game engine without Unity like it's 1995 again",
"author": "ciciplusplus",
"fetched_at": "2025-08-30T22:29:46.896Z"
},
"uMuJWADkMYY": {
"url": "https://www.youtube.com/embed/uMuJWADkMYY",
"type": "direct_link",
"files": [
"categories/misc/Conferences.md"
],
"title": "The First E3",
"author": "Whimsu",
"fetched_at": "2025-08-30T22:29:48.549Z"
},
"OOVUZZr655o": {
"url": "https://www.youtube.com/embed/OOVUZZr655o?si=_NP-ZaoE14TnSAqI",
"type": "direct_link",
"files": [
"categories/misc/Conferences.md"
],
"title": "John Carmack DOOM 3 Keynote (Quakecon 2004)",
"author": "RebelVegans",
"fetched_at": "2025-08-30T22:29:50.043Z"
},
"HqpzBzcvUdw": {
"url": "https://www.youtube.com/watch?v=HqpzBzcvUdw",
"type": "direct_link",
"files": [
"categories/misc/Conferences.md",
"categories/misc/GDC.md"
],
"title": "The History of Game Developers Conference (documentary, 2019/2020)",
"author": "GamersGlobal",
"fetched_at": "2025-08-30T22:29:51.609Z"
},
"VwZi58u1FjI": {
"url": "https://www.youtube.com/embed/VwZi58u1FjI?si=hdShaCr7SG10Am3X",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "GDC Founder Chris Crawford's Dragon Speech",
"author": "Game Developers Conference",
"fetched_at": "2025-08-30T22:29:53.248Z"
},
"a9DlhDRZ0yA": {
"url": "https://www.youtube.com/embed/a9DlhDRZ0yA?si=ItR3cSooTvgHatKQ",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "Shigeru Miyamoto's 1999 GDC Keynote",
"author": "Game Developers Conference",
"fetched_at": "2025-08-30T22:29:56.011Z"
},
"mf_bfLmoOcw": {
"url": "https://www.youtube.com/embed/mf_bfLmoOcw?si=1BWX-c9SnLTirvkF",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "Sega Dreamcast Keynote GDC 1999 with Bernie Stolar",
"author": "freakdave",
"fetched_at": "2025-08-30T22:29:57.632Z"
},
"iCj0OqZ8ByQ": {
"url": "https://www.youtube.com/embed/iCj0OqZ8ByQ?si=jzBl4ABpkb0XH3PN",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "GDC ( Game Development Conference ) 2000 Microsoft keynote ( Prototype Original Xbox Unveiling )",
"author": "OG-XboxMods",
"fetched_at": "2025-08-30T22:30:10.037Z"
},
"uFawiEumVLM": {
"url": "https://www.youtube.com/embed/uFawiEumVLM?si=EzOeek5JpprN6Uhd",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
]
},
"l6he8GFGPzU": {
"url": "https://www.youtube.com/embed/l6he8GFGPzU?si=7Rv0YPS3HLCz9xdl",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "Extended Play - GDC 2002 (incomplete)",
"author": "ENunn",
"fetched_at": "2025-08-30T22:30:12.716Z"
},
"MusKnL2GbQE": {
"url": "https://www.youtube.com/embed/MusKnL2GbQE?si=6nXzztPh3XWHkEfk",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "GDC 2004 - John Carmack Keynote",
"author": "Charlie",
"fetched_at": "2025-08-30T22:30:14.238Z"
},
"RMrj8gdUfCU": {
"url": "https://www.youtube.com/embed/RMrj8gdUfCU?si=ro-uTNmYG1SfHF4q",
"type": "direct_link",
"files": [
"categories/misc/GDC.md"
],
"title": "Satoru Iwata - Heart of a Gamer",
"author": "Game Developers Conference",
"fetched_at": "2025-08-30T22:30:15.833Z"
},
"DtnuaHl378M": {
"url": "https://www.youtube.com/embed/DtnuaHl378M",
"type": "direct_link",
"files": [
"categories/misc/Hacking.md"
],
"title": "Greatest Moments in Hacking History: Samy Kamkar Takes Down Myspace",
"author": "Motherboard",
"fetched_at": "2025-08-30T22:30:17.555Z"
},
"ChmQBK_EaUQ": {
"url": "https://www.youtube.com/embed/ChmQBK_EaUQ",
"type": "direct_link",
"files": [
"categories/misc/Industry.md"
],
"title": "Commercial Breaks - The Battle For Santa's Software (Best quality) - Imagine & Ocean Software",
"author": "Mark R. Cobley-Jones",
"fetched_at": "2025-08-30T22:30:19.259Z"
},
"HpEBUV_g9vU": {
"url": "https://www.youtube.com/embed/HpEBUV_g9vU?si=dRFGtTx7VXNOzYsY",
"type": "direct_link",
"files": [
"categories/misc/Industry.md"
],
"title": "A Visit to id Software (November 1993)",
"author": "CuteFloor",
"fetched_at": "2025-08-30T22:30:20.892Z"
},
"H74kuD1g1wg": {
"url": "https://www.youtube.com/embed/H74kuD1g1wg?si=tnyV7nPXcb_MglSN",
"type": "direct_link",
"files": [
"categories/tools/ProgrammingLanguages.md"
],
"title": "TheGameCreators vs The Fans | DarkBASIC, FPS Creator, GameGuru and the future of GameGuru MAX",
"author": "TannerProductions",
"fetched_at": "2025-08-30T22:30:22.632Z"
},
"aMcJ1Jvtef0": {
"url": "https://www.youtube.com/embed/aMcJ1Jvtef0?si=rNd0Wo1EO2NwxCLY",
"type": "direct_link",
"files": [
"categories/tools/Tools.md"
],
"title": "8 Bit & '8 Bitish' Graphics-Outside the Box",
"author": "Game Developers Conference",
"fetched_at": "2025-08-30T22:30:24.274Z"
},
"k6PWZh0MJ1Y": {
"url": "https://www.youtube.com/embed/k6PWZh0MJ1Y",
"type": "direct_link",
"files": [
"pages/About.md"
],
"title": "Retrogame Archeology",
"author": "Stanford",
"fetched_at": "2025-08-30T22:30:25.997Z"
},
"7QaWQwffmOQ": {
"url": "https://www.youtube.com/embed/7QaWQwffmOQ",
"type": "direct_link",
"files": [
"pages/Introduction/HowEmulatorsWork.md"
],
"title": "#128: Apple II Emulator in React and Typescript?!",
"author": "CT6502",
"fetched_at": "2025-08-30T22:30:27.538Z"
},
"F8kx56OZQhg": {
"url": "https://www.youtube.com/embed/F8kx56OZQhg",
"type": "direct_link",
"files": [
"pages/Introduction/HowEmulatorsWork.md"
],
"title": "NES Emulator Part #1: Bitwise Basics & Overview",
"author": "javidx9",
"fetched_at": "2025-08-30T22:30:29.188Z"
},
"NqTVANK7Mg8": {
"url": "https://www.youtube.com/embed/NqTVANK7Mg8",
"type": "direct_link",
"files": [
"pages/Introduction/HowEmulatorsWork.md"
],
"title": "Commodore 64 Emulation in JavaScript - Imran Nazar - NDC London 2022",
"author": "NDC Conferences",
"fetched_at": "2025-08-30T22:30:30.828Z"
},
"y71lli8MS8s": {
"url": "https://www.youtube.com/embed/y71lli8MS8s",
"type": "direct_link",
"files": [
"pages/Introduction/HowEmulatorsWork.md"
],
"title": "I made a NES emulator in 15 minutes",
"author": "Bisqwit",
"fetched_at": "2025-08-30T22:30:32.521Z"
},
"wnQ8Td1y_dM": {
"url": "https://www.youtube.com/embed/wnQ8Td1y_dM",
"type": "direct_link",
"files": [
"pages/Introduction/HowToReverseMicrochip.md"
],
"title": "Decapsulating a ceramic integrated circuit",
"author": "Robert Baruch",
"fetched_at": "2025-08-30T22:30:34.204Z"
},
"r8Vq5NV4Ens": {
"url": "https://www.youtube.com/watch?v=r8Vq5NV4Ens",
"type": "direct_link",
"files": [
"pages/Introduction/HowToReverseMicrochip.md"
],
"title": "How I reverse engineer a chip",
"author": "Robert Baruch",
"fetched_at": "2025-08-30T22:30:35.740Z"
},
"AxRmQ3bbe1Q": {
"url": "https://www.youtube.com/watch?v=AxRmQ3bbe1Q",
"type": "direct_link",
"files": [
"pages/Introduction/Memory-Hacking.md"
]
},
"sIELpn4-Umw": {
"url": "https://www.youtube.com/embed/sIELpn4-Umw",
"type": "direct_link",
"files": [
"pages/Introduction/MemoryCorruption.md"
],
"title": "RTC Guide Part 1 | Main Program",
"author": "ZeroDucksGiven",
"fetched_at": "2025-08-30T22:30:38.304Z"
},
"wR89Ezgwt84": {
"url": "https://www.youtube.com/embed/wR89Ezgwt84",
"type": "direct_link",
"files": [
"pages/Introduction/MemoryCorruption.md"
],
"title": "[Vinesauce] Vinny - N64 Corruptions (Real-Time Corruptor)",
"author": "Vinesauce: The Full Sauce",
"fetched_at": "2025-08-30T22:30:39.837Z"
},
"MRb36LZDtxs": {
"url": "https://www.youtube.com/embed/MRb36LZDtxs",
"type": "direct_link",
"files": [
"pages/Introduction/MemoryCorruption.md"
],
"title": "HOW TO CORRUPT NINTENDO WII AND GAMECUBE GAMES",
"author": "Jordan",
"fetched_at": "2025-08-30T22:30:41.475Z"
},
"xI3xZAn7r2A": {
"url": "https://www.youtube.com/embed/xI3xZAn7r2A",
"type": "direct_link",
"files": [
"pages/Introduction/RetroAudio.md"
],
"title": "NES Memory Visualization: Super Mario Bros. 3",
"author": "Bisqwit",
"fetched_at": "2025-08-30T22:30:43.114Z"
},
"0xWyLeVnxFU": {
"url": "https://www.youtube.com/embed/0xWyLeVnxFU",
"type": "direct_link",
"files": [
"pages/Introduction/RetroAudio.md"
],
"title": "How Old-School Computers Played Sound Samples | MVG",
"author": "Modern Vintage Gamer",
"fetched_at": "2025-08-30T22:30:44.624Z"
},
"q_3d1x2VPxk": {
"url": "https://www.youtube.com/watch?v=q_3d1x2VPxk",
"type": "direct_link",
"files": [
"pages/Introduction/RetroAudio.md"
],
"title": "How Oldschool Sound/Music worked",
"author": "The 8-Bit Guy",
"fetched_at": "2025-08-30T22:30:46.188Z"
},
"ZB7-VZg8q58": {
"url": "https://www.youtube.com/embed/ZB7-VZg8q58",
"type": "direct_link",
"files": [
"pages/Introduction/RetroCartridges.md"
],
"title": "Why does an NES cartridge have two ROM chips inside?",
"author": "Brad Smith",
"fetched_at": "2025-08-30T22:30:47.809Z"
},
"gYQMdox5gzI": {
"url": "https://www.youtube.com/embed/gYQMdox5gzI",
"type": "direct_link",
"files": [
"pages/Introduction/RetroCartridges.md"
],
"title": "How Cartridges worked on the Nintendo Game Boy | MVG",
"author": "Modern Vintage Gamer",
"fetched_at": "2025-08-30T22:30:49.530Z"
},
"NLEMsw1SjDY": {
"url": "https://www.youtube.com/watch?v=NLEMsw1SjDY",
"type": "direct_link",
"files": [
"pages/Introduction/RetroCartridges.md"
],
"title": "How Oldschool ROM Cartridge Games Worked",
"author": "The 8-Bit Guy",
"fetched_at": "2025-08-30T22:30:51.105Z"
},
"_9SM9lG47Ew": {
"url": "https://www.youtube.com/watch?v=_9SM9lG47Ew",
"type": "direct_link",
"files": [
"pages/Introduction/RetroCartridges.md"
],
"title": "How old school cassette tape drives worked",
"author": "The 8-Bit Guy",
"fetched_at": "2025-08-30T22:30:52.788Z"
},
"Tfh0ytz8S0k": {
"url": "https://www.youtube.com/watch?v=Tfh0ytz8S0k",
"type": "direct_link",
"files": [
"pages/Introduction/RetroGraphics.md"
],
"title": "How "oldschool" graphics worked Part 1 - Commodore and Nintendo",
"author": "The 8-Bit Guy",
"fetched_at": "2025-08-30T22:30:54.616Z"
},
"_rsycfDliZU": {
"url": "https://www.youtube.com/watch?v=_rsycfDliZU",
"type": "direct_link",
"files": [
"pages/Introduction/RetroGraphics.md"
],
"title": "How "oldschool" graphics work, part 2 - Apple and Atari",
"author": "The 8-Bit Guy",
"fetched_at": "2025-08-30T22:30:56.285Z"
},
"9PZrJH7Z8KE": {
"url": "https://www.youtube.com/embed/9PZrJH7Z8KE",
"type": "direct_link",
"files": [
"pages/Introduction/TwitchPlaysEmulators.md"
],
"title": "3xtDS: A 3DS Streaming Console with External Control Interface",
"author": "dekuNukem",
"fetched_at": "2025-08-30T22:30:57.801Z"
},
"lUsCXSNhHmI": {
"url": "https://www.youtube.com/embed/lUsCXSNhHmI",
"type": "direct_link",
"files": [
"pages/SourceCode/graphics/Awesome2DTechniques.md"
],
"title": "How Doom's Melting Screen Works",
"author": "decino",
"fetched_at": "2025-08-30T22:30:59.500Z"
},
"d2PfyEvWycY": {
"url": "https://www.youtube.com/embed/d2PfyEvWycY?si=y1mPcRqQ9T__cpxv",
"type": "direct_link",
"files": [
"pages/consoles/3ds/3DSDevkitHardware.md"
],
"title": "partner ctr debugger",
"author": "pix ben",
"fetched_at": "2025-08-30T22:31:01.058Z"
},
"4YpRJtvFmP8": {
"url": "https://www.youtube.com/embed/4YpRJtvFmP8?si=3RZk_BGkBWT99Uw0",
"type": "direct_link",
"files": [
"pages/consoles/3ds/3DSDevkitHardware.md"
],
"title": "Want this back, Nintendo? - 3DS Dev Kit",
"author": "Linus Tech Tips",
"fetched_at": "2025-08-30T22:31:02.599Z"
},
"JvMQs0fnhE4": {
"url": "https://www.youtube.com/embed/JvMQs0fnhE4?si=qwBvvWgo4wRLZkbh",
"type": "direct_link",
"files": [
"pages/consoles/3ds/3DSDevkitHardware.md"
],
"title": "Nintendo 3DS "Panda" Development Kit",
"author": "The Retro Future",
"fetched_at": "2025-08-30T22:31:04.222Z"
},
"A9zQueGP4iI": {
"url": "https://www.youtube.com/embed/A9zQueGP4iI",
"type": "direct_link",
"files": [
"pages/consoles/Mega Drive/MegaDriveDevkitHardware.md"
],
"title": "Western Technologies Sega Dev Card Demo",
"author": "Nix McRetro",
"fetched_at": "2025-08-30T22:31:05.869Z"
},
"gLfNgKutK-g": {
"url": "https://www.youtube.com/embed/gLfNgKutK-g",
"type": "direct_link",
"files": [
"pages/consoles/Mega Drive/MegaDriveDevkitHardware.md"
],
"title": "SEGA Mega Drive/MegaCD Development Kit - a quick demonstration",
"author": "BIG EVIL CORPORATION",
"fetched_at": "2025-08-30T22:31:07.459Z"
},