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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
|
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<!-- This is an automatically generated file.
It will be read and overwritten.
DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'none'; img-src data: *; object-src 'none'"></meta>
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks Menu</H1>
<DL><p>
<DT><H3 ADD_DATE="1716515652" LAST_MODIFIED="1730149073" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Toolbar</H3>
<DL><p>
<DT><H3 ADD_DATE="1502081101" LAST_MODIFIED="1726661880">Saved</H3>
<DL><p>
<DT><H3 ADD_DATE="1502081101" LAST_MODIFIED="1716515711">Projects</H3>
<DL><p>
<DT><H3 ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Yamaha XS650 Special</H3>
<DL><p>
<DT><H3 ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Research</H3>
<DL><p>
<DT><A HREF="http://www.xs650.com/threads/what-ignitions-are-out-there.95/" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">? - what ignitions are out there? - | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.bike-urious.com/1979-yamaha-xs650-special/" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">1979 Yamaha XS650 Special | Bike-urious</A>
<DT><A HREF="https://www.flickr.com/photos/tarvus2011/7283815538" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">1981 Yamaha Cafe Racer | •The bike and engine were completel… | Flickr</A>
<DT><A HREF="http://cyclepsycho.com/yamachopper/wires/79PointsSchematic.jpg" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">79PointsSchematic.jpg (898×588)</A>
<DT><A HREF="https://www.instructables.com/id/Arduino-Bike-Speedometer-With-128-X-64-Graphics-LC/" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Arduino Bike Speedometer With 128 X 64 Graphics LCD: 5 Steps (with Pictures)</A>
<DT><A HREF="https://github.com/PaulMurrayCbr/arduino_dougsauto_tacho/blob/master/arduino_dougsauto_tacho.ino" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">arduino_dougsauto_tacho/arduino_dougsauto_tacho.ino at master · PaulMurrayCbr/arduino_dougsauto_tacho · GitHub</A>
<DT><A HREF="http://www.xs650.com/threads/how-to-permanent-magnet-alternator-swap-also-known-as-the-banshee-swap.5536/" ADD_DATE="1540774151" LAST_MODIFIED="1716515711">Banshee Swap</A>
<DT><A HREF="https://hackaday.com/2012/04/05/digital-speedometer-with-an-arduino/" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Digital speedometer with an arduino | Hackaday</A>
<DT><A HREF="https://www.google.com/search?q=diy+stepper+motor+tachometer&oq=diy+stepper+motor+tachometer&aqs=chrome..69i57.8559j0j4&sourceid=chrome&ie=UTF-8" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">diy stepper motor tachometer - Google Search</A>
<DT><A HREF="https://www.google.com/search?num=50&ei=GVlqW_u1KNW70PEPw4utuAM&q=how+many+ignition+coils+on+yamaha+xs650&oq=how+many+ignition+coils+on+yamaha+xs650&gs_l=psy-ab.3..33i21k1j33i160k1.7107.19581.0.19917.47.44.2.0.0.0.418.5666.0j18j6j3j1.28.0..2..0...1.1.64.psy-ab..18.27.5300...0j35i39k1j0i67k1j0i20i264k1j0i22i30k1j33i22i29i30k1.0.0_4EMxJkXA4" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">how many ignition coils on yamaha xs650 - Google Search</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Ignition_coil" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Ignition coil - Wikipedia</A>
<DT><A HREF="https://kokoraskostas.blogspot.com/2013/12/arduino-inductive-spark-plug-sensor.html" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Kostas Kokoras Arduino Projects: Arduino Inductive Spark Plug Sensor Engine RPM Meter Shift Lights</A>
<DT><A HREF="https://www.martyndavis.com/?p=311" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Motorcycle Digital Speedo With Arduino – Martyn Davis | Marengo</A>
<DT><A HREF="https://learn.adafruit.com/raspberry-pi-physical-dashboard" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Overview | Raspberry Pi Physical Dashboard | Adafruit Learning System</A>
<DT><A HREF="https://www.google.com/search?num=50&ei=dVBqW9K4BIeW0gLG-7cg&q=replace+analog+tach+with+digital+tach&oq=replace+analog+tach+with+digital+tach&gs_l=psy-ab.3..33i22i29i30k1.11078.27074.0.27182.41.40.1.0.0.0.289.4174.0j23j3.26.0..2..0...1.1.64.psy-ab..14.25.3822...0j35i39k1j0i20i264k1j0i67k1j0i131k1j0i10k1j0i20i263i264k1j0i20i263k1.0.Cc3joWcFaaY" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">replace analog tach with digital tach - Google Search</A>
<DT><A HREF="http://www.bikeexif.com/motorcycle-wiring" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Tutorial: Motorcycle Wiring 101 | Bike EXIF</A>
<DT><A HREF="http://forum.arduino.cc/index.php?topic=42837.0" ADD_DATE="1533697160" LAST_MODIFIED="1716515711">Vehicle RPM Calculations Using the Arduino</A>
<DT><A HREF="http://www.xs650.com/threads/some-wiring-diagrams.61/" ADD_DATE="1540774093" LAST_MODIFIED="1716515711">Wiring Diagrams</A>
<DT><A HREF="http://www.bikeexif.com/building-a-cafe-racer" ADD_DATE="1525816731" LAST_MODIFIED="1716515711">Building a Cafe Racer</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1502838158" LAST_MODIFIED="1716515711">Yamaha Zuma</H3>
<DL><p>
<DT><A HREF="https://www.amazon.com/Minarelli-Clutch-Bell-107mm/dp/B00X41XII8#" ADD_DATE="1517683399" LAST_MODIFIED="1716515711">Amazon.com: Minarelli Clutch Bell - 107mm: Automotive</A>
<DT><A HREF="https://scooterpartsco.com/malossi/01-malossi-master-part-list/malossi-mhr-racing-clutch-system-for-yamaha-minarelli?zenid=4c81eb4d27823f4690634b312fd54173" ADD_DATE="1517684385" LAST_MODIFIED="1716515711">Clutch and Bell MALOSSI DELTA for Yamaha Minarelli [M5214113] - $103.99 : Scooterpartsco.com</A>
<DT><A HREF="https://scooterpartsco.com/malossi/01-malossi-master-part-list/malossi-mhr-delta-clutch-system-for-yamaha-minarelli" ADD_DATE="1517684389" LAST_MODIFIED="1716515711">Clutch and Bell MALOSSI MHR for Yamaha & Minarelli [M5214739] - $168.99 : Scooterpartsco.com</A>
<DT><A HREF="https://scooterpartsco.com/malossi/malossi-master-part-list/malossi-delta-clutch-for-yamaha-minarelli107mm-bell" ADD_DATE="1502838135" LAST_MODIFIED="1716515711">Malossi Delta Clutch for Yamaha, Minarelli w/107mm bell Malossi Delta Clutch for Yamaha, Minarelli with 107mm bell M529451 [M529451] - $74.93 : Scooterpartsco.com</A>
<DT><A HREF="http://www.zumaforums.net/phpBB3/viewtopic.php?f=18&t=28403" ADD_DATE="1525122446" LAST_MODIFIED="1716515711">MHR Variator Thread</A>
<DT><A HREF="http://www.49ccscoot.com/manuals/Yamaha_BWS_Zuma_50_2T_Service_Manual.pdf" ADD_DATE="1527306273" LAST_MODIFIED="1716515711">YW50AP Service Manual</A>
</DL><p>
<DT><A HREF="http://www.therpf.com/showthread.php?t=114441" ADD_DATE="1496970080" LAST_MODIFIED="1716515711">Blade Runner Blaster, Making a Shooter</A>
<DT><A HREF="http://arniesairsoft.co.uk/news2/265" ADD_DATE="1496970073" LAST_MODIFIED="1716515711">Blade Runner M2019 Blaster model kit</A>
<DT><A HREF="http://www.retrofixes.com/2013/10/how-to-clean-whiten-yellowed-plastics.html" ADD_DATE="1498667041" LAST_MODIFIED="1716515711">How to Clean & Whiten Yellowed Plastics | RetroFixes</A>
<DT><A HREF="http://www.instructables.com/id/Make-a-good%2C-cheap%2C-upgradeable-sheet-plastic-vacu/" ADD_DATE="1497279872" LAST_MODIFIED="1716515711">Make a Good, Cheap, Upgradeable Sheet Plastic Vacuum Former: 11 Steps (with Pictures)</A>
<DT><A HREF="http://www.instructables.com/id/Creating-your-First-Multi-touch-Table/" ADD_DATE="1525618881" LAST_MODIFIED="1716515711">Multi-touch Table</A>
<DT><A HREF="http://blog.the-ebook-reader.com/2017/10/30/onyx-boox-n96ml-carta-review-and-video-walkthrough/" ADD_DATE="1528579404" LAST_MODIFIED="1716515711">Onyx Boox N96ML Carta+ Review and Video Walkthrough | The eBook Reader Blog</A>
<DT><H3 ADD_DATE="1542779295" LAST_MODIFIED="1716515711">Custom Mechanical Keyboard</H3>
<DL><p>
<DT><A HREF="https://www.youtube.com/watch?v=W0FSvTYlggw&t=618s" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">Beginner's Guide : How to Build a 60% Mechanical Keyboard - YouTube</A>
<DT><A HREF="https://mechanicalkeyboards.com/shop/index.php?l=product_detail&p=2137" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">MX V60 Black ABS Keycaps - Blank (KBParadise)</A>
<DT><A HREF="https://www.banggood.com/61-Key-ANSI-Layout-OEM-Profile-PBT-Thick-Keycaps-for-GH60-60-Mechanical-Keyboard-p-1163283.html?rmmds=detail-left-hotproducts__5&cur_warehouse=CN" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">61 Key ANSI Layout OEM Profile PBT Thick Keycaps for 60% Mechanical Keyboard Sale - Banggood.com</A>
<DT><A HREF="https://kbdfans.cn/collections/gateron-swithes/products/switch-68-cherry-gateron-zealio?variant=40117058829" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">SWITCHES *68 – KBDfans</A>
<DT><A HREF="https://www.banggood.com/2x-6_25x-PCB-Mount-Mechanical-Keyboard-Cap-Stabilizer-For-Cherry-MX-Switch-p-1086051.html?utm_source=youtube&utm_medium=cussku&utm_campaign=5760207_1084998&utm_content=1497&cur_warehouse=CN" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">2x 6.25x PCB Mount Mechanical Keyboard Cap Stabilizer For Cherry MX Switch Sale - Banggood.com</A>
<DT><A HREF="https://www.banggood.com/Aluminium-Board-Plate-Mechanical-Keyboard-Universal-Frame-for-RS60-GH60-PCB-p-1077451.html?utm_source=youtube&utm_medium=cussku&utm_campaign=5760207_1084998&utm_content=1497&ID=227&cur_warehouse=CN" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">Aluminium Board Plate Mechanical Keyboard Universal Frame for RS60 GH60 PCB Sale - Banggood.com</A>
<DT><A HREF="https://www.banggood.com/GH60-DIY-Mechanical-Keyboard-PCB-Support-Breathing-LED-60-Cherry-MX-Poker2-Poker3-p-1084998.html?utm_source=youtube&utm_medium=cussku&utm_campaign=5760207_1084998&utm_content=1497&cur_warehouse=CN" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">GH60 DIY Mechanical Keyboard PCB Support Breathing LED 60% Cherry MX Poker2 Poker3 Sale - Banggood.com</A>
<DT><A HREF="https://www.amazon.com/Keyboard-plastic-Mechanical-Gaming-Compatible/dp/B06XNMTYJV/ref=sr_1_7?s=electronics&ie=UTF8&qid=1542775635&sr=1-7&keywords=gh60%2Bcase&th=1" ADD_DATE="1542779295" LAST_MODIFIED="1716515711">Amazon.com: Mini Keyboard GH60 plastic Case for 60% Mechanical Gaming Keyboard Compatible Poker2 Pok3r Faceu 60 plastic shell (Black): Electronics</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1452082578" LAST_MODIFIED="1716515711">Skate</H3>
<DL><p>
<DT><A HREF="https://store-xtqeoh1i.mybigcommerce.com/cart.php?tk=5mrsai48kfohgeqqr0vpvsoft7" ADD_DATE="1452082715" LAST_MODIFIED="1716515711">Board</A>
<DT><A HREF="http://www.evo.com/skateboard-guide-and-skate-size-chart.aspx" ADD_DATE="1452082741" LAST_MODIFIED="1716515711">Buying Guide</A>
<DT><A HREF="https://www.indiegogo.com/projects/lithe-high-performance-skateboards--2#/" ADD_DATE="1470442385" LAST_MODIFIED="1716515711">LITHE - High-Performance Skateboards | Indiegogo | Indiegogo</A>
<DT><A HREF="https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=8%22+deck+56+mm+wheels+95+A/81+B+durometer+hardness+Mid+truck+height+5+-or-+7+ABEC+rated+bearings+7/8%22+hardware" ADD_DATE="1452082920" LAST_MODIFIED="1716515711">My Specks</A>
<DT><A HREF="http://reviveskateboards.com/" ADD_DATE="1452082578" LAST_MODIFIED="1716515711">ReVive</A>
<DT><A HREF="http://www.roarockit.com/" ADD_DATE="1470453008" LAST_MODIFIED="1716515711">Roarockit USA</A>
<DT><A HREF="https://www.warehouseskateboards.com/skateboard-accessories/skateboard-stickers#class=2d&sort=aprice&pg=1&ps=24" ADD_DATE="1452082729" LAST_MODIFIED="1716515711">Stickers</A>
<DT><A HREF="http://lineskis.com/clothing-accessories/i-am-a-skier-skateboard" ADD_DATE="1470710018" LAST_MODIFIED="1716515711">The Best Skateboard for Skiers / I am a Skier Skate / Sk8 | Line Skis | LINE SKIS 2015-2016 | Skiing is Fun</A>
<DT><A HREF="http://www.tactics.com/cart" ADD_DATE="1452082883" LAST_MODIFIED="1716515711">Trucks</A>
</DL><p>
<DT><H3 ADD_DATE="1548550922" LAST_MODIFIED="1716515711">Steam Controller</H3>
<DL><p>
<DT><A HREF="https://www.reddit.com/r/linux_gaming/comments/52pguy/help_steam_controller_not_working_in_rocket_league/?utm_source=BD&utm_medium=Search&utm_name=Bing&utm_content=PSR1" ADD_DATE="1548550922" LAST_MODIFIED="1716515711">Help: Steam controller not working in Rocket League. : linux_gaming</A>
<DT><A HREF="https://steamcommunity.com/app/353370/discussions/0/496881136910188347/" ADD_DATE="1548550943" LAST_MODIFIED="1716515711">How to erase game profile from steam controller (SOLVED) :: Steam Controller General Discussions</A>
<DT><A HREF="https://steamcommunity.com/app/517710/discussions/0/359547436765641173/" ADD_DATE="1548550948" LAST_MODIFIED="1716515711">Controller remapping ? Controller layout ? [Solved, tyvm] :: Redout: Enhanced Edition General Discussions</A>
<DT><A HREF="https://wiki.archlinux.org/index.php/Gamepad#Steam_Controller_Not_Pairing" ADD_DATE="1548550954" LAST_MODIFIED="1716515711">Gamepad - ArchWiki</A>
</DL><p>
<DT><H3 ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Web Dev.</H3>
<DL><p>
<DT><H3 ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Learning JavaScript</H3>
<DL><p>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Array.prototype.map() - JavaScript | MDN</A>
<DT><A HREF="http://eloquentjavascript.net/" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Eloquent JavaScript</A>
<DT><A HREF="https://github.com/getify/You-Dont-Know-JS" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">GitHub - getify/You-Dont-Know-JS: A book series on JavaScript. @YDKJS on twitter.</A>
<DT><A HREF="https://egghead.io/courses/learn-es6-ecmascript-2015" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Learn ES6 (ECMAScript 2015) from @johnlindquist on @eggheadio</A>
<DT><A HREF="https://www.codecademy.com/courses/learn-javascript-iterators/lessons/javascript-iterators/exercises/map?action=lesson_resume&course_redirect=introduction-to-javascript" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Learn JavaScript: Iterators | Codecademy</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Math - JavaScript | MDN</A>
<DT><A HREF="https://medium.freecodecamp.org/my-journey-to-becoming-a-web-developer-from-scratch-without-a-cs-degree-2-years-later-and-what-i-4a7fd2ff5503" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">My journey to becoming a web developer from scratch without a CS degree (and what I learned from it…</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">Number - JavaScript | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype" ADD_DATE="1514904056" LAST_MODIFIED="1716515711">String.prototype - JavaScript | MDN</A>
</DL><p>
<DT><A HREF="https://www.google.com/search?q=building+a+website+for+a+municipality&oq=building+a+website+&aqs=chrome.0.69i59l2j69i57.4918j0j7&sourceid=chrome&ie=UTF-8" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">building a website for a municipality - Google Search</A>
<DT><A HREF="https://codex.wordpress.org/Installing_WordPress" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">codex.wordpress.org</A>
<DT><A HREF="http://vtrural.org/programs/digital-economy/services/municipal-websites/toolkits" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Creating and Managing a Municipal Website | vtrural.org</A>
<DT><A HREF="https://www.domcomp.com/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Domain Name Price and Availability</A>
<DT><A HREF="http://www.webhostingtalk.com/showthread.php?t=182486" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Free ccTLD!!! | Web Hosting Talk</A>
<DT><A HREF="https://www.000webhost.com/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Free Web Hosting with PHP, MySQL and cPanel, No Ads | 2017</A>
<DT><A HREF="https://www.google.com/search?q=get+a+free+domain+name&spell=1&sa=X&ved=0ahUKEwjR-u_iqrPYAhVGLSYKHdEZCQQQvwUIJigA&biw=1920&bih=949" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">get a free domain name - Google Search</A>
<DT><A HREF="https://websitesetup.org/become-web-developer/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">How to Become a Web Developer (and get freelance GIGs)</A>
<DT><A HREF="https://www.ventureharbour.com/free-domain-name/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">How to Get a Free Domain Name in 60 Seconds</A>
<DT><A HREF="https://websitesetup.org/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">How to Make a Website: Step-by-Step Guide for Beginners (2017)</A>
<DT><A HREF="https://codex.wordpress.org/Installing_WordPress#Step_2:_Create_the_Database_and_a_User" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Installing WordPress « WordPress Codex</A>
<DT><A HREF="http://www.townofgenevawi.com/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Town of Geneva, Walworth County, Wisconsin – Official Website</A>
<DT><A HREF="https://www.makeuseof.com/answers/where-can-i-find-free-web-hosting-to-use-with-my-domain-name/" ADD_DATE="1514693945" LAST_MODIFIED="1716515711">Where can I find free web hosting to use with my domain name?</A>
</DL><p>
<DT><H3 ADD_DATE="1485634929" LAST_MODIFIED="1716515711">Yerkes</H3>
<DL><p>
<DT><H3 ADD_DATE="1485634929" LAST_MODIFIED="1716515711">OG Projects Weekend Sites</H3>
<DL><p>
<DT><A HREF="http://legacysurvey.org/" ADD_DATE="1485634929" LAST_MODIFIED="1716515711">Index | Legacy Survey</A>
<DT><A HREF="http://stev.oapd.inaf.it/cgi-bin/trilegal" ADD_DATE="1485635745" LAST_MODIFIED="1716515711">TRILEGAL 1.6 input form</A>
</DL><p>
<DT><H3 ADD_DATE="1454983385" LAST_MODIFIED="1716515711">Skynet</H3>
<DL><p>
<DT><A HREF="https://skynet.unc.edu/obs/view?id=1172166" ADD_DATE="1454983385" LAST_MODIFIED="1716515711">Horsehead Nebula (hale)</A>
<DT><A HREF="https://www.google.com/search?q=magnitude+of+the+horsehead+nebula&oq=magnitude+of+the+horsehead+nebula&aqs=chrome..69i57.19498j0j7&sourceid=chrome&ie=UTF-8" ADD_DATE="1454983456" LAST_MODIFIED="1716515711">Horsehead Nebula Magnitude</A>
</DL><p>
<DT><H3 ADD_DATE="1479176942" LAST_MODIFIED="1716515711">Yerkes Projects</H3>
<DL><p>
<DT><H3 ADD_DATE="1484144655" LAST_MODIFIED="1716515711">IR Circut Board</H3>
<DL><p>
<DT><A HREF="http://www.build-electronic-circuits.com/diy-pcb/" ADD_DATE="1484144612" LAST_MODIFIED="1716515711">DIY PCB - How To Create Your Own Printed Circuit Boards - Build Electronic Circuits</A>
<DT><A HREF="http://www.build-electronic-circuits.com/pcb-design/" ADD_DATE="1484144655" LAST_MODIFIED="1716515711">PCB Design - How To Create Circuit Boards - Build Electronic Circuits</A>
<DT><A HREF="http://www.build-electronic-circuits.com/pcb-design-guidelines" ADD_DATE="1484144659" LAST_MODIFIED="1716515711">PCB Design Guidelines For Better Circuit Board Layout</A>
</DL><p>
<DT><H3 ADD_DATE="1479176942" LAST_MODIFIED="1716515711">Starsbase</H3>
<DL><p>
<DT><A HREF="https://help.ubuntu.com/lts/serverguide/samba-fileserver.html" ADD_DATE="1481651923" LAST_MODIFIED="1716515711">File Server</A>
<DT><A HREF="https://sites.google.com/a/starsatyerkes.net/yerkesprojects/tools/campus-server/stars-mirror-starsbase" ADD_DATE="1479176942" LAST_MODIFIED="1716515711">Yerkes Server Project</A>
</DL><p>
<DT><H3 ADD_DATE="1524014906" LAST_MODIFIED="1716515711">Drone Camps</H3>
<DL><p>
<DT><A HREF="https://www.google.com/search?q=Parrot+Ar+Drone+2.0&rlz=1C1CHBF_enUS773US773&oq=parrot+ar+drone+2.0&aqs=chrome.0.69i59j69i60l2.5147j0j4&sourceid=chrome&ie=UTF-8" ADD_DATE="1524014906" LAST_MODIFIED="1716515711">Parrot Ar Drone 2.0 - Google Search</A>
</DL><p>
</DL><p>
<DT><A HREF="http://stars.uchicago.edu/public/BuildYourOwn/Python/" ADD_DATE="1499882371" LAST_MODIFIED="1716515711">Index of /public/BuildYourOwn/Python</A>
<DT><A HREF="http://localhost:8080/StoneEdge3/" ADD_DATE="1485733666" LAST_MODIFIED="1716515711">localhost</A>
<DT><A HREF="https://stars.uchicago.edu/blog/" ADD_DATE="1515891036" LAST_MODIFIED="1716515711">Picture the Universe</A>
<DT><A HREF="https://voices.uchicago.edu/stoneedgeobservatory/" ADD_DATE="1485636354" LAST_MODIFIED="1716515711">Stone Edge Observatory</A>
<DT><A HREF="https://workday.uchicago.edu/" ADD_DATE="1501865333" LAST_MODIFIED="1716515711">Workday Login</A>
<DT><A HREF="http://xerox.yerkes.uchicago.edu/print/index.php" ADD_DATE="1498770937" LAST_MODIFIED="1716515711">Yerkes Xerox Printer</A>
</DL><p>
<DT><H3 ADD_DATE="1554871239" LAST_MODIFIED="1716515711">i3-gaps</H3>
<DL><p>
<DT><A HREF="http://desk.stinkpot.org:8080/tricks/index.php/2007/05/fixing-error-undefined-macro-ac_prog_libtool/" ADD_DATE="1554871227" LAST_MODIFIED="1716515711">fixing error: undefined macro: AC_PROG_LIBTOOL » from the desk of stinkpot</A>
<DT><A HREF="https://benjames.io/2017/09/03/installing-i3-gaps-on-ubuntu-16-04/" ADD_DATE="1554871261" LAST_MODIFIED="1716515711">Installing i3-gaps on Ubuntu – Ben James</A>
<DT><A HREF="https://www.reddit.com/r/i3wm/comments/2wbv8x/question_how_to_manage_audio_with_i3/?utm_source=BD&utm_medium=Search&utm_name=Bing&utm_content=PSR1" ADD_DATE="1554953466" LAST_MODIFIED="1716515711">[Question] How to manage audio with i3? : i3wm</A>
<DT><A HREF="https://cialu.net/brightness-control-not-work-i3wm/" ADD_DATE="1555045790" LAST_MODIFIED="1716515711">Brightness control doesn't work in i3wm. Due to xbacklight - CIALU.NET</A>
<DT><A HREF="https://github.com/Airblader/dotfiles-manjaro/blob/master/.compton.conf" ADD_DATE="1555079836" LAST_MODIFIED="1716515711">dotfiles-manjaro/.compton.conf at master · Airblader/dotfiles-manjaro · GitHub</A>
<DT><A HREF="https://wiki.archlinux.org/index.php/Compton" ADD_DATE="1555079845" LAST_MODIFIED="1716515711">Compton - ArchWiki</A>
<DT><A HREF="https://wiki.archlinux.org/index.php/Rxvt-unicode" ADD_DATE="1555079850" LAST_MODIFIED="1716515711">rxvt-unicode - ArchWiki</A>
<DT><A HREF="https://stackoverflow.com/questions/5436899/how-do-i-start-commands-in-new-terminals-in-bash-script" ADD_DATE="1555127340" LAST_MODIFIED="1716515711">how do i start commands in new terminals in BASH script - Stack Overflow</A>
<DT><A HREF="https://rgbcolorcode.com/color/dark-gray" ADD_DATE="1555536078" LAST_MODIFIED="1716515711">Dark Gray 🎨 RGB Color Code: #A9A9A9</A>
</DL><p>
<DT><H3 ADD_DATE="1556200600" LAST_MODIFIED="1716515711">i3 gaps</H3>
<DL><p>
<DT><A HREF="https://www.reddit.com/r/unixporn/comments/bdfl9e/i3gaps_showing_off_my_custom_colorscheme/" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">[i3-gaps] Showing off my custom colorscheme : unixporn</A>
<DT><A HREF="https://github.com/reyemxela/dotfiles/blob/master/.config/i3/config" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">dotfiles/config at master · reyemxela/dotfiles · GitHub</A>
<DT><A HREF="https://www.reddit.com/r/i3wm/comments/7t0ekg/polybar_issues_in_i3/" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">Polybar Issues in i3 : i3wm</A>
<DT><A HREF="https://github.com/gugahoi/dotfiles-linux/blob/master/config/polybar/scripts/launch.sh" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">dotfiles-linux/launch.sh at master · gugahoi/dotfiles-linux · GitHub</A>
<DT><A HREF="https://www.reddit.com/r/unixporn/comments/9am1d2/i3gaps_this_is_why_i_use_ranger/" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">[i3-gaps] This is why I use ranger. : unixporn</A>
<DT><A HREF="https://github.com/JacobKauffman/Dotfiles/blob/master/Xdefaults" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">Dotfiles/Xdefaults at master · JacobKauffman/Dotfiles · GitHub</A>
<DT><A HREF="https://fontawesome.com/v4.7.0/icon/battery-full" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">fa-battery-full: Font Awesome Icons</A>
<DT><A HREF="https://www.youtube.com/watch?v=ARKIwOlazKI" ADD_DATE="1556200600" LAST_MODIFIED="1716515711">i3wm: How To "Rice" Your Desktop (3/3) - YouTube</A>
<DT><A HREF="https://www.reddit.com/r/i3wm/comments/3a6nh3/help_how_to_use_function_keys_in_i3_config/" ADD_DATE="1558706451" LAST_MODIFIED="1716515711">[Help] How to use function keys in i3 config : i3wm</A>
<DT><A HREF="https://wiki.archlinux.org/index.php/Touchpad_Synaptics#Natural_scrolling" ADD_DATE="1558706474" LAST_MODIFIED="1716515711">Touchpad Synaptics - ArchWiki</A>
</DL><p>
<DT><H3 ADD_DATE="1556334397" LAST_MODIFIED="1716515711">2500K Motherboards</H3>
<DL><p>
<DT><A HREF="https://www.ebay.com/itm/Gigabyte-Technology-GA-Z68XP-UD3-rev-1-3-LGA-1155-Socket-H2-Intel-Motherbo/163614674267?epid=117650508&hash=item261831cd5b%3Ag%3AXp4AAOSw0nhcmGXx&LH_BIN=1" ADD_DATE="1556334397" LAST_MODIFIED="1716515711">Gigabyte Technology GA-Z68XP-UD3 (rev. 1.3), LGA 1155/Socket H2, Intel Motherbo 4719331822163 | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/ASUS-P8P67-WS-Revolution-LGA-1155-Intel-Motherboard-with-Cables-Instructions/202659716635?epid=127396957&hash=item2f2f75de1b%3Ag%3AYMYAAOSwHF5cveIX&LH_BIN=1" ADD_DATE="1556334397" LAST_MODIFIED="1716515711">ASUS P8P67 WS Revolution, LGA 1155, Intel Motherboard with Cables, Instructions 610839187393 | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/ASUS-P8p67-Motherboard-Couple-Bent-Pins-Came-out-of-working-system/183737882871?hash=item2ac7a198f7%3Ag%3Ak%7E0AAOSwF59ckGUb&LH_BIN=1" ADD_DATE="1556334397" LAST_MODIFIED="1716515711">ASUS P8p67 Motherboard Couple Bent Pins Came out of working system | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/MSI-MS-7673-P67S-C43-B3-Motherboard-LGA-1155-DDR3-Intel-P67-B3-Express/283081314149?epid=117619590&hash=item41e8f60f65%3Ag%3A7zQAAOSwuqdaozDX&LH_BIN=1" ADD_DATE="1556334397" LAST_MODIFIED="1716515711">MSI MS-7673 P67S-C43 (B3) Motherboard LGA 1155 DDR3 Intel P67 (B3) Express | eBay</A>
<DT><A HREF="https://www.ebay.com/sch/i.html?_from=R40&_nkw=msi+P67A-GD80+%28B3%29&_sacat=0&rt=nc&LH_BIN=1" ADD_DATE="1556334397" LAST_MODIFIED="1716515711">msi P67A-GD80 (B3) | eBay</A>
</DL><p>
<DT><H3 ADD_DATE="1550980269" LAST_MODIFIED="1716515711">XS650 Parts to Buy</H3>
<DL><p>
<DT><A HREF="https://www.amazon.com/gp/cart/view.html/ref=nav_crt_ewc_hd" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">Amazon.com Shopping Cart</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-shorty-megaphone-muffler-12.html" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">Shorty Megaphone Muffler 12"</A>
<DT><A HREF="https://www.tacticalmindz.com/collections/brake-lines/products/hel-jumper-brake-line-6-15?variant=419294961" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">Hel Jumper Brake Line 6" - 50" Length | Tacticalmindz.com</A>
<DT><A HREF="http://www.xs650.com/threads/dual-front-disc-rotor-question.27811/" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">Dual front disc/rotor question | Yamaha XS650 Forum</A>
<DT><A HREF="http://www.xs650.com/threads/help-with-caliper-rebuild.41676/" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">Help with Caliper Rebuild | Yamaha XS650 Forum</A>
<DT><A HREF="http://www.xs650.com/threads/new-chain-sprockets.51772/" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">New chain? Sprockets? | Yamaha XS650 Forum</A>
<DT><A HREF="http://www.xs650.com/threads/70-83-gauge-repair-bezel-removal-diy-damper-replacement-replace-face-decals.52013/" ADD_DATE="1550980269" LAST_MODIFIED="1716515711">70-83 Gauge Repair - Bezel removal - DIY Damper Replacement - Replace Face Decals | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.parts-unlimited.com/products/?productId=509179&partNumber=R12N143A" ADD_DATE="1560291057" LAST_MODIFIED="1716515711">Current "Stock" XS650 Battery</A>
</DL><p>
<DT><H3 ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Gaming PC Business</H3>
<DL><p>
<DT><A HREF="https://synthesisvr.com/2017/09/27/commercial-game-licensing/" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Commercial Game Licensing – Synthesis VR</A>
<DT><A HREF="https://web.freenas.org/hardware-requirements/" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Hardware Requirements - FreeNAS - Open Source Storage Operating System</A>
<DT><A HREF="https://www.microsoft.com/en-us/cloud-platform/windows-server-pricing#ft1" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Windows Server 2019 Licensing & Pricing | Microsoft</A>
<DT><A HREF="https://www.bing.com/search?q=Unicenta+oPOS&pc=MOZI&form=MOZCON" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Unicenta oPOS - Bing</A>
<DT><A HREF="https://www.shopify.com/pos/hardware" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Shopify POS hardware - Secure and Flexible POS Machine</A>
<DT><A HREF="http://www.tier1gl.com/" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Tier 1 Gaming Lounge - Tier 1 Gaming Lounge</A>
<DT><A HREF="https://www.ignitegaming.com/" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Ignite Gaming Lounge</A>
<DT><A HREF="https://shop.e-bluegaming.com/pages/arena" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Esports Arena</A>
<DT><A HREF="http://www.harddrivesdirect.com/proliant_build_DL380_G3.php" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">HardDrivesDirect:HP DL380 G3 Options</A>
<DT><A HREF="https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c00459641" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">HP ProLiant DL380 G3 Server - Overview</A>
<DT><A HREF="https://www.sonnettech.com/news/pr2018/pr060618_solo10gpciecard.html" ADD_DATE="1551972037" LAST_MODIFIED="1716515711">Sonnet PR - Sonnet Announces Full-Featured 10 Gigabit Ethernet PCIe® Card for Under $100</A>
</DL><p>
<DT><H3 ADD_DATE="1562003466" LAST_MODIFIED="1716515711">Learning C</H3>
<DL><p>
<DT><A HREF="https://www.learn-c.org/en/Dynamic_allocation" ADD_DATE="1562003466" LAST_MODIFIED="1716515711">Dynamic allocation - Learn C - Free Interactive C Tutorial</A>
<DT><A HREF="https://stackoverflow.com/questions/14270110/c-empty-if-statement" ADD_DATE="1562003466" LAST_MODIFIED="1716515711">C++: Empty if statement - Stack Overflow</A>
<DT><A HREF="https://www.tutorialspoint.com/cprogramming/c_operators.htm" ADD_DATE="1562003466" LAST_MODIFIED="1716515711">C Operators</A>
</DL><p>
<DT><H3 ADD_DATE="1562263920" LAST_MODIFIED="1716515711">MC and Storage Server</H3>
<DL><p>
<DT><A HREF="https://45drives.blogspot.com/p/thomas-kay-founded-toms-computer_18.html" ADD_DATE="1562263910" LAST_MODIFIED="1716515711">45 Drives: Finding the Right NAS Operating System - If There Is Just One</A>
<DT><A HREF="https://www.rototron.info/recover-bricked-bios-using-flashrom-on-a-raspberry-pi/" ADD_DATE="1562287186" LAST_MODIFIED="1716515711">Recover Bricked BIOS using FlashRom on a Raspberry Pi | Rototron</A>
</DL><p>
<DT><H3 ADD_DATE="1562338368" LAST_MODIFIED="1716515711">SFF Cases</H3>
<DL><p>
<DT><A HREF="https://www.newegg.com/black-raijintek-ophion-mini-itx/p/2AM-002C-00061" ADD_DATE="1562338368" LAST_MODIFIED="1716515711">RAIJINTEK OPHION, a new SFF case, is designed to fulfil a smallest case built with max. possibility high-end, gaming and standard components, such as especially powerful full–length VGA, GTX1080Ti - Newegg.com</A>
<DT><A HREF="https://www.cclonline.com/product/248919/ROCKET/Cases/Kolink-Rocket-Aluminium-Mini-ITX-Case-Titanium-Grey-/CAS3309/" ADD_DATE="1562338368" LAST_MODIFIED="1716515711">Kolink Rocket ITX Case - Black - ROCKET | CCL Computers</A>
<DT><A HREF="https://www.geeekstore.com/shop/a50-mini-itx-case/" ADD_DATE="1562338368" LAST_MODIFIED="1716515711">A50 MINI-ITX CASE | GEEEK CASE</A>
</DL><p>
<DT><H3 ADD_DATE="1563904210" LAST_MODIFIED="1716515711">NYLF Honduras</H3>
<DL><p>
<DT><A HREF="https://www.citypopulation.de/php/honduras-santabarbara.php?cityid=161330008" ADD_DATE="1563904210" LAST_MODIFIED="1716515711">Masicales (Macuelizo, Santa Bárbara, Honduras) - Population Statistics, Charts, Map, Location, Weather and Web Information</A>
<DT><A HREF="http://www.fao.org/aquastat/en/" ADD_DATE="1563904210" LAST_MODIFIED="1716515711">AQUASTAT - FAO's Global Information System on Water and Agriculture</A>
<DT><A HREF="http://www.fao.org/nr/water/aquamaps/" ADD_DATE="1563904210" LAST_MODIFIED="1716515711">AQUAMaps</A>
<DT><A HREF="http://www.fao.org/nr/water/aquastat/countries_regions/HND/index.stm" ADD_DATE="1563904210" LAST_MODIFIED="1716515711">AQUASTAT - FAO's Information System on Water and Agriculture</A>
<DT><A HREF="https://databank.worldbank.org/home.aspx" ADD_DATE="1563904210" LAST_MODIFIED="1716515711">DataBank | The World Bank</A>
<DT><A HREF="http://ontheworldmap.com/honduras/large-detailed-map-of-honduras-with-cities-and-towns.jpg" ADD_DATE="1563904210" LAST_MODIFIED="1716515711">large-detailed-map-of-honduras-with-cities-and-towns.jpg (JPEG Image, 3763 × 2645 pixels) - Scaled (29%)</A>
</DL><p>
<DT><A HREF="https://www.amazon.com/Acer-Display-Graphics-Keyboard-A515-43-R19L/dp/B07RF1XD36/ref=sr_1_4?keywords=Acer+Aspire+5&qid=1566604338&s=gateway&sr=8-4" ADD_DATE="1566625100" LAST_MODIFIED="1716515711">$320 Laptop</A>
<DT><A HREF="https://www.bestbuy.com/site/hp-15-6-touch-screen-laptop-intel-core-i5-12gb-memory-256gb-solid-state-drive-natural-silver/6356443.p?skuId=6356443" ADD_DATE="1566625198" LAST_MODIFIED="1716515711">$500 Laptop</A>
<DT><H3 ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Doorbell Project</H3>
<DL><p>
<DT><A HREF="https://www.electronicshub.org/wireless-door-bell/#Components" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Wireless Doorbell</A>
<DT><A HREF="https://github.com/TMRh20/TMRpcm/wiki" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Home · TMRh20/TMRpcm Wiki</A>
<DT><A HREF="https://www.arduino.cc/en/Reference/SD" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Arduino - SD</A>
<DT><A HREF="https://www.arduino.cc/en/Reference/SDopen" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Arduino - SDopen</A>
<DT><A HREF="https://www.arduino.cc/en/Reference/FileSeek" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Arduino - FileSeek</A>
<DT><A HREF="https://www.arduino.cc/en/Reference/FileRewindDirectory" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">Arduino - FileRewindDirectory</A>
<DT><A HREF="https://www.arduino.cc/reference/en/language/variables/variable-scope-qualifiers/const/" ADD_DATE="1606849004" LAST_MODIFIED="1716515711">const - Arduino Reference</A>
</DL><p>
<DT><H3 ADD_DATE="1642360505" LAST_MODIFIED="1716515711">Website PHP Research</H3>
<DL><p>
<DT><A HREF="https://stackoverflow.com/questions/11765344/how-to-create-a-multipage-website" ADD_DATE="1642360505" LAST_MODIFIED="1716515711">php - how to create a multipage website - Stack Overflow</A>
<DT><A HREF="http://www.techiwarehouse.com/engine/d3bf2317/Building-Dynamic-Web-Pages-with-PHP" ADD_DATE="1642360505" LAST_MODIFIED="1716515711">Building Dynamic Web Pages with PHP</A>
<DT><A HREF="https://www.php.net/" ADD_DATE="1642360505" LAST_MODIFIED="1716515711">PHP: Hypertext Preprocessor</A>
<DT><A HREF="https://phpbuilder.com/" ADD_DATE="1642360505" LAST_MODIFIED="1716515711">PHPBuilder - PHP Developers Sharing Knowledge Since 1999</A>
</DL><p>
<DT><H3 ADD_DATE="1606849100" LAST_MODIFIED="1716515711">XS650 Rebuild Research</H3>
<DL><p>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-xscharge-permanent-magnet-alternator-kit-pma-200-watt.html#description" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">XS Charge XS650 Magnet Alternator | Mikes XS</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=pma+with+tci+ignition+xs650" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">pma with tci ignition xs650 - Bing</A>
<DT><A HREF="http://www.xs650.com/threads/banshee-pma-setup-with-tci.49069/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Banshee PMA setup with TCI? | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.bing.com/search?q=battery+delete+xs650+site%3Axs650.com&qs=n&form=QBRE&sp=-1&pq=battery+delete+xs650+site%3Axs650.com&sc=0-35&sk=&cvid=23746045357445398CEC020E489DFDC4" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">battery delete xs650 site:xs650.com - Bing</A>
<DT><A HREF="http://www.xs650.com/threads/pma-battery-wiring-question.55666/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">PMA - Battery - wiring question | Yamaha XS650 Forum</A>
<DT><A HREF="http://www.xs650.com/threads/how-to-delete-the-giant-battery-suggestions.17052/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">How to delete the giant battery?? Suggestions? | Yamaha XS650 Forum</A>
<DT><A HREF="http://www.xs650.com/threads/pma-and-electronic-ignition.55241/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">PMA and Electronic Ignition | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.hughshandbuilt.com/services/rephased-xs650-components/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Rephased XS650 Components - Hughs Hand Built</A>
<DT><A HREF="https://www.hughshandbuilt.com/blog/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Blog - Hughs Hand Built</A>
<DT><A HREF="https://www.hughshandbuilt.com/2013/08/06/270-degree-xs650-engine/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">270 Degree XS650 Engine - Hughs Hand Built</A>
<DT><A HREF="https://www.hughshandbuilt.com/product/complete-xs650-pma-system/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Complete XS650 PMA Charging System + - Hughs Hand Built</A>
<DT><A HREF="https://www.hughshandbuilt.com/2012/05/30/pamcopete-277-ignition-install/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">How-To: Pamcopete 277 Ignition Install - Hughs Hand Built</A>
<DT><A HREF="https://www.hughshandbuilt.com/2011/01/08/re-phased-goodness/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Re-Phased Goodness!!! - Hughs Hand Built</A>
<DT><A HREF="http://www.xs650.com/attachments/chopper-wiring-png.87301/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">chopper wiring.PNG (PNG Image, 842 × 640 pixels)</A>
<DT><A HREF="https://www.bing.com/search?q=smallest+battery+for+xs650&qs=n&form=QBRE&sp=-1&pq=smallest+battery+for+xs650&sc=0-26&sk=&cvid=6993DECCACAF4642BBA5A73E69679095" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">smallest battery for xs650 - Bing</A>
<DT><A HREF="http://www.xs650.com/threads/worlds-lightest-longest-lasting-battery.5390/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">World's lightest Longest-lasting battery | Yamaha XS650 Forum</A>
<DT><A HREF="https://shoraipower.com/lfx14a1-bs12-p62" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">LFX14A1-BS12</A>
<DT><A HREF="https://www.amazon.com/s?k=12v+lithium+ion+battery&page=2&qid=1604424250&ref=sr_pg_1" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Amazon.com : 12v lithium ion battery</A>
<DT><A HREF="https://cad.onshape.com/documents/24e8ca5369edb14adecacc0c/w/40f0d66ddf4a1a4dc2705837/e/a89513f39a15cd67b5a7424a" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Yamaha XS650 Seat | Part Studio 1 Copy 1</A>
<DT><A HREF="http://www.xs650.com/threads/my-engine-rebuild-from-scratch.30786/page-10" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">My engine rebuild from scratch!! | Page 10 | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.youtube.com/user/nightflyer12345/videos" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">(1232) nightflyer12345 - YouTube</A>
<DT><A HREF="https://www.xs650.biz/xs650-shop/engine/lubrication-oil-pumps-filters-gaskets-fittings/sump-oil-filter-kit-heiden-tuning-detail.html" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Lubrication: Oil Pumps, Filters, Gaskets, Fittings: Sump Oil filter kit Heiden tuning</A>
<DT><A HREF="https://www.cmsnl.com/yamaha-xs650sh-1981_model8827/partslist/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Yamaha XS650S 1981 (B) USA parts lists and schematics</A>
<DT><A HREF="https://thexscafedotcom.wordpress.com/2011/04/26/xs650-xs650sj-service-manual/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">XS650: XS650SJ Service Manual | thexscafe</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=1981+xs650+engine+rebuild+kit" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">1981 xs650 engine rebuild kit - Bing</A>
<DT><A HREF="https://www.mikesxs.net/motorcycles/Yamaha/XS650/XS650H+Special+II/1981/wheels/wheel-bearings-wheel-seals-axles.html?product_list_order=position" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">1981 Yamaha XS650 XS650H Special II Wheel Bearings, Wheel Seals and Axles</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-xs-performance-overdrive-gear-0-984in-or-25mm.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Gear - 5th - Main Shaft - 24 Tooth - XS650 - 1973-1984 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-tsubaki-bf05m-x-106-oem-94590-02101-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Cam Chain - BF05M x 106 - XS650 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-clutch-repair-kit.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Clutch Repair Kit | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-needle-bearing-with-thrust-washer.html" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Needle Bearing and Thrust Washer - Inner Clutch Hub - XS650 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-electronic-speedometer-mph.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Speedometer - Electronic - MPH - Black Face - 100mm - XS650 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/alternator-stator-for-80-84-xs650-s-oem-3g1-81610-10-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Alternator Stator for 80-84 XS650 | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-alternator-rotor-new-fits-1970-84-oem-256-81650-11-00-256-81650-11-00-3g1-81650-10-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Rotor - Alternator - XS650 - 1980-1983</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-alternator-brush-set-2-fits-80-84-oem-256-81612-11-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Brush Set - Alternator - XS650 - 1980-1984 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-alternator-brush-holder-1980-84-oem-3g1-81613-10-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Brush Holder & Mount Screws - Alternator - XS650 - 1980-1984 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-neutral-switch-rubber-cap-oem-256-82530-09-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Cover - Neutral Switch - Rubber - XS650 | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-petcock-non-vacuum-type-oem-447-24500-02-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Petcock Non Vacuum | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-carb-holders-set-2-80-84-bs34-cv-oem-3g1-13586-3g1-13596.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Carburetor Holders and Gaskets - XS650 1980-1984 - Set | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/xs650-billet-aluminum-intake-manifolds-tc-bros-choppers.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Carb Holder Kit - XS650 - Billet | Yamaha Motorcycle Parts | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-standard-overhaul-gasket-set.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Yamaha XS650 Standard Overhaul Gasket Set | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-piston-rings-standard-size-447-type-oem-447-11610-00.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">Piston Ring Set - Stock/Standard Size - 447 Piston - XS650 | Mikes XS</A>
<DT><A HREF="https://www.mikesxs.net/yamaha-xs650-3-bond-1194-gasket-sealant.html?fits-motorcycle=Yamaha%2FXS650%2FXS650H+Special+II%2F1981" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">ThreeBond 1184 Light Gray Gasket Cement</A>
<DT><A HREF="https://www.bing.com/images/search?view=detailV2&ccid=BJkd6cWb&id=F811D6A3A0A1621AFCDECAF75DA5F99128ABC162&thid=OIP.BJkd6cWbA_KBuuvhvNuqHwAAAA&mediaurl=http%3a%2f%2fi957.photobucket.com%2falbums%2fae54%2finxs-de%2foil+circuit%2fxsengine.jpg&exph=600&expw=444&q=xs650+oil+system+diagram&simid=608037536929677826&ck=BBEEF69853F2983F8CDFB0F39B74B08E&selectedIndex=2&FORM=IRPRST&ajaxhist=0" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">xs650 oil system diagram - Bing</A>
<DT><A HREF="https://thexscafedotcom.wordpress.com/2011/01/14/xs650-oil-circuit/" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">XS650: Oil Circuit | thexscafe</A>
<DT><A HREF="https://www.bing.com/search?q=xs650+1978-1983+petcock+rebuild+kit&qs=n&form=QBRE&sp=-1&pq=xs650+1978-1983+petcock+rebuild+kit&sc=1-35&sk=&cvid=B8F88A955AEB49238507A494F21B92BD" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">xs650 1978-1983 petcock rebuild kit - Bing</A>
<DT><A HREF="https://www.ebay.com/sch/i.html?_from=R40&_trksid=p2334524.m570.l1313&_nkw=non+vacuum+xs650+petcock+rebuild+kit&_sacat=177781&LH_TitleDesc=0&_osacat=177781&_odkw=1981+xs650+petcock+rebuild+kit" ADD_DATE="1606849100" LAST_MODIFIED="1716515711">non vacuum xs650 petcock rebuild kit in Fuel Petcocks & Taps | eBay</A>
<DT><H3 ADD_DATE="1606849186" LAST_MODIFIED="1716515711">[Folder Name]</H3>
<DL><p>
<DT><A HREF="https://www.mikesxs.net/motorcycles/Yamaha/XS650/XS650H+Special+II/1981/suspension.html" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">1981 Yamaha XS650 XS650H Special II Suspension</A>
<DT><A HREF="https://www.uglybrosusa.com/collections/mens-kevlar" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">K SERIES - MENS – uglyBROS USA</A>
<DT><A HREF="https://www.renthal.com/moto/grips/atv-grips-full-diamond-firm-1" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">ATV Grips Full Diamond Firm</A>
<DT><A HREF="https://www.bing.com/search?q=diy+m+unit+arduino&qs=n&form=QBRE&sp=-1&pq=diy+m+unit+arduino&sc=0-18&sk=&cvid=418187770EFE41F9BD0A6CEC16B068C1" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">diy m unit arduino - Bing</A>
<DT><A HREF="https://www.instructables.com/DIY-Arduino-Multifunction-Energy-Meter/" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">DIY Arduino Multifunction Energy Meter V1.0 : 13 Steps (with Pictures) - Instructables</A>
<DT><A HREF="http://www.xs650.com/threads/build-your-own-m-unit.48656/page-3" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">Build your own M Unit | Page 3 | Yamaha XS650 Forum</A>
<DT><A HREF="https://cognitomoto.com/products/motogadget-m-button" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">MotoGadget m-Button - Cognito Moto</A>
<DT><A HREF="https://shop.revivalcycles.com/motogadget-m-unit-blue/" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">Motogadget Motogadget m-Unit Blue - Revival Cycles</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Digital_Command_Control" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">Digital Command Control - Wikipedia</A>
<DT><A HREF="https://arduinogetstarted.com/tutorials/arduino-rfid-nfc" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">Arduino - RFID/NFC | Arduino Tutorial</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=charging+system+1981+xs650" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">charging system 1981 xs650 - Bing</A>
<DT><A HREF="https://thexscafedotcom.wordpress.com/2018/06/27/xs650-charging-systems/#:~:text=XS650%3A%20Charging%20Systems%20Throughout%20production%20Yamaha%20basically%20installed,a%20mechanical%20regulator%20controlling%20voltage%20before%20the%20rotor." ADD_DATE="1606849186" LAST_MODIFIED="1716515711">XS650: Charging Systems | thexscafe</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=should+you+do+pma+conversion+xs650" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">should you do pma conversion xs650 - Bing</A>
<DT><A HREF="http://chris-kelland.squarespace.com/xs650-pma-kits/" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">XS650 PMA kits? — Limeybikes</A>
<DT><A HREF="http://www.oregonmotorcycleparts.com/index.html" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">Oregon motorcycle Parts Home Page</A>
<DT><A HREF="http://www.oregonmotorcycleparts.com/Diagrams/XS650/80XS650G.jpg" ADD_DATE="1606849186" LAST_MODIFIED="1716515711">80XS650G.jpg (JPEG Image, 1474 × 1120 pixels) — Scaled (87%)</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1630963337" LAST_MODIFIED="1716515711">Open Smart Watch</H3>
<DL><p>
<DT><A HREF="https://open-smartwatch.github.io/watches/light-edition/" ADD_DATE="1630963337" LAST_MODIFIED="1716515711">Light Edition - Open-SmartWatch</A>
<DT><A HREF="https://www.banggood.com/LILYGO-Pauls_3d_things-Open-Smartwatch-T-micro32-ESP32-WiFi-bluetooth-Circular-LCD-Module-p-1829416.html?cur_warehouse=CN&rmmds=search" ADD_DATE="1630963337" LAST_MODIFIED="1716515711">Lilygo® pauls_3d_things open-smartwatch t-micro32 esp32 wifi bluetooth circular lcd module Sale - Banggood.com</A>
<DT><A HREF="https://www.hackster.io/news/there-s-something-especially-impressive-about-the-opensmartwatch-project-c2c878b983cf" ADD_DATE="1630963337" LAST_MODIFIED="1716515711">There's Something ESPecially Impressive About the OpenSmartWatch Project - Hackster.io</A>
<DT><A HREF="https://htmlpreview.github.io/?https://github.com/Open-Smartwatch/open-smartwatch-light/blob/master/docs/bom/osw-light-ibom.html" ADD_DATE="1630963337" LAST_MODIFIED="1716515711">Open-Smartwatch-Light BOM</A>
</DL><p>
<DT><H3 ADD_DATE="1633611635" LAST_MODIFIED="1716515711">Cisco Switch Management</H3>
<DL><p>
<DT><A HREF="https://www.cisco.com/c/en/us/support/switches/sg200-50p-50-port-gigabit-poe-smart-switch/model.html#InstallandUpgrade" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">Cisco SG200-50P 50-port Gigabit PoE Smart Switch - Cisco</A>
<DT><A HREF="https://www.cisco.com/c/dam/en/us/td/docs/switches/lan/csbss/sf20x_sg20x/administration_guide/Cisco_200Sx_v1_4_AG.pdf" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">Cisco 200 Series Smart Switches Administration Guide 1.4.0.x - Cisco_200Sx_v1_4_AG.pdf</A>
<DT><A HREF="https://www.cisco.com/c/dam/en/us/td/docs/switches/lan/csbss/sf20x_sg20x/quick_start/guide/en_US/Sx200_QSG_US.pdf#:~:text=To%20use%20the%20Reset%20button%20to%20reboot%20or,hold%20the%20Reset%20button%20for%20more%20than.%20" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">Cisco 200 Series Smart Switches Quick Start Guide - Sx200_QSG_US.pdf</A>
<DT><A HREF="http://192.168.1.133/cs93f399a5/config/logOff_message.htm" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">http://192.168.1.133/cs93f399a5/config/logOff_message.htm</A>
<DT><A HREF="http://192.168.1.1/" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">DD-WRT (build 40559) - Info</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=ipv6+for+home+use" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">ipv6 for home use - Bing</A>
<DT><A HREF="http://www.kloepfer.org/ipv6-homenet.html" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">Implementing IPv6 In A Home Network - Tips & Pitfalls</A>
<DT><A HREF="https://www.bing.com/search?q=xp1001000-05r+default+web+login&qs=n&form=QBRE&sp=-1&pq=&sc=0-0&sk=&cvid=1111719D96934A64BF94479DF4EC8C2E" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">xp1001000-05r default web login - Bing</A>
<DT><A HREF="https://lantronix.com/wp-content/uploads/pdf/XPort_UG.pdf" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">XPort Device Server User Guide - XPort_UG.pdf</A>
<DT><A HREF="https://ltrxdev.atlassian.net/wiki/spaces/LTRXTS/pages/106070471/Latest+version+of+DeviceInstaller" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">Latest version of DeviceInstaller - Lantronix Tech Support - Confluence</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=install+telnet+macos%5C" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">install telnet macos\ - Bing</A>
<DT><A HREF="https://hakk.dev/blog/posts/getting-telnet-on-macos-catalina/" ADD_DATE="1633611635" LAST_MODIFIED="1716515711">How to Install Telnet on MacOS Catalina</A>
</DL><p>
<DT><H3 ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Subdomains for Server</H3>
<DL><p>
<DT><A HREF="https://wordpress.org/download/#hosting" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Download | WordPress.org</A>
<DT><A HREF="https://www.dreamhost.com/wordpress/" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">WordPress Hosting - Full Featured, Fast, Secure, Recommended</A>
<DT><A HREF="https://www.siteground.com/wordpress-hosting.htm" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">WordPress Hosting - Fast and Secure Managed by Experts - SiteGround</A>
<DT><A HREF="https://wordpress.org/download/#download-install" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Download | WordPress.org</A>
<DT><A HREF="https://wordpress.org/support/article/how-to-install-wordpress/" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">How to install WordPress | WordPress.org</A>
<DT><A HREF="https://docs.phpmyadmin.net/en/latest/faq.html#withdrawn" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">FAQ - Frequently Asked Questions — phpMyAdmin 5.1.2-dev documentation</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=phpmyadmin+ubuntu+20.04" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">phpmyadmin ubuntu 20.04 - Bing</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-phpmyadmin-on-ubuntu-20-04" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">How To Install and Secure phpMyAdmin on Ubuntu 20.04 | DigitalOcean</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-20-04" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu 20.04 | DigitalOcean</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=apache+vs+nginx+web+server" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">apache vs nginx web server - Bing</A>
<DT><A HREF="https://linuxiac.com/apache-vs-nginx/#:~:text=In%20the%20case%20of%20Apache%20versus%20Nginx%2C%20there,and%20creates%20a%20new%20thread%20for%20each%20request." ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Apache vs Nginx: Which Web Server You Should Choose</A>
<DT><A HREF="https://www.brandontillman.com/hosting-multiple-minecraft-servers-without-needing-a-port-number/" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Hosting multiple Minecraft servers without the need to specify a port</A>
<DT><A HREF="https://id.federatedidentity.com/auth/realms/epik/protocol/openid-connect/auth?response_type=code&redirect_uri=https%3A%2F%2Fregistrar.epik.com%2Fauth%2Flogin%3Fprocess&client_id=epik-registrar-api&nonce=3292bfcd566d0a58bb4466be056ea285&state=84a082eaa923f62b9a6936f669d9b4a8&scope=openid" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Sign in to Identity</A>
<DT><A HREF="https://www.epik.com/support/knowledgebase/nameservers-dns-records/#addmoresrvrecords" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">How to Create, Modify and Update Nameservers and DNS Records -Epik</A>
<DT><A HREF="https://www.bing.com/search?q=redirect+from+subdomain+to+main+domain+with+different+port&qs=n&form=QBRE&sp=-1&ghc=1&pq=redirect+from+subdomain+to+main+domain+with+different+port&sc=0-58&sk=&cvid=48794B9857CD4D009F9887127A6858B1" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">redirect from subdomain to main domain with different port - Bing</A>
<DT><A HREF="https://stackoverflow.com/questions/7942372/can-i-configure-a-subdomain-to-point-to-a-specific-port-on-my-server" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">dns - Can I configure a subdomain to point to a specific port on my server - Stack Overflow</A>
<DT><A HREF="https://www.florian-rhomberg.net/2021/02/securing-nextcloud-jail-using-https-and-lets-encrypt-part-two/" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Securing NextCloud jail using https and let’s encrypt (part two) – Blog Florian Rhomberg</A>
<DT><A HREF="https://docs.netgate.com/pfsense/en/latest/install/download-installer-image.html" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Installing and Upgrading — Download Installation Media | pfSense Documentation</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=run+a+webserver+on+truenas" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">run a webserver on truenas - Bing</A>
<DT><A HREF="https://www.truenas.com/community/threads/basic-web-server-on-freenas.40972/" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Basic web server on FreeNAS | TrueNAS Community</A>
<DT><A HREF="https://192.168.1.31/ui/sessions/signin" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">TrueNAS - 192.168.1.31</A>
<DT><A HREF="https://192.168.1.8/login?redirect_url=/apps/files/?dir%3D/Central%2520Files%26fileid%3D160" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Nextcloud</A>
<DT><A HREF="https://docs.nextcloud.com/server/21/admin_manual/configuration_files/encryption_configuration.html" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Encryption configuration — Nextcloud latest Administration Manual latest documentation</A>
<DT><A HREF="http://192.168.1.37:32400/web/index.html#!/" ADD_DATE="1633611726" LAST_MODIFIED="1716515711">Problem loading page</A>
</DL><p>
<DT><H3 ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Web Forms and Databases</H3>
<DL><p>
<DT><A HREF="https://www.codecademy.com/courses/introduction-to-javascript/lessons/requests-ii/exercises/fetch-get-requests-iii" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">fetch() GET Requests III - Learn JavaScript | Codecademy</A>
<DT><A HREF="https://www.codecademy.com/articles/rebrandly-signup" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Rebrandly URL Shortener API | Codecademy</A>
<DT><A HREF="https://oauth.rebrandly.com/logout?client_id=1FEB3DDD-8AC7-4F83-A2B3-ED4EB558DFA2&state=e30%3D" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Logout - Rebrandly</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/XML/XML_introduction" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">XML introduction - XML: Extensible Markup Language | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/JavaScript/EventLoop" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Concurrency model and the event loop - JavaScript | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">HTTP request methods - HTTP | MDN</A>
<DT><A HREF="https://www.cplusplus.com/reference/string/string/" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">string - C++ Reference</A>
<DT><A HREF="https://hackernoon.com/getting-started-with-mariadb-and-nodejs-xr323ynt#:~:text=%20Getting%20Started%20with%20MariaDB%20using%20Docker%20and,Now%20that%20you%27ve%20downloaded%2C%20installed%2C%20and...%20More%20" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Getting Started with MariaDB using Docker and Node.js | Hacker Noon</A>
<DT><A HREF="https://mariadb.com/kb/en/a-mariadb-primer/" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">A MariaDB Primer - MariaDB Knowledge Base</A>
<DT><A HREF="https://www.educba.com/mariadb-list-databases/#:~:text=MariaDB%20List%20Databases%20is%20defined%20to%20be%20the,the%20databases%20and%20records%20in%20the%20server%20operations." ADD_DATE="1633611830" LAST_MODIFIED="1716515711">MariaDB List Databases | Guide to MariaDB List Databases</A>
<DT><A HREF="https://github.com/DataFire-repos/contact-us-base/issues/1" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">FormData object and XMLHttpRequest · Issue #1 · DataFire-repos/contact-us-base · GitHub</A>
<DT><A HREF="https://www.bing.com/search?q=find+refresh+token+gmail+account&qs=n&form=QBRE&sp=-1&pq=find+refresh+token+gmail+account&sc=1-32&sk=&cvid=BDF16DF73CED4D27ABF0B8281CA90F01" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">find refresh token gmail account - Bing</A>
<DT><A HREF="https://stackoverflow.com/questions/36214968/how-to-get-access-token-using-gmail-api" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">java - How to get access token using gmail api - Stack Overflow</A>
<DT><A HREF="https://mkyong.com/java/how-to-automate-login-a-website-java-example/" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">How to automate login a website - Java example - Mkyong.com</A>
<DT><A HREF="https://developers.google.com/identity/protocols/oauth2/native-app#handlingtheresponse" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">OAuth 2.0 for Mobile & Desktop Apps | Google Identity</A>
<DT><A HREF="https://developers.google.com/identity/protocols/oauth2/native-app#request-parameter-redirect_uri" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">OAuth 2.0 for Mobile & Desktop Apps | Google Identity</A>
<DT><A HREF="https://console.cloud.google.com/apis/credentials/wizard?project=contactform-320903" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Google Cloud Platform</A>
<DT><A HREF="https://console.cloud.google.com/apis/credentials/consent?project=contactform-320903" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Google Cloud Platform</A>
<DT><A HREF="https://developers.google.com/identity/protocols/oauth2#basicsteps" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Using OAuth 2.0 to Access Google APIs | Google Identity</A>
<DT><A HREF="https://developers.google.com/google-ads/api/docs/first-call/refresh-token#java" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Get an OAuth2 Refresh Token and Configure Your Client | Google Ads API</A>
<DT><A HREF="https://support.google.com/a/answer/7378726?hl=en" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Create a service account - Google Workspace Admin Help</A>
<DT><A HREF="https://www.bing.com/search?q=oauth+2.0+java&qs=n&form=QBRE&sp=-1&pq=oauth+2.0+java&sc=2-14&sk=&cvid=491AA2ADE0914268AEE1CDDC9CE5CD19" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">oauth 2.0 java - Bing</A>
<DT><A HREF="https://developer.byu.edu/docs/consume-api/use-api/oauth-20/oauth-20-java-sample-code" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">OAuth 2.0 Java Sample Code | BYU Developer Portal</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=webpage+next+and+previous+button" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">webpage next and previous button - Bing</A>
<DT><A HREF="https://stackoverflow.com/questions/16395963/previous-and-next-button-for-a-html-page" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">javascript - Previous and Next button for a html page - Stack Overflow</A>
<DT><A HREF="https://github.com/carhartl/jquery-cookie" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">GitHub - carhartl/jquery-cookie: No longer maintained, superseded by JS Cookie:</A>
<DT><A HREF="https://github.com/js-cookie/js-cookie" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">GitHub - js-cookie/js-cookie: A simple, lightweight JavaScript API for handling browser cookies</A>
<DT><A HREF="https://medium.com/datafire-io/simple-backends-four-ways-to-implement-a-contact-us-form-on-a-static-website-10fc430984a4" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Simple Backends: Four ways to implement a “Contact Us” form on a static website | by Bobby Brennan | DataFire.io | Medium</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=google+developer+console" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">google developer console - Bing</A>
<DT><A HREF="https://console.cloud.google.com/home/dashboard?project=contactform-320903" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">Home – ContactForm – Google Cloud Platform</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=add+an+account+for+gmail+api+datafire" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">add an account for gmail api datafire - Bing</A>
<DT><A HREF="https://app.datafire.io/projects/contactus-alex/integrations/connected" ADD_DATE="1633611830" LAST_MODIFIED="1716515711">DataFire - Project contactus-alex</A>
</DL><p>
<DT><H3 ADD_DATE="1642368711" LAST_MODIFIED="1716515711">2008 MacBook Pro Parts $90</H3>
<DL><p>
<DT><A HREF="https://www.ebay.com/itm/284603414815?hash=item4243af791f:g:ZjAAAOSw7Hdh3LB3" ADD_DATE="1642368711" LAST_MODIFIED="1716515711">New A1281 Battery for Apple MacBook Pro 15" A1286 Aluminum Unibody * WARRANTY | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/334292859282?hash=item4dd5683992:g:KxEAAOSwcqlh4x9w" ADD_DATE="1642368711" LAST_MODIFIED="1716515711">85W Apple MagSafe Power Adapter/Charger L-tip Mac MacBook Pro 13", 15" 17"; Used | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/224701222656?hash=item34513c8f00:g:LPUAAOSwILVhmCOP" ADD_DATE="1642368711" LAST_MODIFIED="1716515711">Mac Book Pro Charger, 60W T-Tip Magsafe Adapter Magnetic Charger | eBay</A>
</DL><p>
<DT><H3 ADD_DATE="1643123582" LAST_MODIFIED="1716515711">SelfHost Cloud Notes</H3>
<DL><p>
<DT><A HREF="https://paperwork.cloud/" ADD_DATE="1643123582" LAST_MODIFIED="1716515711">Paperwork | Paperwork is an open-source, self-hosted alternative to services like Evernote ®, Microsoft OneNote ® or Google Keep ®</A>
<DT><A HREF="https://laverna.cc/" ADD_DATE="1643123582" LAST_MODIFIED="1716515711">Laverna - keep your notes private</A>
<DT><A HREF="https://joplinapp.org/" ADD_DATE="1643123582" LAST_MODIFIED="1716515711">Joplin</A>
<DT><A HREF="https://www.dokuwiki.org/dokuwiki" ADD_DATE="1643123582" LAST_MODIFIED="1716515711">dokuwiki [DokuWiki]</A>
</DL><p>
<DT><H3 ADD_DATE="1644533801" LAST_MODIFIED="1716515711">300E Engine Diagnostics</H3>
<DL><p>
<DT><A HREF="http://www.peachparts.com/shopforum/tech-help/327985-m103-head-gasket-replacement.html" ADD_DATE="1644533801" LAST_MODIFIED="1716515711">M103 head gasket replacement - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="http://www.mercedes.gen.in/mercedes-older-series-diagnostic-fault-code-reading-w124-r129-others/#:~:text=Connect%20the%20code%20reader%20cables%20to%20pin%201,table.%202.%20Turn%20ignition%20on%2C%20engine%20not%20running." ADD_DATE="1644533801" LAST_MODIFIED="1716515711">Mercedes older series diagnostic fault code reading. W124 R129 & others - Mercedes Gen-In</A>
<DT><A HREF="http://www.mercedes.gen.in/Downloads/cs1000_mb.pdf" ADD_DATE="1644533801" LAST_MODIFIED="1716515711">cs1000_mb.pdf</A>
<DT><A HREF="https://www.benzworld.org/threads/m103-issue-diagnosis.3084630/" ADD_DATE="1644533801" LAST_MODIFIED="1716515711">M103 Issue Diagnosis | Mercedes-Benz Forum</A>
<DT><A HREF="https://www.benzworld.org/threads/ke-jetronic-lambda-control-duty-cycle-check-adjustment.2720049/" ADD_DATE="1644533801" LAST_MODIFIED="1716515711">KE-Jetronic Lambda control (duty cycle check & adjustment) | Mercedes-Benz Forum</A>
<DT><A HREF="https://www.bmwclassicmotorcycles.com/parts/technical-tips/reading-spark-plug-faces-bosch/" ADD_DATE="1644533801" LAST_MODIFIED="1716515711">Reading spark plug faces (Bosch) - Salis Parts Salis Parts</A>
</DL><p>
<DT><H3 ADD_DATE="1645982811" LAST_MODIFIED="1716515711">PHP Multipage Site</H3>
<DL><p>
<DT><A HREF="https://stackoverflow.com/questions/11765344/how-to-create-a-multipage-website" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">php - how to create a multipage website - Stack Overflow</A>
<DT><A HREF="https://web.archive.org/web/20210116203615/http://techiwarehouse.com/engine/d3bf2317/Building-Dynamic-Web-Pages-with-PHP" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">Building Dynamic Web Pages with PHP</A>
<DT><A HREF="https://phpbuilder.com/" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">PHPBuilder - PHP Developers Sharing Knowledge Since 1999</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=escape+a+character+in+html" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">escape a character in html - Search</A>
<DT><A HREF="https://techstacker.com/how-to-escape-html/#:~:text=How%20to%20Escape%20HTML%20Characters.%201%20Replace%20%3C,Now%20the%20code%20above%20will%20render%20correctly%3A%20" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">How to Escape HTML Characters – Techstacker</A>
<DT><A HREF="https://www.php.net/docs.php" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">PHP: Documentation</A>
<DT><A HREF="https://www.php.net/manual/en/intro-whatcando.php" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">PHP: What can PHP do? - Manual</A>
<DT><A HREF="https://www.php.net/manual/en/install.php" ADD_DATE="1645982811" LAST_MODIFIED="1716515711">PHP: Installation and Configuration - Manual</A>
</DL><p>
<DT><H3 ADD_DATE="1650330365" LAST_MODIFIED="1716515711">EJS and MariaDB Research</H3>
<DL><p>
<DT><A HREF="https://www.geeksforgeeks.org/php-vs-node-js/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">PHP vs. Node.js - GeeksforGeeks</A>
<DT><A HREF="https://codingstatus.com/how-to-display-data-from-mysql-database-table-in-node-js/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">How to display Data from MySQL database table in Node.js</A>
<DT><A HREF="https://stackoverflow.com/questions/63949431/how-to-populate-ejs-form-dropdown-list-options-from-mysql-database" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">html - How to populate ejs form dropdown list options from MySQL database? - Stack Overflow</A>
<DT><A HREF="https://stackoverflow.com/questions/35721272/links-not-working-in-multipage-site-with-node-js-and-ejs" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">javascript - Links not working in multipage site with node.js and ejs - Stack Overflow</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-use-ejs-to-template-your-node-application" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">How To Use EJS to Template Your Node Application | DigitalOcean</A>
<DT><A HREF="https://mariadb.com/kb/en/installing-mariadb-deb-files/#installing-mariadb-packages-with-apt" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">Installing MariaDB .deb Files - MariaDB Knowledge Base</A>
<DT><A HREF="https://mariadb.com/kb/en/adding-and-changing-data-in-mariadb/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">Adding and Changing Data in MariaDB - MariaDB Knowledge Base</A>
<DT><A HREF="https://mariadb.com/kb/en/data-types/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">Data Types - MariaDB Knowledge Base</A>
<DT><A HREF="https://mariadb.com/kb/en/varbinary/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">VARBINARY - MariaDB Knowledge Base</A>
<DT><A HREF="https://mariadb.com/kb/en/alter-table/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">ALTER TABLE - MariaDB Knowledge Base</A>
<DT><A HREF="https://mariadb.com/kb/en/configuring-mariadb-with-option-files/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">Configuring MariaDB with Option Files - MariaDB Knowledge Base</A>
<DT><A HREF="https://r00t4bl3.com/post/how-to-install-mariadb-server-on-debian-10-buster" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">How to Install MariaDB Server on Raspberry Pi with Debian 10 Buster - r00t4bl3.com</A>
<DT><A HREF="https://raspberrytips.com/install-mariadb-raspberry-pi/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">MariaDB on Raspberry Pi: A complete guide for beginners</A>
<DT><A HREF="https://duckduckgo.com/?q=futurism&t=ffab&iar=images&iax=images&ia=images" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">futurism at DuckDuckGo</A>
<DT><A HREF="https://duckduckgo.com/?q=building+a+database+for+a+blog&t=ffab&ia=web" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">building a database for a blog at DuckDuckGo</A>
<DT><A HREF="https://dba.stackexchange.com/questions/145222/structure-a-database-for-a-blog" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">mysql - Structure a database for a Blog - Database Administrators Stack Exchange</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=logan%27s+run&iax=images&ia=images&iai=https%3A%2F%2Ffsmedia.imgix.net%2F57%2Fa2%2Ff1%2F25%2F2fd7%2F4100%2F8c7d%2F49035f637d6b%2Flogans-run-posterjpg.jpeg%3Frect%3D116%2C377%2C1099%2C550%26dpr%3D1.5%26auto%3Dformat%2Ccompress%26q%3D75" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">logan's run at DuckDuckGo</A>
<DT><A HREF="https://stackoverflow.com/questions/6450192/cant-create-databases-with-a-new-user" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">mysql - Can't create databases with a new user - Stack Overflow</A>
<DT><A HREF="https://mariadb.com/kb/en/load-data-infile/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">LOAD DATA INFILE - MariaDB Knowledge Base</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=newline+characters+in+TEXT+datatype+mariadb&ia=web" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">newline characters in TEXT datatype mariadb at DuckDuckGo</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=how+to+escape+an+entire+set+of+text+sql&ia=web" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">how to escape an entire set of text sql at DuckDuckGo</A>
<DT><A HREF="https://www.w3schools.com/SQl/sql_alter.asp" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">SQL ALTER TABLE Statement</A>
<DT><A HREF="https://mariadbtips.com/mariadb-varchar/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">MariaDB varchar - MariaDBTips.com</A>
<DT><A HREF="https://mariadb.com/kb/en/nodejs-connection-options/#connection-options" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">Node.js Connection Options - MariaDB Knowledge Base</A>
<DT><A HREF="https://stackoverflow.com/questions/51996165/how-do-i-connect-mariadb-to-node-js-and-express-js" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">web - How do I connect MariaDB to Node.JS and Express.JS? - Stack Overflow</A>
<DT><A HREF="https://github.com/mariadb-corporation/mariadb-connector-nodejs" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">GitHub - mariadb-corporation/mariadb-connector-nodejs: MariaDB Connector/Node.js is used to connect applications developed on Node.js to MariaDB and MySQL databases. MariaDB Connector/Node.js is LGPL licensed.</A>
<DT><A HREF="https://mariadb.com/resources/blog/getting-started-with-connector-node-js/" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">Getting Started with Connector/Node.js | MariaDB</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=type+error+do+not+know+how+to+serialize+a+bigint+json+&ia=web" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">type error do not know how to serialize a bigint json at DuckDuckGo</A>
<DT><A HREF="https://stackoverflow.com/questions/51263115/split-screen-containers-with-scrolling" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">html - Split screen containers with scrolling - Stack Overflow</A>
<DT><A HREF="https://stackoverflow.com/questions/7343298/overflowauto-doesnt-display-horizontal-scrollbar" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">asp.net - Overflow:auto doesn't display horizontal scrollbar - Stack Overflow</A>
<DT><A HREF="https://jianjye.medium.com/how-to-use-linux-screen-commands-and-shortcuts-quick-guide-f1a2207d15d3" ADD_DATE="1650330365" LAST_MODIFIED="1716515711">How to Use Linux Screen Commands and Shortcuts (Quick Guide) | by Jian Jye | Medium</A>
</DL><p>
<DT><H3 ADD_DATE="1650813294" LAST_MODIFIED="1716515711">Yamaha XS Starter Issue</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?q=kick+start+issue+yamaha+xs650&qs=n&form=QBRE&sp=-1&pq=kick+start+issue+yamaha+xs650&sc=5-29&sk=&cvid=38C5752F98D74545BD33772C570D6F4A" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">kick start issue yamaha xs650 - Search</A>
<DT><A HREF="https://www.xs650.com/threads/kick-start-issue.12104/#:~:text=Improper%20clutch%20adjustment.%20You%20have%20the%20clutch%20a,turns%20the%20clutch%20basket%20with%20the%20clutch%20plates." ADD_DATE="1650813294" LAST_MODIFIED="1716515711">Kick start issue??? | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/kickstarter-issue.58207/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">Kickstarter issue | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/kickstart.772/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">kickstart | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/how-the-hell-does-this-kicker-shaft-work.25602/#post-254124" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">How the hell does this kicker shaft work?!? | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/kickstarter-issue.51651/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">Kickstarter issue | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/1973-xs650-clutch-kickstarter-problem.43225/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">1973 xs650 clutch/kickstarter problem. | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/new-guy-looking-for-help.41063/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">New guy looking for help! | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650.com/threads/cylinder-head-removal-to-investigate-sudden-high-compression-problem.28333/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">CYLINDER HEAD REMOVAL to INVESTIGATE SUDDEN HIGH COMPRESSION PROBLEM | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.xs650chopper.com/wp-content/x/xs650-manual-xs650chopper-1.3.pdf" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">xs650-manual-xs650chopper-1.3.pdf</A>
<DT><A HREF="https://www.xs650.com/pages/tech/" ADD_DATE="1650813294" LAST_MODIFIED="1716515711">Yamaha XS650 Technical References | Yamaha XS650 Forum</A>
</DL><p>
<DT><H3 ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Building Synths</H3>
<DL><p>
<DT><A HREF="https://www.amazon.com/gp/product/0521809266/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0521809266&linkId=1ff3f0efa61f799e0e91b38ccce7da4f" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">The Art of Electronics: Horowitz, Paul, Hill, Winfield: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/1259587541/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1259587541&linkId=873e657a6c8e307315bd7e903878aded" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Practical Electronics for Inventors, Fourth Edition: Scherz, Paul, Monk, Simon: 9781259587542: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0750694998/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0750694998&linkId=d279a6237f3663b1921c6f90878907e5" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Troubleshooting Analog Circuits (EDN Series for Design Engineers): Pease, Robert: 9780750694995: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/1449345220/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1449345220&linkId=b05a6da8505e10216ecb2396922d545f" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Make: Analog Synthesizers: Make Electronic Sounds the Synth-DIY Way: Wilson, Ray: 8601404546990: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0199309329/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0199309329&linkId=e41f111304cf05e50f9ad0f5e36c64bf" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Arduino for Musicians: A Complete Guide to Arduino and Teensy Microcontrollers: Edstrom, Brent: 9780199309320: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/B01EWOE0UU/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=B01EWOE0UU&linkId=3daf95349a04a9bd14a198d1ece68132" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Amazon.com: ELEGOO UNO R3 Board ATmega328P with USB Cable(Arduino-Compatible) for Arduino : Electronics</A>
<DT><A HREF="https://www.amazon.com/gp/product/0137027419/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0137027419&linkId=21e43e4a33180d3964a08c4b61b742f2" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Understanding Digital Signal Processing: Lyons, Richard: 9780137027415: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/1584503815/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1584503815&linkId=db6b063850e74f643727499ce0f1c027" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Fundamentals of Signals and Systems (Electrical and Computer Engineering; Book & CD-ROM): Boulet, Benoit, Chartrand, Leo: 9781584503811: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0966017633/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0966017633&linkId=4c4e551851fb3630154fbd96d1ed7126" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">The Scientist & Engineer's Guide to Digital Signal Processing: Smith, Steven W.: 9780966017632: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/1466560282/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1466560282&linkId=7b667657ccb871b834f622281f5383dd" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Audio Effects: Theory, Implementation and Application: Reiss, Joshua D., McPherson, Andrew: 9781466560284: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0470665998/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0470665998&linkId=cfb6793df93b4f045bb358053675760c" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">DAFX: Digital Audio Effects: Zölzer, Udo: 9780470665992: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0974560715/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0974560715&linkId=806ab010d47deea343adbbc1415e44a3" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Introduction to Digital Filters: with Audio Applications: Smith III, Julius O.: 9780974560717: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0974560723/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0974560723&linkId=177158834eb7cd56348c9ac415f9e311" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Physical Audio Signal Processing: for Virtual Musical Instruments and Digital Audio Effects: Smith III, Julius O.: 9780974560724: Amazon.com: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0321563840/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0321563840&linkId=678b9b64083a6b066f692ab5d282a032" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Amazon.com: The C++ Programming Language, 4th Edition: 0000321563840: Stroustrup, Bjarne: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/0240825152/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=0240825152&linkId=c4a92ff5bf11ad14fcb930241185b3fa" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Amazon.com: Designing Audio Effect Plug-Ins in C++: With Digital Audio Signal Processing Theory: 9780240825151: Pirkle, Will: Books</A>
<DT><A HREF="https://www.amazon.com/gp/product/1138787078/ref=as_li_tl?ie=UTF8&tag=onceuponasy00-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1138787078&linkId=d211e89a5756db6fbd4ef8f733df430a" ADD_DATE="1656941839" LAST_MODIFIED="1716515711">Amazon.com: Designing Software Synthesizer Plug-Ins in C++: For RackAFX, VST3, and Audio Units: 0888680044459: Pirkle, Will: Books</A>
</DL><p>
<DT><H3 ADD_DATE="1663333394" LAST_MODIFIED="1716515711">DAC/AMP</H3>
<DL><p>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=btr3k&ia=web" ADD_DATE="1663333394" LAST_MODIFIED="1716515711">btr3k at DuckDuckGo</A>
<DT><A HREF="https://www.fiio.com/btr3k" ADD_DATE="1663333394" LAST_MODIFIED="1716515711" ICON_URI="https://nwzimg.wezhan.net/sitefiles18000/18000638/F.png" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFEmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyMy0wOC0yOVQxMDo1NDowNSswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjMtMDgtMjlUMTA6NTU6NDErMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjMtMDgtMjlUMTA6NTU6NDErMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ZTZhMWMyZjItYzc5Mi02MjQ5LTk0N2EtZTJlM2E0NzlmYzNkIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOmU2YTFjMmYyLWM3OTItNjI0OS05NDdhLWUyZTNhNDc5ZmMzZCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmU2YTFjMmYyLWM3OTItNjI0OS05NDdhLWUyZTNhNDc5ZmMzZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZTZhMWMyZjItYzc5Mi02MjQ5LTk0N2EtZTJlM2E0NzlmYzNkIiBzdEV2dDp3aGVuPSIyMDIzLTA4LTI5VDEwOjU0OjA1KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjLHR10AAADYSURBVDiNY7zFYHmTgYFBjYE8cIuJAs0MDAwMakwUaGZgYGBgoNgAFhiDJ9CeQXJdO0maH+rGIBkQ4sjw8/wthv8/fxPWycjAwMjBzsAsxMfAeIvB8j9J1qIBuAuEW9IYGDnYEZZwsDEwMmMG0Z8nrxnetS5AqIO5QPX/MaJtvc1ohekCdPAysZXhx5nrKGKMjIwM/378wu6Fv+8+MTAL8cElfpy+xvDr6n2CroF78oldJsOvm48Y/n36yvDv01cGZgFegpoZGBgoj4WBT8pMDAwMtyjQfwsAn1k31f2W6wQAAAAASUVORK5CYII=">FiiO High-Fidelity Bluetooth Amp BTR3K</A>
<DT><A HREF="https://ifi-audio.com/products/go-blu/" ADD_DATE="1663333394" LAST_MODIFIED="1716515711">GO blu by iFi audio - The pocket rocket Hi-Res Bluetooth DAC from iFi audio</A>
</DL><p>
<DT><H3 ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Etherstop</H3>
<DL><p>
<DT><A HREF="https://duckduckgo.com/?q=adafruit+i2c+16x2+rgb+arduino+shield&t=h_&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">adafruit i2c 16x2 rgb arduino shield at DuckDuckGo</A>
<DT><A HREF="https://learn.adafruit.com/rgb-lcd-shield/using-the-rgb-lcd-shield" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Arduino Usage | RGB LCD Shield | Adafruit Learning System</A>
<DT><A HREF="https://github.com/adafruit/Adafruit-RGB-LCD-Shield-Library/blob/master/examples/HelloWorld/HelloWorld.ino" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Adafruit-RGB-LCD-Shield-Library/HelloWorld.ino at master · adafruit/Adafruit-RGB-LCD-Shield-Library</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=save+modified+variables+to+flash+arduino&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">save modified variables to flash arduino at DuckDuckGo</A>
<DT><A HREF="https://www.codeproject.com/Articles/1116175/Using-Ardunio-Flash-Memory-for-variable-parameters" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Using Ardunio Flash Memory for variable parameters - CodeProject</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=create+a+menu+with+adafruit+16x2+display&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">create a menu with adafruit 16x2 display at DuckDuckGo</A>
<DT><A HREF="https://forums.adafruit.com/viewtopic.php?t=64445" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Adafruit customer service forums • View topic - 16x2 LCD shield + menu system</A>
<DT><A HREF="https://learn.adafruit.com/sous-vide-powered-by-arduino-the-sous-viduino/materials" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Materials | Sous-vide controller powered by Arduino - The SousViduino! | Adafruit Learning System</A>
<DT><A HREF="https://learn.adafruit.com/sous-vide-powered-by-arduino-the-sous-viduino/persistent-data" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Persistent Data | Sous-vide controller powered by Arduino - The SousViduino! | Adafruit Learning System</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=initializer+in+range-based+%E2%80%98for%E2%80%99+loop&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">initializer in range-based 'for' loop at DuckDuckGo</A>
<DT><A HREF="https://docs.microsoft.com/en-us/cpp/cpp/range-based-for-statement-cpp?view=msvc-170" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Range-based for Statement (C++) | Microsoft Docs</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=length+of+array+arduino&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">length of array arduino at DuckDuckGo</A>
<DT><A HREF="https://www.delftstack.com/howto/arduino/arduino-length-of-array/" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Arduino Length of Array | Delft Stack</A>
<DT><A HREF="https://duckduckgo.com/?q=read+back+hex+as+0xXX+arduino&t=ffab&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">read back hex as 0xXX arduino at DuckDuckGo</A>
<DT><A HREF="https://forum.arduino.cc/t/solved-read-serial-byte-in-hex/511393/14" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">[Solved] Read Serial Byte in HEX - Using Arduino / Networking, Protocols, and Devices - Arduino Forum</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=base+10+int+to+hex+arduino&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">base 10 int to hex arduino at DuckDuckGo</A>
<DT><A HREF="https://stackoverflow.com/questions/5702931/convert-integer-decimal-to-hex-on-an-arduino" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Convert integer/decimal to hex on an Arduino? - Stack Overflow</A>
<DT><A HREF="https://docs.arduino.cc/built-in-examples/strings/StringConstructors" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">String Object Constructors | Arduino Documentation | Arduino Documentation</A>
<DT><A HREF="https://duckduckgo.com/?q=ipaddress+data+type+arduino&t=ffab&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">ipaddress data type arduino at DuckDuckGo</A>
<DT><A HREF="https://forum.arduino.cc/t/how-to-manipulate-ipaddress-variables-convert-to-string/222693/3" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">How to manipulate IPAddress variables / convert to string. - Using Arduino / Programming Questions - Arduino Forum</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=difine+generic+array+arduino&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">difine generic array arduino at DuckDuckGo</A>
<DT><A HREF="https://www.arduino.cc/reference/en/language/variables/data-types/array/" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">array - Arduino Reference</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=writing+configuration+menu+arduino&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">writing configuration menu arduino at DuckDuckGo</A>
<DT><A HREF="https://www.instructables.com/A-Menu-in-Arduino-and-How-to-Use-Buttons/" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">A Menu in Arduino, and How to Use Buttons : 10 Steps (with Pictures) - Instructables</A>
<DT><A HREF="https://duckduckgo.com/?q=update+ip+in+menu+arduino+ethernet+library&t=ffab&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">update ip in menu arduino ethernet library at DuckDuckGo</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=arduino+ethernet+library&ia=images" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">arduino ethernet library at DuckDuckGo</A>
<DT><A HREF="https://github.com/arduino-libraries/Ethernet/blob/master/src/Ethernet.h" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Ethernet/Ethernet.h at master · arduino-libraries/Ethernet</A>
<DT><A HREF="https://www.arduino.cc/reference/en/libraries/ethernet/ipaddress/" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Ethernet - IPAddress() - Arduino Reference</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=virtual+arduino+simulator&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">virtual arduino simulator at DuckDuckGo</A>
<DT><A HREF="https://create.arduino.cc/projecthub/kmsaifullah/virtual-arduino-simulation-ce1bd2" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Virtual Arduino Simulation - Arduino Project Hub</A>
<DT><A HREF="https://create.arduino.cc/projecthub/Hack-star-Arduino/free-virtual-arduino-online-simulator-2022-342f50" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Free Virtual Arduino Online Simulator - 2022 - Arduino Project Hub</A>
<DT><A HREF="https://duckduckgo.com/?q=access+array+within+array+c%2B%2B&t=ffab&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">access array within array c++ at DuckDuckGo</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=array+of+variables+that+are+arrays+c%2B%2B&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">array of variables that are arrays c++ at DuckDuckGo</A>
<DT><A HREF="https://linuxhint.com/array-of-arrays-cpp/" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">Array of arrays C++</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=array+of+different+data+types+arduino&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">array of different data types arduino at DuckDuckGo</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=make+flashing+text+arduino+lcd&ia=web" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">make flashing text arduino lcd at DuckDuckGo</A>
<DT><A HREF="https://forum.arduino.cc/t/what-is-the-code-for-making-a-text-flash-on-lcd-screen/137759/4" ADD_DATE="1664038532" LAST_MODIFIED="1716515711">What is the code for making a text flash on LCD screen? - Using Arduino / Programming Questions - Arduino Forum</A>
</DL><p>
<DT><H3 ADD_DATE="1666569935" LAST_MODIFIED="1716515711">EGuitar Building</H3>
<DL><p>
<DT><A HREF="https://www.mymydiy.com/how-to-build-an-electric-guitar-11-free-plans/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">How to Build an Electric Guitar [11 Free Plans] - MyMyDIY | Inspiring DIY Projects</A>
<DT><A HREF="https://www.instructables.com/Electric-Tenor-Guitar/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Electric Tenor Guitar : 15 Steps (with Pictures) - Instructables</A>
<DT><A HREF="https://www.instructables.com/Barncaster-Electric-Guitar/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Barncaster Electric Guitar : 22 Steps (with Pictures) - Instructables</A>
<DT><A HREF="https://audioassemble.com/how-to-build-an-electric-guitar-from-scratch/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">How to Build an Electric Guitar from Scratch?</A>
<DT><A HREF="https://www.electricherald.com/fender-stratocaster-templates/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Fender Stratocaster Guitar Templates | Electric Herald</A>
<DT><A HREF="https://www.electricherald.com/diagrams/stratocaster/Stratocaster-Guitar-Plan-01.pdf" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">stratocaster_plan.cdr - Stratocaster-Guitar-Plan-01.pdf</A>
<DT><A HREF="https://duckduckgo.com/?t=ffcm&q=Fender+Telecaster&iax=images&ia=images&iai=https%3A%2F%2Fc1.zzounds.com%2Fmedia%2Fproductmedia%2Ffit%2C2018by3200%2Fquality%2C85%2F8_Full_Left_Front_NA-7d9f838324f9070598e91205f6887a25.jpg" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Fender Telecaster at DuckDuckGo</A>
<DT><A HREF="https://projectelectricguitar.com/how-to-install-a-truss-rod-and-fretboard/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">How To Install A Truss Rod And Fretboard | Project Electric Guitar</A>
<DT><A HREF="https://www.tdpri.com/threads/truss-rod-installation-headstock-adjust.915489/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Truss rod installation - headstock adjust | Telecaster Guitar Forum</A>
<DT><A HREF="http://www.redspecial-library.com/tutorials/neck-tutorial-1" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Neck Tutorial v1.3 | Red Special Library</A>
<DT><A HREF="https://killerguitarrigs.com/guitar-truss-rods/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">All About Truss Rods - adjustments, intonation, tools and more - Killer Guitar Rigs</A>
<DT><A HREF="https://drkevguitar.com/2014/08/19/truth-about-truss-rods-1/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Truth About Truss Rods – Part 1 – The Basics – DrKevGuitar.com</A>
<DT><A HREF="https://www.capitolcitylumber.com/product/maple-hard-hardwood-s2s/" ADD_DATE="1666569935" LAST_MODIFIED="1716515711">Maple, Hard, Hardwood S2S | Capitol City Lumber</A>
</DL><p>
<DT><H3 ADD_DATE="1671767906" LAST_MODIFIED="1716515711">Rex Movie Recs</H3>
<DL><p>
<DT><A HREF="https://www.youtube.com/@everyframeapainting/videos" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1383) Every Frame a Painting - YouTube</A>
<DT><A HREF="https://www.youtube.com/@FrankStephensondesign/videos" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1340) Frank Stephenson - YouTube</A>
<DT><A HREF="https://www.youtube.com/@Crown_Unfiltered/videos" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1340) Crown Unfiltered - Car Design Podcast - YouTube</A>
<DT><A HREF="https://www.youtube.com/@M539Restorations" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1340) M539 Restorations - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=NcoL2XnaSjI" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1340) CROWN UNFILTERED: Car Design Podcast - ASH THORP - YouTube</A>
<DT><A HREF="https://www.youtube.com/@BSport320/search" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1315) B Sport - YouTube</A>
<DT><A HREF="https://www.imdb.com/name/nm0814280/?ref_=ttfc_fc_cl_t1" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">Song Kang-ho - IMDb</A>
<DT><A HREF="https://www.imdb.com/title/tt0353969/?ref_=nm_knf_t_1" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">Memories of Murder (2003) - IMDb</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=se7en&ia=web" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">se7en at DuckDuckGo</A>
<DT><A HREF="https://www.saabplanet.com/drive-my-car-saab-900-in-a-visualization-of-haruki-murakamis-short-story/" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">“Drive My Car” – Saab 900 in a Visualization of Haruki Murakami’s Short Story - Saab Cars Blog</A>
<DT><A HREF="https://www.youtube.com/watch?v=6BPKPb_RTwI" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1383) DRIVE MY CAR - Trailer - YouTube</A>
<DT><A HREF="https://www.youtube.com/@criterioncollection/videos" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">(1383) criterioncollection - YouTube</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=police+story&iax=images&ia=images" ADD_DATE="1671767906" LAST_MODIFIED="1716515711">police story at DuckDuckGo</A>
</DL><p>
</DL><p>
<DT><A HREF="https://messages.google.com/web/conversations?redirected=true" ADD_DATE="1546319928" LAST_MODIFIED="1726661880">Android Messages</A>
<DT><A HREF="https://www.alexscerba.com/" ADD_DATE="1686716629" LAST_MODIFIED="1726661880" ICON_URI="https://www.alexscerba.com/static/assets/favicon.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAgAElEQVR4Xu19CZgkVZXuicysXmjoRtl6AEEUcVyejMp78hRoqruBGRxcWAq6W+AhOvikaXaBlqVllwGa3UFlEemFAkQe8/HJg67qbhVn3qcC6vjoURjReSoICg30UpUR8f7/3riVN6MyKyMzIyIjsjK+L6CqK+LGveeec++55z+LI71LU+D2H/fJdpveI477HinIB8WT94t47xBxdsK9rYhfwlNbcP9ZfP8/RYob8NxT4sgvxJ32S1m4/4tjpPR9RxzH75E2+xRwst/FhHu46rG3iZT+VnxnPph8PzDuO6TUB9538WvAwz5+0EwNWQjd5dGN4hSfhuD8SEadR3D/RE7qp6DwIn17gpDwFLbT/OQSAHtlfmjNO2VLcSE4/Vgw93tk+jYFGR0VKY96mnUVaTR99M8VgQh+08ztFGXKFP230ZGX8S9DaPMueXlkWJYcvrUnBO2wZ/LvTiIBwAouUEue/N10eWEDGL9wGhh7XykURdwyV2kXTFzAv1XThL+SuSk8hQJ3gvCs8B+00BQKJdXeKHcFuR9t3SDH9f8i+WnsfaFVCkwiAQCJBof3lrK/DIx6FO5p4nK1V7p6ISCgUVmi0sVIQ/AeVSW1YxSkSMFy/x2icYUs7L8X/0Yh6alErXJqQu9FneiEPp9Ks5rpVq35KPj8eukrfUSpOr7vKUatqDNK2WmxR/a2YITBk2JfEUK2Cc1eJ8VdrpGB970hy5YVcOsdo3d1nAKtTnjHOx6tA4Has2LoMCk4N2NVfhcYEqoOGF0zv72CR2uy8VNqD1BtKyGDTuSon+8S31sqC+fTWtTbCRrTMZUnulwAQMNVw0crXbzg7Cblshvo+Ib5kxq/EQJOIsxJYPhioQDL0nelUDpLBub8R08IUuHvhh9JigEafjiVB1YOfw7a/TVYhd8iHpgfPyiLjj7IJj326vMBzwBFHAzc8lrx3bNkwSFP9YQgFS6Y8CNJM0FnRjg4CEbbcQmY/VLc22LlJfNDFcGB1/O0PT+9q6IS0VpUUueCn4pbPFMWzVnfE4L0JqLWl1LlhESHamz8dw1Pk2ne+Vjsz8P3pkHvDpgferg3ZspMe9z2ucCHEBSwEzwHmfySHDfnO5ouwXklUSL1Gg9TIG1GSGYGjGXlpkdnys7TL4aKczo+VAosPZUxavWnU2Ou3gmoDpXLL8Ec+2VgBd8MCNM7HCfDIXVb7RQzxD/Mb/3rDtK36Wop+CerxdT3fDAX7C8dY/haY6wIgcPDMYAz39uIPl4lpdnXw0w6Ej9hei1ORIG8C4BeMQeHZ4OdboKl5xjo+J465Fbb+LM0zmoLkYOziQhcJvxbZbNzGfyIXg38jno+RCnIbpYYo7nhGp1/xRP02LxF+vr+Dnq1AZiSsvE318f6T1csRAaQc5Q7xbcgxEtloP+PPcAsLlJP3E5OBQBoqgBN/e7698pm959gXjwQzE9fHhvgysPYAMmhmx7UNVplCzDT+t5DOKyfI4vmP48x6nH2rsQokAcmqXVwh2vD0EegNnwN7gYftNBdM548jguMDjkowkJULq+XaX1L5MgDn0ls5nsNKwrkkVHg1Lb2EKySN8Pz8t2K+bVhX9+09Wfr4NuI1aoBM8Ye0EzqlZ+BUnS6LJy7rlEDvb+3ToH8CcB9w5/CQrkcas/bofaU8TMBLmPetA+YrVOlM29aZlL4EBVLAMw8YAU+sIK5AVbQmY5181fzIAAV2/jgmuPFLXwVfjV/Ffj18LBLUyc3gTwzv+Gxakc6YgWevCSOdxGwgm8o1+1euGWs8pgHAdCq2oo1p0oRZkKnuL2y9ujAFS0cnQW4Yp0QNZ6KNymxDAi5/zr+6Up5bbvr5JT9RntCEB/Jsy8A9OvxdjgXDHAh7hmY/DKGT9u5ubI/hubnSwuBPs/QCkSX6hHsBrfIDjtcLIft+2bzTfbeqEWBrDKPXtlvf2QbmbXtReCFM8EIU5Vfjwa4strvOLks7FIdOPP5d8u00fPlyMNeGtsp4vzqJGsre4xUcWrbXqb5V4Lhv6C2fA0YVdQePVHZ63+8DFRBg2kd4vi1e8fDiGw7S4468HlZhjjmZSrcsne1QIGsMZBe+e95bGcgu9eAv09Uzvt68u3wxaz1uwXSN/mKduVmLBvsXnCp9oAViCyBhYhYAWnTE4ImSZq1FTTw63lsL3GnXAeG/zRUHuPXo3340wlkaYGMib9iq0P4GbthaUoRsc0/A11OlwX9axPvQZd+ICMraeALv3LofTBxLocv/yGWa4Ot9mSkvx3hhlAGCqz4Cisov4Cd8hwIwQMd6VXOP5oBhgqYf9XwfljZbgTA9VGkE7H9ekjibrDxx8UqNbAC708gEeIK5n7TwkN63qQRKJ4BAUAvB4cPEBfuwMXSB1RmNnPYVdkUJsVhN8JUVT1SjRoz84Q4GyEEV8nM3ZfL4e/qZaSLSNFOCoDW+VesP0yK7o3ar4cenbR/q0OdveVHHM6keqw6wkxhI84oKHejTNt4qXzyk6/3ALPG/NBJARBZvfYYrPbXguH3gNozGQCuxjPS3BNhrECndvT9O2TqjPPkyI+8guYqriTNtT0pnu6MAHCVX73mczjsXgm79o5Vfj2TguyxDpLUVA4hY1hJsYTwmtFeDqIIZE5TAPQ0LRsuyV/LqbDkXYqQ2Jk6ZYlSeeyVKs1+RSBT5h8JAWZI4qvSrwArKCBBwED/0z11qPYcpstoTFkyFe69joNbZgDYoWuD8evpWXrikTMDHAIrKJWk7D4DyxqE4KB1PXVoPIHTEAC9st+LlCUlpCwR5zSs/kior1IGppmpLR72ynYr1YAZ3UdKxArcF+BJew52gh5WEJq/ZAXA+PUwZcmUTZeD3T+PSC7EvQZ+LRW1J9l+ZJtp4+5dOMJMC4HnoniHv1QWzENcgbp6h+OACHFPgGkvcG1gyhL/Ohx2Fypflp5fT1L0Drc7HjDzEVdQdi+XN59bLqecghzxPSFIauXVzP/gmj1lxLkJANcndMoSNSc9G39aImAH19BZTgXXACtwR2+UGdMuk08egECbyS0ECQhAkMqDfj0qJ3+pX5k5fZWUNsvMbweh6FJIijq5jzyrBswcuFNTDjz3TqikF6kcRJM4zDJuAQjUnvX/DQevW2B9+K9w2y0rvb9Seyvub7a7no7PysCVUkUi4k+uW3HNyG/sceVwbOIqin1Izjj6MMKMz5bj5j03WZPzxs+MK9fMhZZDp7b3BylLshzBVYknNhnapkxFosKtb2L1fxmSNR0HyJ0hwCykFw7IiZ927YryxO9XBF2HWYr0TWFlzPXiTz1dFn3s6WQ/n83W453ElU98CpbN5WAapizJOsAVXhVhnRL40jgP8vSCFfF3mDIUyHYOxP8/ix3hbRq0w26m1aI84hbVgFmhQJfqEuYKQJmcORnjCuITgNXDx4EnYO0p7hpybcgio4QcyQDGef4muJN9VUZGr5MTDqsOOl81fDB2hOUY299Ueavm22HPCIOL3bqE8T8Ple+8yRZX0I4A6FWQB6j7hj+PRfFKrIw7BNVYbNeGdr6RxL4ZPhQCiUaKcnEukWeRdWFZP53y7D5rRlk9tK/KRlcqMQ8py6vyX/MaplkDMIPrhO+9hDEulQ3r7poslSxbZU7N/MN+SV4cRsYG+Qr0/umofaXrcGUX4KoRTOIjmMRrEEwSWLZWo7q871yPIX4CY0W4JkUgczUIoi4atQEz18Xuh/xLszbfIIej0n2XW4haFQAR+vVMdy6AHOCWPhBKpyzReTmzpvZUT7ayiSPrmu/+HqseCtbNv68h1xyD/ET3D7gY92yUYLoKTHKC2gEq2SpME63TtGEnEnmgelEoILjGB1bge8tl8+uXy8mIK+hirKC5yTKrweDjs8TtQwE6WazMZyZ5k+b7LDK/GSf6ZvJuur+GwJ6JlIP/HJmtxlK2PLS9TJ11Efxr4NUqyFcE4a8k68ra+KMMz1ILmX6myKAkuFR7d2KMFyqsoEuFILoAmDpcTFkyte8qrKGfDc4AOl9N5YreZpSpiecZ7YJRQP4cBwc+14PVowDTXxtVGgcHp0h5x7PR5nkY/yyVsc736dmaxR0wChVDhgGMo1hCMT/3n6WIegUDczd0I1YQlVn1pK567G2oPUcd+GhVikgdAzOrA1eb/JhXR2dc/hH6v1iOO+inbVRhqTiSrRo+GaS5AirVLjViG6LSNwqDpvFMtWmYX+xjvQL3+/gJqmL/j9PoRJrfiDJBerIfWPcuGfWB7jqHKnRUX1m1goSipKigYDXzvcfFnbpEFn702Ri29IoQMGW751+Lb7wzBP7lVR3i3BrVFmsehWD059gJzpJj5z8R0I7PVBaZNLk2xm9NLABG531g/QeAGH4NhPgo/p/1FIXjV7FCkYfVh6RYPkMGDvltDMxvTcFYTqM5WA6uR5Tbh3Jarslmq9q7p+f+B1j+S92EFUwkAHqFW7n2vyM/PUoRlfbNwcTaFg3t5qAtUyvF3+YsWbj/iwmZ9TStVgz/DcA0AmYHK3XIJ2qc+1BPCzBDWVcX9QrEvVA2zL2jG3KS1hMAPaGr1xwKI89tQAqxtZuUJWMH3ijqU4ybVcOmQgBXkC/Tla9Dkf2yLDrwLwkf4jTN7lm3l/S5N+Bs9IkaJVsbDiJjD1QDZrSgOTAfOw6R8kvk1Rk3qXoFOb7qM/HKoaNg0YRTW2k3rGa6FJG+ssb4RhfVDKjt8synDxAHKsmftnxFlgDQSceMp/tArGAqMlsXnP8xltlaGwuySr+JWNgWAhPD/TqWl6Xyy4Nvy/suEGZmPYH3DQ1g5Ufh6cIuqg4XM49VJi9LB7sQmgm3TVZZ9MqbMI5LpfjKtTIA8Cod5tdMZNKVEyvxiktBtzOgEk0J3KqzHA9RSwiqd1UFkiENo++eLwsOuTPHC/9Y18ev5vetOxwr/jeg9uyqPTqrClJkjfkrAJcJAPe9VyC8F8mza2/voD+LXkgG/w1YwYtnIOHvBdiVUNpJpYDJSxaMkNuIiivuuuB6w0DBgRfWHqf87XE5OrPr9Vg5oBUAcPn+70XKqKo4f0VmVida0lYPnwSL8eWquB93VC0EWQbMqplfB9VvEM85Qxb2fy/VHTXhieQkBKsVtuxy8etSKg5Y7szm81nS+23bM3+G2sNqiu5vsMKeIYsOeThhmrXW/Kp1n4AL0rWgL/AU1DaulHqy1bjW2o7vrZDPVFCHwEUdAt9bDJ8pAmIV/CO+73aspYoArB5GqkLo/fRtQb4qqyJLxzpX88OmELaJaiJI45afhcXli7Jo/nC2OlulagJJX4vgGu9moKv7yshI1vCUaosPXUcYMVYu/0j6CqfK0XOeyiht2+qWXtkHH99DRp37ZOq0/WVkC1YnBsROcE5o65NtvVwN0KiK6u5TOGR+AZnP/k/CZs62Oj72ssIKlHXtIJ0sACqSKf/U6Sr3dhmmAuMD3Cfg83Ua1J5mkfNpGC9iS+W1eIiWXCtaAFav+weYtW7FSkrkKMsxvOytrpVFHxXX+wE25P8Jj85fJARwxUz5ADX+9vDe0oe4gkLhCBVco4PtaSbVpVHTNTWHUV/6dxE8fBD0PVsWzXuhyUJ809F/+Iwh9aUIvUh5Z9ZlwpHvPflW+cuWO2Xq9E/K1s0ENfqCDmdJ7zeMSEIihI85L8sbZEppQI4+6GcBw2SWyCEpCgwO/7KLyKarcDAmVgDNCM6FmvHSpHu1zxSxCuXO7t8jU0aQXp2lWAOhjbYUbIPH9giY38wHkwv8PzVvGbwQzjj0McgnfOLh0usxZaE65KQ5CdHJovV+X6ZMLSB293pszefkY+WvM8TB4W1hWbkIYzgTFEdQEZMFKyEwLyQ5D9U+U1oNA+YjX5PNzsVyUv+r0SdGPTkT9+64KQR2xUqO4c+BEIw02WbijzuyamgJrCg3Bjbq7Ks/Wl3gvRSqz9W5FQATX6HjCk4H412CeZihnA1VBjd1JWUhssycLL2K7xnkvIjY7oH+N5qk6/YB81P3N8CjsRbxWxwPzwPMtEFUPjMXBGB4NSD7gSBvZ3atP4odlJuDhx2gJCNbvyXFl0+WY47hv9nMkhniRu4IhWGfg0+UEpjPcWaHzKRmbHHtBtXork5P/zrm/0rZfo9W6ovtgPd3w03VmSt/xbJYMZnym/zOG4EQVGfdiEyo+B90ZOUQrCgOMh4w0YE6gNkWoPi/2F6L7B/jeWn9eRVeql8E6LW6vSYz9PZKxBUUHCYSfgd2ZJzHPNb9ilMlDaG7jIuGeuIhReK/z/mnFvx6cI6RvwqYux7z27gBf94SCAEycXT+IkrJVBg7MQLUkt7O96x+D4LwRvr4ey9iWzgXKb+/neUON9W3lUOIK0BO1ULxv6jgGnUqazvkdDzAVVB1A16C+oMawwc3Sz8yMpl/9gTMb4Zt7zhmgeVZ4D9xw0O3sxcFYDNUC+puaZvfWhm5vYIRAeaBEdsqcvrs4t8k/WM5ffJiEapNA+YgEiUEB6pEXLxaTyxcDXDRpZnM77sMDEJSgLnfaXIiqMqQ8XcOFkzT/kSuHbWEgC4hcF0RpKXp3MVDsBYArf4oUneuO5G+XC0E2nQ4CuvdNTJj1pVyxH6bmrRbR/poeg8FZsdBxBW4jCsoIq6AOYjU4b/VEFTSTKuPzALnev8Xoa0om3Tw4xYTRxliCQ9R5dkpeK+W2lOvnbAQGIHpKFZAAYCtlwPiATOzAe5houpoL14ExVRdYRyOxfm6jCBa6cT5+S4POpZ+Zv1OwDu+WsEKXFpswofMiRhO/00XJdFJAbzyT3DGOA3M/6MWmJ+H3R0DYTLfbcapr5YQsB3uAtwNUscKoALhECw4BGvbc9YPwZXJNuZQPcHaEsTdwPMfQEzA2TJwQMyxv1EWyFif0Yx1x8PbyYyZSzG+M9ROrQsLNsq+Vw1wsVvaZ+oHSGmzWI488Jkme0oLD9Hdt1jMbzSFZlXnkEqmesLxECugmTTVCDPsAGtX4PMLcmEGtWdN+82EVyGucpzoIbAOsj/M/bcm7dlN8kVKjw8i35A7BLCscDGYfzuF2dQXAs1gej3T5weVEcN9FJ6oZ8Cp7VdNorv06SG6Owu3AbjClp1mCWGr20aNohAQfOPhmJaiVC6YQdechoSvN+msx2p75ZX1c0CYOMGkq50gyP+jnOROk2MP+mEwnrwejCvMtnrNSeIXr4aVaOca9QqqFwOl9nDkKh1MJSNGc7k+6dezJ2769TSj70dlXntOjPZBjIA7QSpYAa1A+2OVfBSU2h6EMlne8iYAarkLGJ21yEyh6OcRxA0hmIPxdcml4wpYgAQ1GGAmHe+8aAoR0nxKqgAwLH4J3rLUs+2VuxFBUBtBrfwUgiSYv9YiZoSAaPELuJmXNNHLkW89gRKmzjfgDPdp2bKZviA46afukRjXIE3FF80EukYucY7z4NV4d/CRZpggrn7F1Y7u++D6OTjMIma7+AGVsKCqBBXVHiYFcGBmLNwiMzZ+WY44gjHSzYybfj3U+cn8YdeGuBfHEEahFjKaWikE3Ama9UlqitZ6MAyGKRZvg8VBeyNWbM5xD7apzrX0MM8FhUJAVGasZi4bj1kMlsmzCPjR+f/zexkfom+v+RBcJ7gTHKDOBMaLVGEj3lbM4T/Ki7tfLkveBUZqyqOTB106tbGYeRorv5mLjmAFmsHvfXR3KU5bhQigA2R0KxhE+Yc0Y97KDkPpoA69/atLCQHG42/BSnmdlApXt+DslZ3xqSEFcQOrht+OWVqOsX5KZZ1QzC8bMeTLZHbhhhaAQZo4jV+PKXGlvhjwQ9J0qIcVAPGXPwT9iLUPlRV+1dBnQcgbwffbBCGRcfqgxNrpho1VW4iMHZxWBurMUPdGLlG+7iaFScMGM/mAXqBW/nhHcV6/GnN3MgTjFWivS+XYud8wdqAmek5wi8zPxc+s/Ob1NDWBVLGCitVn8PGZCIq/FaayRVCFTLxqJwjQxJxFfHQs1A/bgoq8kvuRJxQpv+POExqxP3E9ZnaCR/9lpry2ZTEWrt/hrNOsXw97Q3SX7g1cJLLgE1ZLCMirBDgZXBMbVmCbPX2594n3Yhu9F/cHc5AHNCobWdu3OiBimulNCqygWEKy3Dk/j9pQRp9r5nAbHgIZnsxPx7bwYpeW2lOPrPb3baGMNa5g/NZ2L/KBFqEmFAp75KDgXVSerLY0mIwHHsqDjo4uls8cSqxgsl1UdYxrA8duTJA2rTpNkzBOYNRyE1dA61ZbV1gA9GqyeuhIGA5gYSjsHooUyxJxWhl4sKrAVISjMtwDmE/o12iouVJJrXw5W+/QtYGWnrfi7qS+3wxVDO8ZMymZn6hxW3EFNQ43gcls9fDfo3Gk+i7snZNwyajErOiXJp2i5/4R6OoF8st19wTpFNtRK6L2o1PP0bxpXBvysqDZ6hB/NrtV23EFtU/3xtZ8PxI5uT6F4MNjtub8Zjm2Gc4+ZNEFhElfWSv4MinufJMMvG+kK3yIxouYSVlCoCsuv560BLkWYKYD+bWJlEi3rTJF6ld985YRAhWcASFwSv0hv/S8rB71CKGFQJtMA/RUEBvh3STF2ZdDCKhndtNlUpbQxSFpdDcputUSAsYoEC1+PhhXU99uZN/VqsCKH+4phS3/iJXyGPW78sFvOTijqQ4m/LC9terMzU4BqKp3t0wdXaqwguacxxLubsvNb4c36dpAIcgz84+hmwEl+HtbVqFGAsDvBIDL8I6wEl8OhvicYhSumpUKkZ02mbXMGVXbpg4cCWJwve9ifOcCNf51zgGziVKWRJn/dmgb17u2yso2zRmAMQQ8CLeMC0QjwFgOGyRyKnvng0nOxs3gjHCC12jtxUWWuNupAGaoKYyMCa67HkK/BHGzDCAxIFHcX02yPVp5aO2pl7IkyW/H1XY9UIw6f9sZ56IzrFEFliGR03t3XgwHs0uwQs5sEJwRFxHSaCdsaYBvDb1Jy0gNXkZwzaHr0uhEjN+ga8OuuKkjp+nUFuMQxnyQjOXH8KvxDbIz0LX03egCYDfPUIvVQyfhvywQPduqJ5BPB7rK2MKHrEAIUB5UsOstOPihlqic/ktEdsn8YdeGPKmq4ZXfjIXMz/jhWK7WBMB8euWaI2A/vx4r5d5KCDTBbRt6e+3HMsSWGqnGCliAw0eWY7d8oSycd6eVQaOlxhN8ifQ2rg32YpS3hamW2sPVnuZOCkBsVzsMag7HByiX3GJhv8CJjp1DrkllXmyn/dgG2WJD1iQE5UE9/1UpoPrj5hdulpNOYtxqlgAzLj50baDqw8v0P+/Mb2z9ieQQapNBx6qkvw+sgHz3xUPhZEY3A2MmzdOWW0tOqgEzFSfhA31EYI27+TL5zOEbgRwj1GZZ27poi0JqXqOez8Mu83Ta+nI3MH/baO9EtG1TANC0YYAHgRWMbL0GB2OUWIU5sYIVaL1axafmckeoCLFOv2J00buh+p3fQqxtm7w+7nVaeOjaQHOnjYTmiflrAVx01uMuy/Q2bfn7JCsAunVN7EGVyOkynAtYbwwux8y4G5QFtfP4xM0CybdnYo1ZxUWbfplBw/EfkTJcqhcd+HyHADOmLNkTN4Eu20eGFMnL7hu2vvF3Mj+zQpD5E80O0f4OEGa+J5+cLr/d/GUcA1i8YqoOzh4Tgvi/lzzzmy9UVlfucIw7ZuFo1/+BlAuny/EH/TRlIQhXYwkzfJ5obWhrmJ9uKGT+tt2dG7FHzESCPizQh5cNl2QfOR1H4UuwUm6Hc4FJ32H6E/N3Gw0z7r/zgK9SMpocRD9DgPrpckz/2rHdMO5PVrdXK2WJ2YmT/XJ8rdvqmn1gp7rDbBCpJMdKghErlpFVa49XSWsVVjCuNm4S345veuq3FNqyWUsXcQXl8gtI53+WLJrTbLblZvtcL2VJXtUeG6SjUxuZP7VSSskz4eDQx8V1lqsC0S5y2PhI85fXjBMVVq0+tFElYvpBzwM8X7hAFsy5I3g0bjMpD7p0aquVsiRvOwD7azM/433p15Nq2pqkBSDACh4/ALsAa+N+qLsBM5wJPH8jVL8r5NVfLZdTTmnZSavGttCoFFGzO0knnq+n9sTi19PKgJIWgEqfVg4BK8BOUCwegpR+yHfPfaCrXKoxIsYVQAgcB1u4f7OUN1+qsIL2ATMWozCliPIKcNn8yZWf5mSOJTa/niwLgLadr1qH7du7DqjxMVCHglJHYzUJ8mK2q0Vn23WC1iG9sPiotzurdK4cjrycrQFm3eLaYJ9PDPPz/0R3WZ/C3hla4eOW30lvBzDepCsZV+BcgR5/Xo1bA2bsh60vp9evlkk37sVqwIzjKRZhJ3IfEb+wRBb0/6bJFIWkAR3aTMqSPK/8pu+G+TNRHokzmDajaSZ/5MfbyOsbL8RKeTZ+naIKRI/Pchwfa6bXUuVwrAAzfLioClP8UPpQ0fLo+VGr2hPdJfNT7zerZ6vlkdIbfe0v2e4kpAiZn4ddHno7fqUtAJUBDw4CRNoBRR+KF+Mft4MQVAAz/VTn+tbetFQDZgorYPoVxBV4qmjHugjNM3j97bjtqutGZ84jXWygi8zf0cJ4Nv07T8yVwyfiOISiD4XZQfoV9slMdp4FIVi5lQ8I4wrgsOYxcBspGSPFFZD56eBm3BwMLWwTbARZ6vgjdn8Zv0sadNp5cIwonRcAdmUVsAJHbsBKibiCkYo6VElym41+NsdL1YAZVaI+AmYeDn0esIL+u4I6DBO1Sns/7f62o5uhRV6MBrbFh4deVoXMzJUFxtLngsHhA/BflgX9MNIVBpkLYCYN7Ck5VYnCgBlQY1ZqRL0C5iB6bdsb5JT9gBVMmL+frs708zfnAcM8WZi7KIxsH4CJ8r4c5aW0nskIEQMGeOCJD8hoAVhBaa5VINq2EGWkv01Pj20mZTYNRpixtvEN8tqby+QUVcFlosu2CPHnvKQz5JjsvnL1jy2cselZqA3mdKoAABGnSURBVPFClhhK7wQr1uyJ5LzX4xiA/KQgHupbBKlKaFfnELLU52bmwLaGaLVAhxbcjcrt50WIK+C4DSBmzkh5sAxx3LzpAsOaXzwDxImQNzMH457NGjMFQvD9t0hh9Gr0ljmIMMlKCkhAXnnRfWtNTDVgRvyDWIHnPSJ9iCs4KlJcQR5dImygK1O7QNYEQEeN8fB7PeIKdt16MX4/C78DK6AQdEXQfTVgxrGqc0F5PWR8cVCvQC8E9S+T7IoBMdXnjOztkOFx8HcKAe+OIcCGtNkTAN2z4GDMAtFrgRXIhfinWdgIug8wIxOYegWjo0/DYgrUeP73x2hQXwhoHqWZlObSrAuBGYV9HqALBLM8cGHr2JVVAagmyOp1J4D5r4KFaFdVFtREmFWEpWMEbOPDIaaFmbQ4hYm4nsO54FxZMC9KDiI723OWc37aK73t0tF2asM26D+20rbbRtLv692A9QqgGEFnRlwBIsyqy7maXSPpviTRvn04dhVgxnoF4i2V4+YBK2h4ESuwi11UdtBsLhA2KsxDPL1lGf7IusCpX/nYAQxZBhFX4BYQV9CHuAK4VBsnunwDZhydfbB3VV5S8V+Dewgy7+1yo6pXMLFLNbEC+g6FcwKF206dwUIfrAYHq61DxAgamYNj73+eBCDYCR57P/zngBoX5qlEXGq965q4Ar1668zbrPkLc6EHgZ/9FVWvYGKXaoMV0FSalWqPtRg2fF7h7+zvZtxtlzxqVkLyJACVHEQPDb9dtjrXYbDACpB6Radc6QbATK/YHIrJq6R3t7si5iCysYJO1/ttxIu26meEgDsdMz7zbJDKlS8BUOwRmEmZg8gtQ0VwTqK/pa7yUmUmzd/YwlOucxDhyM+yrqhX0Fc6W2EFjSPMiBXwXGAyQ2cVMKslBKnGCuSVSbQ6dNfwNNnGvxh4MUylql4B9GeqDioDXd4BM60O6R1BZ6kul9eKN3qmLDr06QhCkJfCGLWEgItZKlhBXgWAfIG+Qz1gXEF5pzOw9l8E14JZurZxVwBmWh0yZwKqQhQCb/QnEPAzNVYwoRMd37fzB2UZK6glBPw3YgX0HUrMfTrHAqD0hQpiquIK/CuApu5mJeLK+/gqQmAAsxIizMqjv4KMf0kW9n830JomQo7zUhnS3rHD6VJ4LkjEf6gbGKSiOa9ce4QUfRTzK74bQlBGihJmaDB/z/NY7RUSFiLWK/D+iP3hQsQVRMlBRJcJulS/JdhVzOJhC1iFjp37qR5glli2uDwzRXia9Cq4CrWNHQ+1jRFXUG0mtVWAzk1x61+uCIHjuBDsElSh1yDkX5V9Zl4r+zGuYMLLxgpsRrN3jyzxQxgwY5JcYgWxJsvN0oBbZ43wm4NPvBeAGer9lubBUoTtVPFOVi0hzYy7GjBz4CHrAEH15RaZiRxEhyMH0cRlXUkD5hciVmAbCrLGB/UAM2IFFILY0qVnbeDNMEOdZ4OD4T0/2EP6Rq/DSnm0SmSrMzoTZOoWCxFNwroQCRyqVQ6iKahtfNTf/qFBWVeOn6lWZuPOMlZQDzDjTkch+EsMzJLb4JKJx24Q0+/86w6yddPlGCVyEMEyND4HUb4XAFPWldQoACsQ38YKGpV1zUtcQfhcYEom8WDcdnhlvhlgIjEwqsA9z8yQ0p8vAGB2Fh6frnMQdQVgFrKa4Fcm6HXdtRD4M4Laxo0WybxgBWYcHLNBje2iebaQNBpz1d+7VwDsYbJewbud01RcgSNv7bLaxhypVuuoEtFM6rlPi18CVnDg2gjcMAPPsMSSyUHEtrKmJtZShwzvthVXMBkEoGLlWDF0ArACxBWUGFfQxYAZzKSe95wUEFcwECmuwFSbIXBmQKcs8kYtrIAyTt+hlrCCLA4ywqLVxiOD6z8O5kBFS2cfFVfQHSkZSRALK6A3KYXAReZlZ6lsWH83PEmN+lCPeIww2ws30zLakVtZ45Ewamx2LCbdojdpU5Vlsja4Njg7yquBhejBoY/JqAM3Y2IFyEHEYkfam9SoE1Eay+IzIcBM1TB7Fbae0+TY/nsjdJgOdLQQ2bp2hNdSf6SeEJjCepHjCiaZAHCigjpmq4cRVwAhKBXnyuiIHVfQPYCZoEBhsdCHHe/nUIf+DuoQ1YSJLpZfegdumkezTgdbCMwOaOIKOE7uCA2vSSgAY6s8UOOgXkEB9Qq8oF5B9wTXcG61KuOAGQpyogzM/V8NOIJ+QxQAuk7YTNWQkTr0QC3AjELAuAJiBaw5NuE1WQWARNGH48EnYRXachV+/nyAotLNoBtcqg0D02n2dfhHfUGOPXhVBAHgOYCCkHU1yAylHmAWKa5gMgtAJcJscHhb6MoXgKLMQcS4gkq8cf7iCmybuA6t9LwXpa94uBw956kGAkArEHcA+g2ZKy88Ej4XGCCQqVdYhqkmVpCXwTXaydr4+1hcwRRxdzwVAnAx7u3HYQU8I2s3iixf1b5C7GkR1iDXu1U2bnemTsQ74UUfIWaj5mUi7LI83nDf6plJWY+AgjCuAmXWJzRt4jvwJv0M5v5qoKq7VtU2Ztwxq8NnXQhs9whWp/FGH5Lili/KwMcbpSVnepV34iYwZgeg5I1Haq30HEPNHER5G1w6AjFWr6CEegXECpjIFqTyPJ22McvpB7WDnKMc/1z3XikVAIb1g/knjB6jukA0eMecM38t/rCDa8ZhBT0BqCdSq4Y+gmPyrchBpLECZU0BY2VvBwi7SNMpDv/m3wbT54UycAgmfULmp8mTag+d4/Jy8I2yENbbCaqwgp4A1CalPkA9MPzXUvZvUXEFo0jExUu7VPOnLNBOM79OncL+gZkd1B3wrpGZWy9DfECjbGtEfcn8JlIsvLtlYYxRmD3KM0YgDFag4gq6aYBRiBD9GeNSPYYVOMAKwPmMLdBYQaeBoorVQ8c6cOXfBHG4XN45FiFW8YMaP3La+qn2EPyy/X+6jSfCZlKzeBEr+H23DTY6g0d7UjPQCtQrcEbhRFf4HFZapi2kSlSpV5C+hWi834/v4ZDnXyjPzr1dliGNysRqD+38ZH76/5D5TXtGYLqNL+oJwZ+6baDR2LqVpwZRr2B0E2obF4EVyDQ0UdbCoFIZMjNdK6228o5t72YeUSbTZeoQZJSeuzJCg7T1U+2xS7Aah7IsHvAjDCnyI7aTH7GBP6Y2a5G7mM0H9ZmAcQX7eIvhSXoJnEiJFWjATO8ApudJ0bR6FVNVJ5FOvTz6G1WJfuHBj0QgHdUdMj8FOOzx2Y3Mbx+E+fM4cCypyYowF3l7xLKkrB5ehN5fi9V3doAVkI40lfIwyoHFTVebOfWBl8zvln+BPqCqzEHrIlCTB116e9Leb5sG+Wq3Mr+ZBwPqUXXlbklgLJGJijAPXfLIfUOHK2/SYmFvGQVWoE2kGi9IhqF0xBfbZr1h13sS318sC5R7w0SHXfYnnCvUVnmSENhOT7KtJpqVnygw4wVesTsX90rV6YGn9X3NcKsf3x+hh7fBpfqDCjDTcchx6tOVLVwBXECitWvD/5YiSikNzN3QIGU66UH3BtYOyHIGiLjmLXzYNcxPiw+Zf1wmiZ4AtE56LQTECkY8CEGpX50J4kvVzjAdfkHXC1DoLipKSvkh1FJeIp/p54ROtPLzb8wBxAAX27ozGebcBvQYIUZa1YwPmAzEaJ3FG74ZBNcMPrkbXKqvB5MO6DOAKuvKA1erZsWKTm6YX+0s7j3Q3pETdD4tGBMxP7/NVIjhijH2O90297UOvIwMI+D1Rr2p7DYiNGTZ2B8wgNnK4R3BkpepHESsV6CxAlsI+Oko9A4DXMEOILfJVHiqfrr/1QbZ36jqkPnp18NrMtn47cN9pPDIKBMSO890YYN6Zb3j4e1k21nn46cz8et0Va9Ao8ZR6WzUHjYHtQcxvSwe5/vXyMY3r5ZTjsCKNqFfj3FtYL6fycL8hra2qwPVHa78DQPko05MF/JsQkMaBlbwB2AFThFxBfCx8VnWdazK/US7gK32oFokM0D7b4hf/ops+OENOOyO82UPjcB2bTA6cJwH8oQI1nKztqXHCDsXGx50qfPz4Nvw6glAQxI19UBFxx5cezyizK6B+8TsIAcR/1bLh2g8wFWCmdODa4PnnicL530zQg+I6tLGb1wbzLy2egaJ8MmOPhI2c5rxNp0fqCcASc7jCmAFRUGq9lKQgyg4E9QGzDipQZ1g73dY+c9CFZgHInSvXmY3WwWK0ExuHqnH/MwTymwQTVWe7wlAcvOuV997gRWUirdACD4cKvBtGNT0wDD/Btj5T5dFcx/DHyay9PA9ujbQqY3qT9gGzr932/zWYn7+mymlZFuCIs1stxEo0qBTe8gk6F3N2sZ9TMQ11yraofVzbebU9b/c8s9g60cSqznrIzB/LdcGM7Rum9daAJdZHNoqptdthEqNt5v4kJ6oQdQrcEdQvglYAX83qdpNQlu3/CSCb06T4+f9NELb9VwbIrya60fswz1VHQa6c/Vv+eoJQMuka+pFLQSsVzDy5mX46R/wO02cZSDIJewK38NPZ8jxcG1ojO4S3Aq7Nkw2gIvZLWjpabugdk8AmuLjNh4eK/CNHESeB6zAOQcenVPhTXq/FMrnIHb3tw0ALs6VcW0wbr3dbuYkwY1wG78ehnmS+RtmfYsyWz0BiEKl+J7Rk3n77X0ya59TwfB7Idb4CjnhMG7jEx14yfBc9U1tLxvx7HZXZqP2cMdkjbDf4n49rinpCUBclGylHUaUseLjxBeztNG1gXo/r253bTDUMAdfs/L3qkS2wmM5eGeild/O2mAC17uh2mW9aQk7tBkVj85sXPm5A8R69XaAWMkZa2O07TN8kX494aot3a72hJNZ0a+nUYqXlojfE4CWyJb4S2HXBn4wC6lYkhp42K+H3yFv1kxnGGcnegIQJzXjaYsr/1646ddjHOAM83fjfNVzbWDoIq09jc5IbVG9GwnaFkEy8DIPvbT48NBrzgfdau6sx/zGtcFO0pvI1PQEIBGytt0o54WV3Hl3q80/zPwcJ1d7la8Hd9N+Pa1QvScArVAtnXc4N4zq4m5Aa5BO0FuNF+R1/uoxP1OWtOXa0OzU5JWAzY4zz8/TCkRrUK18PnkcVy3m51mHrsx0aU716glAquRu+WM8EFMImNPTzujGBvM0h7WYv27Kkpap1cSLeSJeE8PqykdpGqUQ2Alt82QarcX8tO3Txh+ppGkSs9oTgCSomlybBhybhU/YPvL8YpbBsbCdn4JrXBvqpixJjoyVlnsCkAaV4/0GD8TGNyic1z+LQhBe+enUZlwbIld0j5eEPQFIip5ptdso8VUWFrZaIZrsd+SUJWkQMwuESmOc3fgNzh3THjJGIMtYgS0I9OGnU1ujcq2pzVdPAFIjdWIfImJMlYiqUVbiBMIgFvnMuDY0ym+UGKFqNdwTgFTJndjHiBUwLxALX3QSMLNXe9tcS/s+/XoSd21olsI9AWiWYtl9vhZWkOb82gdwO5iFyC6D1zPH/JzKNAmUXdbpnp4ZrIB1wNIEzGrZ+Pl9Mj59e1Lx62llGnsC0ArVsv0O1SCeCagWmXjaJAGzen49dG1gKaJMXz0ByPT0tNw5ulTzTGCqv9u7fZxYQS0bP10byPxVpYhaHknCL/YEIGECd7B5O5MEuxF3MH0t5jeuDbGkLEmDdj0BSIPKnfuGHVcQV3BNLYCLbZP5aePf2LnhNv/lngA0T7M8vsG4Ap4LqBrFhRXY54uGpYiySrSeAGR1ZuLvV724gmbOBLY1hz9TzWKSKtr4O+7X0wrJegLQCtXy+46NFdRTZWqNrhbARd6huhOpFFFWSdYTgKzOTHL9CscV8EuGD2rtBrUALj7PUkRk/sz49bRCsp4AtEK1/L8TTrpVz0JUy8bP0RvXhkRTlqRB5p4ApEHlbH6DznMm/YrJyDARP5hn6NrArA25Z35768vmFPV6lTQFyNRvxU3AjLXG6gkAdwIGsZD5c2Pjj0K83g4QhUrd/wx3A9Yb480zAs2lZHq6LjN0kYddCkCu9f1a0/j/AcYELhIA9WEVAAAAAElFTkSuQmCC">Alex Scerba</A>
<DT><A HREF="https://scerba.org:446/apps/files/" ADD_DATE="1679497532" LAST_MODIFIED="1726661880">Nextcloud</A>
<DT><A HREF="file:///C:/Users/Alex/Downloads/CCS%20PACKAGING%201B.pdf" ADD_DATE="1725836054" LAST_MODIFIED="1726661880">CCS PACKAGING 1 copy - CCS PACKAGING 1B.pdf</A>
<DT><A HREF="https://selfservice.collegeforcreativestudies.edu:9443/Student/Planning/DegreePlans" ADD_DATE="1721841951" LAST_MODIFIED="1726661880" ICON_URI="https://cdn.elluciancloud.com/assets/1.5.1/favicon/favicon-16x16.png" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABblBMVEUAAABTU9FTU9FTU9FTU9FSUtFRUdBTU9FTU9FTU9FRUdFSUtFTU9FTU9FTU9FSUtFTU9FTU9FTU9FTU9FRUdBRUdBTU9FTU9FTU9FRUdFRUdFQUNBRUdBRUdFTU9FTU9FRUdFTU9FTU9FTU9FTU9FTU9FTU9FRUdFRUdFTU9FTU9FTU9FTU9FSUtFRUdBRUdBTU9FTU9FUVNFjY9Vyctlxcdm3t+zk5Pjz8/zj4/i2tutnZ9ZSUtGGht/n5/n////9/f7+/v/y8vt1ddpWVtJTU9Fzc9no6Pnw8Puzs+uYmOPt7frIyPBbW9Oqquh0dNq6uu2IiN9QUND7+/78/P6MjOBvb9hmZtbn5/ixserFxfDf3/ZfX9SXl+Pm5vhlZdZ2dtr19fyHh99OTtDx8fupqehPT9CKiuCRkeJzc9qJid+ysupZWdN7e9yRkeFXV9Ll5fi5ueyJieC4uOy1teuEhN5wcNny8vzj4/diYtXOIeb4AAAAMnRSTlMAAAVAnNr0PxWL6+qKFqz+q4+NR+zrRqak4+H7+eKlo+xFjASqqYnq6YgUPprY8vGZPeT9DkYAAAABYktHRD8+YzB1AAAAB3RJTUUH4gEFDyw4h4ldpgAAAQNJREFUGNMdj1lXglAYAL97UyPLKCvbV9vLFoRCu/VBSmGrVLSHEpTtK1r++4jHmXPmYQCA0IZQOBIJhxopAR8J1xQV0qKYFppbOEKAxFp5aWVVljPZNb4tRoC2s/UNREXFzVxei1Po6NzaRr2ws4t7+weHXQnoFoqoG0fG8Yl5qheFHug9O8cLlr/Eq+sbtEp90F+2lVun7OLdfUWxcwOBMJwHW390ngIxWLLwmb28vr2zAn74yZDwie4Xcxyt4uK3MAyJEdFC1zPNrIuWFB0FGmdVC1FVEa0qG0sC4cb5mpeRf369Gj/Bkf+5ySmtLkl1bXpmlgS/dG4+tbCYWlpO+vgHVIo31pIpY0kAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTgtMDEtMDVUMTU6NDQ6NTYrMDE6MDDEH/knAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE4LTAxLTA1VDE1OjQ0OjU2KzAxOjAwtUJBmwAAAFd6VFh0UmF3IHByb2ZpbGUgdHlwZSBpcHRjAAB4nOPyDAhxVigoyk/LzEnlUgADIwsuYwsTIxNLkxQDEyBEgDTDZAMjs1Qgy9jUyMTMxBzEB8uASKBKLgDqFxF08kI1lQAAAABJRU5ErkJggg==">Plan & Schedule Courses - College for Creative Studies Application</A>
<DT><A HREF="https://idp.collegeforcreativestudies.edu/nidp/portal?locale=en_US" ADD_DATE="1634580623" LAST_MODIFIED="1726661880">Access Manager</A>
<DT><A HREF="https://cloud.scerba.org/login?redirect=/files/" ADD_DATE="1726416092" LAST_MODIFIED="1726661880" ICON_URI="https://cloud.scerba.org/static/img/icons/favicon-16x16.png" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA21BMVEX///+Ar/9spP9Ylv48hf8AAP9wpf9Wlf9uo/8wff9IjP96rP+lx/4vff+dwf78/f7+/v7U5P6E2P9mz/8nkca15/+Z0u+S0e9Cwv+66P171f9Mxv8ijcK96v+KxuODxOMrvP9vyfP4+Ph51f8mlcun4/+f4P9uyfPk4+P8/Pzg39/p6Ohxzvp2yvJxz/qdvfWZ2PeVzuqZ2fdxovWd2/mf1e+d3Pnf3t9Givx+0/petd9gstl4y/KNse4wff76+vrh4OC8y+UufP/y8/R0pvmXuPCWt+9wofT///9wDHCLAAAACXRSTlMAQLvm/AGo5bpSODFTAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAAAZQAAAGUBqtYXrwAAAAd0SU1FB+IGDAE0F2v1RjYAAAC7SURBVBjTXc/HFsIgEAVQEggxhYC9a6xR7F2jscT2/38kAd14d/POGZgHgKDpECGoa0AxsGU7ruvYFjbkbBKPMoF6xEwSTNLsK02w2Lc8lsnm8oViqcw8SwO6TVmlWqs3mn6rTe0UgA5jHb/b6/X9YDB0IEBuEkgBH7lIBeOJMA04nyG1Ml8ISxGsoHy0s94I24Dv9in57SE8CuGJR2dNHna5cukW4+/p92TcRbFp/Mo9nq/3/qzK/dX/AOdZFobp7ssPAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE4LTA2LTEyVDAxOjUyOjIzKzAyOjAwLxDsbQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxOC0wNi0xMlQwMTo1MjoyMyswMjowMF5NVNEAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAV3pUWHRSYXcgcHJvZmlsZSB0eXBlIGlwdGMAAHic4/IMCHFWKCjKT8vMSeVSAAMjCy5jCxMjE0uTFAMTIESANMNkAyOzVCDL2NTIxMzEHMQHy4BIoEouAOoXEXTyQjWVAAAAAElFTkSuQmCC">Login - File Browser</A>
<DT><A HREF="https://collegeforcreativestudies.instructure.com/" ADD_DATE="1599524593" LAST_MODIFIED="1726059048" ICON_URI="https://instructure-uploads.s3.amazonaws.com/account_86240000000000001/attachments/985775/favicon.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABj0lEQVQ4T92TTUiUURSGn3s/p5xRhhmGMSMljRkGfxY2GwspF4GbcleaA23EWkioO1uZ0EJdhDKuIqIkalEuAmc1iyRJEgVRkWgRYalNYxDCNAo13tOXnyiki8CdB87iHC4v5zz3PSr3ySUcItQRFkilYT2zByf/OJSX7oe1y+Dbd5hdhHNnocADabv+uqYYfycE/Ir6WiFyBpZW7FyGSEhxMihsCyQn2H54K6ZJvBb8XkPTFc2Fq1ucCCq+rAqdrRaNlxT34oabLZpnr4S+bhyB6GXD21GNxw3GwJspyG5C/Ikh+VTz67fTz25Aw40thnosiosU4bKdCcrqDEuTenfBzE94kRCm54UHfXt9sR2z8AHu9BtKihUPB5QzwfXbhrtdFhUhIbUGyQlDdUQT68gxM5bHx89QaHPZ2BSOuTSVYeFau/A8rh2BH+sw+AiKApBnKWqqhPNR6B0Uhu01/D4YuW/h8wqPXypOn1K43UJb8w6Dg5w8916xklL89bmy01soXLR/4t84ylb+3wv/A22/quk60OcmAAAAAElFTkSuQmCC">Canvas Dashboard</A>
<DT><A HREF="https://campus.collegeforcreativestudies.edu/" ADD_DATE="1641910170" LAST_MODIFIED="1726059048">Campus Offices</A>
<DT><A HREF="https://www.elmselect.com/v4/school/389/program/1/lender-results" ADD_DATE="1668879139" LAST_MODIFIED="1726059048">ELMSelect</A>
<DT><A HREF="https://rhubarbes.com/post/724479119752036352/azraelrenee" ADD_DATE="1706053682" LAST_MODIFIED="1726059048">Rhb_RBS - azraelrenee </A>
<DT><A HREF="https://mail.google.com/mail/u/0/#inbox" ADD_DATE="1472520946" LAST_MODIFIED="1726059048" ICON_URI="https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAACX0lEQVQ4T63TQUhUQRgA4H/mvbdv963u2uaW1UZpW7GWhtSqEJXVbhgRHXY3SaqbBB6iS0FFshR16RIWQnULQlLsEnjQNbVEREvByK12Iy92WUtd963avJnpzUKntgjsv8ww8/5vZv55g2CVgVaZDzlg2ONxKRapdgkrYweTydTfUN4NbuqQ/HqGjjjr4TuKAuBg2ZYOO8ahZc6mnA5bs2/iw2A+ZPFOySGt5lsb1ni5oUOXPGScRt1er+oi+iTI6g5sZm0oceqapra49o/eM3UmIB4FPBurvaSWz98sPJu0AzUHDZoAwitQXZRbG181je+Z7vFRzsCzsRiK7CoQxp4RrFwUgMJIq8SkBihbgMLGj4ARgt7spviLz6eqcgBXV8ZrPnX56odvw04XBotdA9X8aJnRuACsWPItEw6adwGMM9NwP1sJzzNb44vOTBU63mqmp/UJQ7X7PDNj/MpUy+w2Nute4ghkExFhcA5WjuFr6Urq1glX8aSxDqmMxOcd2V9AZgJJio9gmZemE5EHQ5EjhqI15wpghqiNTGjbufDml1/WK50WBIhT9jtglgt0kA+PXFUGUgF/kwTorgAo8Mvu2Njj3Z3hOhuHfjB39keAMRrov17QJxJTwep9onX3jr4Rrb89fBQkiOUD3mFZ3S52YBASHLhREMv3H/ifhgKg4l4BAKGJOUe2AkWjHA/K+hNJthxjnJqHg1DfNdvrfEB1e/gAl6DLvEdgBu052VB5PlfmvQ+5sjYNa0R/Rof591H0Ix+wqyNiccpGkZhbSbnn3l54RP7PY8q32r+O/QRsJQrNAwTd6QAAAABJRU5ErkJggg==">Gmail</A>
<DT><A HREF="https://www.youtube.com/" ADD_DATE="1514940044" LAST_MODIFIED="1726059048" ICON_URI="https://www.youtube.com/s/desktop/dd166493/img/logos/favicon.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqklEQVQ4T2NkoBAwUqifAW7AfwYGAaBhBlADHXAYfAAqfgGo8QOIDTYAqDmBgcF4PmmuOZsI1LyAEagZaKvxedI0w1SfNQQZEAA0YD2ZBiSCDGgAGlCP1YAHa4GeA/ruwGcc5p9txG/A/zMQjRs3At3ZjMUQYg04eJCBwaGYDANAXigoYGDY8BivFygORMqikeKEBPMcWlIGJWlQ0kYH2JMyeYkIoovi3AgApww7KRWVvS0AAAAASUVORK5CYII=">YouTube</A>
<DT><A HREF="https://www.floatplane.com/channel/linustechtips/home" ADD_DATE="1546057763" LAST_MODIFIED="1726059048">Floatplane</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=fahrenheit+to+celsius&ia=web" ADD_DATE="1708393546" LAST_MODIFIED="1726059048">fahrenheit to celsius at DuckDuckGo</A>
<DT><A HREF="https://beta.floatplane.com/channel/linustechtips/home" ADD_DATE="1679699109" LAST_MODIFIED="1726059048">Beta Floatplane</A>
<DT><A HREF="https://www.reddit.com/" ADD_DATE="1514916599" LAST_MODIFIED="1726059048">Reddit</A>
<DT><A HREF="https://pcpartpicker.com/list/" ADD_DATE="1663275295" LAST_MODIFIED="1726059048">PC Builder - AMD Ryzen 5 5600, GeForce RTX 3060, Zalman S2 ATX Mid Tower - PCPartPicker</A>
<DT><A HREF="https://drive.google.com/drive/my-drive" ADD_DATE="1477416780" LAST_MODIFIED="1726059048">Google Drive</A>
<DT><A HREF="https://stars.uchicago.edu/telescopes/telescopes.html" ADD_DATE="1515890563" LAST_MODIFIED="1726059048">Yerkes Stars</A>
<DT><A HREF="https://hangouts.google.com/" ADD_DATE="1549387556" LAST_MODIFIED="1726059048">Google Hangouts</A>
<DT><A HREF="https://www.disneyplus.com/" ADD_DATE="1588970729" LAST_MODIFIED="1726059048">Disney+</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=bauhaus&iax=images&ia=images&iai=https%3A%2F%2Fwww.artranked.com%2Fimages%2F85%2F85e436def8051adcd98af14361cbf746.jpg" ADD_DATE="1709133211" LAST_MODIFIED="1726059048">bauhaus at DuckDuckGo</A>
<DT><A HREF="https://classroom.google.com/u/2/h" ADD_DATE="1536339387" LAST_MODIFIED="1726059048">Classroom</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=huion+kamvas+16+2021+replacement+screen&ia=web" ADD_DATE="1694791170" LAST_MODIFIED="1726059048">huion kamvas 16 2021 replacement screen at DuckDuckGo</A>
<DT><A HREF="http://www.newschoolers.com/home" ADD_DATE="1440778437" LAST_MODIFIED="1726059048">NewSchoolers</A>
<DT><A HREF="http://education.gale.com/l-barrett/" ADD_DATE="1465613079" LAST_MODIFIED="1726059048">Gale Courses</A>
<DT><A HREF="https://www.codecademy.com/" ADD_DATE="1486452295" LAST_MODIFIED="1726059048">Codecademy</A>
<DT><A HREF="https://cad.onshape.com/documents?filter=my-documents&column=modifiedAt&order=desc" ADD_DATE="1451252296" LAST_MODIFIED="1726059048">Onshape</A>
<DT><A HREF="https://creately.com/" ADD_DATE="1588524237" LAST_MODIFIED="1726059048">Diagram Software</A>
<DT><A HREF="https://www.glaseducation.org/" ADD_DATE="1556111937" LAST_MODIFIED="1726059048">GLAS</A>
<DT><A HREF="https://skynetjuniorscholars.org/explorations/" ADD_DATE="1532007912" LAST_MODIFIED="1726059048">IDATA </A>
<DT><A HREF="https://stallman.org/stallman-computing.html" ADD_DATE="1528644054" LAST_MODIFIED="1726059048">How I do my Computing - rms</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Scheme_(programming_language)" ADD_DATE="1528646752" LAST_MODIFIED="1726059048">Scheme (programming language) - Wikipedia</A>
<DT><A HREF="https://www.modmypi.com/blog/how-to-format-sd-dead-cards" ADD_DATE="1529974407" LAST_MODIFIED="1726059048">ModMyPi | How to Format “Dead” SD Cards!</A>
<DT><A HREF="https://www.masv.io/transfer-raw-footage-reddit/?utm_campaign=Reddit%20-%20Editing%20Remotely%20CustomLP&utm_source=Reddit&utm_medium=Text%20ad" ADD_DATE="1530849707" LAST_MODIFIED="1726059048">Transfer Raw Footage - MASV Fast File Transfers</A>
<DT><A HREF="https://www.planetminecraft.com/project/sayama-city--japanese-modern-city-world-/" ADD_DATE="1535667380" LAST_MODIFIED="1726059048">Sayama City -Japanese modern city world- Minecraft Project</A>
<DT><A HREF="http://www.bikeexif.com/building-a-cafe-racer" ADD_DATE="1525816731" LAST_MODIFIED="1726059048">Building a Cafe Racer</A>
<DT><A HREF="http://www.badeggsonline.com/" ADD_DATE="1532616269" LAST_MODIFIED="1726059048">Bad Eggs Online</A>
<DT><A HREF="https://www.youtube.com/watch?v=yeWzQYh7iH0" ADD_DATE="1534436150" LAST_MODIFIED="1726059048">Blender Add-on: BLAM - the camera calibration toolkit - YouTube</A>
<DT><A HREF="https://www.artstation.com/" ADD_DATE="1534479555" LAST_MODIFIED="1726059048">ArtStation</A>
<DT><A HREF="https://www.allegorithmic.com/buy/download" ADD_DATE="1534479565" LAST_MODIFIED="1726059048">Substance Painter</A>
<DT><A HREF="https://www.google.com/amp/www.gettingsmart.com/2012/08/should-your-school-replace-textbooks-with-ereaders/amp/" ADD_DATE="1534484757" LAST_MODIFIED="1726059048">Should Your School Replace Textbooks With Ereaders? - Getting Smart by Getting Smart Staff - blended learning, DigLN, EdTech</A>
<DT><A HREF="https://moviesanywhere.com/my-movies" ADD_DATE="1535507616" LAST_MODIFIED="1726059048">Jason Bourne Movies Anywhere</A>
<DT><A HREF="https://www.reddit.com/r/VideoEditing/comments/95pjlt/anyone_who_makes_videos_on_youtube_i_produce_pop/" ADD_DATE="1533829388" LAST_MODIFIED="1726059048">Free Music</A>
<DT><A HREF="http://www.yoanaj.co.il/uploadimages/userfiles/352.pdf" ADD_DATE="1542906505" LAST_MODIFIED="1726059048">Lord of the Flies - 352.pdf</A>
<DT><A HREF="https://education.gale.com/l-barrett/online-courses/creating-web-pages?tab=detail" ADD_DATE="1542906515" LAST_MODIFIED="1726059048">Intro to Web Dev.</A>
<DT><A HREF="https://www.tldp.org/LDP/intro-linux/html/" ADD_DATE="1543207837" LAST_MODIFIED="1726059048">Introduction to Linux</A>
<DT><A HREF="http://www.adequacy.org/stories/2001.12.2.42056.2147.html" ADD_DATE="1543646109" LAST_MODIFIED="1726059048">Is Your Son a Computer Hacker?</A>
<DT><A HREF="https://www.facebook.com/acropolis/" ADD_DATE="1547610642" LAST_MODIFIED="1726059048">Acropolis World</A>
<DT><A HREF="https://ohshitgit.com/" ADD_DATE="1548295569" LAST_MODIFIED="1726059048">Oh, shit, git!</A>
<DT><A HREF="https://sciencenotes.org/writing-fractions-html/" ADD_DATE="1548302399" LAST_MODIFIED="1726059048">Writing Fractions In HTML</A>
<DT><A HREF="https://store.cablemod.com/product/cablemod-vertical-pci-e-bracket-hdmi-displayport-black/" ADD_DATE="1548550782" LAST_MODIFIED="1726059048">Vertical GPU Mount</A>
<DT><A HREF="https://www.techradar.com/news/computing/why-computers-suck-at-maths-644771" ADD_DATE="1549394832" LAST_MODIFIED="1726059048">Why computers suck at maths | TechRadar</A>
<DT><A HREF="https://afterglow.skynet.unc.edu/workbench/viewer" ADD_DATE="1549836665" LAST_MODIFIED="1726059048">Afterglow Access</A>
<DT><A HREF="https://linustechtips.com/main/topic/986897-psu-tier-list-21-legacy/" ADD_DATE="1553867628" LAST_MODIFIED="1726059048">PSU Tier List</A>
<DT><A HREF="https://www.gdcvault.com/play/1024068/-DOOM-Behind-the" ADD_DATE="1556161275" LAST_MODIFIED="1726059048">GDC Vault - 'DOOM': Behind the Music</A>
<DT><A HREF="https://www.needforseatusa.com/en_us/maxnomic-leader.html" ADD_DATE="1555387934" LAST_MODIFIED="1726059048">MAXNOMIC® LEADER CHAIR</A>
<DT><A HREF="http://xs650temp.proboards.com/thread/4123?page=1#24810" ADD_DATE="1556072698" LAST_MODIFIED="1726059048">Frame mods Pictures! | Welcome to the XS-650 Garage USA</A>
<DT><A HREF="http://xs650temp.proboards.com/thread/13802" ADD_DATE="1556072728" LAST_MODIFIED="1726059048">XS650 Monoshock | Welcome to the XS-650 Garage USA</A>
<DT><A HREF="https://www.codedonut.com/chromebook/install-full-native-standalone-linux-on-any-chromebook-elementaryos/" ADD_DATE="1558482281" LAST_MODIFIED="1726059048">Install Full Native Standalone Linux on an Intel / x86 Based Chromebook (ElementaryOS) | Code Donut</A>
<DT><A HREF="https://www.reddit.com/r/technology/comments/v5n9t/linus_to_nvidia_fuck_you/c51l87o/?utm_source=share&utm_medium=web2x" ADD_DATE="1561435183" LAST_MODIFIED="1726059048">Linus to Nvidia - "Fuck You" : technology</A>
<DT><A HREF="https://www.therookies.co/" ADD_DATE="1563237592" LAST_MODIFIED="1726059048">The Rookies - Digital Artists</A>
<DT><A HREF="https://www.reddit.com/r/oratory1990/wiki/index/list_of_presets#wiki_full_list.3A" ADD_DATE="1582774804" LAST_MODIFIED="1726059048">index/list_of_presets - oratory1990</A>
<DT><A HREF="https://www.formulamod.com/Bykski-B-HTRBW-ED-RBW-5v-3pin-Hard-Tube-Program-Kits-Multiple-Programs-Customizable-Modification-For-IntelAMD-Cooling-Kit-p1877215.html" ADD_DATE="1566356324" LAST_MODIFIED="1726059048">Too Good To Be True Custom Loop Kit</A>
<DT><A HREF="https://sites.google.com/a/starsatyerkes.net/yerkesprojects/programs/lenss" ADD_DATE="1563316214" LAST_MODIFIED="1726059048">LENSS - Yerkes Projects</A>
<DT><A HREF="https://material.io/design/" ADD_DATE="1565206869" LAST_MODIFIED="1726059048">Design - Material Design</A>
<DT><A HREF="https://design.google/" ADD_DATE="1565206879" LAST_MODIFIED="1726059048">Google Design</A>
<DT><A HREF="https://www.helperformance.com/custom-brake-hose" ADD_DATE="1565580964" LAST_MODIFIED="1726059048">Custom Brake Hose | Custom</A>
<DT><A HREF="https://gostream5.com/episodes/watch-series-star-wars-the-clone-wars-season-1-episode-22-free-video-download-online-123movies-gostream/" ADD_DATE="1566096061" LAST_MODIFIED="1726059048">Watch Star Wars The Clone Wars Season 1 Episode 22 online</A>
<DT><A HREF="http://www.phanteks.com/PH-R160C.html" ADD_DATE="1566356307" LAST_MODIFIED="1726059048">Phanteks Glacier Res.</A>
<DT><A HREF="https://confluence.jaytaala.com/display/TKB/My+Manjaro+i3+setup" ADD_DATE="1567029065" LAST_MODIFIED="1726059048">My Manjaro i3 setup - Tech Knowledge Base - jaytaala.com Confluence</A>
<DT><A HREF="https://www.windowscentral.com/tips-new-razer-blade-owners" ADD_DATE="1567694828" LAST_MODIFIED="1726059048">Razer Battery Saving</A>
<DT><A HREF="https://www.backblaze.com/blog/" ADD_DATE="1586923262" LAST_MODIFIED="1726059048">Backblaze Blog | Cloud Storage & Backup</A>
<DT><A HREF="https://github.com/esp8266/source-code-examples/issues/26" ADD_DATE="1581460702" LAST_MODIFIED="1726059048">Cannot open /dev/ttyUSB0: Permission denied · Issue #26 · esp8266/source-code-examples</A>
<DT><A HREF="https://everymac.com/systems/apple/mac_pro/specs/mac-pro-six-core-3.5-xeon-e5-gray-black-cylinder-late-2013-specs.html" ADD_DATE="1575322084" LAST_MODIFIED="1726059048">Mac Pro "Six Core" 3.5 (Late 2013) Specs (Late 2013, MD878LL/A, MacPro6,1, A1481, 2630): EveryMac.com</A>
<DT><A HREF="https://stackoverflow.com/questions/43180/what-are-some-resources-for-getting-started-in-operating-system-development" ADD_DATE="1548570851" LAST_MODIFIED="1726059048">kernel - What are some resources for getting started in operating system development? - Stack Overflow</A>
<DT><A HREF="http://x220.mcdonnelltech.com/resources/" ADD_DATE="1587173824" LAST_MODIFIED="1726059048">Resources - ThinkPad X220</A>
<DT><A HREF="https://blogs.windows.com/windowsexperience/2016/04/22/a-closer-look-at-windows-ink/#7YwcjSLhqEC29dru.97" ADD_DATE="1566413128" LAST_MODIFIED="1726059048">Windows Ink</A>
<DT><H3 ADD_DATE="1571174348" LAST_MODIFIED="1726059048">BIOS Flashing</H3>
<DL><p>
<DT><A HREF="https://tomvanveen.eu/flashing-bios-chip-raspberry-pi/" ADD_DATE="1571174348" LAST_MODIFIED="1716515711">Flashing a BIOS chip with a Raspberry Pi - #Tom's Weblog</A>
<DT><A HREF="https://forum-en.msi.com/index.php?topic=110822.0" ADD_DATE="1571174348" LAST_MODIFIED="1716515711">What is the JSPI1 connector on my motherboard</A>
<DT><A HREF="https://forum-en.msi.com/index.php?topic=121790.0" ADD_DATE="1571174348" LAST_MODIFIED="1716515711">SPI headers and missing BIOS info</A>
<DT><A HREF="https://www.bing.com/images/search?view=detailV2&id=B6F9074A33E79F78EB58B7429F6B009C871495CA&thid=OIP.rYbEk5c0zaNqY077IPoy2AHaEz&exph=480&expw=740&q=jspi1+pinout&selectedindex=3&ajaxhist=0&vt=0&eim=1,2,6&sim=11" ADD_DATE="1571174348" LAST_MODIFIED="1716515711">jspi1 pinout - Bing</A>
<DT><A HREF="https://downloads.raspberrypi.org/raspbian/images/" ADD_DATE="1571174348" LAST_MODIFIED="1716515711">Index of /raspbian/images</A>
</DL><p>
<DT><H3 ADD_DATE="1573176013" LAST_MODIFIED="1726059048">Kate Screen</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?q=macbook+pro+a1398+lcd&pc=MOZI&form=MOZLBR" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">macbook pro a1398 lcd - Bing</A>
<DT><A HREF="https://www.ebay.com/sch/i.html?_from=R40&_nkw=macbook+a1398+2015+screen&_sacat=0&_sop=15&rt=nc&LH_BIN=1" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">macbook a1398 2015 screen | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/LCD-Screen-Display-Assembly-for-Apple-MacBook-Pro-Retina-15-A1398-YEAR-2015/253640985178?hash=item3b0e2e4a5a%3Ag%3AANEAAOSwFV1bBI8l%3Asc%3AUSPSPriority%2153147%21US%21-1&LH_BIN=1" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">LCD Screen Display Assembly for Apple MacBook Pro Retina 15" A1398 YEAR 2015 662578117551 | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/MacBook-Pro-A1398-15-2015-MJLQ2LL-Genuine-Screen-Display-Assembly-661-02532-ER/283658810283?epid=26027545537&hash=item420b61f3ab%3Ag%3A2qQAAOSwFZdduXjv&LH_BIN=1" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">MacBook Pro A1398 15" 2015 MJLQ2LL Genuine Screen Display Assembly 661-02532 ER* 5054524706332 | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/MacBook-Pro-A1398-15-2015-MJLQ2LL-MJLT2LL-Screen-Display-Assembly-661-02532-ER/283652990332?epid=26027545537&hash=item420b09257c%3Ag%3AI6sAAOSwIh5dsYxh&LH_BIN=1" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">MacBook Pro A1398 15" 2015 MJLQ2LL MJLT2LL Screen Display Assembly 661-02532 ER* 5054524706332 | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/New-LCD-Display-Full-Screen-Assy-for-MacBook-Pro-Retina-A1398-2015-EMC-2909-2910/223588916747?hash=item340ef01e0b%3Ag%3AtRIAAOSwvNhdLYdu&LH_BIN=1" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">New LCD Display Full Screen Assy for MacBook Pro Retina A1398 2015 EMC 2909/2910 | eBay</A>
<DT><A HREF="https://www.ebay.com/itm/MacBook-Pro-A1398-15-2015-MJLQ2LL-MJLT2LL-Screen-Display-Assembly-661-02532-ER/333380016305?epid=26027545537&hash=item4d9eff58b1%3Ag%3AmH0AAOSwgZtduVOX&LH_BIN=1#viTabs_0" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">MacBook Pro A1398 15" 2015 MJLQ2LL MJLT2LL Screen Display Assembly 661-02532 ER 5054524706332 | eBay</A>
<DT><A HREF="https://www.amazon.com/Screen-Display-Assembly-MacBook-Retina/dp/B07KP9C96H/ref=sr_1_7?keywords=macbook+pro+a1398+lcd&qid=1573175130&sr=8-7" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">Amazon.com: LED LCD Screen Display Panel Assembly for MacBook Pro 15 Retina A1398 Mid 2015: Computers & Accessories</A>
<DT><A HREF="https://everymac.com/ultimate-mac-lookup/?search_keywords=c02tw12pg8wn&g-recaptcha-response=03AOLTBLQ7BkGPXwBWd1NykHxsvykrLmiA0g1JR32eCo70yw3Eb534R1yLHfQAsLntFhHSFtVeCvyPD7c_qBvxjOzoQ6GhsgrFZtAqbjnlnJ0NZcbGDPz2m7v7mz9sS2CZv7aTMRR4SYlPjA1K0lT9mjin33_l0KTYfsGmrlzhtXI0SaNg6Sk3SFS54fMtY-MeYNvwmP2L98l-Mdh6WfE2ZRk72MvfOTAYZ7o7jiSsyuS5vw4dCFOjXlzDFuhcrpJP5Ped2R2psBUhhXnuIo1e1RYLFPAHNiJ4bRDn6wSY7RDSkmTqprnx2nbC_3-Ioc1pQn9X6pDMUCenT9o7n9ykVcr2XSf1fqC22zDYxpid3Ax7Y0KTsBNr9orgiauEGZj7U0ZdB1AiNB8lke6B--WCLV0h_0RxKiqAnfkKtlcdBuIhH250c5jgN9De9LMNTlptlCDlbjUyaIaQ9CXNIpKxVwAsLQGHTJnVQhW-sQ_oN-2U4tkKc4UpldyoHezwxlPiWjwunUeHkBLA" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">Lookup Mac Specs By Serial Number, Order, Model & EMC Number, Model ID @ EveryMac.com</A>
<DT><A HREF="https://everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-i7-2.2-15-iris-only-mid-2015-retina-display-specs.html" ADD_DATE="1573176012" LAST_MODIFIED="1716515711">MacBook Pro "Core i7" 2.2 15" Mid-2015 (IG) Specs (Retina Mid-2015 15", MJLQ2LL/A, MacBookPro11,4, A1398, 2909): EveryMac.com</A>
</DL><p>
<DT><A HREF="https://www.tonymacx86.com/threads/intel-wifi-driver-effort.186344/" ADD_DATE="1573877982" LAST_MODIFIED="1726059048">Intel WiFi Driver Effort | tonymacx86.com</A>
<DT><A HREF="https://getkiss.org/pages/install" ADD_DATE="1573878561" LAST_MODIFIED="1726059048">KISS - Install KISS</A>
<DT><A HREF="https://mechanicalkeyboards.com/shop/index.php?l=product_detail&p=3917" ADD_DATE="1574955126" LAST_MODIFIED="1726059048">Vortex Race 3 TKL Dye Sub PBT Mechanical Keyboard with Cherry MX Black, Blue, Brown, Red, Clear, Silver, or Silent Red switches</A>
<DT><A HREF="https://m.banggood.com/Expresscard-Version-V8_0-EXP-GDC-Beast-Laptop-External-Independent-Video-Card-Dock-p-1009976.html" ADD_DATE="1574955058" LAST_MODIFIED="1726059048">[Expresscard Version] V8.0 EXP GDC Laptop External Independent Video Card Dock Sale - Banggood Mobile</A>
<DT><A HREF="https://www.bing.com/search?q=programming+from+the+ground+up&FORM=HDRSC1&PC=MOZB" ADD_DATE="1574955099" LAST_MODIFIED="1726059048">programming from the ground up - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=hermitage+green&pc=MOZB&form=MOZMBA" ADD_DATE="1574955109" LAST_MODIFIED="1726059048">hermitage green - Bing</A>
<DT><H3 ADD_DATE="1575760527" LAST_MODIFIED="1726059048">SQM Research</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?q=the+system+cannot+find+the+path+specified+usb+device+python+windows+7&FORM=AWRE" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">the system cannot find the path specified usb device python windows 7 - Bing</A>
<DT><A HREF="https://stackoverflow.com/questions/32366195/python-error-3-the-system-cannot-find-the-path-specified" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">windows - Python :[Error 3] The system cannot find the path specified: - Stack Overflow</A>
<DT><A HREF="https://stackoverflow.com/questions/8110310/simple-way-to-query-connected-usb-devices-info-in-python" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Simple way to query connected USB devices info in Python? - Stack Overflow</A>
<DT><A HREF="https://www.thecodingforums.com/threads/get-usb-id-of-a-serial-port-through-pyserial.746030/" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Get USB ID of a serial port through pyserial? | Coding Forums</A>
<DT><A HREF="https://stackoverflow.com/questions/23864234/importerror-no-module-named-win32com-client" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">python - ImportError: No module named win32com.client - Stack Overflow</A>
<DT><A HREF="http://www.rebellionrider.com/escape-character-in-python-programming/" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Escape Character in Python programming Language. | RebellionRider</A>
<DT><A HREF="https://stackoverflow.com/questions/6032568/using-serial-on-python-win7" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">windows 7 - Using Serial on Python / Win7 - Stack Overflow</A>
<DT><A HREF="https://stackoverflow.com/questions/3028786/how-can-i-fix-error-6-the-handle-is-invalid-with-pyserial" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">python - How can I fix "[Error 6] The handle is invalid." with PySerial - Stack Overflow</A>
<DT><A HREF="https://stackabuse.com/comparing-strings-using-python/" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Comparing Strings using Python</A>
<DT><A HREF="https://pythonhosted.org/pyserial/shortintro.html#opening-serial-ports" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Short introduction — pySerial 3.0 documentation</A>
<DT><A HREF="https://stackoverflow.com/questions/9316023/python-2-7-print-to-file" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Python 2.7: Print to File - Stack Overflow</A>
<DT><A HREF="https://electronics.stackexchange.com/questions/335695/why-the-start-bit-and-the-stop-bits-are-necessary" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">serial - Why the start bit and the stop bit(s) are necessary? - Electrical Engineering Stack Exchange</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Universal_asynchronous_receiver-transmitter" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Universal asynchronous receiver-transmitter - Wikipedia</A>
<DT><A HREF="https://www.w3schools.com/python/ref_func_open.asp" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">Python open() Function</A>
<DT><A HREF="https://www.tutorialspoint.com/How-to-create-an-empty-file-using-Python" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">How to create an empty file using Python?</A>
<DT><A HREF="https://stackoverflow.com/questions/21839803/how-to-append-new-data-onto-a-new-line" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">python - How to append new data onto a new line - Stack Overflow</A>
<DT><A HREF="https://stackoverflow.com/questions/8220108/how-do-i-check-the-operating-system-in-python" ADD_DATE="1575760522" LAST_MODIFIED="1716515711">linux - How do I check the operating system in Python? - Stack Overflow</A>
<DT><A HREF="https://www.amazon.com/uxcell-83mmx58mmx33mm-Universal-Enclosure-Transparent/dp/B071ZJLFTT/ref=sr_1_74?dchild=1&keywords=waterproof+project+box+transparent&qid=1595737443&sr=8-74" ADD_DATE="1595738470" LAST_MODIFIED="1716515711">Clear Top Box</A>
<DT><H3 ADD_DATE="1595821163" LAST_MODIFIED="1716515711">[Folder Name]</H3>
<DL><p>
<DT><A HREF="https://forum.arduino.cc/index.php?topic=326751.0" ADD_DATE="1595821163" LAST_MODIFIED="1716515711">Time stamping the sensor output</A>
<DT><A HREF="https://forum.arduino.cc/index.php?topic=323301.0" ADD_DATE="1595821163" LAST_MODIFIED="1716515711">Getting Yun's Date & Time</A>
<DT><A HREF="https://forum.arduino.cc/index.php?topic=225518.0" ADD_DATE="1595821163" LAST_MODIFIED="1716515711">[SOLVED]Setting Yun's Date/Time</A>
<DT><A HREF="https://forum.arduino.cc/index.php?topic=150924.30" ADD_DATE="1595821163" LAST_MODIFIED="1716515711">Measure nightsky with TSL237 - Page 3</A>
<DT><A HREF="https://forum.arduino.cc/index.php?topic=376462.0" ADD_DATE="1595821163" LAST_MODIFIED="1716515711">Arduno code to use TSL237 for getting irradiance.</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1575784787" LAST_MODIFIED="1726059048">Git and PySerial Research</H3>
<DL><p>
<DT><A HREF="https://pyserial.readthedocs.io/en/latest/tools.html" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">Tools — pySerial 3.4 documentation</A>
<DT><A HREF="http://www.penguintutor.com/electronics/rpi-arduino" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">Serial Communications over USB between Raspberry Pi and Arduino - Electronics information from PenguinTutor</A>
<DT><A HREF="https://github.com/yerkesobservatory/lenss-sensor/tree/master/sensorcode" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">lenss-sensor/sensorcode at master · yerkesobservatory/lenss-sensor</A>
<DT><A HREF="https://nvie.com/posts/a-successful-git-branching-model/" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">A successful Git branching model » nvie.com</A>
<DT><A HREF="https://longair.net/blog/2009/04/16/git-fetch-and-merge/" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">git: fetch and merge, don’t pull | Mark's Blog</A>
<DT><A HREF="https://chris.beams.io/posts/git-commit/" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">How to Write a Git Commit Message</A>
<DT><A HREF="https://www.git-tower.com/learn/git/faq/track-remote-upstream-branch" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">How can I tell a local branch to track a remote branch?</A>
<DT><A HREF="https://stackoverflow.com/questions/1519006/how-do-you-create-a-remote-git-branch" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">How do you create a remote Git branch? - Stack Overflow</A>
<DT><A HREF="https://stackabuse.com/git-revert-a-merge/" ADD_DATE="1575784773" LAST_MODIFIED="1716515711">Git: Revert a Merge</A>
</DL><p>
<DT><A HREF="https://www.norbauer.com/rails-consulting/notes/git-revert-reset-a-single-file" ADD_DATE="1581200223" LAST_MODIFIED="1726059048">git: revert (reset) a single file</A>
<DT><A HREF="https://octoperf.com/blog/2018/11/07/thinkpad-t440p-buyers-guide/" ADD_DATE="1582305313" LAST_MODIFIED="1726059048">Thinkpad T440p Ultimate Buyer's Guide - Devops - OctoPerf</A>
<DT><A HREF="https://jasonrudolph.com/blog/2009/02/25/git-tip-how-to-merge-specific-files-from-another-branch/" ADD_DATE="1582312574" LAST_MODIFIED="1726059048">Git tip: How to "merge" specific files from another branch - jasonrudolph.com</A>
<DT><A HREF="https://geoff.greer.fm/" ADD_DATE="1582520681" LAST_MODIFIED="1726059048">Geoff Greer's site: ~/</A>
<DT><A HREF="https://nikodoko.com/" ADD_DATE="1582774769" LAST_MODIFIED="1726059048">Niko, doko?</A>
<DT><A HREF="https://www.instructables.com/id/MP3-Player-With-Arduino/" ADD_DATE="1584046527" LAST_MODIFIED="1726059048">MP3 Player With Arduino : 6 Steps - Instructables</A>
<DT><A HREF="https://www.rocketjumpninja.com/" ADD_DATE="1583810094" LAST_MODIFIED="1726059048">Mouse Search</A>
<DT><H3 ADD_DATE="1584332327" LAST_MODIFIED="1726059048">Mill and Lathe For Sale</H3>
<DL><p>
<DT><A HREF="http://vintagemachinery.org/classifieds/detail.aspx?id=18115&p=2" ADD_DATE="1584332327" LAST_MODIFIED="1716515711">Brown & Sharpe 2A - US $230.00 (Ludlow, MA) | VintageMachinery.org</A>
<DT><A HREF="http://vintagemachinery.org/classifieds/detail.aspx?id=18120&p=1" ADD_DATE="1584332327" LAST_MODIFIED="1716515711">Reed-Prentice Lathe 14”x50” not running - US $300.00 (Ludlow, MA) | VintageMachinery.org</A>
</DL><p>
<DT><A HREF="https://www.amazon.com/s?k=EZDIY-FAB&ref=bl_dp_s_web_0" ADD_DATE="1584639876" LAST_MODIFIED="1726059048">Amazon.com : EZDIY-FAB</A>
<DT><A HREF="https://pivpn.io/" ADD_DATE="1585237127" LAST_MODIFIED="1726059048">PIVPN: Simplest way to setup a VPN</A>
<DT><A HREF="https://www.noip.com/" ADD_DATE="1585237153" LAST_MODIFIED="1726059048">no-ip Dynamic DNS Service</A>
<DT><A HREF="https://www.pcmag.com/how-to/how-to-create-a-vpn-server-with-raspberry-pi" ADD_DATE="1585237592" LAST_MODIFIED="1726059048">How to Create a VPN Server With Raspberry Pi | PCMag</A>
<DT><A HREF="https://www.wired.com/2013/10/big-data-science/" ADD_DATE="1585345846" LAST_MODIFIED="1726059048">Big Data Is Too Big for Scientists to Handle Alone | WIRED</A>
<DT><A HREF="https://blog.devolutions.net/2017/4/10-steps-to-secure-open-ssh" ADD_DATE="1585372793" LAST_MODIFIED="1726059048">10 Steps to Secure Open SSH</A>
<DT><A HREF="https://aikar.co/2018/07/02/tuning-the-jvm-g1gc-garbage-collector-flags-for-minecraft/" ADD_DATE="1585712276" LAST_MODIFIED="1726059048">MC Server Java Flags</A>
<DT><A HREF="https://github.com/Fmstrat/diy-ipmi" ADD_DATE="1586923303" LAST_MODIFIED="1726059048">PI IPMI / IP KVM System</A>
<DT><A HREF="https://forum.level1techs.com/t/world-backup-day-backup-all-the-things/155096" ADD_DATE="1587315137" LAST_MODIFIED="1726059048">Levelonetechs Backup</A>
<DT><A HREF="https://www.newegg.com/silver-apevia-x-jupiter-jr-g-type-atx-mid-tower/p/N82E16811144195?nm_mc=AFC-RAN-COM&cm_mmc=AFC-RAN-COM&utm_medium=affiliates&utm_source=afc-Bing&AFFID=3624890&AFFNAME=Bing&ACRID=1&ASUBID=D09BEA8F25BAA09FB91B1C66FFFFFFFF&ASID=https%3A%2F%2Fwww.bing.com%2F&ranMID=44583&ranEAID=3624890&ranSiteID=msYS1Nvjv4c-ohehXh6zdEkhCTT2FuvkeQ" ADD_DATE="1587408790" LAST_MODIFIED="1726059048">APEVIA Case</A>
<DT><H3 ADD_DATE="1587511530" LAST_MODIFIED="1726059048">Python CSV</H3>
<DL><p>
<DT><A HREF="https://www.reddit.com/r/learnpython/comments/1vvue0/best_practices_for_continuous_writing_of_data/" ADD_DATE="1587511530" LAST_MODIFIED="1716515711">Best practices for continuous writing of data files (CSV) with roll-over mechanism? : learnpython</A>
<DT><A HREF="https://stackoverflow.com/questions/47016838/continuously-write-data-from-a-list-into-a-csv-file" ADD_DATE="1587511530" LAST_MODIFIED="1716515711">python - Continuously write data from a list into a CSV file - Stack Overflow</A>
<DT><A HREF="https://www.tutorialspoint.com/python3/python_files_io.htm" ADD_DATE="1587511530" LAST_MODIFIED="1716515711">Python 3 - Files I/O - Tutorialspoint</A>
<DT><A HREF="https://www.programiz.com/python-programming/writing-csv-files" ADD_DATE="1587511530" LAST_MODIFIED="1716515711">Writing CSV files in Python</A>
</DL><p>
<DT><A HREF="https://gitbackup.org/#/user/ascerba" ADD_DATE="1587571322" LAST_MODIFIED="1726059048">GitBackup</A>
<DT><A HREF="https://www.youtube.com/channel/UC2eYFnH61tmytImy1mTYvhA/videos" ADD_DATE="1587604576" LAST_MODIFIED="1726059048">Luke Smith (for Linux Tutorials)</A>
<DT><A HREF="https://www.govdeals.com/" ADD_DATE="1587660314" LAST_MODIFIED="1726059048">GovDeals</A>
<DT><A HREF="https://winworldpc.com/home" ADD_DATE="1588119591" LAST_MODIFIED="1726059048">WinWorld</A>
<DT><A HREF="https://pterodactyl.io/" ADD_DATE="1588524310" LAST_MODIFIED="1726059048">Pterodactyl: Local Game Hosting</A>
<DT><A HREF="https://www.minitool.com/news/windows-10-services-to-disable.html" ADD_DATE="1588524995" LAST_MODIFIED="1726059048">Windows Service Cleanup</A>
<DT><A HREF="https://back7.co/" ADD_DATE="1588527559" LAST_MODIFIED="1726059048">BACK7.CO: Cool Tech Projects</A>
<DT><A HREF="https://pacoup.com/2011/06/12/list-of-true-169-resolutions/" ADD_DATE="1589475022" LAST_MODIFIED="1726059048">16:9 Resolution List</A>
<DT><A HREF="https://www.ifixit.com/Teardown/Dell+Inspiron+15-7559+Teardown/100764" ADD_DATE="1589489055" LAST_MODIFIED="1726059048">Inspiron 7559 Teardown</A>
<DT><A HREF="https://www.cs.colostate.edu/~cs157/LectureMakefile.pdf" ADD_DATE="1590166200" LAST_MODIFIED="1726059048">C Source Files and Makefile</A>
<DT><A HREF="https://www.shellhacks.com/bash-colors/" ADD_DATE="1590170915" LAST_MODIFIED="1726059048">Bash Colors</A>
<DT><A HREF="https://www.protocase.com/blog/" ADD_DATE="1590188242" LAST_MODIFIED="1726059048">Protocase Blog</A>
<DT><A HREF="https://www.youtube.com/watch?v=mdJtdKA6H4s" ADD_DATE="1590280557" LAST_MODIFIED="1726059048">(386) JUST DO IT! (Game Engine Dev Log) - YouTube</A>
<DT><A HREF="https://flylib.com/books/en/1.315.1.2/1/" ADD_DATE="1590433679" LAST_MODIFIED="1726059048">The Pragmatic Programmer</A>
<DT><A HREF="http://www.neilparfitt.com/" ADD_DATE="1590437132" LAST_MODIFIED="1726059048">Neil Parfitt</A>
<DT><A HREF="https://www.protocase.com/resources/how-to-design-for-motherboards/" ADD_DATE="1590617388" LAST_MODIFIED="1726059048">How to Design Custom Enclosures for Motherboard-Based Systems</A>
<DT><A HREF="https://forum.arduino.cc/index.php?topic=420326.0" ADD_DATE="1590817835" LAST_MODIFIED="1726059048">Motorcycle ignition advance, simple project?</A>
<DT><H3 ADD_DATE="1591249388" LAST_MODIFIED="1726059048">LENSS Sensor Cables</H3>
<DL><p>
<DT><A HREF="https://www.amazon.com/Charger-X-Universal-Adapter-Samsung/dp/B0771HWYH9/ref=sr_1_4?dchild=1&keywords=usb+wall+plug&qid=1590558648&sr=8-4" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: USB Wall Charger, X-EDITION 4-Pack 10.5W/2.1A Universal 2-Port USB Wall Plug Power Adapter for Phone X, 8/8 Plus 7/7 Plus, 6/6 Plus 6S, Pad, Samsung Galaxy S5 S6 S7 Edge, Nexus, LG (Gray)</A>
<DT><A HREF="https://www.amazon.com/Wpeng-1-Set-degree-Angled-Charging/dp/B01LZ6458B/ref=sr_1_51?dchild=1&keywords=right+angle+micro+usb+short&qid=1590557843&sr=8-51" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Wpeng (1-Set) Up/Down Micro USB Cable Cord, USB 2.0 Male to Micro USB 90 Degree Angled Male Charging Cable Cord - Black: Computers & Accessories</A>
<DT><A HREF="https://www.amazon.com/Ribbon-Type-C-Degree-Standard-Charging/dp/B07DJ7MJWH/ref=sr_1_253?dchild=1&keywords=right+angle+micro+usb+short&qid=1590558077&sr=8-253" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Short Black FFC USB C FPV Flat Slim Thin Ribbon FPC Cable USB Type-C 90 Degree to Standard USB A for sync and Charging (5CM): Computers & Accessories</A>
<DT><A HREF="https://www.amazon.com/SUNGUY-2-Pack-Degree-Charging-Samsung/dp/B07CBTVR8G/ref=sr_1_14?dchild=1&keywords=right+angle+micro+usb+short&qid=1590557704&sr=8-14" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Short Micro USB Cable,SUNGUY [2-Pack] 1FT/0.3M Right Angle 90 Degree Fast Charging& Data Sync Cord for Samsung Galaxy S6 S7 Edge S5 Note 4,Moto G5 Plus and More - Black</A>
<DT><A HREF="https://www.amazon.com/StarTech-com-Micro-USB-Cable-Angle/dp/B003YKX6W2/ref=sr_1_13?dchild=1&keywords=right+angle+micro+usb+short&qid=1590557704&sr=8-13" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: StarTech.com 1 ft. (0.3 m) USB to Micro USB Cable - USB 2.0 A to Left Angle Micro B - Black - Micro USB Cable (UUSBHAUB1LA): Computers & Accessories</A>
<DT><A HREF="https://www.amazon.com/Cable-Matters-2-Pack-Right-Angle-Charging/dp/B00S8GTVIK/ref=sr_1_36?dchild=1&keywords=right+angle+micro+usb+short&qid=1590557788&sr=8-36" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Cable Matters 2-Pack Right-Angle USB Power Cable for TV Stick and Charging Cable for Power Bank 6 Inches - Compatible with Roku Streaming Stick</A>
<DT><A HREF="https://www.amazon.com/RAYSUN-Packs-Degree-Micro-Male/dp/B00WMF7JUA/ref=sr_1_10?dchild=1&keywords=right+angle+micro+usb+short&qid=1590557704&sr=8-10" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: RAYSUN 2 Packs 90 Degree Micro USB Male to USB 2.0 A Male - [ 4.5mm OD ] Right & Left Angle Each 1PC (2 Pack 90 Degree Micro USB M- USB M): Computers & Accessories</A>
<DT><A HREF="https://www.amazon.com/Cable-Matters-Combo-Pack-Right-Inches/dp/B00S8GU03A/ref=sr_1_3?dchild=1&keywords=right+angle+micro+usb+short&qid=1590557704&sr=8-3" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Cable Matters Combo-Pack Right Angle USB Cable for TV Stick and Power Bank 6 Inches - 90 Degree USB to Micro USB Cable for Roku TV Stick and More: Electronics</A>
<DT><A HREF="https://www.amazon.com/Ribbon-Degree-Angled-Female-Charging/dp/B07Q9K64PN/ref=sr_1_1?dchild=1&keywords=90+degree+micro+usb+to+straight+micro+usb+5cm&qid=1590557025&sr=8-1" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Permanent Ulter Flat Slim Thin Ribbon FPC Cable Micro USB 90 Degree Angled Male to Micro USB Female for sync and Charging Black (5CM): Computers & Accessories</A>
<DT><A HREF="https://www.amazon.com/Micro-Ribbon-Degree-Straight-Charging/dp/B07DV8GZRM/ref=sr_1_11?dchild=1&keywords=90%2Bdegree%2Bmicro%2Busb%2Bto%2Bstraight%2Bmicro%2Busb&qid=1590556977&sr=8-11&th=1" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: FFC Micro USB Cable FPV Flat Slim Thin Ribbon FPC Cable Micro USB 90 Degree to Micro USB Straight for sync and Charging Black (20CM): Home Audio & Theater</A>
<DT><A HREF="https://www.amazon.com/Micro-Ribbon-Degree-Standard-Charging/dp/B07B9NNN98/ref=sr_1_3?dchild=1&keywords=90%2Bdegree%2Blow%2Bprofile%2Bmicro%2Busb&qid=1590556079&sr=8-3&th=1" ADD_DATE="1591249388" LAST_MODIFIED="1716515711">Amazon.com: Short FPV Flat Slim Thin Ribbon FPC Cable Micro USB 90 Degree to Standard USB A for sync and Charging (5CM): Computers & Accessories</A>
</DL><p>
<DT><A HREF="https://github.com/awesome-selfhosted/awesome-selfhosted" ADD_DATE="1593480271" LAST_MODIFIED="1726059048">Linux Server Uses</A>
<DT><A HREF="https://jamesachambers.com/minecraft-bedrock-edition-ubuntu-dedicated-server-guide/" ADD_DATE="1593568400" LAST_MODIFIED="1726059048">MC Bedrock Server</A>
<DT><A HREF="https://musescore.com/sertifiedjenius/scores/486981" ADD_DATE="1593602619" LAST_MODIFIED="1726059048">Dragostea Din Tei (Numa Numa) Sheet music for Trombone, Tuba | Download free in PDF or MIDI | Musescore.com</A>
<DT><A HREF="https://makealinux.app/#/" ADD_DATE="1593883856" LAST_MODIFIED="1726059048">Make a Linux App</A>
<DT><A HREF="https://www.elpamsoft.com/?p=Plex-Hardware-Transcoding" ADD_DATE="1593571073" LAST_MODIFIED="1726059048">nVidia Hardware Transcoding Calculator for Plex Estimates</A>
<DT><H3 ADD_DATE="1594831866" LAST_MODIFIED="1726059048">Boats For Sale</H3>
<DL><p>
<DT><A HREF="https://milwaukee.craigslist.org/boa/d/minocqua-1970-inboard-correct-craft/7122360676.html" ADD_DATE="1594831866" LAST_MODIFIED="1716515711">1970 Inboard Correct Craft - boats - by owner - marine sale</A>
<DT><A HREF="https://milwaukee.craigslist.org/boa/d/manitowoc-1988-sea-ray-sorrento/7135899816.html" ADD_DATE="1594831866" LAST_MODIFIED="1716515711">1988 Sea Ray Sorrento - boats - by owner - marine sale</A>
<DT><A HREF="https://milwaukee.craigslist.org/boa/d/waterford-1990-forrester-phantom-190/7154526427.html" ADD_DATE="1594831866" LAST_MODIFIED="1716515711">1990 Forrester Phantom 190 - boats - by owner - marine sale</A>
<DT><A HREF="https://milwaukee.craigslist.org/boa/d/pewaukee-1993-sea-ray-180-open-bow/7154489616.html" ADD_DATE="1594831866" LAST_MODIFIED="1716515711">1993 Sea Ray 180 Open Bow - boats - by owner - marine sale</A>
<DT><A HREF="https://milwaukee.craigslist.org/boa/d/fredonia-1989-ski-centurian/7128443236.html" ADD_DATE="1594831866" LAST_MODIFIED="1716515711">1989 Ski Centurian - boats - by owner - marine sale</A>
</DL><p>
<DT><H3 ADD_DATE="1595129789" LAST_MODIFIED="1726059048">Valorant on VM</H3>
<DL><p>
<DT><A HREF="https://www.reddit.com/r/VFIO/comments/hmxxbk/valorant_on_kvm/" ADD_DATE="1595129789" LAST_MODIFIED="1716515711">Valorant on KVM : VFIO</A>
<DT><A HREF="https://github.com/ipaqmaster/vfio" ADD_DATE="1595129789" LAST_MODIFIED="1716515711">GitHub - ipaqmaster/vfio: A vfio script made to make my single-gpu-passthrough situation less of a chore.</A>
<DT><A HREF="https://www.reddit.com/r/VFIO/comments/hkl2dl/valorant_qemu/" ADD_DATE="1595129789" LAST_MODIFIED="1716515711">Valorant Qemu : VFIO</A>
</DL><p>
<DT><A HREF="https://imgur.com/Ie4LVtI" ADD_DATE="1595173330" LAST_MODIFIED="1726059048">Mem Timings</A>
<DT><A HREF="https://io.adafruit.com/jdoscher/public" ADD_DATE="1595173380" LAST_MODIFIED="1726059048">AdafruitIO Example</A>
<DT><A HREF="https://www.utrinf.com/" ADD_DATE="1595187533" LAST_MODIFIED="1726059048">under the radar - utrinf</A>
<DT><A HREF="https://n-o-d-e.net/index.html" ADD_DATE="1595199871" LAST_MODIFIED="1726059048">N O D E</A>
<DT><A HREF="https://www.ebay.com/itm/Lenovo-Thinkpad-T440P-Intel-Core-i5-4300M-2-6GHz-500GB-HDD-8GB-RAM-Win-10-Pro/254652722192?hash=item3b4a7c2c10%3Ag%3AR-8AAOSwhgdfDMGw&LH_BIN=1" ADD_DATE="1595382488" LAST_MODIFIED="1726059048">Lenovo Thinkpad T440P Intel Core i5-4300M 2.6GHz 500GB HDD 8GB RAM Win 10 Pro | eBay</A>
<DT><A HREF="https://www.geeksforgeeks.org/python-split-string-in-groups-of-n-consecutive-characters/" ADD_DATE="1585789320" LAST_MODIFIED="1726059048">Python | Split string in groups of n consecutive characters - GeeksforGeeks</A>
<DT><A HREF="https://www.anandtech.com/" ADD_DATE="1595385870" LAST_MODIFIED="1726059048">AnandTech: Hardware News and Tech Reviews Since 1997</A>
<DT><A HREF="https://www.dlford.io/how-to-home-lab-part-1/" ADD_DATE="1595385900" LAST_MODIFIED="1726059048">Proxmox Tutorial</A>
<DT><A HREF="https://tardigrade.io/" ADD_DATE="1595386039" LAST_MODIFIED="1726059048">Decentralized Cloud Storage</A>
<DT><A HREF="https://github.com/devksingh4/thinkpad-tools" ADD_DATE="1595386073" LAST_MODIFIED="1726059048">ThinkPad Tools for Linux</A>
<DT><A HREF="http://www.haproxy.org/#feat" ADD_DATE="1595729323" LAST_MODIFIED="1726059048">HAProxy</A>
<DT><A HREF="https://opensource.com/article/20/7/donate-linux" ADD_DATE="1595821629" LAST_MODIFIED="1726059048">Student Linux club refurbishes computers to support distance learning | Opensource.com</A>
<DT><A HREF="https://caseend.com/" ADD_DATE="1595824618" LAST_MODIFIED="1726059048">CaseEnd - Compilation of Computer Cases</A>
<DT><A HREF="https://www.linuxjournal.com/content/understanding-firewalld-multi-zone-configurations" ADD_DATE="1596942201" LAST_MODIFIED="1726059048">Understanding Firewalld in Multi-Zone Configurations | Linux Journal</A>
<DT><A HREF="https://chmodcommand.com/" ADD_DATE="1597117647" LAST_MODIFIED="1726059048">Chmod Calculator</A>
<DT><A HREF="https://www.howtoforge.com/tutorial/setting-up-an-nfs-server-and-client-on-centos-7/" ADD_DATE="1597166051" LAST_MODIFIED="1726059048">Setting Up an NFS Server and Client on CentOS 7.2</A>
<DT><A HREF="https://milwaukee.craigslist.org/sop/d/waukesha-nvidia-grid-k2-vgpu-server/7146669574.html" ADD_DATE="1597239498" LAST_MODIFIED="1726059048">Nvidia GRID K2 vGPU</A>
<DT><H3 ADD_DATE="1597376016" LAST_MODIFIED="1726059048">MSOE Textbooks</H3>
<DL><p>
<DT><A HREF="https://z-lib.org/" ADD_DATE="1597376016" LAST_MODIFIED="1716515711">Z-Library. The world's largest ebook library.</A>
<DT><A HREF="https://b-ok.cc/book/5539761/ca50d5" ADD_DATE="1597376016" LAST_MODIFIED="1716515711">Chemistry : structure and properties | Nivaldo J. Tro | download</A>
<DT><A HREF="https://b-ok.cc/book/3357693/55d591" ADD_DATE="1597376016" LAST_MODIFIED="1716515711">Calculus Early Transcendentals | Howard Anton, Irl C. Bivens, Stephen Davis | download</A>
<DT><A HREF="https://ebook4expert.org/2016/09/04/endurance-shackletons-incredible-voyage-ebook-free-by-alfred-lansing-epubmobi/" ADD_DATE="1597376016" LAST_MODIFIED="1716515711">Endurance: Shackleton’s Incredible Voyage [ebook free] by Alfred Lansing (epub/mobi) – Ebook4Expert</A>
</DL><p>
<DT><A HREF="https://help.ui.com/hc/en-us/articles/204910134-UniFi-LED-Color-Patterns-for-UniFi-Devices" ADD_DATE="1597893827" LAST_MODIFIED="1726059048">UniFi - LED Color Patterns for UniFi Devices – Ubiquiti Networks Support and Help Center</A>
<DT><A HREF="https://tools.ietf.org/html/rfc1918" ADD_DATE="1597893929" LAST_MODIFIED="1726059048">RFC 1918 - Address Allocation for Private Internets</A>
<DT><A HREF="http://wendel.tech/" ADD_DATE="1597894093" LAST_MODIFIED="1726059048">Example Site</A>
<DT><A HREF="https://www.dlford.io/" ADD_DATE="1597894608" LAST_MODIFIED="1726059048">dlford.io</A>
<DT><H3 ADD_DATE="1597904492" LAST_MODIFIED="1726059048">Intro to Blender Shaders</H3>
<DL><p>
<DT><A HREF="https://www.youtube.com/playlist?list=PLn3ukorJv4vtnU_TaZob7QD6Q8d9C9Ki7" ADD_DATE="1597904492" LAST_MODIFIED="1716515711">(438) Nodes 4 Noobs - Blender 2.8 - YouTube</A>
<DT><A HREF="https://www.youtube.com/playlist?list=PLEPLtrfjLBXjNObTIyYO8PEVtHtXFwsF9" ADD_DATE="1597904492" LAST_MODIFIED="1716515711">(438) Procedural Nodes - YouTube</A>
<DT><A HREF="https://www.youtube.com/playlist?list=PLvgg0AvdksuJVd-Z4RXRPMOfvUh5ShxIF" ADD_DATE="1597904492" LAST_MODIFIED="1716515711">(438) Procedural mastery - YouTube</A>
<DT><A HREF="https://www.youtube.com/playlist?list=PLFaEpHfMsQ2uvtFjBDGwFlTm_QrnOzslc" ADD_DATE="1597904492" LAST_MODIFIED="1716515711">(438) Blender Procedural Nodes - YouTube</A>
<DT><A HREF="https://www.youtube.com/playlist?list=PLY7oQf1s3jC-Sxwe6qd9dQ0SAvXqgvlFD" ADD_DATE="1597904492" LAST_MODIFIED="1716515711">(438) Blender math Series - YouTube</A>
<DT><A HREF="https://www.youtube.com/playlist?list=PLVm7O9OzjT6Fu8aDrP3N1Ni1ATbUH926s" ADD_DATE="1597904492" LAST_MODIFIED="1716515711">(438) Blender Procedural Textures - YouTube</A>
</DL><p>
<DT><A HREF="http://www.sgidepot.co.uk/sgidepot/index.html" ADD_DATE="1598068776" LAST_MODIFIED="1726059048">Ian's SGI Depot</A>
<DT><A HREF="https://adfs.msoe.edu/adfs/ls/?SAMLRequest=fZLLTsMwEEX3fEXkfR5Nm4haTaTSClGpQNQGFmyQ40xaS4kdPDaPv8dNQZRFu%2FT4nrlzx54h69qezq3Zyw28WUDjfXatRDpcZMRqSRVDgVSyDpAaTrfz%2BzWNg4j2WhnFVUtOkMsEQwRthJLEWy0z8jqBMU%2BbaeUnTdL4kySpfAbjyq%2Fq6TTlrInjJiXeM2h0TEZcCwciWlhJNEwaV4riyI%2BmfpyW8Zgm1zSJXoi3dDmEZGag9sb0SMOQ1Q0GHSoIoLbDKWwxJN78d6iFkmg70FvQ74LD02b9Bw%2BccK7acmM1BFx1Yat2QoaH2MQrfpZxI2Qt5O7yHqqjCOldWRZ%2B8bgtST479KFDOp0fbM%2B5HnTxLDyVz47P%2BOCMVstCtYJ%2FebdKd8ycn2MUjIaKqP1mkFIrsQcuGgG120rbqo%2BFBmYgI84fSJgfTf9%2Fl%2FzqGw%3D%3D&SigAlg=http%3A%2F%2Fwww.w3.org%2F2001%2F04%2Fxmldsig-more%23rsa-sha256&Signature=7OfxPO1CQqq1dG0SfJnyGmW%2Fai3TlWIJ1l4ceHVrY7AazvLLQR9VbPlktYBjf986mAmoTdMqh0rBi8xdbBbvMCa%2FbEZ%2BnYxBB1kYVfr4uZZXF2IzKRoK4oow788%2Fc7r3CaupXXyQ%2F9xxQfln7xfJiH4wxo385e42OYDl49ZDr4wWNSbz7XHgchlPbAn4YZypiBvjtpQed0pVjUguMoAcXhZR2WppJ1uavW3junqjuw5xITOV4zAd%2F%2FS3so9cWQsmDiLaysep%2BIvTVQsw6Y%2BRXcOvWYokJtt477N%2B1%2BibkejTGllGzX1RElv1x3vI%2BsRqMZX68aRdepOVwNDL4a2cdA%3D%3D" ADD_DATE="1601164815" LAST_MODIFIED="1726059048">Canvas</A>
<DT><A HREF="https://deemix.app/" ADD_DATE="1599314571" LAST_MODIFIED="1726059048">deemix</A>
<DT><A HREF="https://www.motor-x.com/cover-throttle-dellorto-phva,p.html" ADD_DATE="1599314453" LAST_MODIFIED="1726059048">Cover throttle Dellorto PHVA - www.motor-x.com - Online store</A>
<DT><A HREF="http://www.scootertronics.com/" ADD_DATE="1599314463" LAST_MODIFIED="1726059048">Scooter Parts for GY6 Engines Yamaha Scooters CCW Tha Heist Honda CN250</A>
<DT><A HREF="https://milddev.com/git/an-essential-guide-on-how-use-to-git-and-github/" ADD_DATE="1599314237" LAST_MODIFIED="1726059048">An essential guide on what is git and how to use git and github. - Milddev</A>
<DT><A HREF="https://venam.nixers.net/blog/unix/2018/05/10/reparenting-redirecting-composition-rendering.html" ADD_DATE="1599447462" LAST_MODIFIED="1726059048">Drawables, Regions, Shapes, Types of WM, Reparenting, Compositing, Redirecting, Unredirecting, Rendering</A>
<DT><A HREF="https://venam.nixers.net/blog/" ADD_DATE="1599447468" LAST_MODIFIED="1726059048">Venam's Blog</A>
<DT><A HREF="https://spyware.neocities.org/index.html" ADD_DATE="1602609401" LAST_MODIFIED="1726059048">Home - Spyware Watchdog</A>
<DT><A HREF="https://csse.msoe.us/cs/cs12/" ADD_DATE="1603651981" LAST_MODIFIED="1726059048">CS v1.2 Program Track</A>
<DT><A HREF="https://sgpc.world.taobao.com/" ADD_DATE="1605857501" LAST_MODIFIED="1726059048">SFFPC-Case</A>
<DT><A HREF="https://www.imdb.com/title/tt0069172/" ADD_DATE="1605857608" LAST_MODIFIED="1726059048">Reminiscences of a Journey to Lithuania (1972) - IMDb</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys-on-centos7#:~:text=%20How%20To%20Set%20Up%20SSH%20Keys%20on,SSH%20Keys.%20If%20you%20have%20successfully...%20More%20" ADD_DATE="1606849247" LAST_MODIFIED="1726059048">How To Set Up SSH Keys on CentOS 7 | DigitalOcean</A>
<DT><A HREF="http://www.speedymetals.com/" ADD_DATE="1607445927" LAST_MODIFIED="1726059048">Speedy Metals Online Industrial Metal Supply</A>
<DT><A HREF="https://www.allistool.com/" ADD_DATE="1607446348" LAST_MODIFIED="1726059048">CNC Large Machining Shop in Milwaukee, Wisconsin | Precision Machining Company Waukesha | Heavy Metal Fabrication near Kenosha | Custom Large Parts Wisconsin | Allis Tool & Machine Corporation Milwaukee, Wisconsin 53214</A>
<DT><A HREF="https://1lib.us/book/2646095/b0aa1e" ADD_DATE="1613861358" LAST_MODIFIED="1726059048">C11 – ISO/IEC 9899:2011 | ISO | download</A>
<DT><A HREF="https://docs.monadical.com/s/system-monitoring-tools#" ADD_DATE="1609952166" LAST_MODIFIED="1726059048">CLI Monitoring Tools</A>
<DT><H3 ADD_DATE="1611000050" LAST_MODIFIED="1726059048">XS Spark Advance</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?q=create+custom+spark+advance+map&qs=n&form=QBRE&sp=-1&pq=create+custom+spark+advance+map&sc=2-31&sk=&cvid=60D3952219BD4CF2BE46BBED51BD9772" ADD_DATE="1611000050" LAST_MODIFIED="1716515711">create custom spark advance map - Bing</A>
<DT><A HREF="https://www.hotrod.com/articles/set-ignition-curves-create-optimal-performance/" ADD_DATE="1611000050" LAST_MODIFIED="1716515711">How to Set Ignition Curves and Create Optimal Performance</A>
<DT><A HREF="http://www.xs650.com/threads/xs650-ignition-timing-revisited-are-we-too-advanced.45197/" ADD_DATE="1611000050" LAST_MODIFIED="1716515711">XS650 Ignition timing revisited - Are we too advanced? | Yamaha XS650 Forum</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=vacuum+advance+xs650" ADD_DATE="1611000050" LAST_MODIFIED="1716515711">vacuum advance xs650 - Bing</A>
<DT><A HREF="http://www.xs650.com/threads/ignition-timing-and-vacuum-advance.46143/" ADD_DATE="1611000050" LAST_MODIFIED="1716515711">Ignition timing and vacuum advance? | Yamaha XS650 Forum</A>
<DT><A HREF="http://www.xs650.com/members/mrriggs.2447/" ADD_DATE="1611000050" LAST_MODIFIED="1716515711">mrriggs | Yamaha XS650 Forum</A>
</DL><p>
<DT><H3 ADD_DATE="1611338237" LAST_MODIFIED="1726059048">Apt TVs</H3>
<DL><p>
<DT><A HREF="https://www.bestbuy.com/site/tvs/all-flat-screen-tvs/abcat0101001.c?id=abcat0101001&qp=tvscreensizeplusrange_facet%3DTV%20Screen%20Size~45%22%20-%2054%22%5Etvscreensizeplusrange_facet%3DTV%20Screen%20Size~55%22%20-%2064%22%5Etvscreensizeplusrange_facet%3DTV%20Screen%20Size~65%22%20-%2074%22&sp=%2Bcurrentprice%20skuidsaas" ADD_DATE="1611338237" LAST_MODIFIED="1716515711">All Flat-Screen TVs - Best Buy</A>
<DT><A HREF="https://www.bestbuy.com/site/tvs/all-flat-screen-tvs/abcat0101001.c?id=abcat0101001&qp=child_tvscreensizeplus_facet%3DTV%20Screen%20Size~40%20inches%5Echild_tvscreensizeplus_facet%3DTV%20Screen%20Size~42%20inches%5Echild_tvscreensizeplus_facet%3DTV%20Screen%20Size~43%20inches%5Etvscreensizeplusrange_facet%3DTV%20Screen%20Size~32%22%20and%20Under%5Etvscreensizeplusrange_facet%3DTV%20Screen%20Size~33%22%20-%2044%22&sp=%2Bcurrentprice%20skuidsaas" ADD_DATE="1611338237" LAST_MODIFIED="1716515711">All Flat-Screen TVs - Best Buy</A>
<DT><A HREF="https://www.bestbuy.com/site/vizio-40-class-v-series-led-4k-uhd-smartcast-tv/6444704.p?skuId=6444704#tab=buyingOptions?bof=openbox" ADD_DATE="1611338237" LAST_MODIFIED="1716515711">VIZIO 40" Class V-Series LED 4K UHD SmartCast TV V405-H19 - Best Buy</A>
<DT><A HREF="https://www.bestbuy.com/site/vizio-40-class-v-series-led-4k-uhd-smartcast-tv/6444704.p?skuId=6444704" ADD_DATE="1611338237" LAST_MODIFIED="1716515711">VIZIO 40" Class V-Series LED 4K UHD SmartCast TV V405-H19 - Best Buy</A>
<DT><A HREF="https://www.bestbuy.com/site/vizio-40-class-d-series-led-full-hd-smartcast-tv/6288347.p?skuId=6288347" ADD_DATE="1611338237" LAST_MODIFIED="1716515711">VIZIO 40" Class D-Series LED Full HD SmartCast TV D40F-G9 - Best Buy</A>
</DL><p>
<DT><H3 ADD_DATE="1611938085" LAST_MODIFIED="1726059048">V30 Mod</H3>
<DL><p>
<DT><A HREF="https://forum.xda-developers.com/t/wtf-lg-v30-v30-v30s-bootloader-unlock-root-method-with-clear-instructions.3790500/page-10#post-76584629" ADD_DATE="1611938085" LAST_MODIFIED="1716515711">(WTF...!) LG V30/V30+/V30S Bootloader Unlock & Root Method (With Clear Instructions) | XDA Developers Forums</A>
<DT><A HREF="https://forum.xda-developers.com/t/frankenstein-phone-using-lgup-for-crossflashing.3780969/page-9" ADD_DATE="1611938085" LAST_MODIFIED="1716515711">[Frankenstein Phone] Using LGUP for crossflashing | XDA Developers Forums</A>
<DT><A HREF="https://forum.xda-developers.com/t/frankenstein-phone-using-lgup-for-crossflashing.3780969/page-6#post-76429682" ADD_DATE="1611938085" LAST_MODIFIED="1716515711">[Frankenstein Phone] Using LGUP for crossflashing | XDA Developers Forums</A>
<DT><A HREF="https://forum.xda-developers.com/t/us998-stock-oreo-lg-v30-us998-us99820h_00_0318-kdz.3786337/" ADD_DATE="1611938085" LAST_MODIFIED="1716515711">[US998][STOCK][OREO]LG V30 US998 US99820h_00_0318.KDZ | XDA Developers Forums</A>
<DT><A HREF="https://forum.xda-developers.com/t/us998-stock-nougat-lg-v30-us998-us99810d_01_0411-kdz.3736910/" ADD_DATE="1611938085" LAST_MODIFIED="1716515711">[US998][STOCK][NOUGAT]LG V30 US998 US99810d_01_0411.KDZ | XDA Developers Forums</A>
<DT><A HREF="https://androidfilehost.com/?fid=962187416754476381" ADD_DATE="1611938085" LAST_MODIFIED="1716515711">US99810d_01_0411.kdz | by ChazzMatt for V30</A>
</DL><p>
<DT><A HREF="https://web.archive.org/web/20170706070057/http://foodcreating.com/" ADD_DATE="1611938136" LAST_MODIFIED="1726059048">foodcreating (JS example)</A>
<DT><A HREF="https://github.com/dylanaraps/neofetch/wiki/Custom-Ascii-art-file-format" ADD_DATE="1628566353" LAST_MODIFIED="1726059048">Custom Ascii art file format · dylanaraps/neofetch Wiki</A>
<DT><A HREF="https://viewportsizer.com/devices/" ADD_DATE="1614229939" LAST_MODIFIED="1726059048">Viewport Sizer Tool</A>
<DT><A HREF="https://vanness1938.com/products/nakabayashi-logical-prime-notebook-a5" ADD_DATE="1614229969" LAST_MODIFIED="1726059048">Nakabayashi Logical Prime A5 Notebook- Dot Ruled – Vanness</A>
<DT><A HREF="https://caseend.com/case/aklla-a4-v2/" ADD_DATE="1614404245" LAST_MODIFIED="1726059048">AKLLA A4 V2 - CaseEnd</A>
<DT><A HREF="https://www.motor-x.com/czesci-do-motorowera,motorhispania,regulatory,c.html?vModelSlug=rx-50-53" ADD_DATE="1614706028" LAST_MODIFIED="1726059048">Parts for moped Motorhispania RX Superracing 50 2004-2005 Regulators - www.motor-x.com - Online store</A>
<DT><A HREF="https://www.motor-x.com/fuel-tap-tec-mbk-x-limit-enduro-x-limit-sm-yamaha-dt-r-03-11-dt-sm-03-11-dt-x-06-11,p.html" ADD_DATE="1614706033" LAST_MODIFIED="1726059048">Fuel tap Tec, MBK X-Limit Enduro, X-Limit SM / Yamaha DT R 03-11, DT SM 03-11, DT X 06-11 - www.motor-x.com - Online store</A>
<DT><H3 ADD_DATE="1614962310" LAST_MODIFIED="1726059048">Custom GPU Block</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=cnc+prototyping+services" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">cnc prototyping services - Bing</A>
<DT><A HREF="http://www.mahutatool.com/Contact" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">Online CNC Machining Quotes | Contact Mahuta Tool | Mahuta Tool Corporation USA</A>
<DT><A HREF="https://www.bing.com/search?q=custom+rubber+gaskets&go=Search&qs=ds&form=QBRE" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">custom rubber gaskets - Bing</A>
<DT><A HREF="https://www.customadvanced.com/rubber-gaskets.html" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">Custom Rubber Gaskets - Large Custom Rubber Gaskets - OEM Rubber Gaskets | Custom Advanced</A>
<DT><A HREF="https://www.ekwb.com/shop/ek-quantum-vector-rtx-re-ti-d-rgb-nickel-acetal" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">EK-Quantum Vector RTX RE Ti D-RGB - Nickel + Acetal – EK Webshop</A>
<DT><A HREF="https://www.bing.com/search?q=acetal+types&qs=n&form=QBRE&sp=-1&pq=acetal+types&sc=5-12&sk=&cvid=E68C0EAF21854D46AC73827277185900" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">acetal types - Bing</A>
<DT><A HREF="https://www.lionep.com/uploads/files/Acetal-vs-Delrin.pdf#:~:text=Acetal%20is%20available%20in%20two%20general%20types%20of,has%20its%20own%20set%20of%20advantages%20and%20disadvantages." ADD_DATE="1614962310" LAST_MODIFIED="1716515711">Acetal-vs-Delrin.pdf</A>
<DT><A HREF="https://www.sciencedirect.com/topics/chemistry/acetal" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">Acetal - an overview | ScienceDirect Topics</A>
<DT><A HREF="https://www.bing.com/search?q=copper+bar+stock&qs=n&form=QBRE&sp=-1&pq=copper+bar+stock&sc=6-16&sk=&cvid=BE5A64A1EDBC42CEA9F860C84A3F34DD" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">copper bar stock - Bing</A>
<DT><A HREF="https://www.mcmaster.com/copper-bar-stock/" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">bar stock | McMaster-Carr</A>
<DT><A HREF="https://us02web.zoom.us/postattendee?id=2" ADD_DATE="1614962310" LAST_MODIFIED="1716515711">Post Attendee - Zoom</A>
</DL><p>
<DT><A HREF="https://www.chunkbase.com/apps/seed-map" ADD_DATE="1618248846" LAST_MODIFIED="1726059048">Seed Map - Minecraft App</A>
<DT><A HREF="https://www.sharedrop.io/" ADD_DATE="1620150575" LAST_MODIFIED="1726059048">ShareDrop</A>
<DT><A HREF="https://snapdrop.net/#" ADD_DATE="1620150580" LAST_MODIFIED="1726059048">Snapdrop</A>
<DT><A HREF="https://commitlint.io/" ADD_DATE="1628566285" LAST_MODIFIED="1726059048">Commitlint/Commitizen Online - lint commit messages online</A>
<DT><A HREF="https://gochiller.com/collections/go-chiller/products/go-chiller-pre-mix" ADD_DATE="1630963368" LAST_MODIFIED="1726059048">Go Chiller pre-mix liquid coolant - Ready to use liquid coolant for gamers</A>
<DT><A HREF="https://www.teteatetebeautysalon.com/our-gallery-1-1" ADD_DATE="1632867386" LAST_MODIFIED="1726059048">Photos from Tete-A-Tete Beauty Salon Haircut, Nails, Facial Waxing</A>
<DT><A HREF="https://www.mecum.com/lots/CA0816-259980/1964-eisert-harrison-special-indy-car/" ADD_DATE="1633456232" LAST_MODIFIED="1726059048">1964 Eisert 'Harrison Special' Indy Car | F151 | Monterey 2016</A>
<DT><A HREF="https://www.ovationtv.com/watch/journy/anthony-bourdain-no-reservations/venice/" ADD_DATE="1633611598" LAST_MODIFIED="1726059048">Watch Travel Series For Free, Powered by Ovation TV</A>
<DT><A HREF="https://github.com/simprecicchiani/ThinkPad-T460s-macOS-OpenCore" ADD_DATE="1633802156" LAST_MODIFIED="1726059048">GitHub - simprecicchiani/ThinkPad-T460s-macOS-OpenCore: Bootloader configuration for macOS on T460s and possibly others 6th gen ThinkPads</A>
<DT><A HREF="https://zbib.org/" ADD_DATE="1635727339" LAST_MODIFIED="1726059048">ZoteroBib: Fast, free bibliography generator - MLA, APA, Chicago, Harvard citations</A>
<DT><A HREF="https://www.calvin.edu/library/knightcite/index.php" ADD_DATE="1635727348" LAST_MODIFIED="1726059048">KnightCite Citation Service</A>
<DT><H3 ADD_DATE="1635727389" LAST_MODIFIED="1726059048">CRT Research</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=critical+race+theory" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">critical race theory - Bing</A>
<DT><A HREF="https://en.wikipedia.org/wiki/Critical_race_theory" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Critical race theory - Wikipedia</A>
<DT><A HREF="https://www.yalelawjournal.org/pdf/190_fhmiem8p.pdf" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Microsoft Word - carbagulFINAL.doc - 190_fhmiem8p.pdf</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=Cloning+Cultures%3A+The+Social+Injustices+of+Sameness" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Cloning Cultures: The Social Injustices of Sameness - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=The+Id%2C+the+Ego%2C+and+Equal+Protection%3A+Reckoning+with+Unconscious+Racism" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">The Id, the Ego, and Equal Protection: Reckoning with Unconscious Racism - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=Deadweight+Costs+and+Intrinsic+Wrongs+of+Nativism%3A+Economics%2C+Freedom%2C+and+Legal+Suppression+of+Spanish" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Deadweight Costs and Intrinsic Wrongs of Nativism: Economics, Freedom, and Legal Suppression of Spanish - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=Working+Identity" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Working Identity - Bing</A>
<DT><A HREF="https://scholarship.law.cornell.edu/cgi/viewcontent.cgi?article=2814&context=clr" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Working Identity - Working Identity.pdf</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=Ignoring+the+Sexualization+of+Race%3A+Heteronormativity%2C+Critical+Race+Theoiy+and+Anti-Racist+Politics" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Ignoring the Sexualization of Race: Heteronormativity, Critical Race Theoiy and Anti-Racist Politics - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=THE+LOCATION+OF+CULTURE+%281994%29" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">THE LOCATION OF CULTURE (1994) - Bing</A>
<DT><A HREF="https://www.academia.edu/10612310/Cultural_Hybridity_Homi_Bhabhas_The_Location_of_Culture_1994_#:~:text=Cultural%20Hybridity%3A%20Homi%20Bhabha%E2%80%99s%20The%20Location%20of%20Culture,place%20of%20postcolonial%20theory%20within%20contemporary%20academic%20discourse." ADD_DATE="1635727389" LAST_MODIFIED="1716515711">(PDF) Cultural Hybridity: Homi Bhabha's 'The Location of Culture' (1994) | Claire E Hanlon - Academia.edu</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=Whiteness+as+Property" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Whiteness as Property - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=Race+Mattered%3A+Racial+Formation+and+the+Politics+of+Crime+in+Territorial+New+Mexico" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Race Mattered: Racial Formation and the Politics of Crime in Territorial New Mexico - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=The+Social+Construction+of+Race%3A+Some+Observations+on+Illusion%2C+Fabrication%2C+and+Choice" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">The Social Construction of Race: Some Observations on Illusion, Fabrication, and Choice - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZCON&pc=MOZI&q=A+Tale+of+Two+Genres%3A+On+the+Real+and+Ideal+Links+Between+Law+%26+Society+and+Critical+Race+Theory" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">A Tale of Two Genres: On the Real and Ideal Links Between Law & Society and Critical Race Theory - Bing</A>
<DT><A HREF="https://criticalrace.org/what-is-critical-race-theory/" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">What is Critical Race Theory? • Critical Race Training in Education</A>
<DT><A HREF="https://www.city-journal.org/ohio-education-department-antiracist-training" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Smashing “Whiteness” in the Classroom| City Journal</A>
<DT><A HREF="https://rewirenewsgroup.com/article/2018/05/22/case-delegitimizing-police/" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">The Case for Delegitimizing the Police - Rewire News Group</A>
<DT><A HREF="https://chicagoreader.com/news-politics/abolish-the-police-organizers-say-its-less-crazy-than-it-sounds/" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Abolish the police? Organizers say it’s less crazy than it sounds. - Chicago Reader</A>
<DT><A HREF="https://www.nytimes.com/2020/06/12/opinion/sunday/floyd-abolish-defund-police.html?action=click&module=Opinion&pgtype=Homepage&fbclid=IwAR1wM5ZB6X4ubF3vrSQGHhxQ45WNtrWXJgG65WF5AyDTzMDoupH549n4evs" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Opinion | Yes, We Mean Literally Abolish the Police - The New York Times</A>
<DT><A HREF="https://www.terraincognitamedia.com/features/white-people-have-no-culture2018" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">White People Have No Culture — Terra Incognita Media</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=violence+statistics+in+chicago" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">violence statistics in chicago - Bing</A>
<DT><A HREF="https://home.chicagopolice.org/statistics-data/statistical-reports/annual-reports/" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Annual Reports | Chicago Police Department</A>
<DT><A HREF="https://home.chicagopolice.org/wp-content/uploads/Annual_Report_2020.pdf" ADD_DATE="1635727389" LAST_MODIFIED="1716515711">Annual_Report_2020.pdf</A>
</DL><p>
<DT><H3 ADD_DATE="1635727413" LAST_MODIFIED="1726059048">Wage Gap Research</H3>
<DL><p>
<DT><A HREF="https://collegeforcreativestudies.instructure.com/courses/1074/discussion_topics/12670" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Topic: Discussion Post #2: Race and Gender</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=income+reports+by+gender" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">income reports by gender - Bing</A>
<DT><A HREF="https://www.dol.gov/agencies/wb/data/facts-over-time/earnings-and-earnings-ratios" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Earnings and Ratios | U.S. Department of Labor</A>
<DT><A HREF="https://www.bls.gov/cps/earnings.htm" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Earnings (CPS)</A>
<DT><A HREF="https://www.bls.gov/opub/reports/womens-earnings/2020/home.htm" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Highlights of women's earnings in 2020 : BLS Reports: U.S. Bureau of Labor Statistics</A>
<DT><A HREF="https://www.bls.gov/opub/reports/womens-earnings/2019/home.htm" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Highlights of women's earnings in 2019 : BLS Reports: U.S. Bureau of Labor Statistics</A>
<DT><A HREF="https://www.bls.gov/opub/reports/womens-earnings/2015/home.htm" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Highlights of women’s earnings in 2015 : BLS Reports: U.S. Bureau of Labor Statistics</A>
<DT><A HREF="https://hbr.org/2021/05/how-to-close-the-gender-gap" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">How to Close the Gender Gap</A>
<DT><A HREF="https://www.bing.com/search?q=gender+position+gap&qs=n&sp=-1&pq=gender+position+ga&sc=4-18&sk=&cvid=1E8B66D2E833474895083F7CA9C89468&first=11&FORM=PORE" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">gender position gap - Bing</A>
<DT><A HREF="https://www.aauw.org/resources/research/simple-truth/" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">The Simple Truth about the Pay Gap</A>
<DT><A HREF="https://www.weforum.org/reports/ab6795a1-960c-42b2-b3d5-587eccda6023/in-full" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Preface - Global Gender Gap Report 2021 | World Economic Forum</A>
<DT><A HREF="https://www3.weforum.org/docs/WEF_GGGR_2021.pdf" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">WEF_GGGR_2021.pdf</A>
<DT><A HREF="https://www.forbes.com/sites/kimelsesser/2019/04/01/the-gender-pay-gap-and-the-career-choice-myth/?sh=ae63ff5114ad" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">The Gender Pay Gap And The Career Choice Myth</A>
<DT><A HREF="https://www.census.gov/programs-surveys/sis/resources/warm-up-activities/earnings_by_occupation.html" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Earnings by Occupation</A>
<DT><A HREF="https://www.ncsl.org/research/labor-and-employment/the-gender-pay-gap.aspx" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">The Gender Pay Gap</A>
<DT><A HREF="https://www.bls.gov/opub/ted/2020/women-had-median-weekly-earnings-of-902-in-third-quarter-2020-compared-with-1104-for-men.htm" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Women had median weekly earnings of $902 in third quarter 2020, compared with $1,104 for men : The Economics Daily: U.S. Bureau of Labor Statistics</A>
<DT><A HREF="https://www.bls.gov/opub/mlr/2009/07/art3full.pdf" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Monthly Labor Review: Measuring time spent in unpaid household work: results from the American Time Use Survey - art3full.pdf</A>
<DT><A HREF="https://www.americanbar.org/groups/litigation/committees/diversity-inclusion/articles/2019/spring2019-gender-pay-gap-recent-developments/" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">The Persisting Gender Pay Gap: Recent Developments in the Law That Address Gender Pay Disparities</A>
<DT><A HREF="https://www.bing.com/search?pc=MOZI&q=2017+american+community+survey&first=7&FORM=PORE" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">2017 american community survey - Bing</A>
<DT><A HREF="https://www.census.gov/acs/www/data/data-tables-and-tools/data-profiles/2017/" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">2017 Data Profiles | American Community Survey | US Census Bureau</A>
<DT><A HREF="https://data.census.gov/cedsci/table?d=ACS%205-Year%20Estimates%20Data%20Profiles&tid=ACSDP5Y2017.DP03&hidePreview=true" ADD_DATE="1635727413" LAST_MODIFIED="1716515711">Census - Table Results</A>
</DL><p>
<DT><H3 ADD_DATE="1635727520" LAST_MODIFIED="1726059048">Website Research</H3>
<DL><p>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address" ADD_DATE="1635727520" LAST_MODIFIED="1716515711"><address>: The Contact Address element - HTML: HyperText Markup Language | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input" ADD_DATE="1635727520" LAST_MODIFIED="1716515711"><input>: The Input (Form Input) element - HTML: HyperText Markup Language | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Structuring_a_page_of_content" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">Structuring a page of content - Learn web development | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Learn/Forms/Basic_native_form_controls" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">Basic native form controls - Learn web development | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Learn/Forms/HTML5_input_types" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">The HTML5 input types - Learn web development | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Images_in_HTML" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">Images in HTML - Learn web development | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/CSS/tab-size" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">tab-size - CSS: Cascading Style Sheets | MDN</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-loading" ADD_DATE="1635727520" LAST_MODIFIED="1716515711"><img>: The Image Embed element - HTML: HyperText Markup Language | MDN</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=insert+alt+codes+mac" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">insert alt codes mac - Search</A>
<DT><A HREF="https://www.webnots.com/option-or-alt-key-shortcuts-to-insert-symbols-in-mac-os-x/#:~:text=Alt%20Code%20Shortcuts%20for%20Mac%20%20%20,%20%20Math%20%2035%20more%20rows%20" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">Alt Code Shortcuts for Mac to Insert Symbols » WebNots</A>
<DT><A HREF="https://www.bing.com/search?q=display+placeholder+with+same+dimensions+before+image+loads+lazy+loading+css&qs=n&form=QBRE&sp=-1&pq=display+placeholder+with+same+dimensions+before+image+l&sc=0-55&sk=&cvid=B412BB69797D4C3FB7352302851178BB" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">display placeholder with same dimensions before image loads lazy loading css - Search</A>
<DT><A HREF="https://medium.com/caspertechteam/simple-image-placeholders-for-lazy-loading-images-unknown-size-19f0866ceced" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">Simple image placeholders for lazy loading images | by Florida Ivanne Elago | The Casper Tech Blog: Z++ | Medium</A>
<DT><A HREF="https://jmperezperez.com/medium-image-progressive-loading-placeholder/" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">How Medium does progressive image loading - José M. Pérez</A>
<DT><A HREF="https://www.sitepoint.com/five-techniques-lazy-load-images-website-performance/#:~:text=What%20Is%20Lazy%20Loading%3F%20Lazy%20loading%20images%20means,bottom%20of%20the%20page%20won%E2%80%99t%20even%20be%20loaded." ADD_DATE="1635727520" LAST_MODIFIED="1716515711">Five Ways to Lazy Load Images for Better Website Performance - SitePoint</A>
<DT><A HREF="https://caniuse.com/intersectionobserver" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">IntersectionObserver | Can I use... Support tables for HTML5, CSS3, etc</A>
<DT><A HREF="https://github.com/w3c/IntersectionObserver/tree/main/polyfill" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">IntersectionObserver/polyfill at main · w3c/IntersectionObserver · GitHub</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=display+inline+content+over+other+inline+content+css" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">display inline content over other inline content css - Bing</A>
<DT><A HREF="https://www.w3schools.com/Css/css_inline-block.asp" ADD_DATE="1635727520" LAST_MODIFIED="1716515711">CSS Layout - inline-block</A>
<DT><H3 ADD_DATE="1635727540" LAST_MODIFIED="1716515711">CSS</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=wrap+text+css&wlexpsignin=1" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">wrap text css - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=wrap+text+around+image+css&qs=n&form=QBRE&sp=-1&pq=wrap+text+around+imagecss&sc=1-25&sk=&cvid=9C57040B34284D2FB389316B0E37EB66" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">wrap text around image css - Bing</A>
<DT><A HREF="https://www.javatpoint.com/how-to-wrap-text-around-an-image-in-html#:~:text=Using%20Internal%20CSS%201%20Firstly%2C%20we%20have%20to,image.%20So%2C%20we%20have%20to%20define%20a%20class." ADD_DATE="1635727540" LAST_MODIFIED="1716515711">How to Wrap Text around an image in Html - javatpoint</A>
<DT><A HREF="https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">text-shadow - CSS: Cascading Style Sheets | MDN</A>
<DT><A HREF="https://stackoverflow.com/questions/16679146/force-footer-on-bottom-on-pages-with-little-content" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">css - force footer on bottom on pages with little content - Stack Overflow</A>
<DT><A HREF="https://wp-mix.com/shorten-text-css/" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">Shorten text with CSS | WP-Mix</A>
<DT><A HREF="https://getflywheel.com/layout/create-sticky-website-header-how-to/#:~:text=Here%20are%20three%20simple%20steps%3A%201%20Find%20the,the%20distance%20from%20the%20%E2%80%9Csticky%20edge%2C%E2%80%9D%20i.e.%20" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">How to create a sticky website header | Layout</A>
<DT><A HREF="https://stackoverflow.com/questions/521832/consistent-font-size-across-browsers-web-development" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">css - Consistent font-size across browsers (web development) - Stack Overflow</A>
<DT><A HREF="https://meyerweb.com/eric/tools/css/reset/" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">CSS Tools: Reset CSS</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=point+to+local+css+file+ejs" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">point to local css file ejs - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=hamburger+menu+with+animation" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">hamburger menu with animation - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=how+to+make+floating+hamburger+menu+with+animation&qs=n&form=QBRE&sp=-1&pq=how+to+make+floatinghamburger+menu+with+animation&sc=1-49&sk=&cvid=79A0F419B8BE473189CF621F5711790E" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">how to make floating hamburger menu with animation - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=how+to+make+floating+action+button+with+animation+html&qs=n&form=QBRE&sp=-1&pq=how+to+make+floating+action+button+with+animation+htm&sc=0-53&sk=&cvid=6DA65636F8CE42A7B8713E216FC24524" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">how to make floating action button with animation html - Bing</A>
<DT><A HREF="https://www.youtube.com/watch?v=dsMj8_dUJTQ" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">(245) Floating Action Button using Html CSS & Vanilla Javascript | CSS3 Material Design - YouTube</A>
<DT><A HREF="https://daily-dev-tips.com/posts/animated-hamburger-side-menu/" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">Animated Hamburger Sidenar Menu Tutorial [2020]</A>
<DT><A HREF="https://codepen.io/rebelchris/pen/zYvNWNG" ADD_DATE="1635727540" LAST_MODIFIED="1716515711">Animated Hamburger Side Menu 🍔</A>
</DL><p>
<DT><H3 ADD_DATE="1635727587" LAST_MODIFIED="1716515711">EJS and MySQL</H3>
<DL><p>
<DT><A HREF="https://ejs.co/#install" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">EJS -- Embedded JavaScript templates</A>
<DT><A HREF="https://stackoverflow.com/questions/50556284/how-to-create-a-dynamic-webpage-using-node-js" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">node.js - how to create a dynamic webpage using node js? - Stack Overflow</A>
<DT><A HREF="https://shockoe.com/ideas/development/creating-dynamic-web-pages-ejs/" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">Creating Dynamic Web Pages with EJS - Shockoe</A>
<DT><A HREF="https://stackoverflow.com/questions/30444234/serving-dynamic-webpages-with-node-js" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">html - Serving Dynamic Webpages with Node.js - Stack Overflow</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=install+nodejs+raspberry+pi+apt-get" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">install nodejs raspberry pi apt-get - Bing</A>
<DT><A HREF="https://github.com/nodesource/distributions#deb" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">GitHub - nodesource/distributions: NodeSource Node.js Binary Distributions</A>
<DT><A HREF="https://thaicademy.com/article/how-to-install-node-js-and-npm-on-the-raspberry-pi" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">How to install Node JS and NPM on the Raspberry Pi |</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=ejs+template+tutorial" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">ejs template tutorial - Bing</A>
<DT><A HREF="https://www.digitalocean.com/community/tutorials/how-to-use-ejs-to-template-your-node-application" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">How To Use EJS to Template Your Node Application | DigitalOcean</A>
<DT><A HREF="https://github.com/do-community/ejs-demo" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">GitHub - do-community/ejs-demo: Demo of ejs templates for node apps, covered here: https://www.digitalocean.com/community/tutorials/how-to-use-ejs-to-template-your-node-application</A>
<DT><A HREF="http://localhost:8080/" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">EJS Testing</A>
<DT><A HREF="https://www.bing.com/search?q=node.js+with+ssl+on+nginx&qs=n&form=QBRE&sp=-1&ghc=1&pq=node.js+with+ssl+on+nginx&sc=0-25&sk=&cvid=9BC5C79758094100867127701DAA23E3" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">node.js with ssl on nginx - Bing</A>
<DT><A HREF="https://www.nginx.com/blog/5-performance-tips-for-node-js-applications/#:~:text=You%20can%20terminate%20an%20SSL%2FTLS%20connection%20to%20the,and%20forth%20with%20the%20NGINX%20reverse%20proxy%20server." ADD_DATE="1635727587" LAST_MODIFIED="1716515711">5 Tips to Increase Node.js Application Performance</A>
<DT><A HREF="https://www.sitepoint.com/configuring-nginx-ssl-node-js/" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">Configuring NGINX and SSL with Node.js</A>
<DT><A HREF="https://snapshooter.com/blog/how-to-run-nodejs-server-with-nginx" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">How to run Node.js server with Nginx</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=include+javasrcipt+nodejs" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">include javasrcipt nodejs - Bing</A>
<DT><A HREF="https://stackoverflow.com/questions/39720286/how-to-include-external-scripts-in-node-js" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">javascript - How to include external scripts in Node.js? - Stack Overflow</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=npm+express" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">npm express - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=ejs+server.js+for+large+webpages&qs=n&form=QBRE&sp=-1&pq=ejs+server.js+for+large+webpages&sc=0-32&sk=&cvid=6904632DFB634DEEA5B14274819A614E" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">ejs server.js for large webpages - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=res.render+ejs+for+hundreds+of+pages&qs=n&form=QBRE&sp=-1&pq=res.render+ejs+for+hundreds+of+pages&sc=1-36&sk=&cvid=B970EFE0B65846A1B1120ECF1F305250" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">res.render ejs for hundreds of pages - Bing</A>
<DT><A HREF="https://www.bing.com/search?q=best+way+to+render+subpages+node.js+express&qs=n&form=QBRE&sp=-1&pq=best+way+to+render+subpages+node.js+express&sc=3-43&sk=&cvid=5771EC9ACFAB462CBA9C47869CEFB3E4" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">best way to render subpages node.js express - Bing</A>
<DT><A HREF="https://medium.com/@bloomaman/rendering-views-with-node-express-and-ejs-415af1493c74" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">Rendering Views with Node, Express, and EJS | by Bloom Aman | Medium</A>
<DT><A HREF="https://stackabuse.com/node-js-express-examples-rendered-rest-and-static-websites/" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">Node.js Express Examples: Rendered, REST, and Static Websites</A>
<DT><A HREF="https://www.bing.com/search?q=create+a+database+for+a+blog&qs=n&form=QBRE&sp=-1&pq=create+a+database+for+a+blo&sc=6-27&sk=&cvid=5C82D43563C84690BA41C542D4BA49AA" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">create a database for a blog - Bing</A>
<DT><A HREF="https://github.com/martin2844/ejs-blog" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">GitHub - martin2844/ejs-blog: A good simple blog using, Node, Express, Ejs & MongoDB. With Search function and Tags</A>
<DT><A HREF="https://blog.logrocket.com/node-js-express-js-mysql-rest-api-example/" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">Node.js, Express.js, and MySQL: A step-by-step REST API example - LogRocket Blog</A>
<DT><A HREF="https://codewithawa.com/posts/how-to-create-a-blog-in-php-and-mysql-database" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">How to create a blog in PHP and MySQL database | CodeWithAwa</A>
<DT><A HREF="https://dba.stackexchange.com/questions/145222/structure-a-database-for-a-blog" ADD_DATE="1635727587" LAST_MODIFIED="1716515711">mysql - Structure a database for a Blog - Database Administrators Stack Exchange</A>
</DL><p>
</DL><p>
<DT><A HREF="https://crystalverse.com/sodium-chloride-crystals/" ADD_DATE="1637334598" LAST_MODIFIED="1726059048">How to Grow Sodium Chloride Crystals at Home - Crystalverse</A>
<DT><A HREF="https://thomaslevesque.com/2014/01/14/tackling-timeout-issues-when-uploading-large-files-with-httpwebrequest/" ADD_DATE="1638748470" LAST_MODIFIED="1726059048">Tackling timeout issues when uploading large files with HttpWebRequest - Thomas Levesque's .NET Blog</A>
<DT><A HREF="https://mctools.org/" ADD_DATE="1639291797" LAST_MODIFIED="1726059048">Minecraft Server Tools · A little help for the server admin</A>
<DT><A HREF="https://docs.google.com/document/d/1D8-7r1jMWbmxrjuXPjsyoi8n-ZwArlK8H0OOxlCbm0c/edit" ADD_DATE="1639667570" LAST_MODIFIED="1726059048">Technology - Google Docs</A>
<DT><H3 ADD_DATE="1641099116" LAST_MODIFIED="1726059048">E-Stop Ethernet System</H3>
<DL><p>
<DT><A HREF="https://www.bing.com/search?q=estop+over+ethernet" ADD_DATE="1641099116" LAST_MODIFIED="1716515711">estop over ethernet - Bing</A>
<DT><A HREF="http://www.plctalk.net/qanda/showthread.php?t=80949&page=3" ADD_DATE="1641099116" LAST_MODIFIED="1716515711">E-stop over Ethernet - Page 3 - PLCS.net - Interactive Q & A</A>
<DT><A HREF="http://www.plctalk.net/qanda/showpost.php?p=689532&postcount=6" ADD_DATE="1641099116" LAST_MODIFIED="1716515711">PLCS.net - Interactive Q & A - View Single Post - Ethernet Network - QoS and packet priority</A>
<DT><A HREF="http://info.taittowers.com/tait-products" ADD_DATE="1641099116" LAST_MODIFIED="1716515711">TAIT Products</A>
</DL><p>
<DT><A HREF="https://simplygoodkitchen.com/" ADD_DATE="1642091935" LAST_MODIFIED="1726059048">Get Fresh, Healthy, and Locally Prepared Meals - Simply Good Kitchen</A>
<DT><A HREF="https://ccshousing.roomchoice.com/new/property/1" ADD_DATE="1644024508" LAST_MODIFIED="1726059048">Room Choice | CCS Housing</A>
<DT><A HREF="https://obsolescence.wixsite.com/obsolescence/home" ADD_DATE="1660938881" LAST_MODIFIED="1726059048">Obsolescence Guaranteed</A>
<DT><A HREF="https://www.pinterest.com/jayhawker125/" ADD_DATE="1662594613" LAST_MODIFIED="1726059048">Sean Peterson</A>
<DT><A HREF="https://www.visualtorque.com/" ADD_DATE="1662915366" LAST_MODIFIED="1726059048">VISUAL TORQUE</A>
<DT><A HREF="https://dribbble.com/zamax/projects/726224-Macindows-Life-Problems" ADD_DATE="1663333418" LAST_MODIFIED="1726059048">Gustavo Zambelli / Projects / Macindows Life Problems | Dribbble</A>
<DT><A HREF="https://www.lofree.co/collections/office-2/products/lofree-wanderfree-portable-mechanical-keyboard?variant=40829952655553" ADD_DATE="1663334809" LAST_MODIFIED="1726059048">WANDERFREE Bluetooth Portable Mechanical Keyboard | Lofree – Lofree | Fun 2㎡ Designer for Mechanical Keyboard</A>
<DT><A HREF="https://www.youtube.com/watch?v=JWEBKfZuwqQ" ADD_DATE="1666229995" LAST_MODIFIED="1726059048">(821) What if Carroll Shelby designed the Fox-body Mustang? | Chip Foose Draws A Car - Ep. 19 - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=j3q7bT0v9IE" ADD_DATE="1667142254" LAST_MODIFIED="1726059048">(914) Philip Glass - Koyaanisqatsi - YouTube</A>
<DT><A HREF="https://docs.google.com/document/d/1LjbllPge9amfPJz1evopFXq-SGehBm3DMTwFjKSBuRs/edit" ADD_DATE="1669860466" LAST_MODIFIED="1726059048">Western Art History Essay - Google Docs</A>
<DT><A HREF="https://old.reddit.com/r/Dell/comments/fzv599/xps_7590_160_uefi_unlock_undervolting_and_remove/" ADD_DATE="1673658347" LAST_MODIFIED="1726059048">XPS 7590 1.6.0 UEFI: unlock undervolting and remove CFG lock : Dell</A>
<DT><H3 ADD_DATE="1674325638" LAST_MODIFIED="1726059048">XPS Undervolting</H3>
<DL><p>
<DT><A HREF="https://old.reddit.com/r/Dell/comments/fzv599/xps_7590_160_uefi_unlock_undervolting_and_remove/" ADD_DATE="1674325633" LAST_MODIFIED="1716515711">XPS 7590 1.6.0 UEFI: unlock undervolting and remove CFG lock : Dell</A>
<DT><A HREF="https://github.com/XDleader555/grub_setup_var/releases/tag/v1.0-alpha" ADD_DATE="1674325633" LAST_MODIFIED="1716515711">Release v1.0-alpha · XDleader555/grub_setup_var · GitHub</A>
<DT><A HREF="https://github.com/Azkali/GPD-P2-MAX-Hackintosh/issues/16" ADD_DATE="1674325633" LAST_MODIFIED="1716515711">Change hidden CFG Lock setting · Issue #16 · Azkali/GPD-P2-MAX-Hackintosh · GitHub</A>
<DT><A HREF="https://www.reddit.com/r/Dell/comments/fxfcos/how_to_get_undervolting_back_after_g3/" ADD_DATE="1674325633" LAST_MODIFIED="1716515711">How to get Undervolting back after (G3 specifically) BIOS update without downgrading BIOS : Dell</A>
<DT><A HREF="https://github.com/datasone/grub-mod-setup_var/releases" ADD_DATE="1674325633" LAST_MODIFIED="1716515711">Releases · datasone/grub-mod-setup_var</A>
</DL><p>
<DT><H3 ADD_DATE="1674431251" LAST_MODIFIED="1726059048">EV Research</H3>
<DL><p>
<DT><A HREF="https://news.mit.edu/2021/dendrite-prevent-lithium-batteries-0316" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">How to prevent short-circuiting in next-gen lithium batteries | MIT News | Massachusetts Institute of Technology</A>
<DT><A HREF="https://news.mit.edu/2022/controlling-dendrities-lithium-batteries-1118" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Engineers solve a mystery on the path to smaller, lighter batteries | MIT News | Massachusetts Institute of Technology</A>
<DT><A HREF="https://www.sciencedaily.com/releases/2019/10/191014111723.htm" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Scientists pinpoint cause of harmful dendrites and whiskers in lithium batteries: Team modifies electrolyte chemistry to prevent the piercing structures -- ScienceDaily</A>
<DT><A HREF="https://www.sciencedirect.com/topics/engineering/lithium-dendrite" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Lithium Dendrite - an overview | ScienceDirect Topics</A>
<DT><A HREF="https://www.designnews.com/materials-assembly/scientists-have-pinpointed-cause-dendrites-lithium-ion-batteries" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Scientists Have Pinpointed the Cause of Dendrites in Lithium-Ion Batte</A>
<DT><A HREF="https://duckduckgo.com/?q=inside+single+speed+ev+transmission&t=ffab&iar=images&iax=images&ia=images&iai=https%3A%2F%2Fbioage.typepad.com%2F.a%2F6a00d8341c4fbe53ef01b7c7cb1ab9970b-550wi" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">inside single speed ev transmission at DuckDuckGo</A>
<DT><A HREF="https://www.motortrend.com/features/ingear-2-speed-ev-automatic-transmission-explained/" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Inmotive's EV Transmission Tries One-Upping 2-Speeds From Porsche, Rimac Using Bicycle Tech</A>
<DT><A HREF="https://insideevs.com/news/511495/two-speed-ev-gearbox-inmotive/" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Company Argues Its Two-Speed EV Gearbox Is Better Than A Single-Speed</A>
<DT><A HREF="https://www.evoindia.com/features/difference-between-single-speed-gearbox-and-multi-speed-gearbox-in-evs-explained" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Why do the majority of EVs get a single-speed gearbox and not a multi-speed gearbox?</A>
<DT><A HREF="https://drive.google.com/drive/u/3/folders/1QEYwQW1jYedxE7Sr5QENMWiVj9MkcU9e" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">DTR-233-B/GRT 23 - Google Drive</A>
<DT><A HREF="https://www.nasa.gov/aeroresearch/nasa-solid-state-battery-research-exceeds-initial-goals-draws-interest" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">NASA’s Solid-State Battery Research Exceeds Initial Goals | NASA</A>
<DT><A HREF="https://www.nasa.gov/feature/nasa-seeks-to-create-a-better-battery-with-sabers" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">NASA Seeks to Create a Better Battery with SABERS | NASA</A>
<DT><A HREF="https://www.nasa.gov/sites/default/files/atoms/files/sabers_cas_fact_sheet_508.pdf" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">SABERS: Solid-state Architecture Batteries for Enhanced Rechargeability and Safety - sabers_cas_fact_sheet_508.pdf</A>
<DT><A HREF="https://duckduckgo.com/?q=nasa+sabers+battery+pack+dendrite&t=ffab&ia=web" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">nasa sabers battery pack dendrite at DuckDuckGo</A>
<DT><A HREF="https://cleantechnica.com/2022/10/11/nasa-solid-state-battery-is-lighter-more-powerful/" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">NASA Solid-State Battery Is Lighter & More Powerful - CleanTechnica</A>
<DT><A HREF="https://scitechdaily.com/nasa-seeks-to-create-a-better-safer-battery-with-sabers/" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">NASA Seeks to Create a Better, Safer Battery With SABERS</A>
<DT><A HREF="file:///C:/Users/Alex/Downloads/V%20Lvovich%20SABERS%20ISE2020%20Presentation1.pdf" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">PowerPoint Presentation - V Lvovich SABERS ISE2020 Presentation1.pdf</A>
<DT><A HREF="https://duckduckgo.com/?q=dendrite+lithium+ion+battery&t=ffab&iar=images&iax=images&ia=images&iai=https%3A%2F%2Fscx2.b-cdn.net%2Fgfx%2Fnews%2Fhires%2F2013%2Flibatterydendrites1.jpg" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">dendrite lithium ion battery at DuckDuckGo</A>
<DT><A HREF="https://scx2.b-cdn.net/gfx/news/hires/2013/libatterydendrites1.jpg" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">libatterydendrites1.jpg (JPEG Image, 983 × 471 pixels)</A>
<DT><A HREF="https://phys.org/news/2013-12-view-dendrites-li-batteries-root.html" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">New view of dendrites in Li batteries gets to the root of the problem</A>
<DT><A HREF="https://www.batterypoweronline.com/news/a-look-inside-your-battery-watching-the-dendrites-grow/" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">Battery Power Online | A Look Inside Your Battery: Watching the Dendrites Grow</A>
<DT><A HREF="https://www.batterypoweronline.com/wp-content/uploads/2020/08/CALCE8-24a.png" ADD_DATE="1674431247" LAST_MODIFIED="1716515711">CALCE8-24a.png (PNG Image, 286 × 160 pixels)</A>
</DL><p>
<DT><A HREF="https://doctor-motorcycle.com/" ADD_DATE="1677948865" LAST_MODIFIED="1726059048">Doctor Motorcycle</A>
<DT><A HREF="http://johnjbleau.com/" ADD_DATE="1679714689" LAST_MODIFIED="1726059048">John Bleau</A>
<DT><A HREF="https://www.soundlabsgroup.com.au/" ADD_DATE="1679764212" LAST_MODIFIED="1726059048">Soundlabs Group</A>
<DT><A HREF="https://thirtybyforty.com/" ADD_DATE="1679844131" LAST_MODIFIED="1726059048">30X40 Design Workshop - Simple Modern Residential Architecture | Mount Desert Island, Maine</A>
<DT><A HREF="https://www.deepl.com/en/translator" ADD_DATE="1681239302" LAST_MODIFIED="1726059048">DeepL Translate: The world's most accurate translator</A>
<DT><A HREF="https://thenounproject.com/" ADD_DATE="1681862109" LAST_MODIFIED="1726059048" ICON_URI="https://thenounproject.com/favicon-16x16.png" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQfhAwoVAQg0/CDbAAAAMElEQVQY02NgoBPgDPBhk1BTE9fKzTUACwR//+yusn69csr//0XYBUBaJJG10AEAAOeuErBd9nNnAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTAzLTEwVDIxOjAxOjA4KzAxOjAwYzlzcQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wMy0xMFQyMTowMTowOCswMTowMBJky80AAABXelRYdFJhdyBwcm9maWxlIHR5cGUgaXB0YwAAeJzj8gwIcVYoKMpPy8xJ5VIAAyMLLmMLEyMTS5MUAxMgRIA0w2QDI7NUIMvY1MjEzMQcxAfLgEigSi4A6hcRdPJCNZUAAAAASUVORK5CYII=">Noun Project: Free Icons & Stock Photos for Everything</A>
<DT><H3 ADD_DATE="1686881684" LAST_MODIFIED="1726059048">300E Engine Project</H3>
<DL><p>
<DT><A HREF="https://www.peachparts.com/shopforum/search.php?searchid=9863731&pp=30&page=9" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">PeachParts Mercedes-Benz Forum - Search Results</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/212672-ta0301-rebuilding-perhaps.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">TA0301 rebuilding perhaps... - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/168477-m103-3-0-3-6-build-discussion.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">M103 3.0 to 3.6 Build Discussion - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/250523-will-m104-camshaft-fit-m103.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Will the m104 camshaft fit m103? - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/236828-anyone-try-sts-turbo.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Anyone try an STS turbo? - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/off-topic-discussion/229711-what-can-i-use-undercoating-car.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">What can I use for undercoating a car? - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/tech-help/222247-87-300e-wacky-electrical-problems.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">87 300E Wacky Electrical Problems.... - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/off-topic-discussion/220676-its-not-benz-its-not-mercedes.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">It's not a Benz, it's not a Mercedes, - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/218549-my-w124-m103-e300-finally-has-mosselman-kit-istalled.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">My w124 M103 e300 finally has the mosselman kit istalled - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/off-topic-discussion/216834-me-way-i-look-right-now-8.html#post1799223" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Me, the way I look right now. - Page 8 - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/299468-flex-disc-reenforcement.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Flex Disc reenforcement - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/290404-injector-intake-manifold-design.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Injector/Intake manifold design. - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://www.peachparts.com/shopforum/tech-help/281930-torque-converter-broken-loose-blade.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Torque Converter... Broken/Loose Blade??? - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://duckduckgo.com/?q=turbo+300e+300evil+site%3Apeachparts.com&t=ffab&ia=web" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">turbo 300e 300evil site:peachparts.com at DuckDuckGo</A>
<DT><A HREF="https://www.peachparts.com/shopforum/mercedes-benz-performance-paddock/38011-turbo-install-my-300e-16.html" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Turbo install on my 300E - Page 16 - PeachParts Mercedes-Benz Forum</A>
<DT><A HREF="https://aquamist-direct.com/aquamist-systems/" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Aquamist systems - aquamist-direct.com</A>
<DT><A HREF="https://forums.mbclub.co.uk/" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">MBClub UK - Bringing together Mercedes Enthusiasts</A>
<DT><A HREF="http://www.silcom.com/~neilv/C36turbo" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">Server Not Found</A>
<DT><A HREF="http://benzboy.com/?cat=79" ADD_DATE="1686881684" LAST_MODIFIED="1716515711">EBAY STORES – BENZBOY, INC.</A>
</DL><p>
<DT><H3 ADD_DATE="1700433406" LAST_MODIFIED="1726059048">Ryzen 5950X Hell</H3>
<DL><p>
<DT><A HREF="https://www.reddit.com/r/Amd/comments/lkdtoy/my_5950x_issues_experience_and_eventual_fix/" ADD_DATE="1700433406" LAST_MODIFIED="1716515711">My 5950X issues, experience and eventual fix! : r/Amd</A>
<DT><A HREF="https://community.amd.com/t5/processors/5950x-random-crashes-pulling-hair-out/m-p/432133/highlight/true#M35819" ADD_DATE="1700433406" LAST_MODIFIED="1716515711">Solved: Re: 5950X Random Crashes--Pulling Hair Out! - AMD Community</A>
<DT><A HREF="https://community.amd.com/t5/processors/best-motherboards-for-amd-ryzen-5000-cpus-x570-b550-for-gaming/m-p/431808#M35726" ADD_DATE="1700433406" LAST_MODIFIED="1716515711">Best Motherboards for AMD Ryzen 5000 CPUs: X570, B... - AMD Community</A>
<DT><A HREF="https://www.overclock.net/threads/replaced-3950x-with-5950x-whea-and-reboots.1774627/" ADD_DATE="1700433406" LAST_MODIFIED="1716515711">Replaced 3950X with 5950X = WHEA and reboots | Overclock.net</A>
<DT><A HREF="https://www.reddit.com/r/AMDHelp/comments/kfyst7/random_bsods_with_amd_5000_series_processor/" ADD_DATE="1700433406" LAST_MODIFIED="1716515711">Random BSODs with AMD 5000 Series Processor : r/AMDHelp</A>
</DL><p>
<DT><A HREF="https://krobarch.com/winners" ADD_DATE="1702749749" LAST_MODIFIED="1726059048">KRob | Winners</A>
<DT><A HREF="https://www.behance.net/gallery/73434183/Form-from-dream" ADD_DATE="1702754021" LAST_MODIFIED="1726059048">Form from dream on Behance</A>
<DT><H3 ADD_DATE="1703644396" LAST_MODIFIED="1726059048">Ricing</H3>
<DL><p>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/12z9q93/dwm_quite_boring_college_setup/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[dwm] quite boring college setup : unixporn</A>
<DT><A HREF="https://github.com/raihanadf/dotfiles" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - raihanadf/dotfiles: 🍚 no place like $HOME</A>
<DT><A HREF="https://github.com/raitonoberu/sptlrx" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - raitonoberu/sptlrx: Synchronized lyrics in your terminal</A>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/mijfyg/dwm_nordic_dwm_is_best_dwm/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[dwm] Nordic dwm is best dwm : unixporn</A>
<DT><A HREF="https://github.com/marcothms/dots/tree/master" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - marcothms/dots: my main configuration files</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=spicetify-cli&ia=web" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">spicetify-cli at DuckDuckGo</A>
<DT><A HREF="https://github.com/spicetify/spicetify-cli" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - spicetify/spicetify-cli: Command-line tool to customize Spotify client. Supports Windows, MacOS, and Linux.</A>
<DT><A HREF="https://github.com/leovoel/BeautifulDiscord" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - leovoel/BeautifulDiscord: Adds custom CSS support to Discord.</A>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/y9xe2m/dwm_my_dwm_setup/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[dwm] My dwm setup : unixporn</A>
<DT><A HREF="https://github.com/ornfelt/dots" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - ornfelt/dots: My dotfiles for Arch linux</A>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/ri8hyg/dwm_just_installed_dwm_a_few_days_ago_d/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[DWM] Just installed dwm a few days ago :D : unixporn</A>
<DT><A HREF="https://www.reddit.com/media?url=https%3A%2F%2Fi.redd.it%2Fdx6knebw0uy81.png" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">Reddit - https://i.redd.it/dx6knebw0uy81.png</A>
<DT><A HREF="https://github.com/migueravila/SimpleFox#-customization" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">GitHub - migueravila/SimpleFox: 🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.</A>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/pq8m5r/dwm_widgets_two_layout_do_you_like_light_theme/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[dwm] Widgets, two layout. Do you like light theme? : unixporn</A>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/22qmc9/archdwm_shooting_for_minimal_may_have_overshot/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[Arch][DWM] Shooting for minimal, may have overshot. : unixporn</A>
<DT><A HREF="https://old.reddit.com/r/unixporn/comments/wex4yy/dwm_gentoodwmchad/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">[DWM] Gentoo+dwm=Chad : unixporn</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=using+custom+css+firefox&ia=web" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">using custom css firefox at DuckDuckGo</A>
<DT><A HREF="https://www.howtogeek.com/334716/how-to-customize-firefoxs-user-interface-with-userchrome.css/" ADD_DATE="1703644396" LAST_MODIFIED="1716515711">How to Customize Firefox's User Interface With userChrome.css</A>
</DL><p>
<DT><H3 ADD_DATE="1703644743" LAST_MODIFIED="1726059048">youtubetowatch</H3>
<DL><p>
<DT><A HREF="https://www.youtube.com/watch?v=-KqgaY4TESE" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1999) Learning About Tires Leads to Rallycross — Carmudgeon Show w Jason Cammisa Derek Tam-Scott — Ep 126 - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=f9zyenX2PWk" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">How these impossibly thin cuts are made - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=wk5JDacH1PY" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1981) SKI FOR THE LOVE - HOME, SICK! - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=XiNG9bY-svA" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1981) Top Picks - Heated Riding Gear for 2024 - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=2SA85hYxOzk" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1981) So Who Wants A Welder?! - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=xVB6ef9JWSk" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1981) Why Rollerblading DIED... - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=B5_M_--zBsQ" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1981) BLINK | Full Movie - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=cSyEwzAfHCY" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1981) Why Inline 5 Engines Can't Be Carbureted and Why They're So Rare - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=INqfabhWorU" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1998) Are we there yet (2023) - Ailo Riponiemi - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=fuBzeQlGKmg" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1999) MAGMA 3 - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=cpi2fc5vfNs" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">CANDIDE THOVEX || FEW WORDS - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=b4ya3V-s4I0" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1999) There's More to Dutch Roads Than You Think - YouTube</A>
<DT><A HREF="https://www.youtube.com/watch?v=ws2kW_YNgQw" ADD_DATE="1703644743" LAST_MODIFIED="1716515711">(1999) Forre Movie 2 (2023) - YouTube</A>
</DL><p>
<DT><A HREF="https://www.thingiverse.com/thing:3290806" ADD_DATE="1705372561" LAST_MODIFIED="1726059048">Star Wars Naboo S5 Heavy Blaster Pistol by Dsk001 - Thingiverse</A>
<DT><A HREF="https://www.classifiedmoto.com/about/" ADD_DATE="1705375051" LAST_MODIFIED="1726059048">About - Classified Moto</A>
<DT><H3 ADD_DATE="1705375081" LAST_MODIFIED="1726059048">Fixie Research</H3>
<DL><p>
<DT><A HREF="https://www.oldskooltrack.com/files/home-frame.html" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">OldSkoolTrack.com | for track bikes on city streets</A>
<DT><A HREF="http://www.63xc.com/gregg/101_8.htm" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">63xc.com--How To | FG 101: Pedaling technique</A>
<DT><A HREF="http://63xc.com/" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">63xc.com--The Offroad Fixed Gear Site</A>
<DT><A HREF="https://www.sheldonbrown.com/home.html" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">Sheldon Brown's Home Page</A>
<DT><A HREF="https://web.archive.org/web/20061018094821/http://www.gobybicycle.com/index.htm" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">go by bicycle.......try it</A>
<DT><A HREF="https://web.archive.org/web/20051102213250/http://www.singlespeedoutlaw.com/issue5/blog.shtml" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">Single Speed Outlaw ™</A>
<DT><A HREF="https://web.archive.org/web/20070403170431/http://www.fixedgeargallery.com/" ADD_DATE="1705375081" LAST_MODIFIED="1716515711">Fixed Gear Bicycles Bicycle Bikes Gallery</A>
</DL><p>
<DT><A HREF="http://www.coolingplan.com/%e8%a7%86%e9%a2%91/%e8%a7%86%e9%a2%91-%e5%86%9b%e5%8c%bb%e9%99%a2/" ADD_DATE="1705375362" LAST_MODIFIED="1726059048">冷却计划 | 视频 | 军医院</A>
<DT><A HREF="http://www.thetimelessride.com/index.htm" ADD_DATE="1705606058" LAST_MODIFIED="1726059048">Hubert Kriegel on Thetimelessride RTW</A>
<DT><H3 ADD_DATE="1705618752" LAST_MODIFIED="1726059048">Stevens Inspo</H3>
<DL><p>
<DT><A HREF="https://achlt.tumblr.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">A C H L T</A>
<DT><A HREF="https://r2-r.tumblr.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">R2 . CA . 2023</A>
<DT><A HREF="https://drkftr.tumblr.com/page/37" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">DRK.FTR</A>
<DT><A HREF="https://lecontainer.blogspot.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">LE CONTAINER</A>
<DT><A HREF="https://www.pinterest.com/pinterestidias/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">(29) Pinterest</A>
<DT><A HREF="https://jemangeunepomme.tumblr.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">JE MANGE UNE POMME</A>
<DT><A HREF="https://rhubarbes.tumblr.com/archive?source=blog_view_login_wall" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Rhb_RBS: Archive</A>
<DT><A HREF="https://www.artstation.com/?sort_by=trending&dimension=all" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">ArtStation - All Channels</A>
<DT><A HREF="https://sketchpat.blogspot.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">SKETCHPAT</A>
<DT><A HREF="https://www.fenotypo.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Fenotypo Design Resource</A>
<DT><A HREF="https://uncrate.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Uncrate</A>
<DT><A HREF="https://www.dezeen.com/#" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Dezeen | architecture and design magazine</A>
<DT><A HREF="https://www.fastcompany.com/co-design" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Business Design News & Trends | Fast Company</A>
<DT><A HREF="https://thecoolhunter.net/category/architecture/offices/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Offices Archives - The Cool Hunter Journal</A>
<DT><A HREF="https://lemanoosh.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Industrial Design Trends, Jobs and Online Courses - leManoosh</A>
<DT><A HREF="https://www.yankodesign.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">Yanko Design - Modern Industrial Design News</A>
<DT><A HREF="https://www.designboom.com/" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">designboom magazine | your first source for architecture, design & art news</A>
<DT><A HREF="https://schoengeistig.tumblr.com/tagged/Landscape" ADD_DATE="1705618752" LAST_MODIFIED="1716515711">/ schoengeist</A>
</DL><p>
<DT><A HREF="http://www.marcholsteinphotos.com/" ADD_DATE="1706663243" LAST_MODIFIED="1726059048">Marc Holstein</A>
<DT><A HREF="https://www.nicoleoutdoors.com/" ADD_DATE="1706675149" LAST_MODIFIED="1726059048">Nicole Outdoors</A>
<DT><A HREF="https://mishagirel.myportfolio.com/work" ADD_DATE="1707245387" LAST_MODIFIED="1726059048">Misha Girel</A>
<DT><A HREF="http://www.johnrizzoart.com/work.html" ADD_DATE="1707245407" LAST_MODIFIED="1726059048">Work</A>
<DT><A HREF="https://anttikytomaki.com/" ADD_DATE="1708047755" LAST_MODIFIED="1726059048">Antti Kytömäki</A>
<DT><A HREF="https://mnagaitis.myportfolio.com/" ADD_DATE="1708528476" LAST_MODIFIED="1726059048">Maria Nagaitis</A>
<DT><A HREF="https://juliahurstart.weebly.com/" ADD_DATE="1708834612" LAST_MODIFIED="1726059048">JULIA HURST ART - Art</A>
<DT><A HREF="https://northerntv.net/antique-radio-service/" ADD_DATE="1712084772" LAST_MODIFIED="1726059048">Antique Radio Service | Northern Audio Service</A>
<DT><A HREF="https://www.stridsland.com/" ADD_DATE="1713502816" LAST_MODIFIED="1726059048">STRIDSLAND – Ride slow, die whenever.</A>
<DT><A HREF="https://www.bikebound.com/2020/07/21/yamaha-xs650-heritage/" ADD_DATE="1714778096" LAST_MODIFIED="1727189634">Swiss Street Tracker: Yamaha XS650 by Heritage and Sons – BikeBound</A>
<DT><A HREF="https://www.minipartsdirect.com/oem-parts/mini-sealing-frame-17517556988?c=bD0zJm49U2VhcmNoIFJlc3VsdHM%3D" ADD_DATE="1725835685" LAST_MODIFIED="1727189634">2006-2008 Mini Cooper Sealing Frame 17-51-7-556-988 | Mini Parts Direct</A>
<DT><A HREF="http://bentleypublishers.com/mini/repair-information/mini-cooper-manual-w-hdbk-2002-2006.html" ADD_DATE="1725835692" LAST_MODIFIED="1727189634">MINI Repair Manual - MINI Cooper, MINI Cooper S: 2002-2006 - Bentley Publishers - Repair Manuals and Automotive Books</A>
<DT><A HREF="http://www.onesevenstudios.com/" ADD_DATE="1726525633" LAST_MODIFIED="1727189634" ICON_URI="https://assets.squarespace.com/universal/default-favicon.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQklEQVQ4T+1TPY+CQBCdVTdGEriKyp7W/6EtFCgF10B3Pa0N/XXYHI3+A/UXiYDRcJUxfN0MFy8cbi7XXHeTbHZ3dubN28kbBgLzPE/t9/vzqqpseu71emFZlhvf90/dcHZ3BEHAD4fDtCgKGxNn6Oed4ByBtoPBIByPxzvXdXN6Z8vlcnK9Xm3G2AITVRGjrg+BTnVdr0ejUchM08ye0GRZBqT9m3zI8xzSNIXj8fjOdF2vGyqMgSRJoChKs9O9bVgRLpcLJEkC5/MZ6N7k3QHawcSEGNGiapREFen80EQRQDsoiqIfvyVk8A/wvWd/30TLsia32+0Z685RHA9SFjEgKaPsN8Ph8O1Lbo7j8CzLZjSBGDDFvRmmFkCO6txxzkNN07ar1epzmEQqMQxDRTYLBHqJ4xhwlF9R4uv9fv8wzh9rbaiJv2atMAAAAABJRU5ErkJggg==">One Seven Studios (Dave Smith)</A>
<DT><H3 ADD_DATE="1727054416" LAST_MODIFIED="1727189634">fixie</H3>
<DL><p>
<DT><A HREF="https://www.amazon.com/s?k=bucklos+handlebars&crid=31Y3ZRNMDFNK0&sprefix=bucklos+handlebars%2Caps%2C92&ref=nb_sb_noss_1" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">Amazon.com : bucklos handlebars</A>
<DT><A HREF="https://bikerebuilds.com/?page=2" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">Bike Rebuilds - 80s & 90s MTB Steel Frames with Modern Parts</A>
<DT><A HREF="https://www.stridsland.com/cheesys-klein/" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">cheesy’s klein – STRIDSLAND</A>
<DT><A HREF="https://www.squidbikes.com/blogs/rattlecan?page=2" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">Complete Builds – Page 2 – Squid Bikes</A>
<DT><A HREF="https://crustbikes.com/collections/completes" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">Completes – Crust Bikes</A>
<DT><A HREF="https://www.schwalbetires.com/Billy-Bonkers-11654197" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">https://www.schwalbetires.com/Billy-Bonkers-11654197</A>
<DT><A HREF="https://www.amazon.com/s?k=schwalbe+billy+bonkers+26x2.10&crid=2IKBIPD81DM0H&sprefix=shwalb+bil%2Caps%2C116&ref=nb_sb_ss_pltr-sample-20_3_10" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">Amazon.com : schwalbe billy bonkers 26x2.10</A>
<DT><A HREF="https://duckduckgo.com/?t=ffab&q=tracklocross&ia=web" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">tracklocross at DuckDuckGo</A>
<DT><A HREF="https://sheldonbrown.com/fixed-conversion.html" ADD_DATE="1727054416" LAST_MODIFIED="1727189634">Fixed Gear Conversions</A>
</DL><p>
<DT><H3 ADD_DATE="1727106992" LAST_MODIFIED="1727189634">x58hell</H3>
<DL><p>
<DT><A HREF="https://builds.gg/renaissance/leonardo-7000" ADD_DATE="1727106992" LAST_MODIFIED="1727189634">Leonardo » builds.gg</A>
<DT><A HREF="https://builds.gg/builds/tj-07-rebuild-34277" ADD_DATE="1727106992" LAST_MODIFIED="1727189634">TJ-07 rebuild » builds.gg</A>
<DT><A HREF="https://builds.gg/mistertdesign/final-tj-20097" ADD_DATE="1727106992" LAST_MODIFIED="1727189634">Final TJ » builds.gg</A>
<DT><A HREF="https://www.million-dollar-pc.com/systems-2009/murderbox/008/murderbox.htm" ADD_DATE="1727106992" LAST_MODIFIED="1727189634">MDPC 032 | murderbox 008 by Charles Harwood</A>
<DT><A HREF="https://hardforum.com/threads/my-x58-build-log.2015685/" ADD_DATE="1727106992" LAST_MODIFIED="1727189634" ICON_URI="https://hardforum.com/favicon.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAmklEQVQ4T2NkoBAwrpUQ+A8zI/jFB0ZizEPWw/hcUQJugOT9F3AD0Q2DaQKJI+sBc459/wG2GCYJ4mMzwIqTgwHZEhAfbgBMA8xAfAaALAO5iLYGYAtMmBcIuuD+dwYGRU5UI2BioDAgaAAsUNFdQbQLCMUCUS6gfyzAEhJyikMOA2RxGBueDmAKYSFMKD+gJGWKMxMh2wjJAwCkmNstO1uY6AAAAABJRU5ErkJggg==">My X58 Build Log | [H]ard|Forum</A>
</DL><p>
<DT><H3 ADD_DATE="1727151057" LAST_MODIFIED="1727189634">FALL24_INSPO_TABS</H3>
<DL><p>
<DT><A HREF="https://r2-r.tumblr.com/archive" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">R2 . CA . 2024: Archive</A>
<DT><A HREF="https://r2-r.tumblr.com/post/133841693374" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">R2 . CA . 2024 — white-theatre: MOOBY bike by Madella Simone</A>
<DT><A HREF="https://r2-r.tumblr.com/post/133841669499" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">R2 . CA . 2024</A>
<DT><A HREF="https://lecontainer.blogspot.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">LE CONTAINER</A>
<DT><A HREF="https://jemangeunepomme.tumblr.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">JE MANGE UNE POMME</A>
<DT><A HREF="https://rhubarbes.tumblr.com/archive?source=blog_view_login_wall" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Rhb_RBS: Archive</A>
<DT><A HREF="https://sketchpat.blogspot.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">SKETCHPAT</A>
<DT><A HREF="https://www.fenotypo.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Fenotypo Design Resource</A>
<DT><A HREF="https://shop.uncrate.com/products/m1-airtag-wallet" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Dango M1 AirTag Wallet | Uncrate Supply</A>
<DT><A HREF="https://www.dezeen.com/#" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Dezeen | architecture and design magazine</A>
<DT><A HREF="https://www.fastcompany.com/co-design" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Business Design News & Trends | Fast Company</A>
<DT><A HREF="https://thecoolhunter.net/category/architecture/offices/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Offices Archives - The Cool Hunter Journal</A>
<DT><A HREF="https://lemanoosh.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Industrial Design Trends, Online Courses and Jobs - leManoosh</A>
<DT><A HREF="https://www.yankodesign.com/archive/page/5/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Archive - Yanko Design - Page 5</A>
<DT><A HREF="https://www.designboom.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">designboom magazine | your first source for architecture, design & art news</A>
<DT><A HREF="https://schoengeistig.tumblr.com/archive/tagged/landscape" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">schoengeist: Archiv</A>
<DT><A HREF="https://kiska.com/work/husqvarna-motorcycles/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Drawing new customers to Husqvarna Motorcycles – KISKA Work</A>
<DT><A HREF="https://www.nicoleoutdoors.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Nicole Outdoors</A>
<DT><A HREF="https://hhhtmcnerd.tumblr.com/archive" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">hhhtmcnerd...: Archive</A>
<DT><A HREF="https://pipeburn.com/moto-photos-christine-gabler/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">MOTO PHOTOS: Germany’s Christine Gabler. - Pipeburn</A>
<DT><A HREF="https://www.flickr.com/groups/classic_cars/pool/page1256" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Classic/collectable cars and motorcycles | Flickr</A>
<DT><A HREF="https://pipeburn.com/moto-photos-germanys-marc-holstein-photography/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">MOTO PHOTOS: Germany’s Marc Holstein Photography - Pipeburn</A>
<DT><A HREF="http://www.marcholsteinphotos.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Marc Holstein</A>
<DT><A HREF="https://www.pinterest.com/pin/682365781054355758/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">American Streetfighter: Buell XB12S by ROD Motorcycles</A>
<DT><A HREF="https://www.pinterest.com/pin/645914771529832774/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">FLSTFB 1690 Softail Fat Boy Special</A>
<DT><A HREF="https://rocket-garage.blogspot.com/2017/10/flstfb-1690-softail-fat-boy-special.html" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">FLSTFB 1690 Softail Fat Boy Special - RocketGarage - Cafe Racer Magazine</A>
<DT><A HREF="https://gunndesign.us/#band-section" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Gunn Design</A>
<DT><A HREF="https://www.pinterest.com/" ADD_DATE="1727151057" LAST_MODIFIED="1727189634" ICON_URI="https://s.pinimg.com/webapp/favicon_48x48-7470a30d.png" ICON="data:image/png;base64,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">(83) Pinterest</A>
<DT><A HREF="https://www.mercenary.ie/2024/05/sportster-s-cafe.html" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Mercenary Garage - Custom Bike, SciFi & Punk Engineering Blog: Sportster-S Cafe</A>
<DT><A HREF="https://www.behance.net/gallery/117280861/Volvo-Haven-MA-Thesis" ADD_DATE="1727151057" LAST_MODIFIED="1727189634">Volvo Haven - MA Thesis :: Behance</A>
</DL><p>
<DT><A HREF="https://appleinsider.com/articles/07/04/19/high_quality_photos_of_apple_at_nab_2007.html" ADD_DATE="1730000394" LAST_MODIFIED="1730133641">High-quality photos of Apple at NAB 2007 | AppleInsider</A>
<DT><A HREF="https://automaticbeyondbelief.org/" ADD_DATE="1730149048" LAST_MODIFIED="1730149048" LAST_CHARSET="windows-1252">sunbeam toaster</A>
<DT><A HREF="https://www.k20a.org/threads/honda-cr-z-k-swap-a-complete-guide.227112/" ADD_DATE="1730149073" LAST_MODIFIED="1730149073" ICON_URI="https://images.platforum.cloud/icons/k20a_orgx32.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABG0lEQVQ4T2N8IS//nwENMDIyvhR/8EACXRwbn3GYG/BSQeEW0N986H4HBtoPdgYGB8EHDx7gDQOgAR/+///PjyXwqiUePmwDiZNsADCGzospKJgxHjjwB6cBQImvTExMSf/+/1/E8P8/0LUQANT8m5GBwUzswYMLcDFs0Ygr/oEGNALTRwOyPFYvYE0wQNs52dik+G7dekOWAVAvrBdLSAhhbGj4h98LjIyPGf//ZwJGlzS+GMAXC+dZWFj8fv/5cwQYiPIoTmZg+AsMCx9gQO7AFwsgubnMzMwz/v77BzIEHhNgTQwM7xnY2U3Eb926hzcQmRgZE/8xMrIw/Ps3G90rQFdcZOTmtiEUC98ZmZgsgAbkAMMjFYshywGD4IsskusrjgAAAABJRU5ErkJggg==">Honda CR-Z K-Swap A complete Guide | Honda / Acura K20a K24a Engine Forum</A>
</DL><p>
<DT><H3 ADD_DATE="1716515652" LAST_MODIFIED="1716515652" UNFILED_BOOKMARKS_FOLDER="true">Other Bookmarks</H3>
<DL><p>
<DT><A HREF="https://vanillatweaks.net/picker/crafting-tweaks/" ADD_DATE="1595386022" LAST_MODIFIED="1716515711">Minecraft Vanilla Tweaks</A>
<DT><A HREF="https://www.bingomaker.com/web-app/" ADD_DATE="1603129446" LAST_MODIFIED="1716515711">Virtual Bingo Services - Bingo Maker</A>
<DT><A HREF="https://www.lg.com/us/tvs/lg-OLED55C9PUA-oled-4k-tv" ADD_DATE="1603321789" LAST_MODIFIED="1716515711">LG OLED55C9PUA</A>
<DT><H3 ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Last Session</H3>
<DL><p>
<DT><A HREF="https://stargazerslounge.com/topic/183600-arduino-sky-quality-meter-working/" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Arduino Sky Quality Meter - working! - DIY Astronomer - Stargazers Lounge</A>
<DT><A HREF="https://drive.google.com/drive/u/0/folders/1qTskg1BMyn4uPyRk_mSlxJpSiM08p_93" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Sensors Data - Google Drive</A>
<DT><A HREF="https://docs.google.com/drawings/d/1zuzGqtfsId6bsF9WVduGawU-Llpu4tux3BBMs3m09As/edit" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">System Diagram - Google Drawings</A>
<DT><A HREF="https://docs.google.com/document/d/1gBiDp7bG6DkOOaDsOndBeLjn2mWo5wjFZeWJF2LzDn8/edit#heading=h.9teld3b2t7gr" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">GLAS LENSS Documentation - Google Docs</A>
<DT><A HREF="https://sites.google.com/a/starsatyerkes.net/yerkesprojects/programs/lenss/lens-central-server-bumblebee" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Yerkes Projects - Central Server (Bumblebee)</A>
<DT><A HREF="https://github.com/marketplace" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Marketplace · Tools to improve your workflow · GitHub</A>
<DT><A HREF="https://www.geeksforgeeks.org/writing-csv-files-in-python/" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Writing CSV files in Python - GeeksforGeeks</A>
<DT><A HREF="https://mail.google.com/mail/u/0/#inbox" ADD_DATE="1624991461" LAST_MODIFIED="1716515711" ICON_URI="https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAACX0lEQVQ4T63TQUhUQRgA4H/mvbdv963u2uaW1UZpW7GWhtSqEJXVbhgRHXY3SaqbBB6iS0FFshR16RIWQnULQlLsEnjQNbVEREvByK12Iy92WUtd963avJnpzUKntgjsv8ww8/5vZv55g2CVgVaZDzlg2ONxKRapdgkrYweTydTfUN4NbuqQ/HqGjjjr4TuKAuBg2ZYOO8ahZc6mnA5bs2/iw2A+ZPFOySGt5lsb1ni5oUOXPGScRt1er+oi+iTI6g5sZm0oceqapra49o/eM3UmIB4FPBurvaSWz98sPJu0AzUHDZoAwitQXZRbG181je+Z7vFRzsCzsRiK7CoQxp4RrFwUgMJIq8SkBihbgMLGj4ARgt7spviLz6eqcgBXV8ZrPnX56odvw04XBotdA9X8aJnRuACsWPItEw6adwGMM9NwP1sJzzNb44vOTBU63mqmp/UJQ7X7PDNj/MpUy+w2Nute4ghkExFhcA5WjuFr6Urq1glX8aSxDqmMxOcd2V9AZgJJio9gmZemE5EHQ5EjhqI15wpghqiNTGjbufDml1/WK50WBIhT9jtglgt0kA+PXFUGUgF/kwTorgAo8Mvu2Njj3Z3hOhuHfjB39keAMRrov17QJxJTwep9onX3jr4Rrb89fBQkiOUD3mFZ3S52YBASHLhREMv3H/ifhgKg4l4BAKGJOUe2AkWjHA/K+hNJthxjnJqHg1DfNdvrfEB1e/gAl6DLvEdgBu052VB5PlfmvQ+5sjYNa0R/Rof591H0Ix+wqyNiccpGkZhbSbnn3l54RP7PY8q32r+O/QRsJQrNAwTd6QAAAABJRU5ErkJggg==">Inbox (114) - generalgrievous02@gmail.com - Gmail</A>
<DT><A HREF="https://forums.extremeoverclocking.com/showthread.php?p=4182279&posted=1#post4182279" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Help Sourcing GTX 260 Waterblocks - EXTREME Overclocking Forums</A>
<DT><A HREF="https://hardforum.com/threads/help-finding-gtx-260-water-blocks.2007172/" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Help Finding GTX 260 Water Blocks? | [H]ard|Forum</A>
<DT><A HREF="https://cad.onshape.com/documents/c6a63bcddb29b67dca2cdae2/w/c5fd56f26ae4a6e29720e3c5/e/5aa8f9723aa678b9e8866020" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Ruckus Engine Strut Mount | Drawing 1</A>
<DT><A HREF="https://www.bing.com/images/search?view=detailV2&ccid=iSHkKBs%2B&id=28D4E907F0DAABD3F6BA483E0EA9C7C5C2AEBDAF&thid=OIP.iSHkKBs-tkRn6H1jrmRmSAHaHa&mediaurl=https%3A%2F%2Fimages-na.ssl-images-amazon.com%2Fimages%2FI%2F51VR4iPvCpL.jpg&exph=500&expw=500&q=honda+ruckus+two+up+seat&simid=608021396167083967&ck=D203EEC228ABD5A474367BEF71CAE426&selectedindex=107&form=IRPRST&ajaxhist=0&ajaxserp=0&vt=0&sim=11&cdnurl=https%3A%2F%2Fth.bing.com%2Fth%2Fid%2FR8921e4281b3eb64467e87d63ae646648%3Frik%3Dr72uwsXHqQ4%252bSA%26pid%3DImgRaw" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">honda ruckus two up seat - Bing images</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=bolt+grade+rating" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">bolt grade rating - Bing</A>
<DT><A HREF="https://www.boltdepot.com/fastener-information/Materials-and-Grades/Bolt-Grade-Chart.aspx" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Bolt Depot - Bolt Grade Markings and Strength Chart</A>
<DT><A HREF="http://www.fastenerexperts.com/358-2/" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">DIN Metric Thread Pitch Chart (Coarse, Fine & Extra Fine) | The Fastener Resource Center</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=iso+letter+grade" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">iso letter grade - Bing</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=grade+a+b+c+iso+standard" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">grade a b c iso standard - Bing</A>
<DT><A HREF="https://high-techconversions.com/gmp-eu-cleanroom-classifications-a-b-c-d/#:~:text=Wondering%20about%20Federal%20Standard%20209E%20and%20ISO%20approximate,class%20100%2C000%20or%20ISO%208%3B%20Maintaining%20these%20environments" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">GMP EU Cleanroom Classifications A B C D | High-Tech Conversions</A>
<DT><A HREF="https://github.com/ascerba/alexscerba.com" ADD_DATE="1624991461" LAST_MODIFIED="1716515711" ICON_URI="https://github.githubassets.com/favicons/favicon.svg#tippytop" ICON="data:image/png;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNiAwQzcuMTYgMCAwIDcuMTYgMCAxNkMwIDIzLjA4IDQuNTggMjkuMDYgMTAuOTQgMzEuMThDMTEuNzQgMzEuMzIgMTIuMDQgMzAuODQgMTIuMDQgMzAuNDJDMTIuMDQgMzAuMDQgMTIuMDIgMjguNzggMTIuMDIgMjcuNDRDOCAyOC4xOCA2Ljk2IDI2LjQ2IDYuNjQgMjUuNTZDNi40NiAyNS4xIDUuNjggMjMuNjggNSAyMy4zQzQuNDQgMjMgMy42NCAyMi4yNiA0Ljk4IDIyLjI0QzYuMjQgMjIuMjIgNy4xNCAyMy40IDcuNDQgMjMuODhDOC44OCAyNi4zIDExLjE4IDI1LjYyIDEyLjEgMjUuMkMxMi4yNCAyNC4xNiAxMi42NiAyMy40NiAxMy4xMiAyMy4wNkM5LjU2IDIyLjY2IDUuODQgMjEuMjggNS44NCAxNS4xNkM1Ljg0IDEzLjQyIDYuNDYgMTEuOTggNy40OCAxMC44NkM3LjMyIDEwLjQ2IDYuNzYgOC44MiA3LjY0IDYuNjJDNy42NCA2LjYyIDguOTggNi4yIDEyLjA0IDguMjZDMTMuMzIgNy45IDE0LjY4IDcuNzIgMTYuMDQgNy43MkMxNy40IDcuNzIgMTguNzYgNy45IDIwLjA0IDguMjZDMjMuMSA2LjE4IDI0LjQ0IDYuNjIgMjQuNDQgNi42MkMyNS4zMiA4LjgyIDI0Ljc2IDEwLjQ2IDI0LjYgMTAuODZDMjUuNjIgMTEuOTggMjYuMjQgMTMuNCAyNi4yNCAxNS4xNkMyNi4yNCAyMS4zIDIyLjUgMjIuNjYgMTguOTQgMjMuMDZDMTkuNTIgMjMuNTYgMjAuMDIgMjQuNTIgMjAuMDIgMjYuMDJDMjAuMDIgMjguMTYgMjAgMjkuODggMjAgMzAuNDJDMjAgMzAuODQgMjAuMyAzMS4zNCAyMS4xIDMxLjE4QzI3LjQyIDI5LjA2IDMyIDIzLjA2IDMyIDE2QzMyIDcuMTYgMjQuODQgMCAxNiAwVjBaIiBmaWxsPSIjMjQyOTJFIi8+Cjwvc3ZnPgo=">ascerba/alexscerba.com: Source files of my website</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=spell+checker" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">spell checker - Bing</A>
<DT><A HREF="https://mail.google.com/mail/u/0/#inbox/FMfcgzGkXwCDjDmdLqLszbtPWxRhglbW" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Your new Portal password - a.scerba02@gmail.com - Gmail</A>
<DT><A HREF="https://creativestudies.force.com/portal/TargetX_Base__Portal#/" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">creativestudies.force.com/portal/TargetX_Base__Portal#/</A>
<DT><A HREF="https://ccshousing.roomchoice.com/new/property/1" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Room Choice | CCS Housing</A>
<DT><A HREF="https://www.collegeforcreativestudies.edu/student-resources/resources/laptop-requirements-recommendations/" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Laptop Requirements & Recommendations | College for Creative Studies</A>
<DT><A HREF="https://calendly.com/app/login?return_to=%2Ftturoczi%2Fonline-remote-learning" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Calendly</A>
<DT><A HREF="https://cad.onshape.com/signin" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">Sign in</A>
<DT><A HREF="https://www.bing.com/search?form=MOZLBR&pc=MOZI&q=set+helix+start+point+onshape" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">set helix start point onshape - Bing</A>
<DT><A HREF="https://forum.onshape.com/discussion/13677/how-to-place-start-angle-of-helix" ADD_DATE="1624991461" LAST_MODIFIED="1716515711">How to place start angle of helix? — Onshape</A>
</DL><p>
</DL><p>
</DL>
|