-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
942 lines (903 loc) · 58.5 KB
/
index.html
File metadata and controls
942 lines (903 loc) · 58.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FoxDavoid</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="FoxIcon.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Main page for Fox David! Newsletters, blogs, my feed, and some extra and silly stuff!">
<meta name="author" content="FoxDavoid">
<meta name="robots" content="index, follow">
<meta name="keywords" content="FoxDavoid, Fox David, personal website, newsletters, blog, web development, content creation, The Living Tombstone, Discord moderation">
<meta name="title" content="FoxDavoid">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<meta name="distribution" content="global">
<meta name="rating" content="general">
<meta name="google-site-verification" content="247I7uTPUOlLl2uIZTgE3KzmVljeaDrJKICENsaU-wE">
<meta name="theme-color" content="#0A0A0A">
<meta property="og:title" content="FoxDavoid">
<meta property="og:description" content="Main page for Fox David! Newsletters, blogs, my feed, and some extra and silly stuff!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://foxdavoid.com/">
<!-- <meta property="og:image" content=""> I'll see what I'm doing with this -->
<meta property="og:site_name" content="FoxDavoid">
<meta name="subject" content="Personal Blog & Portfolio">
<meta name="copyright" content="FoxDavoid">
<meta name="coverage" content="Worldwide">
<meta name="category" content="Personal Blog">
<!-- <meta name="twitter:card" content="summary_large_image"> -->
<meta name="twitter:title" content="FoxDavoid">
<meta name="twitter:description" content="Main page for Fox David! Newsletters, blogs, my feed, and some extra and silly stuff!">
<!-- <meta name="twitter:image" content=""> -->
<meta name="twitter:site" content="@foxdavoid">
<meta name="twitter:creator" content="@foxdavoid">
<!-- Sender.net -->
<script>
(function (s, e, n, d, er) {
s['Sender'] = er;
s[er] = s[er] || function () {
(s[er].q = s[er].q || []).push(arguments)
}, s[er].l = 1 * new Date();
var a = e.createElement(n),
m = e.getElementsByTagName(n)[0];
a.async = 1;
a.src = d;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://cdn.sender.net/accounts_resources/universal.js', 'sender');
sender('6867a63c7f9436')
</script>
<script defer src="https://cloud.umami.is/script.js" data-website-id="b704cdd4-69a4-4147-bc0b-60518fd6a44c"></script>
<script src="https://beamanalytics.b-cdn.net/beam.min.js" data-token="e3751007-9b0f-4fe2-9380-64beda30f0ce" async></script>
<script type="text/javascript">
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments) };
t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "tl5dmklie5");
</script>
<script type="text/javascript">
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments) };
t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "tl5dmklie5");
</script>
<script>
!function (t, e) { var o, n, p, r; e.__SV || (window.posthog && window.posthog.__loaded) || (window.posthog = e, e._i = [], e.init = function (i, s, a) { function g(t, e) { var o = e.split("."); 2 == o.length && (t = t[o[0]], e = o[1]), t[e] = function () { t.push([e].concat(Array.prototype.slice.call(arguments, 0))) } } (p = t.createElement("script")).type = "text/javascript", p.crossOrigin = "anonymous", p.async = !0, p.src = s.api_host.replace(".i.posthog.com", "-assets.i.posthog.com") + "/static/array.js", (r = t.getElementsByTagName("script")[0]).parentNode.insertBefore(p, r); var u = e; for (void 0 !== a ? u = e[a] = [] : a = "posthog", u.people = u.people || [], u.toString = function (t) { var e = "posthog"; return "posthog" !== a && (e += "." + a), t || (e += " (stub)"), e }, u.people.toString = function () { return u.toString(1) + ".people (stub)" }, o = "init Fe Us zs Oe js Ns capture Ze calculateEventProperties Hs register register_once register_for_session unregister unregister_for_session Js getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSurveysLoaded onSessionId getSurveys getActiveMatchingSurveys renderSurvey displaySurvey canRenderSurvey canRenderSurveyAsync identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty Gs qs createPersonProfile Vs As Ks opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing get_explicit_consent_status is_capturing clear_opt_in_out_capturing Bs debug L Ws getPageViewId captureTraceFeedback captureTraceMetric".split(" "), n = 0; n < o.length; n++)g(u, o[n]); e._i.push([i, s, a]) }, e.__SV = 1) }(document, window.posthog || []);
posthog.init('phc_ax2JmmeTHsXPX5JzjlMrDEX9Uyc9433KzdNhfu6uyaM', {
api_host: 'https://us.i.posthog.com',
defaults: '2025-05-24',
person_profiles: 'always',
})
</script>
</head>
<body>
<div class="page-container">
<div class="main-content">
<div class="hero-container mobile-only" style="text-align: center;">
<h1 class="hero-title">FOXDAVOID</h1>
<p class="hero-second-text">It's pronounced "day-void"</p>
</div>
<aside class="full-profile-space">
<div class="profile-container">
<div class="profile-banner-container">
<img src="Banner.webp" alt="" class="profile-banner">
</div>
<div class="profile-content">
<div class="profile-info-container">
<div class="profile-info">
<h3 class="profile-name">Fox David</h3>
<p class="profile-username">@foxdavoid</p>
</div>
<div class="profile-pfp-div">
<img src="FoxPfp.webp" alt="" class="profile-pfp">
</div>
</div>
<div class="empty-space">
<div class="empty-space-text-container">
<h4 class="empty-space-text-1">I don't exactly know what to put in here yet, bro, sowwwy</h4>
<p class="empty-space-text-2">Ignore the square; this is just a funny canvas. Actually, ignore all you see in this section, cuz it will be redisigned or something.</p>
</div>
</div>
<div class="profile-buttons">
<a href="#message-modal" class="profile-button message-btn">
<span class="profile-btn-text" id="MessageAnn">Message</span>
</a>
<a href="#subscribe-modal" class="profile-button subscribe-btn">
<span class="profile-btn-text" id="SubscribeAnn">Subscribe</span>
</a>
</div>
</div>
</div>
</aside>
<div class="web-space">
<section class="section">
<section class="hero-container desktop-only">
<h1 class="hero-title">FOXDAVOID</h1>
<p class="hero-second-text">It's pronounced "day-void"</p>
</section>
<div class="section-insides">
<section class="newsletter-section scroll-effect-section">
<h2>Newsletters</h2>
<div class="content-grid">
<article class="content-card">
<a href="#newsletter-1">
<div class="newsletter-content">
<div class="content-image">
<img src="Newsletter1.webp" alt="thumbnail">
<span class="date-label">9/15/25</span>
</div>
<div class="content-info">
<h3 class="content-title">foxdavoid.com is real</h3>
<p class="content-description">After getting a good discount, I decided to buy this beauty.</p>
</div>
</div>
</a>
</article>
</div>
</section>
<section class="blog-section scroll-effect-section">
<h2>Blog</h2>
<div class="content-grid">
<article class="content-card">
<a href="#blog-1">
<div class="newsletter-content">
<div class="content-image">
<img src="Blog1.webp" alt="thumbnail">
<span class="date-label">8/20/25</span>
</div>
<div class="content-info">
<h3 class="content-title">The project has been started</h3>
</div>
</div>
</a>
</article>
</div>
</section>
</div>
</section>
<section class="section">
<div class="section-insides">
<section class="feed-section">
<h2>Feed</h2>
<div class="content-grid">
<article class="content-card">
<a href="#feed-1">
<div class="feed-content">
<div class="content-image">
<img src="Feed1.webp" alt="thumbnail">
<span class="date-label">8/20/25</span>
</div>
<div class="content-info">
<p class="content-description">All I have to show here is the original design for the webpage</p>
</div>
</div>
</a>
</article>
</div>
</section>
<section class="changelog-section scroll-effect-section">
<h2>Changelogs</h2>
<div class="content-grid">
<article class="content-card">
<a href="#changelog-1">
<div class="changelog-content">
<div class="content-image">
<img src="NothingNothingNothing.webp" alt="thumbnail">
<span class="date-label">8/20/25</span>
</div>
<div class="content-info">
<h3 class="content-title">I don't have a Changelogs to report yet; I mean, I do, but I don't feel like doing it rn.</h3>
</div>
</div>
</a>
</article>
</div>
</section>
</div>
</section>
<section class="section">
<div class="section-insides">
<section class="moderating-section scroll-effect-section">
<h2>Currently Moderating</h2>
<div class="content-grid">
<article class="content-card">
<div class="moderating-content">
<div class="moderating-image">
<img src="TLTRedditBanner.webp" alt="thumbnail">
</div>
<div class="moderating-info">
<div class="moderating-info-n-pfp">
<div class="moderating-info-n-pfp-info">
<div class="verified">
<img src="Verified.webp" alt="" class="verified-icon">
<p class="verified-text">Official</p>
</div>
<h3 class="moderating-name">r/TheLivingTombstone</h3>
<p class="moderating-members">4K Members</p>
</div>
<div class="moderating-info-n-pfp-img">
<div class="community-pfp-container">
<img src="TLTRedditIcon.webp" alt="">
</div>
</div>
</div>
<div class="moderating-description-container">
<p class="moderating-description">Official Subreddit for The Living Tombstone, my favorite music band.</p>
<a href="https://www.reddit.com/r/TheLivingTombstone/" class="moderating-join-btn" target="_blank">
<img src="RedditIcon.webp" alt="" class="reddit-icon join-icon">
<p class="moderating-join-btn-text">Join</p>
</a>
</div>
</div>
</div>
</article>
<article class="content-card">
<div class="moderating-content">
<div class="moderating-image">
<img src="TLTDiscordBanner.webp" alt="thumbnail">
</div>
<div class="moderating-info">
<div class="moderating-info-n-pfp">
<div class="moderating-info-n-pfp-info">
<div class="verified">
<img src="Verified.webp" alt="" class="verified-icon">
<p class="verified-text">Official</p>
</div>
<h3 class="moderating-name">The Living Tombstone</h3>
<p class="moderating-members">13K Members</p>
</div>
<div class="moderating-info-n-pfp-img">
<div class="community-pfp-container">
<img src="TLTDiscordIcon.webp" alt="">
</div>
</div>
</div>
<div class="moderating-description-container">
<p class="moderating-description">Official Discord server for The Living Tombstone, my favorite music band.</p>
<a href="https://discord.gg/EDvNaEXbxH" class="moderating-join-btn" target="_blank" rel="noopener noreferrer" aria-label="Join The Living Tombstone Discord server" title="Join The Living Tombstone Discord server">
<img src="DiscordIcon.webp" alt="" class="discord-icon join-icon">
<p class="moderating-join-btn-text">Join</p>
</a>
</div>
</div>
</div>
</article>
<article class="content-card">
<div class="moderating-content">
<div class="moderating-image">
<img src="evelinaDiscordBanner.webp" alt="thumbnail">
</div>
<div class="moderating-info">
<div class="moderating-info-n-pfp">
<div class="moderating-info-n-pfp-info">
<div class="verified">
<img src="Verified.webp" alt="" class="verified-icon">
<p class="verified-text">Official</p>
</div>
<h3 class="moderating-name">evelina</h3>
<p class="moderating-members">1K Members</p>
</div>
<div class="moderating-info-n-pfp-img">
<div class="community-pfp-container">
<img src="evelinaDiscordIcon.webp" alt="">
</div>
</div>
</div>
<div class="moderating-description-container">
<p class="moderating-description">All-in-one Discord app serving 2,000,000+ across 12,000+ servers.</p>
<a href="https://discord.gg/Xc5FwZJKuH" class="moderating-join-btn" target="_blank" rel="noopener noreferrer" aria-label="Join Evelina Discord server" title="Join Evelina Discord server">
<img src="DiscordIcon.webp" alt="" class="discord-icon join-icon">
<p class="moderating-join-btn-text">Join</p>
</a>
</div>
</div>
</div>
</article>
</div>
</section>
<section class="tool-stuff-section scroll-effect-section">
<h2>Some stuff I'll tell you I use</h2>
<div class="content-grid">
<article class="content-card">
<div class="tool-stuff-content">
<div class="content-image">
<img src="LinuxSS.webp" alt="thumbnail">
</div>
<div class="tool-stuff-info-n-icon">
<div class="tool-stuff-info">
<div class="tool-stuff-info-n-description">
<h3 class="content-title">Linux</h3>
<p class="content-description">My favorite operative system.</p>
</div>
<a href="https://www.linux.org/pages/download/" class="tool-stuff-interesting-btn" target="_blank" rel="noopener noreferrer" aria-label="Download Linux" title="Download Linux">Interesting...</a>
</div>
<div class="tool-stuff-icon-container">
<img src="LinuxIcon.webp" alt="">
</div>
</div>
</div>
</article>
<article class="content-card">
<div class="tool-stuff-content">
<div class="content-image">
<img src="ObsidianSS.webp" alt="thumbnail">
</div>
<div class="tool-stuff-info-n-icon">
<div class="tool-stuff-info">
<div class="tool-stuff-info-n-description">
<h3 class="content-title">Obsidian</h3>
<p class="content-description">My note-taking application.</p>
</div>
<a href="https://obsidian.md/" class="tool-stuff-interesting-btn" target="_blank" rel="noopener noreferrer" aria-label="Download Obsidian" title="Download Obsidian">Interesting...</a>
</div>
<div class="tool-stuff-icon-container">
<img src="ObsidianIcon.webp" alt="">
</div>
</div>
</div>
</article>
<article class="content-card">
<div class="tool-stuff-content">
<div class="content-image">
<img src="VivaldiSS.webp" alt="thumbnail">
</div>
<div class="tool-stuff-info-n-icon">
<div class="tool-stuff-info">
<div class="tool-stuff-info-n-description">
<h3 class="content-title">Vivaldi</h3>
<p class="content-description">My preferred Internet browser.</p>
</div>
<a href="https://vivaldi.com/" class="tool-stuff-interesting-btn" target="_blank" rel="noopener noreferrer" aria-label="Download Vivaldi" title="Download Vivaldi">Interesting...</a>
</div>
<div class="tool-stuff-icon-container">
<img src="VivaldiIcon.webp" alt="">
</div>
</div>
</div>
</article>
<article class="content-card">
<div class="tool-stuff-content">
<div class="content-image">
<img src="FLStudioSS.webp" alt="thumbnail">
</div>
<div class="tool-stuff-info-n-icon">
<div class="tool-stuff-info">
<div class="tool-stuff-info-n-description">
<h3 class="content-title">FL Studio</h3>
<p class="content-description">My DAW for music production.</p>
</div>
<a href="https://www.image-line.com/flstudio/" class="tool-stuff-interesting-btn" target="_blank" rel="noopener noreferrer" aria-label="Download FL Studio" title="Download FL Studio">Interesting...</a>
</div>
<div class="tool-stuff-icon-container">
<img src="FLStudioIcon.webp" alt="">
</div>
</div>
</div>
</article>
</div>
</section>
</div>
</section>
<section class="section">
<div class="section-insides">
<section class="book-reading-section scroll-effect-section">
<h2>Books I recently just read, tho</h2>
<div class="book-reading-section-content">
<div class="content-grid">
<article class="content-card book-card">
<div class="book-cover">
<img src="Book_MinecraftTI.webp" alt="ghostgirl" class="book-cover-img">
</div>
<div class="book-info-container">
<div class="book-info">
<h3 class="book-title">Minecraft: The Island</h3>
<p class="book-author">Max Brooks</p>
</div>
</div>
</article>
<article class="content-card book-card">
<div class="book-cover">
<img src="Book_Ghostgirl5.webp" alt="ghostgirl" class="book-cover-img">
</div>
<div class="book-info-container">
<div class="book-info">
<h3 class="book-title">ghostgirl: Día de Muertos</h3>
<p class="book-author">Tonya Hurley</p>
</div>
</div>
</article>
<article class="content-card book-card">
<div class="book-cover">
<img src="Book_Ghostgirl4.webp" alt="ghostgirl" class="book-cover-img">
</div>
<div class="book-info-container">
<div class="book-info">
<h3 class="book-title">ghostgirl: Xmas Spirit</h3>
<p class="book-author">Tonya Hurley</p>
</div>
</div>
</article>
<article class="content-card book-card">
<div class="book-cover">
<img src="Book_Ghostgirl3.webp" alt="ghostgirl" class="book-cover-img">
</div>
<div class="book-info-container">
<div class="book-info">
<h3 class="book-title">ghostgirl: Lovesick</h3>
<p class="book-author">Tonya Hurley</p>
</div>
</div>
</article>
<article class="content-card book-card">
<div class="book-cover">
<img src="Book_Ghostgirl2.webp" alt="ghostgirl" class="book-cover-img">
</div>
<div class="book-info-container">
<div class="book-info">
<h3 class="book-title">ghostgirl: Homecoming</h3>
<p class="book-author">Tonya Hurley</p>
</div>
</div>
</article>
<article class="content-card book-card">
<div class="book-cover">
<img src="Book_Ghostgirl.webp" alt="ghostgirl" class="book-cover-img">
</div>
<div class="book-info-container">
<div class="book-info">
<h3 class="book-title">ghostgirl</h3>
<p class="book-author">Tonya Hurley</p>
</div>
</div>
</article>
</div>
</div>
</section>
<section class="languages-section scroll-effect-section">
<h2>Other languages I could read as well and/or I'm trying to learn</h2>
<div class="content-grid">
<article class="content-card">
<div class="languages-content">
<div class="language-info-no-source">
<div class="what-language">
<img src="FlagMexico.webp" alt="flag" class="language-flag">
<h3 class="languages-language-name">Spanish</h3>
</div>
<div class="languages-info">
<div class="paragraph-section">
<h3 class="languages-title">Most complex text I can read:</h3>
<p class="languages-description">El cambio climático exige una cooperación internacional sin precedentes. A pesar de los acuerdos firmados, las emisiones siguen aumentando. Urgen medidas drásticas que, aunque impopulares, son indispensables.</p>
</div>
<div class="paragraph-section">
<h3 class="languages-title">One of these words confuses me:</h3>
<p class="languages-description">El cambio climático antropocéntrico demanda un giro paradigmático. Conceptos como 'desarrollo sostenible' resultan insuficientes; necesitamos una ética ecológica radical que priorice el bienestar planetario sobre el crecimiento económico ilimitado.</p>
</div>
</div>
</div>
<div class="language-info-source">
<img src="BusuuIcon.webp" alt="Busuu" class="language-source">
<img src="DuolingoIcon.webp" alt="Duolingo" class="language-source">
<img src="LinQIcon.webp" alt="LinQ" class="language-source">
<img src="SizzleIcon.webp" alt="Sizzle" class="language-source">
</div>
</div>
</article>
<article class="content-card">
<div class="languages-content">
<div class="language-info-no-source">
<div class="what-language">
<img src="FlagFrance.webp" alt="flag" class="language-flag">
<h3 class="languages-language-name">French</h3>
</div>
<div class="languages-info">
<div class="paragraph-section">
<h3 class="languages-title">Most complex text I can read:</h3>
<p class="languages-description">Bonjour. Je m'appelle Claire. J'ai un chat.</p>
</div>
<div class="paragraph-section">
<h3 class="languages-title">One of these words confuses me:</h3>
<p class="languages-description">J'habite dans une petite maison avec ma famille.</p>
</div>
</div>
</div>
<div class="language-info-source">
<img src="BusuuIcon.webp" alt="Busuu" class="language-source">
<img src="DuolingoIcon.webp" alt="Duolingo" class="language-source">
</div>
</div>
</article>
<article class="content-card">
<div class="languages-content">
<div class="language-info-no-source">
<div class="what-language">
<img src="FlagBrasil.webp" alt="flag" class="language-flag">
<h3 class="languages-language-name">Portuguese</h3>
</div>
<div class="languages-info">
<div class="paragraph-section">
<h3 class="languages-title">Most complex text I can read:</h3>
<p class="languages-description">Tenho um cachorro pequeno. Ele corre no parque todos os dias.</p>
</div>
<div class="paragraph-section">
<h3 class="languages-title">One of these words confuses me:</h3>
<p class="languages-description">Gosto de café e pão. Não gosto de peixe.</p>
</div>
</div>
</div>
<div class="language-info-source">
<img src="BusuuIcon.webp" alt="Busuu" class="language-source">
<img src="DuolingoIcon.webp" alt="Duolingo" class="language-source">
</div>
</div>
</article>
</div>
</section>
</div>
</section>
</div>
</div>
</div>
<!-- Message Modal -->
<div id="message-modal" class="modal">
<div class="modal-content" style="width: 700px; height: 100%; padding: 2rem; border-radius: 1.5rem; background-color: var(--bg-light);">
<a class="modal-close">
<img src="CloseIcon.webp" alt="close" class="modal-close-icon">
</a>
<h2 style="margin-top: 0; margin-bottom: 1.5rem; color: var(--white);" class="message-modal-title">Send me a message</h2>
<form id="contactForm" action="https://submify.vercel.app/me@foxdavoid.com" method="POST" enctype="multipart/form-data" novalidate aria-describedby="formNote">
<div class="form-but-btn">
<div class="form-row">
<label for="name">Your name, please</label>
<input id="name" name="name" type="text" placeholder="McLovin" required minlength="2" maxlength="80" />
<div class="error" aria-live="polite" data-for="name"></div>
</div>
<input type="hidden" name="_replyto" value="email" />
<div class="form-row">
<label for="email">Your email (that's all, no logins)</label>
<input id="email" name="email" type="email" placeholder="viper543210@yahoo.com" required />
<div class="error" aria-live="polite" data-for="email"></div>
</div>
<div class="form-row message-row">
<label for="message">Your message is:</label>
<textarea id="message" name="message" placeholder="Hey guys, did you know that Vaporeon is a Water-type Pokemon introduced in Generation 1? Vaporeon is number 134 in the National Dex, and a member of the Field egg group. It evolves from Eevee when exposed to a Water Stone. Vaporeon has a base stat total of 525, as do all Eeveelutions, and it has the ability Water Absorb. Vaporeon learns various strong moves, such as Aurora Beam, Surf, and Acid Armor. Vaporeon is a blue Pokemon with a quadruped build, weighing in at 64 pounds and standing 1 meter tall. Vaporeon's design is inspired by dogs, foxes, mermaids, dolphins, and fish. Vaporeon is able to hide in water due to its chemical makeup being similar to water, according to various Pokedex entries. Vaporeon is the only Eeveelution in Generation 1 that is not weak to Ground-type attacks. Many Trainers like Vaporeon for its design, which mixes cool and cute, as well as its good stats and movepool." rows="5" required minlength="6" maxlength="4000"></textarea>
<div class="error" aria-live="polite" data-for="message"></div>
</div>
<!-- Honeypot -->
<label class="sr-only" for="_honey">Do not fill this, it's a honeypot, but thanks for checking the webtools (perhaps?)</label>
<input id="_honey" class="sr-only" name="_honey" type="text" autocomplete="off" />
<input type="hidden" name="_subject" value="New message about foxdavoid.com" />
</div>
<div style="display: flex; align-items: center; margin-top: 1.5rem;">
<button type="submit" id="submitBtn">Send</button>
<div id="status" aria-live="polite"></div>
</div>
</form>
</div>
</div>
<!-- Modals -->
<div id="subscribe-modal" class="modal">
<div class="modal-content select-tier-content" style="width: fit-content; padding: 2rem; border-radius: 1.5rem; background-color: var(--bg-light);">
<a class="modal-close">
<img src="CloseIcon.webp" alt="close" class="modal-close-icon">
</a>
<h2 class="modal-title select-tier-title">Choose your tier</h2>
<div class="tiers">
<div class="tier-pack">
<div class="tier-item">
<div class="tier-dot-space">
<div class="tier-dot"></div>
</div>
<div class="tier-info">
<h2 class="content-title tier-title">Tier 1 - Newsletters</h2>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg" class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">Subscribe to newsletter emails only.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">No other emails will be sent to you all out of nowhere, unless you decide subscribe to more than one tier.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">Free, as it should be.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">You can cancel anytime.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">I won't do anything with your data, seriously, cuz I don't really care.</p>
</div>
</div>
</div>
<div style="text-align: left" class="sender-form-field" data-sender-form-id="azp5q2"></div>
</div>
<div class="tier-pack">
<div class="tier-item">
<div class="tier-dot-space">
<div class="tier-dot"></div>
</div>
<div class="tier-info">
<h2 class="content-title tier-title">Tier 2 - Blogs</h2>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">Subscribe to blog emails only.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">No other emails will be sent to you all out of nowhere, unless you decide subscribe to more than one tier.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">Free, as it should be.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">You can cancel anytime.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">I won't do anything with your data, seriously, cuz I don't really
care.</p>
</div>
</div>
</div>
<div style="text-align: left" class="sender-form-field" data-sender-form-id="aADo8j"></div>
</div>
<div class="tier-pack">
<div class="tier-item">
<div class="tier-dot-space">
<div class="tier-dot"></div>
</div>
<div class="tier-info">
<h2 class="content-title tier-title">Tier 3 - Feed</h2>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">Subscribe to feed emails only.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">No other emails will be sent to you all out of nowhere, unless you decide subscribe to more than one tier.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">Free, as it should be.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">You can cancel anytime.</p>
</div>
<div class="content-bullet-line">
<div class="content-bullet-icon-space">
<svg width="49.37" height="68.995" viewBox="0 0 49.37 68.995" fill="none" xmlns="http://www.w3.org/2000/svg"
class="content-bullet-icon">
<path
d="M19.6252 63.9952L44.37 41.8102L44.37 20.4785L24.7448 20.4785L24.7448 0L0 23.0383L0 41.8102L19.6252 41.8102L19.6252 63.9952Z"
fill="#777" fill-rule="evenodd" stroke-width="5" stroke="#777" stroke-linecap="round" stroke-linejoin="round"
transform="translate(2.5 2.5)" />
</svg>
</div>
<p class="content-description tier-description">I won't do anything with your data, seriously, cuz I don't really
care.</p>
</div>
</div>
</div>
<div style="text-align: left" class="sender-form-field" data-sender-form-id="dBBpRo"></div>
</div>
</div>
</div>
</div>
<!-- Newsletters -->
<!-- I'll change this later -->
<div id="newsletter-1" class="modal">
<div class="blog-content-container">
<div class="blog-content-author">
<img src="FoxPfp.webp" alt="pfp" class="blog-content-pfp">
<div class="blog-content-author-n-date">
<p class="blog-content-name">Fox David</p>
<p class="blog-content-date">September 15, 2025</p>
</div>
</div>
<a class="modal-close">
<img src="CloseIcon.webp" alt="close" class="modal-close-icon">
</a>
<div class="blog-content-content">
<div class="content-image">
<img src="Newsletter1.webp" alt="post example" class="blog-content-image">
</div>
<h2 class="blog-content-title">foxdavoid.com is real</h2>
<div class="blog-content-text">
<p><b>Yea</b>h, <b>in</b> <b>the</b> <b>mos</b>t <b>rec</b>ent <b>pos</b>t I <b>sa</b>id I <b>wa</b>s <b>dou</b>bting <b>abo</b>ut <b>thi</b>s <b>bu</b>t, <b>ma</b>n, A <b>DOM</b>AIN <b>FO</b>R 2.5 <b>DOL</b>LARS <b>TH</b>E <b>FIR</b>ST <b>YEA</b>R?!! <b>Na</b>h, I <b>wa</b>s <b>so</b>o <b>dow</b>n <b>fo</b>r it.</p>
<p><b>So</b> I <b>bou</b>ght it.</p>
<p><b>Yea</b>h, <b>tha</b>t's <b>al</b>l. I <b>bou</b>ght a <b>dom</b>ain. <b>No</b>w <b>thi</b>s is <b>the</b> <b>mom</b>ent I <b>ack</b>nowledge <b>tha</b>t <b>thi</b>s <b>use</b>rname <b>wi</b>ll <b>fol</b>low <b>me</b> <b>to</b> <b>the</b> <b>gra</b>ve.</p>
<p><b>If</b> <b>yo</b>u <b>did</b>n't <b>not</b>ice, I <b>bou</b>ght it <b>on</b> <b>Sep</b>tember 15th, <b>in</b> 2025, <b>whi</b>ch is <b>the</b> 10th <b>ann</b>iversary <b>of</b> <b>UND</b>ERTALE, MY <b>FAV</b>ORITE <b>GAM</b>E <b>EVE</b>R (or <b>wi</b>ll <b>be</b> <b>so</b> <b>unt</b>il <b>Del</b>tarune is <b>fin</b>ished). I <b>tho</b>ught it <b>wa</b>s <b>the</b> <b>rig</b>ht <b>tim</b>e <b>to</b> <b>do</b> it, <b>an</b>d <b>no</b>w <b>tha</b>t I <b>ret</b>hink <b>abo</b>ut it, it <b>wi</b>ll <b>be</b> <b>so</b> <b>fun</b>ny <b>tha</b>t I'l<b>l</b> <b>be</b> <b>lik</b>e "<b>Oh</b>, <b>coo</b>l, <b>Und</b>ertale's <b>bir</b>thday <b>aga</b>in, <b>whi</b>ch <b>mea</b>ns... <b>OH</b>, <b>WAI</b>T, I <b>HAV</b>E <b>TO</b> <b>PA</b>Y <b>TH</b>E <b>DOM</b>AIN" <b>lik</b>e, <b>thi</b>s <b>wi</b>ll <b>be</b> <b>rea</b>l; <b>di</b>d I <b>jus</b>t <b>ins</b>tall <b>an</b> <b>int</b>ernal <b>rem</b>inder <b>tha</b>t <b>wi</b>ll <b>las</b>t <b>as</b> <b>lon</b>g <b>as</b> <b>the</b> <b>web</b>page <b>doe</b>s? <b>Lik</b>e, <b>dam</b>n.</p>
<p><b>Any</b>ways, <b>tha</b>t's <b>al</b>l. <b>By</b>e. :3</p>
</div>
<div class="blog-content-subscribe-div">
<h3 class="get-notified-label">Get an email for every time I add a new one of these</h3>
<div style="text-align: left" class="sender-form-field blog-post-subscribe-form" data-sender-form-id="bDkrJk"></div>
</div>
</div>
</div>
</div>
<!-- Blogs -->
<div id="blog-1" class="modal">
<div class="blog-content-container">
<div class="blog-content-author">
<img src="FoxPfp.webp" alt="pfp" class="blog-content-pfp">
<div class="blog-content-author-n-date">
<p class="blog-content-name">Fox David</p>
<p class="blog-content-date">August 16, 2025</p>
</div>
</div>
<a class="modal-close">
<img src="CloseIcon.webp" alt="close" class="modal-close-icon">
</a>
<div class="blog-content-content">
<div class="content-image">
<img src="Blog1.webp" alt="post example" class="blog-content-image">
</div>
<h2 class="blog-content-title">The project has been started</h2>
<div class="blog-content-text">
<p><b>Th</b>is <b>rig</b>ht <b>he</b>re <b>is</b> <b>th</b>e <b>fir</b>st <b>po</b>st <b>fo</b>r <b>foxd</b>avoid.com (<b>we</b>ll, I <b>hav</b>en't <b>bou</b>ght <b>the</b> <b>dom</b>ain, <b>bu</b>t <b>tha</b>t's <b>how</b> I <b>cal</b>led <b>the</b> <b>Git</b>Hub <b>re</b>po <b>li</b>ke).</p> <p><b>Wh</b>at <b>is</b> <b>th</b>is <b>foo</b>or?</p> <p><b>We</b>ll, I <b>cer</b>tainly <b>don</b>'t <b>kn</b>ow, <b>haha</b>ahahahahahahah. <b>No</b>, <b>rea</b>lly, I <b>nee</b>d <b>to</b> <b>thi</b>nk <b>abo</b>ut <b>it</b>. <b>Th</b>is <b>was</b> <b>som</b>ething I <b>tho</b>ught <b>it</b> <b>wou</b>ld <b>be</b> <b>coo</b>l <b>fo</b>r my <b>bir</b>thday. <b>A</b> <b>bir</b>th-day, <b>cu</b>z... <b>ye</b>ah, <b>the</b> <b>web</b>page <b>was</b> <b>bor</b>n, <b>mea</b>ning <b>as</b> <b>we</b>ll <b>tha</b>t <b>thi</b>s <b>web</b>page <b>mig</b>ht <b>cel</b>ebrate <b>its</b> <b>bir</b>thday <b>at</b> <b>the</b> <b>sam</b>e <b>tim</b>e I <b>do</b> (or <b>do</b>n't), <b>lo</b>l.</p> <p><b>So</b>, <b>wh</b>at <b>wil</b>l <b>th</b>is <b>blo</b>g <b>be</b> <b>abo</b>ut? <b>I'</b>m <b>not</b> <b>ent</b>irely <b>sur</b>e <b>yet</b>, <b>bu</b>t I <b>env</b>ision <b>it</b> <b>as</b> <b>a</b> <b>pla</b>ce <b>to</b> <b>sha</b>re my <b>tho</b>ughts, <b>pro</b>jects, <b>and</b> <b>per</b>haps <b>som</b>e <b>tur</b>orials <b>on</b> <b>top</b>ics I'm <b>pas</b>sionate <b>abo</b>ut. <b>It'</b>s <b>a</b> <b>spa</b>ce <b>fo</b>r me <b>to</b> <b>doc</b>ument my <b>jou</b>rney <b>and</b> <b>con</b>nect <b>wit</b>h <b>oth</b>ers <b>who</b> <b>sha</b>re <b>sim</b>ilar <b>int</b>erests.</p> <p><b>I</b> <b>wis</b>h <b>th</b>is <b>art</b>icle <b>was</b> <b>mor</b>e <b>lik</b>e <b>a</b> <b>new</b>sletter, <b>haha</b>h, <b>bu</b>t <b>th</b>is <b>is</b> <b>the</b> <b>fir</b>st <b>one</b> <b>so</b> I <b>don</b>'t <b>rea</b>lly <b>hav</b>e <b>som</b>ething <b>to</b>... <b>ann</b>ounce <b>bes</b>ides <b>th</b>is <b>tin</b>y <b>sil</b>ly <b>pro</b>ject. <b>It'</b>s <b>jus</b>t <b>a</b> <b>pag</b>e.</p> <p><b>If</b> <b>yo</b>u <b>fee</b>l <b>fat</b>igued <b>by</b> <b>jus</b>t <b>rea</b>ding <b>th</b>is, <b>I'</b>m <b>rea</b>lly <b>sor</b>ry <b>fo</b>r <b>yo</b>u, <b>cu</b>z <b>th</b>is <b>is</b> <b>pro</b>bably <b>one</b> <b>of</b> <b>the</b> <b>sho</b>rtest <b>pos</b>ts <b>eve</b>r <b>tha</b>t <b>wil</b>l <b>be</b> <b>her</b>e. <b>Li</b>ke, <b>rea</b>lly, I'<b>m</b> <b>not</b> <b>kid</b>ding. <b>Yo</b>u <b>hav</b>e <b>any</b> <b>ide</b>a <b>how</b> <b>man</b>y <b>tim</b>es I <b>can</b>'t <b>fre</b>ely <b>tal</b>k <b>abo</b>ut <b>lit</b>erally <b>ANY</b>THING? <b>Th</b>is <b>thi</b>ng <b>mig</b>ht <b>be</b> my <b>out</b>let. <b>The</b>re <b>ar</b>e <b>som</b>e <b>tim</b>es my <b>tho</b>ughts <b>get</b> <b>ove</b>r me <b>and</b> I <b>jus</b>t <b>sta</b>rt <b>say</b>ing <b>ran</b>dom <b>stu</b>ff I <b>cer</b>tainly <b>alw</b>ays <b>thi</b>nk <b>abo</b>ut ( <b>we</b>ll, <b>not</b> <b>LIT</b>ERALLY <b>ALW</b>AYS) <b>bu</b>t <b>yo</b>u <b>get</b> <b>the</b> <b>poi</b>nt, I <b>hop</b>e.</p> <p><b>And</b> <b>maa</b>ybe <b>it</b> <b>won</b>'t <b>be</b> <b>jus</b>t <b>tho</b>ughts <b>and</b> <b>tho</b>ughts <b>one</b> <b>aft</b>er <b>the</b> <b>ano</b>ther, <b>may</b>be... <b>uh</b>... <b>we</b>ll, I <b>hav</b>en't <b>got</b>ten <b>thi</b>s <b>far</b> <b>bef</b>ore <b>wh</b>en <b>thi</b>nking <b>abo</b>ut <b>th</b>is <b>web</b>page. <b>The</b>re <b>ar</b>e <b>som</b>e <b>sec</b>tions <b>tha</b>t <b>yo</b>u <b>wil</b>l <b>not</b>ice <b>per</b>fectly <b>at</b> <b>fir</b>st <b>gla</b>nce, <b>cu</b>z <b>the</b>y <b>wer</b>e <b>lit</b>erally <b>on</b> <b>yo</b>ur <b>scr</b>een <b>bef</b>ore <b>eve</b>n <b>cli</b>cking <b>th</b>is <b>one</b> (or <b>tap</b>ping? <b>Wa</b>it, <b>ar</b>e <b>yo</b>u <b>on</b> <b>pho</b>ne?).</p> <p><b>New</b>sletters, <b>a</b> <b>che</b>ap <b>one</b>, <b>lik</b>e, I <b>don</b>'t <b>eve</b>n <b>hav</b>e <b>a</b> <b>ema</b>iling <b>ser</b>vice <b>fo</b>r <b>it</b>, <b>haha</b>hahaha... <b>ha</b>... <b>it'</b>s <b>bec</b>ause <b>the</b>re <b>ar</b>e <b>so</b> <b>man</b>y <b>alt</b>ernatives, <b>and</b> I <b>hav</b>en't <b>eve</b>n <b>bou</b>ght <b>the</b> <b>dom</b>ain <b>yet</b> (I <b>don</b>'t <b>eve</b>n <b>kno</b>w <b>eit</b>her <b>I'</b>ll <b>buy</b> <b>it</b> <b>or</b> <b>may</b>be I <b>wil</b>l <b>nex</b>t <b>yea</b>r <b>as</b> <b>a</b> "<b>bir</b>thday <b>gif</b>t" <b>fo</b>r <b>the</b> <b>web</b>page).</p> <p><b>Blo</b>g. <b>Yo</b>u <b>ar</b>e <b>rea</b>ding <b>one</b> <b>at</b> <b>th</b>is <b>mom</b>ent. <b>Ye</b>ah, I <b>sa</b>id <b>th</b>is <b>was</b> <b>a</b> <b>new</b>sletter, <b>bu</b>t I <b>jus</b>t <b>fou</b>nd <b>out</b> <b>th</b>at <b>jud</b>ging <b>by</b> <b>how</b> I <b>am</b> <b>wri</b>ting <b>all</b> <b>th</b>is, <b>yo</b>u <b>can</b> <b>per</b>fectly <b>tel</b>l <b>th</b>is <b>is</b> <b>not</b> <b>rea</b>lly <b>a</b>... <b>new</b>sletter, <b>we</b>ll, <b>may</b>be, <b>idk</b>.</p> <p><b>Fee</b>d. <b>He</b>re I <b>thi</b>nk I <b>wil</b>l <b>pos</b>t <b>ran</b>dom, <b>qui</b>ck <b>stu</b>ff, <b>lik</b>e <b>ima</b>gine <b>an</b> <b>ave</b>rage <b>per</b>son <b>usi</b>ng <b>Ins</b>tagram <b>on</b> <b>the</b>ir <b>dai</b>ly-basis, <b>we</b>ll, I <b>don</b>'t <b>use</b> <b>Ins</b>tagram, <b>so</b> <b>tha</b>t's <b>up</b> <b>to</b> <b>yo</b>u. <b>Ok</b>ay, <b>no</b>, I <b>do</b> <b>hav</b>e <b>an</b> <b>Ins</b>tagram, <b>bu</b>t <b>to</b> <b>be</b> <b>fai</b>r, I <b>on</b>ly <b>use</b> <b>it</b> <b>to</b> <b>tex</b>t <b>a</b> <b>fri</b>end I <b>sha</b>re <b>thi</b>ngs <b>in</b> <b>com</b>mon ( <b>it'</b>s <b>the</b> <b>one</b> <b>who</b>se <b>dra</b>wing I'<b>m</b> <b>usi</b>ng <b>rig</b>ht <b>now</b> <b>as</b> <b>a</b> "<b>ban</b>ner").</p> <p><b>I'</b>ll <b>won</b>'t <b>exp</b>lain <b>the</b> <b>res</b>t, <b>yo</b>u <b>can</b> <b>lit</b>erally <b>see</b> <b>wh</b>at <b>it</b> <b>is</b> <b>abo</b>ut. <b>Or</b> <b>may</b>be I <b>wil</b>l, <b>bu</b>t <b>in</b> <b>the</b> <b>fut</b>ure, <b>th</b>is <b>is</b> <b>jus</b>t <b>a</b> <b>lit</b>tle <b>thi</b>ng I <b>nee</b>ded <b>to</b> <b>wri</b>te <b>fo</b>r <b>the</b> <b>web</b>site <b>to</b> <b>exi</b>st.</p>
</div>
<div class="blog-content-subscribe-div">
<h3 class="get-notified-label">Get an email for every time I add a new one of these</h3>
<div style="text-align: left" class="sender-form-field blog-post-subscribe-form" data-sender-form-id="eERv6l"></div>
</div>
</div>
</div>
</div>
<!-- Feed -->
<div id="feed-1" class="modal feed-modal">
<div class="blog-content-container">
<div class="blog-content-author">
<img src="FoxPfp.webp" alt="pfp" class="blog-content-pfp">
<div class="blog-content-author-n-date">
<p class="blog-content-name">Fox David</p>
<p class="blog-content-date">August 20, 2025</p>
</div>
</div>
<a class="modal-close">
<img src="CloseIcon.webp" alt="close" class="modal-close-icon">
</a>
<div class="blog-content-content">
<div class="content-image">
<img src="Feed1.webp" alt="post example" class="blog-content-image">
</div>
<div class="blog-content-text blog-feed-text">
<p><b>All</b> I <b>hav</b>e to <b>sho</b>w <b>her</b>e is <b>the</b> <b>ori</b>ginal <b>des</b>ign <b>for</b> the <b>web</b>page.</p>
</div>
<div class="blog-content-subscribe-div">
<h3 class="get-notified-label">Get an email for every time I add a new one of these</h3>
<div style="text-align: left" class="sender-form-field blog-post-subscribe-form" data-sender-form-id="dG6xQ5"></div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
<script>
document.getElementById('tier-item').addEventListener('click', () => {
document.body.classList.toggle('active');
});
</script>
<script data-goatcounter="https://foxdavoid.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
</body>
</html>