-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1068 lines (949 loc) · 67.9 KB
/
index.html
File metadata and controls
1068 lines (949 loc) · 67.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Din's Desktop</title>
<link rel="icon" type="image/x-icon" href="src/img/tsuyomi_favicon.gif">
<link rel="stylesheet" href="src/css/main.css">
<link rel="stylesheet" id="switcher-id" href="">
<link rel="stylesheet" href="https://pixscape.neocities.org/pixscape-webring-js/pixscape-webring.css">
<link rel="stylesheet" href="https://darkosparko.nekoweb.org/webrings/apartments-webring/apartment-webring-style.css">
<script src="https://chattable.neocities.org/scripts/main.min.js"></script>
<!--<script>chattable.initialize({stylesheet : "src/css/chattable.css"});</script>-->
</head>
<body>
<div class="mobileNavi">
<a href="/plushies"><button class="btn tooltipable" data-tooltip="Kuromi, Invizimals: Shadow Zone, Pokemon, Mega Man Battle Network, and more!">shrines</button></a></a>
<a href="/blog"><button class="btn tooltipable" data-tooltip="My blog, microblog, journal, ramblings, messy thoughts--valid RSS supported">blog</button></a>
<a href="/games"><button class="btn tooltipable" data-tooltip="My games!">🚧 games</button></a>
<a href="/games/linux_gaming"><button class="btn tooltipable" data-tooltip="My guides on gamifying Linux experience">Linux Gaming</button></a>
<a href="/projects"><button class="btn tooltipable" data-tooltip="Games and app dev, or other projects">projects</button></a>
<a href="/reads"><button class="btn tooltipable" data-tooltip="Anything I read">🚧 reads</button></a>
<a href="/fun"><button class="btn tooltipable" data-tooltip="Just for fun stuff! Enter at your own risk (jk)">🚧 fun</button></a>
<a href="/archive"><button class="btn tooltipable" data-tooltip="Stuff that I archived are here">🚧 archive</button></a>
<a href="/resources"><button class="btn tooltipable" data-tooltip="Media, graphics, guides, links, credits, and more useful stuff">resources</button></a>
<a href="/sitemap"><button class="btn tooltipable" data-tooltip="A directory of this website's pages">sitemap</button></a>
</div>
<div class="desktop">
<div class="banner">
<div class="headerButtons">
<div class="headerLinks">
<a href="https://bsky.app/profile/dinpixels.bsky.social" target="_blank">
<img class="headerBtn tooltipable" src="src/img/works/emojis/bluesky_36x36.png" alt="A 36 by 36 Bluesky icon/button I made" data-tooltip="Follow me on Bluesky!">
</a>
<a href="https://ko-fi.com/dinpixels" target="_blank">
<img class="headerBtn tooltipable" src="src/img/works/emojis/kofi_cup_36x36.png" alt="A 36 by 36 Ko-fi icon/button I made" data-tooltip="My Ko-fi shop and tip jar~">
</a>
<a href="https://pixeljoint.com/p/253036.htm" target="_blank">
<img class="headerBtn tooltipable" src="src/img/works/emojis/pixeljoint_36x36.png" alt="A 36 by 36 Ko-fi icon/button I made" data-tooltip="My Pixel Joint art gallery and few challenge awards">
</a>
<a href="https://dinpixels.itch.io/" target="_blank">
<img class="headerBtn tooltipable" src="src/img/works/emojis/itch_36x36.png" alt="A 36 by 36 itch.io icon/button I made" data-tooltip="Games and zine I'm part of in itch.io">
</a>
<a href="https://github.com/DinPX" target="_blank">
<img class="headerBtn tooltipable" src="src/img/works/emojis/github_36x36.png" alt="A 36 by 36 Github icon/button I made" data-tooltip="Some noob projects for learning stuff">
</a>
<a href="https://dinpixels.newgrounds.com/" target="_blank">
<img class="headerBtn tooltipable" src="src/img/works/emojis/newgrounds_36x36.png" alt="A 36 by 36 Newgrounds icon/button I made" data-tooltip="Erm, what the sigma ☝️🤓">
</a>
</div>
<div class="headerInfo">
<div><a href="https://www.mabsland.com" target="_blank"><img class="censorpanda tooltipable" src="src/img/adoptables/Censor_14a.gif" alt="Adopt-a-Censorship Panda by Mabsland (Amber)" data-tooltip="This site contains slightly offensive material. High chance of mild swearing, partial nudity, violence and adult themes."></a></div>
<div class="headerInfoDetails">
<div><b>version 1.96.4</b></div>
<div><b>🚧 = page WIP</b></div>
</div>
</div>
</div>
<div class="theme-switches">
<div data-theme="xp" class="switch" id="switch-1"></div>
<div data-theme="sakura" class="switch" id="switch-2"></div>
<div data-theme="halloween" class="switch" id="switch-3"></div>
</div>
</div>
<div class="columns">
<div class="column left">
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">👤</span> bio</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="bio">
<div class="info">
<div class="info-data">
<div>
<p>
<b>age:</b> enough to shrimp<br>
<b>pronouns:</b> they / them<br>
<b>nationality:</b> Terran<br>
<b>status:</b> solo campaign<br>
<b>feeling:</b> <a href="https://www.imood.com/users/dinpixels"><img src="https://moods.imood.com/display/uname-dinpixels/fg-000000/bg-FFD700/imood.gif" alt="The current mood of dinpixels at www.imood.com" border="0" class="imood"></a>
</p>
</div>
<div>
<img src="src/img/chiikawa_erm_actually.png" alt="" class="pfp">
</div>
</div>
<div class="meButtons">
<a href="/about_me"><button class="btn tooltipable" data-tooltip="Anything about me and the website">about</button></a>
<a href="/manifesto"><button class="btn tooltipable" data-tooltip="My views on the web and creations">Manifesto</button></a>
<a href="/ocs/designs"><button class="btn tooltipable" data-tooltip="My OC designs and concepts!">OCs</button></a>
<a href="/blog"><button class="btn tooltipable" data-tooltip="My blog, microblog, journal, ramblings, messy thoughts--valid RSS supported">blog</button></a>
<a href="/plushies"><button class="btn tooltipable" data-tooltip="Kuromi, Invizimals: Shadow Zone, Pokemon, Mega Man Battle Network, and more!">🚧 shrines</button></a>
<a href="/fav_songs"><button class="btn tooltipable" data-tooltip="Songs that are part of me!">fav songs (new!)</button></a>
<a href="/memes"><button class="btn tooltipable" data-tooltip="Memes I found on the internet">memes</button></a>
<a href="/games/linux_gaming"><button class="btn tooltipable" data-tooltip="My guides on gamifying Linux experience">Linux Gaming</button></a>
</div>
<div class="embedButtons">
<picture>
<source
srcset="src/img/buttons/dinbtn0.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/dinbtn0.png" alt="DinPixels 88x31 button 0" width="88" height="31" />
</picture>
</div>
</div>
</div>
<div class="borderDecor"></div>
</div>
<div class="window featuredArt">
<h1 class="windowTitle"><span class="windowIcon">👤</span> featured art</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🎵</span> player</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="player">
<div class="playerCtrl">
<div class="playerImg">
<img src="src/img/konata_thumbnail.png" alt="Track cover art" class="trackArt">
</div>
<div class="playerInfo">
<div>
<div class="itemNumber">PLAYING x OF y</div>
<div class="trackName">Track Name</div>
<div class="trackArtist">Track Artist</div>
</div>
<div class="buttons">
<span class="prev-track" onclick="prevTrack()">⏮️</span>
<span class="playpause-track" onclick="playpauseTrack()">▶️</span>
<span class="next-track" onclick="nextTrack()">⏭️</span>
<span class="volume-icon vol-min">🔉</span>
<input type="range" min="1" max="100" value="99" class="volume_slider" onchange="setVolume()">
<span class="volume-icon vol-max">🔊</span>
</div>
</div>
</div>
<div class="playerRow">
<div class="sliders">
<div class="current-time">00:00</div>
<input type="range" min="1" max="100" value="0" class="seek_slider" onchange="seekTo()">
<div class="total-duration">00:00</div>
</div>
</div>
</div>
<div class="borderDecor"></div>
</div>
</div>
<div class="column middle">
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🏠</span> home</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="welcome">
<img class="apartment_webring_entry" src="/apartment_webring_room/dinpixels_room_design.png" alt="apartment webring entry; a purple room filled with things">
<p>Hello, I go by Din or DinPixels! Welcome to my corner on the web!<br>
This website is my personal space for thoughts and creations~<br>
Originally inspired with <a href="https://frutiger-aero.org/" target="_blank" class="txtLink tooltipable" data-tooltip="Glossy textures, nature visuals, and more! Just like how Windows 7 looked like"><em>Frutiger Aero</em></a> and <a href="https://lilithdev.neocities.org/" target="_blank" class="txtLink tooltipable" data-tooltip="Cool Needy Streamer Overload themed page!">LilithDev</a>!</p>
<hr class="divider">
<p><b>NOTE:</b> While there are no NSFW stuff, I write things here with adult audience in mind. There's also few profanity ahead.</p>
<p><b>FIX:</b> Remove the cache to fix the layout or other issues with the page.</p>
<hr class="divider">
<p>Made with <a href="https://www.linuxmint.com/" target="_blank" class="txtLink tooltipable" data-tooltip="I'm using Linux Mint 22, Xfce Edition!">Linux Mint</a>, <a href="https://vscodium.com/" target="_blank" class="txtLink tooltipable" data-tooltip="I have CodeGeass: CC Doki Theme! I love my IDM pastel green <3">VSCodium</a>, and <a href="" target="_blank" class="txtLink tooltipable" data-tooltip="Even better than Firefox in terms of privacy, and a direct fork on top of that!">Librewolf</a>~</p>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">📢</span> updates</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="updates">
<p>06/07/2025</p>
<ul>
<li>Added to <a href="https://evehibi.nekoweb.org/" target="_blank" class="txtLink">Evehibi's</a> <a href="https://evehibi.nekoweb.org/ckwr/" target="_blank" class="txtLink">Cookie Run Webring</a></li>
</ul>
<p>03/25/2025</p>
<ul>
<li>Added my <strong>about me</strong> page</li>
</ul>
<p>03/20/2025</p>
<ul>
<li>Added my Apartment Webring art to homepage</li>
<li>Arranged layout</li>
<li>blog and logs are adjacent to each other</li>
<li>updates and to-do are adjacent to each other</li>
</ul>
<p>03/17/2025</p>
<ul>
<li>Added Periodic Table of Elements</li>
<li>Arranged layout</li>
</ul>
<p>03/07/2025</p>
<ul>
<li>Added <em>floating</em> logs section</li>
</ul>
<p>02/25/2025</p>
<ul>
<li>Fixed chat's background-color</li>
</ul>
<p>02/18/2025</p>
<ul>
<li>Added halloween theme (3rd switch on the top right corner)</li>
<li>Refactored each theme's CSS.</li>
</ul>
<p>02/11/2025</p>
<ul>
<li>Added theme switchers on the top right of the banner. This homepage comes in 2 flavors: XP and Sakura. The preferred theme saves locally.</li>
<li>Updated blog content, RSS feed, and UI</li>
<li>Encapsulated blog entries in <details> so they're collapsed by default (good for large amounts of texts)</li>
</ul>
<p>02/10/2025</p>
<ul>
<li>Fixed mobile layout (i.e. banner, taskbar, webrings, etc.)</li>
<li>Added animation to other buttons and images when being hovered</li>
<li>Disabled animations on hovered buttons when reduced motions are on</li>
<li>Added web censor/rating adoptable by <a class="txtLink" href="https://www.mabsland.com/Adoption.html" target="_blank">Mabsland</a></li>
<li>Updated chatbox UI</li>
<li>Moved chatbox near the top, just beneath the gallery window</li>
<li>Moved updates to the middle, just beneath the blog feed section</li>
<li>Changed chatbox's height for more visible messages</li>
<li>Removed box-shadows</li>
</ul>
<p>02/07/2025</p>
<ul>
<li>Fixed mobile UI. It should work right now (if not clear the cache).</li>
<li>Added <a class="txtLink" href="/portfolio">Portfolio</a> page</li>
<li>Added Newgrounds button on header</li>
<li>Updated track player to expand on mobile UI</li>
</ul>
<p>02/04/2025</p>
<ul>
<li>Added <a class="txtLink" href="/games/linux_gaming">Linux Gaming</a> page which contains my guides for setting up and installing games and alike in Linux systems</li>
</ul>
<p>02/02/2025</p>
<ul>
<li>Featured Art is randomized in 2 minutes</li>
<li>Added Projects page</li>
</ul>
<p>01/24/2025</p>
<ul>
<li>Featured Art is now random</li>
<li>Added back Navlinks</li>
<li>Removed embed section</li>
<li>Removed marquee (it's a pain)</li>
<li>Removed some GIFs that cover texts</li>
<li>Rearranged embed buttons, webrings, etc.</li>
</ul>
<p>01/21/2025</p>
<ul>
<li>Added 2 pixel art cursors</li>
<li>Removed no-AI petition sections</li>
<li>Tooltip styled by CSS</li>
<li>Added Github link</li>
<li>Removed microblog section</li>
<li>Removed unique visitors section</li>
<li>Removed Ko-fi embed</li>
<li>Moved scripts into their own files</li>
</ul>
<p>12/06/2024</p>
<ul>
<li>Moved header inside the main div</li>
<li>Added games section</li>
</ul>
<p>11/22/2024</p>
<ul>
<li>Added flower borders! (border-image)</li>
</ul>
<p>11/20/2024</p>
<ul>
<li>Added my header banner</li>
<li>Added Eeveelution badges to chatbox</li>
<li>Added new artworks on gallery</li>
<li>Animated background disables animation if preferred</li>
</ul>
<p>11/06/2024</p>
<ul>
<li>Arranged windows; prioritizes my stuff</li>
<li><em>Cleaner</em> arrangement/layout</li>
<li>Joined <a href="https://baccyflap.com/noai/" target="_blank" class="txtLink">the no ai webring</a></li>
</ul>
<p>11/04/2024</p>
<ul>
<li>Added Commissions page</li>
<li>Added Resources page</li>
<li>Added archived pages (index.html not)</li>
<li>Added microblog section</li>
<li>Updated gallery & comms' CSS</li>
<li>Updated Gallery and Commissions' CSS</li>
<li>Updated chatbox's CSS</li>
<li>Added and updated webrings</li>
<li>Added semantic versioning on footer</li>
</ul>
<p>10/29/2024</p>
<ul>
<li>Added <a href="https://dimden.dev/navlinkads/" target="_blank" class="txtLink tooltipable" data-tooltip="Ads of non-commercial, personal sites by creatives and alike. Created and hosted by DimDen.">NavLink Ads</a> by <a href="https://dimden.dev" target="_blank" class="txtLink">DimDen</a></li>
<li>Replaced my blog RSS with XML format, in order to be detectable by extensions like Feedbro</li>
</ul>
<p>10/27/2024</p>
<ul>
<li>Added static images as alt for GIFs</li>
<li>GIFs stop on prefers-reduced-motion</li>
<li>Marquee div stops on prefers-reduced-motion</li>
<li>Added div with marquee animation</li>
<li>Removed marquee element</li>
</ul>
<p>10/26/2024</p>
<ul>
<li><em>prefers-reduced-motion</em> added</li>
<li>Removed tooltip on mobile view</li>
<li>Made the layout mobile friendly</li>
<li>Added a sticky navbar for mobile</li>
<li>Added my Everskies avatar outfit link</li>
</ul>
<p>10/25/2024</p>
<ul>
<li>Added few optimized stickers</li>
<li>Disabled player autoplay</li>
<li>Updated navigation buttons</li>
<li>Moved art buttons for visibility</li>
</ul>
<p>10/24/2024</p>
<ul>
<li>Added sections for petitions against AI</li>
<li>Added featured art window</li>
<li>Added credits section</li>
</ul>
<p>10/22/2024</p>
<ul>
<li>Added my pixel art gallery!</li>
</ul>
<p>10/20/2024</p>
<ul>
<li>Updated tooltip to match the theme.</li>
<li>Added tooltip to other buttons.</li>
<li>Added 'WIP' sitemap.</li>
<li>Added favicon.</li>
<li>Posted my first blog entry.</li>
<li>Updated <em>Not Found</em> page.</li>
<li>Fixed <em>Not Found</em> page's assets.</li>
<li>Updated views based on Neocities' stats.</li>
</ul>
<p>10/12/2024</p>
<ul>
<li>Added tooltip. Loads element's tooltip text dynamically.</li>
<li>Added more songs and enabled random track at start.</li>
</ul>
<p>10/11/2024</p>
<ul>
<li>Fixed a layout issue with mp3 player where it won't load properly, therefore breaking overall layout of the page. I found the quick fix thanks to this <a href="https://www.reddit.com/r/neocities/comments/1ciyrcq/why_did_my_layout_break/" target="_blank" class="txtLink">Reddit post 'why did my layout break?'</a> post.</li>
<li>Added more fanlists!</li>
<li>Added my 1st tamanotchi!</li>
<li>Removed webcam section (as its purely static rn)</li>
</ul>
<p>10/10/2024</p>
<ul>
<li>Added an mp3 player and 3 songs!</li>
<li>Added a <a href="https://gifypet.neocities.org/" target="_blank" class="txtLink">GIFYPET</a> of my oc Akari! (Go take care of her!)</li>
</ul>
<p>10/09/2024</p>
<ul>
<li>Added chat box via Chattable! All thanks to <a href="https://xobyte.neocities.org/" target="_blank" class="txtLink">Xobyte</a> for being awesome!</li>
</ul>
<p>10/08/2024</p>
<ul>
<li>Stuff I'm fan of are here! It's really cool to see your hidden gem to have its dedicated fansite</li>
<li>More awesome links added</li>
<li>Added a mood tracker</li>
<li>Link buttons don't work for now. Most stuff are WIP!</li>
<li><del>Found a counter but it's still buggy :P</del> I finally made it work. Spoiler, I didn't add a slash at the end of my URL :></li>
</ul>
</div>
<div class="borderDecor"></div>
</div>
</div>
<div class="column right">
<div class="window galleryBtn">
<h1 class="windowTitle"><span class="windowIcon">📢</span> gallery & comms</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="artBtn">
<a href="/gallery"><button class="btn tooltipable" data-tooltip="My pixel art, oekakis, photos, anything you can put in a gallery">gallery</button></a><br>
<a href="/commissions"><button class="btn tooltipable" data-tooltip="My available services and Terms of Service are here"><b>commissions</b></button></a><br>
<a href="/portfolio"><button class="btn tooltipable" data-tooltip="Animations, streaming and game dev assets, and more">portfolio</button></a>
<a href="https://ko-fi.com/dinpixels" target="_blank"><button class="btn tooltipable" data-tooltip="My Ko-fi!"><b>ko-fi ☕</b></button></a>
<a href="https://vgen.co/dinpixels" target="_blank"><button class="btn tooltipable" data-tooltip="My VGen!"><b>VGen 💚</b></button></a>
</div>
<div class="galleryAd">
<picture>
<source
srcset="src/img/works/navlink_ad_banner_tsuyomi.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
style="image-rendering: pixelated;"
/>
<img src="src/img/works/navlink_ad_banner_tsuyomi.png" alt="" style="image-rendering: pixelated;">
</picture>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">💬</span> chat</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="chat">
<iframe src='https://iframe.chat/embed/index.html?chat=homeChatbox' id='chattable' frameborder='none' width="100%"></iframe>
</div>
<div class="borderDecor"></div>
</div>
<div class="window linkBtn">
<h1 class="windowTitle"><span class="windowIcon">🔗</span> links</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="navi">
<a href="/games"><button class="btn tooltipable" data-tooltip="My games!">🚧 games</button></a>
<a href="/projects"><button class="btn tooltipable" data-tooltip="Games and app dev, or other projects">projects</button></a>
<a href="/reads"><button class="btn tooltipable" data-tooltip="Anything I read">🚧 reads</button></a>
<a href="/fun"><button class="btn tooltipable" data-tooltip="Just for fun stuff! Enter at your own risk (jk)">🚧 fun</button></a>
<a href="/archive"><button class="btn tooltipable" data-tooltip="Stuff that I archived are here">🚧 archive</button></a>
<a href="/resources"><button class="btn tooltipable" data-tooltip="Media, graphics, guides, links, credits, and more useful stuff">resources</button></a>
<a href="/sitemap"><button class="btn tooltipable" data-tooltip="A directory of this website's pages">sitemap</button></a>
</div>
<div class="borderDecor"></div>
</div>
</div>
</div>
<div class="columns twocols">
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🖊️</span> blog, journal, ramblings</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<a href="https://validator.w3.org/feed/check.cgi?url=https%3A//dinpixels.neocities.org/blog/blog.xml"><img src="src/img/buttons/valid-rss-rogers.png" alt="[Valid RSS]" title="Validate my RSS feed"></a>
<a href="/blog/blog.xml" target="_blank"><img src="src/img/rss-icon.png" alt="RSS icon" title="Subscribe to my RSS feed" style="height:31px; image-rendering:optimizeSpeed !important;"></a>
<picture>
<source
srcset="src/img/stickers/yume_nikki_madotsuki_spin_chair.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
style="width: 128px; image-rendering: optimizeSpeed !important; position: absolute; bottom: 0; right: 0;"
/>
<img src="src/img/stickers/yume_nikki_madotsuki_spin_chair.png" alt="" style="width: 128px; image-rendering: optimizeSpeed !important; position: absolute; bottom: 0; right: 0;" />
</picture>
<div class="blog">
<script src="//rss.bloople.net/?url=https%3A%2F%2Fdinpixels.neocities.org%2Fblog%2Fblog.xml&showtitle=false&type=js"></script>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">📢</span> floating logs</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="floatingLogs">
<iframe src="/logs/index.html" width="100%" height="100%" frameborder="0"></iframe>
</div>
<div class="borderDecor"></div>
</div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">📢</span> Periodic Table of Elements</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="periodic_table_container">
<iframe class="periodic_table" src="/resources/chemistry/periodic_table/index.html" frameborder="0" width="100%" height="100%"></iframe>
</div>
<div class="borderDecor"></div>
</div>
<div class="columns">
<div class="column left">
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">💫</span> Navlinks!</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="navlink">
<iframe width="256" height="256" style="border:none" src="https://dimden.neocities.org/navlink/" name="neolink"></iframe>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🖊️</span> my setup</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="mySetup">
<p>Creative Software</p>
<ul>
<li>Linux Mint 22, Xfce Edition</li>
<li>VSCodium</li>
<li>Librewolf</li>
<li>Aseprite</li>
<li>Godot</li>
</ul>
<p>Browser Extensions</p>
<ul>
<li>uBlock Origin</li>
<li>Decentraleyes</li>
<li>Privacy Badger</li>
<li>Canvas Blocker</li>
<li>Don't track me Google</li>
<li>Return YouTube Dislike</li>
<li>Feedbro</li>
</ul>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🔧</span> toolbox</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="toolLinks">
<a href="https://godotengine.org/" target="_blank"><img src="src/img/buttons/godotengine.png" alt="Godot 88x31 button" class="btnLink tooltipable" data-tooltip="My the-GOAT game and app engine."></a>
<a href="https://www.aseprite.org/" target="_blank"><img src="src/img/buttons/aseprite.png" alt="Aseprite 88x31 button" class="btnLink tooltipable" data-tooltip="Cool pixel art software!"></a>
<a href="https://johanpeitz.itch.io/picocad" target="_blank"><img src="src/img/buttons/picoCAD_88x31.png" alt="picoCAD 88x31 button" class="btnLink tooltipable" data-tooltip="Cool lowpoly modeling program."></a>
<a href="https://planets.corvidae.digital/linux-mint" target="_blank"><img src="src/img/buttons/fanlist/linux_mint_50x50.png" alt="Linux Mint fanlist button" class="btnLink tooltipable" data-tooltip="The best and my favorite OS. I used it to build this site!"></a>
<a href="https://fans.thislove.nu/mozilla" target="_blank"><img src="src/img/buttons/fanlist/mozillafirefox_50x50_009.png" alt="Mozilla Firefox fanlist button" class="btnLink tooltipable" data-tooltip="Cool browser for privacy. Sad that they're going for ads now."></a>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">⭐</span> fanlists</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="fanlists">
<a href="https://akiba.flirt-wind.net/azumanga/" target="_blank"><img src="src/img/buttons/fanlist/azumangadaioh.png" alt="Azumanga Daioh fanlist button" class="btnLink tooltipable" data-tooltip="Azumanga Daioh fanlist"></a>
<a href="http://www.noonvale.net/hiscoregirl/" target="_blank"><img src="src/img/buttons/fanlist/hiscoregirl2.gif" alt="Hi Score Girl fanlist button" class="btnLink tooltipable" data-tooltip="Hi Score Girl fanlist"></a>
<a href="http://www.marheavenj.net/saber/" target="_blank"><img src="src/img/buttons/fanlist/saber0_50x50.jpg" alt="Saber fanlist button" class="btnLink tooltipable" data-tooltip="Saber (Fate/stay night) fanlist"></a>
<a href="http://amalgamate.afflatus-misery.net/orcbolg/" target="_blank"><img src="src/img/buttons/fanlist/goblinslayer_100x50.gif" alt="Goblin Slayer fanlist button" class="btnLink tooltipable" data-tooltip="Goblin Slayer fanlist"></a>
<a href="https://zanarkand.neocities.org/stardust/yume" target="_blank"><img src="src/img/buttons/fanlist/yumenikki_100x50.png" alt="Yume Nikki fanlist button" class="btnLink tooltipable" data-tooltip="Yume Nikki fanlist"></a>
<a href="http://hellokitty.ravenbeauty.net/kuromi" target="_blank"><img src="src/img/buttons/fanlist/kuromi75x50_1.png" alt="Kuromi fanlist button" class="btnLink tooltipable" data-tooltip="Kuromi (Sanrio) fanlist"></a>
<a href="http://fan.greenhype.net/gbasp/" target="_blank"><img src="src/img/buttons/fanlist/gbasp50x50.gif" alt="GBA SP fanlist button" class="btnLink tooltipable" data-tooltip="Gameboy Advance SP fanlist"></a>
<a href="https://hoshi.nu/lain/" target="_blank"><img src="src/img/buttons/fanlist/lain04.png" alt="Serial Experiments Lain fanlist button" class="btnLink tooltipable" data-tooltip="Lain Iwakura (Serial Experiments Lain) fanlist"></a>
<a href="https://fan.glast-heim.net/lucky/" target="_blank"><img src="src/img/buttons/fanlist/konata_50x50.gif" alt="Lucky Star fanlist button" class="btnLink tooltipable" data-tooltip="Lucky Star fanlist"></a>
<a href="http://yandere.nu/erased/" target="_blank"><img src="src/img/buttons/fanlist/erased_75x50.png" alt="Erased fanlist button" class="btnLink tooltipable" data-tooltip="Erased fanlist"></a>
<a href="http://shana.reiji-maigo.net/" target="_blank"><img src="src/img/buttons/fanlist/shana_100x50_6.jpg" alt="Shana Flame Haze fanlist button" class="btnLink tooltipable" data-tooltip="(Shana) Shakugan no Shana fanlist"></a>
<a href="http://sky-petals.org/clannad" target="_blank"><img src="src/img/buttons/fanlist/clannad.gif" alt="Clannad fanlist button" class="btnLink tooltipable" data-tooltip="Clannad fanlist"></a>
<a href="http://www.marheavenj.net/roll/" target="_blank"><img src="src/img/buttons/fanlist/024.jpg" alt="Roll.EXE fanlist button" class="btnLink tooltipable" data-tooltip="Roll.EXE (Mega Man Battle Network) fanlist"></a>
<a href="https://moondvsted.neocities.org/fan/oneshot/" target="_blank"><img src="src/img/buttons/fanlist/75x50-1.png" alt="OneShot fanlist button" class="btnLink tooltipable" data-tooltip="Oneshot fanlist"></a>
<a href="https://fan.hopeslair.haliya.net/fl/kirby/" target="_blank"><img src="src/img/buttons/fanlist/kirby50x50_1.png" alt="Kirby fanlist button" class="btnLink tooltipable" data-tooltip="Kirby fanlist"></a>
<a href="http://powerup.i-heart-you.net/ps4" target="_blank"><img src="src/img/buttons/fanlist/ps4-50x50_04.gif" alt="PS4 fanlist button" class="btnLink tooltipable" data-tooltip="Playstation 4 fanlist"></a>
<a href="https://aerofanlisting.nekoweb.org/" target="_blank"><img src="src/img/buttons/fanlist/frutiger50x504.png" alt="Frutiger Aero fanlist button" class="btnLink tooltipable" data-tooltip="Frutiger Aero fanlist"></a>
<a href="https://silent.am/pixelart" target="_blank"><img src="src/img/buttons/fanlist/pixelart50x50-013045.png" alt="Pixel art fanlist button" class="btnLink tooltipable" data-tooltip="Pixel art fanlist"></a>
<a href="https://fan.greenhype.net/mountaindew/" target="_blank"><img src="src/img/buttons/fanlist/mountaindew50j.gif" alt="Mountain Dew fanlist button" class="btnLink tooltipable" data-tooltip="Mountain Dew fanlist"></a>
<a href="https://glitterskies.org/steam/" target="_blank"><img src="src/img/buttons/fanlist/steam_50x50.png" alt="Steam fanlist button" class="btnLink tooltipable" data-tooltip="Steam fanlist"></a>
</div>
<div class="borderDecor"></div>
</div>
</div>
<div class="column middle">
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🔗</span> cool sites</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="coolSites">
<a href="https://lilithdev.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/lilithdevbtn.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/lilithdevbtn.png" alt="LilithDev's 88x31 button" width="88" height="31" />
</picture>
</a>
<a href="https://pixelglade.net/index.html" target="_blank" class="btnLink">
<img src="src/img/buttons/88x31px_pixelglade.png" alt="Pixel Glade's 88x31 button" width="88" height="31">
</a>
<a href="https://zoeyonline.me/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/zoeyonline.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/zoeyonline.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://piranhebula.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/Piranhebula_Flowerpot.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/Piranhebula_Flowerpot.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://snailburger.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/SnailburgerStamp_88x31.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/SnailburgerStamp_88x31.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://analogfeelings.github.io/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/norashideout.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/norashideout.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://badgraph1csghost.neocities.org/" target="_blank" class="btnLink">
<img src="src/img/buttons/8s_badgraph1csghost.png" alt="Badgraph1csghost's 88x31 button" width="88" height="31">
</a>
<a href="https://daikonet.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/link_yoruko.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/link_yoruko.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://trick-916.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/trick-916-button.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/trick-916-button.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://dimden.dev/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/dimden.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/dimden.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://evehibi.nekoweb.org/doodlering/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/doodlering.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/doodlering.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://medjed.nekoweb.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/medjed.jpg"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/medjed.jpg" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://pocl.vip/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/poclbutton.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/poclbutton.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://whitedesert.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/whitedesertbutton.png"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/whitedesertbutton.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://arutemu64.neocities.org/" target="_blank" class="btnLink">
<picture>
<!-- Animated versions. -->
<source
srcset="src/img/buttons/arutemu64.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<!-- Static versions. -->
<img src="src/img/buttons/arutemu64.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://mitzyrie.neocities.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/mitzyriebutton.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/mitzyriebutton.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://raym.neocities.org/" target="_blank">
<img src="src/img/buttons/raym.png" alt="Ray M's button" class="btnLink">
</a>
</div>
<div class="borderDecor"></div>
</div>
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">💫</span> webrings</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="webrings">
<div class="webring-items">
<div id='apartment-webring'>
<script type="text/javascript" src="https://darkosparko.nekoweb.org/webrings/apartments-webring/apartment-webring-variables.js"></script>
<script type="text/javascript" src="https://darkosparko.nekoweb.org/webrings/apartments-webring/apartment-webring-widget.js"></script>
</div>
<div id="ckwr">
<script type="text/javascript" src="https://evehibi.nekoweb.org/ckwr/var.js"></script>
<script type="text/javascript" src="https://evehibi.nekoweb.org/ckwr/widget.js"></script>
<link rel="stylesheet" href="https://evehibi.nekoweb.org/ckwr/widget.css">
</div>
</div>
<div class="webring-items">
<div id="gallery-ring">
<div style="width: 140px; height: 120px; border: 5px solid #328FF0; border-radius: 8px; padding: 3px; background-color:#A2DEFF;">
<a href="https://zorrpu.com/Webring/GalleryRing"><img src="https://zorrpu.com/Webring/G.png"><br><img src="https://zorrpu.com/Webring/Icon_Din.gif" style="margin-left: 0; border-radius: 5px;"></a>
</div>
</div>
<div id='pixscape-webring'>
<script type="text/javascript" src="https://pixscape.neocities.org/pixscape-webring-js/pixscape-webring-variables.js"></script>
<script type="text/javascript" src="https://pixscape.neocities.org/pixscape-webring-js/pixscape-webring-widget.js"></script>
</div> <!-- id: pixscape-webring -->
</div>
<div class="webring-items">
<div id="doodlering">
<script type="text/javascript" src="https://evehibi.nekoweb.org/doodlering/onionring-variables.js"></script>
<script type="text/javascript" src="https://evehibi.nekoweb.org/doodlering/doodleseum.js"></script>
<link rel="stylesheet" href="https://evehibi.nekoweb.org/doodlering/doodleseum.css">
</div>
</div>
<div class="webring-items">
<div id="no-ai-webring">
<div style="text-align:center">
<a href="https://baccyflap.com/noai" target="_blank">the 🚫 no 🤖 ai</a><br>
<a href="https://baccyflap.com/noai/?prv&s=din" target="_top" title="previous">«</a>
<a href="https://baccyflap.com/noai" target="_blank">webring</a>
<a class="small" href="https://baccyflap.com/noai/?rnd" target="_top" title="random">(🔀)</a>
<a href="https://baccyflap.com/noai/?nxt&s=din" target="_top" title="next">»</a>
</div>
</div>
<div id="null-webring">
<script src="https://nuthead.neocities.org/ring/ring.js"></script>
</div>
<div id="surfclub">
<object id="melonland-surf-club" data="https://melonland.net/surf-badge.svg?fill=#1c71d8" type="image/svg+xml" style="width: 100px; height: 100px;"></object>
</div>
<div id="retronaut-webring">
<p>Retronaut Webring<br>
<a href="https://webring.dinhe.net/prev/https://dinpixels.neocities.org" class="txtLink">←</a>
<a href="https://webring.dinhe.net/random" class="txtLink">Random</a>
<a href="https://webring.dinhe.net/next/https://dinpixels.neocities.org" class="txtLink">→</a>
</p>
</div>
</div>
</div>
<div class="borderDecor"></div>
</div>
<div class="window credits">
<h1 class="windowTitle"><span class="windowIcon">👤</span> credits</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<p>I don't own any of the music as well as other visual assets in this page,<br>but I worked on some of the pixel art here, as well as the artworks<br>in the <a class="txtLink" href="https://dinpixels.neocities.org/gallery" target="_blank">Gallery</a> and <a class="txtLink" href="https://dinpixels.neocities.org/commissions" target="_blank">Commissions</a>.<br><br>For more info, go to <a href="https://dinpixels.neocities.org/resources/#Credits" class="txtLink" target="_blank">Resources/Credits</a> section.</p>
<div class="borderDecor"></div>
</div>
<div class="window footer">
<h1 class="windowTitle"><span class="windowIcon">👣</span> footer</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<p>Mobile friendly. Best on <small>1366x768</small> resolution!</p><br>
<picture>
<source
srcset="src/img/stamps/ilovechoco.webp"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
class="btnLink"
/>
<img src="src/img/stamps/ilovechoco.png" alt="" class="btnLink" />
</picture>
<img src="src/img/stamps/popuko_manga.png" alt="Popuko manga stamp" class="btnLink">
<img src="src/img/stamps/evilkitty.png" alt="evil kitty stamp" class="btnLink"><br><br>
<p>Made with ❤️ and ☕!</p>
<p>Din (DinPixels), Today 'til the End of Eternity</p>
<p><sub>version 1.96.2</sub></p>
<picture>
<source
srcset="src/img/stickers/yume_nikki_madotsuki_eepy_lowpoly.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
style="width: 128px; image-rendering: optimizeSpeed !important; position: absolute; bottom: 0; right: 0;"
/>
<img src="src/img/stickers/yume_nikki_madotsuki_eepy_lowpoly.png" alt="" style="width: 128px; image-rendering: optimizeSpeed !important; position: absolute; bottom: 0; left: 0;" />
</picture>
<div class="borderDecor"></div>
</div>
</div>
<div class="column right">
<div class="window">
<h1 class="windowTitle"><span class="windowIcon">🖊️</span> to-do</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="toDo">
<p>11/06/2024</p>
<ul>
<li><del>Upload lowpoly models on Commissions</del></li>
</ul>
<p>10/26/2024</p>
<ul>
<li><del>Add static images for GIFs</del></li>
</ul>
<p>10/20/2024</p>
<ul>
<li>add personal section</li>
<li><del>finish gallery section</del></li>
<li><del>make layout mobile-friendly</del></li>
</ul>
<p>10/13/2024</p>
<ul>
<li><del>set RSS feed</del></li>
<li><del>style blog section</del></li>
</ul>
<p>10/12/2024</p>
<ul>
<li><del>set tooltip details</del></li>
<li><del>add tooltip</del></li>
<li><del>add more songs</del></li>
</ul>
<p>10/11/2024</p>
<ul>
<li>add credits and links to resources (media, scripts, guides, etc.)</li>
<li>add <em>fun</em> webpage</li>
<li><del>add new fanlists</del></li>
<li>add Ko-fi embed widget</li>
<li><del>add webring section</del></li>
<li><del>fix layout bug (appears when hosted here in Neocities)</del></li>
</ul>
<p>10/09/2024</p>
<ul>
<li><del>add RSS feed for blog</del></li>
<li><del>add mp3 and functional player</del></li>
</ul>
<p>10/05/2024</p>
<ul>
<li><del>'complete' homepage</del></li>
<li><del>add gallery</del></li>
<li>invizimals shrine</li>
<li><del>add chat/guestbook</del></li>
<li><del>add visitor counter</del></li>
</ul>
</div>
<div class="borderDecor"></div>
</div>
<div class="window gifypetoc">
<h1 class="windowTitle"><span class="windowIcon">💕</span> pet Akari!</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="gifypetoc">
<iframe width="314" height="321" scrolling="no" src="https://gifypet.neocities.org/pet/pet.html?name=Akari&dob=1728571358&gender=f&element=Fire&pet=https%3A%2F%2Fi.ibb.co%2FXSbsJhD%2Fakari-80x100-outlined.gif&map=https%3A%2F%2Fi.ibb.co%2F0MFHvrN%2Fcyberpunk-bg-rkgk-200x200.gif&background=paper.jpg&tablecolor=%23bf4066&textcolor=%23bf4066" frameborder="0"></iframe>
</div>
<div class="borderDecor"></div>
</div>
<div class="window tamas">
<h1 class="windowTitle"><span class="windowIcon">🥚</span> my tamanotchis!</h1><button class="minBtn">🗕</button><button class="sizeBtn">🗖</button><button class="xBtn">🗙</button>
<div class="tamaNOTchi">
<a href="https://tamanotchi.world/15848c" target="_blank"><img src="https://tamanotchi.world/i2/15848" alt="It's tamaNOTchi! Click to feed!"></a>
<p>Cluster</p>
</div>
<div class="tamaNOTchi">
<a href="https://tamanotchi.world/26891c" target="_blank"><img src="https://tamanotchi.world/i2/26891" alt="It's tamaNOTchi! Click to feed!"></a>
<p>Celeste</p>
</div>
<div class="borderDecor"></div>
</div>
</div>
</div>
<div class="taskbar">
<div class="taskbarItems">
<div class="taskbarStart">
<a href="/#!"><button class="startBtn">🪟 start</button></a>
</div>
<div class="taskbarLinks">
<a href="https://yesterweb.org/no-to-web3/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/noweb32.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/noweb32.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://nekoweb.org/" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/nekowebbutton.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/nekowebbutton.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://goblin-heart.net/sadgrl/cyberspace/internet-manifesto" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/sadgrlonline.gif"
type="image/gif"
media="(prefers-reduced-motion: no-preference)"
/>
<img src="src/img/buttons/sadgrlonline.png" alt="" width="88" height="31" />
</picture>
</a>
<a href="https://neocities.org" target="_blank" class="btnLink">
<picture>
<source
srcset="src/img/buttons/neorainbow.gif"