-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
891 lines (861 loc) · 33 KB
/
index.html
File metadata and controls
891 lines (861 loc) · 33 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- title for the browser tab -->
<title>alifeee</title>
<!-- character set so you can type weird characters like 裨阿里 -->
<meta charset="utf-8" />
<!-- makes website not look super zoomed out on mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- description, same as below -->
<meta
name="description"
content="My personal website. What horrors could lie within?"
/>
<!-- favicon - shows as image on browser tab - https://favicon.io/ -->
<link rel="icon" href="/favicon.ico" />
<!-- "open graph meta" - https://ogp.me/ - makes social media previews work -->
<!-- i.e., when you share the website in a messaging app or social media -->
<meta property="og:title" content="alifeee's website" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://alifeee.net" />
<meta
property="og:image"
content="https://alifeee.net/profile-picture.png"
/>
<meta
property="og:description"
content="My personal website. What horrors could lie within?"
/>
<meta property="og:locale" content="en_GB" />
<!-- links to rss feeds (https://aboutfeeds.com/) -->
<link
rel="alternate"
type="application/rss+xml"
title="RSS Changelog for alifeee.net"
href="/changelog.xml"
/>
<link
rel="alternate"
type="application/rss+xml"
title="alifeee's blog feed"
href="https://blog.alifeee.net/feed.xml"
/>
<link
rel="alternate"
type="application/rss+xml"
title="alifeee's notes feed"
href="https://blog.alifeee.net/notes/feed.xml"
/>
<!-- stylesheets & fonts -->
<link rel="stylesheet" href="/stylesheet.css" />
<!-- styles -->
<style>
* {
text-align: center;
}
main {
max-width: unset;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
main > * {
max-width: 40rem;
}
.refurb {
color: #ff0000;
text-transform: uppercase;
text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000,
0 0 80px #ff0000, 0 0 120px #ff0000, 0 0 160px #ff0000;
font-size: 2rem;
font-weight: bold;
font-family: monospace;
}
.blurb.title {
font-size: 2rem;
margin: 0;
}
.blurb.subtitle {
font-size: 1.5rem;
margin: 0;
opacity: 0.5;
}
.hi {
color: white;
display: inline-block;
mask: linear-gradient(-60deg, #0f0 30%, #0f05, #0f0 70%) right/500% 100%;
background-repeat: no-repeat;
animation: shimmer 2s infinite;
}
@keyframes shimmer {
100% {
mask-position: left;
}
}
#linktree {
width: 100%;
max-width: 25rem;
margin: 1rem;
padding-bottom: 1rem;
border-radius: 0.5rem;
border: 2rem solid black;
background-image: url("images/bgpinksmoke.gif");
border-image: url("images/BlockSprite_obsidian_3x3.png");
border-image-slice: 16 16 16 16;
border-image-repeat: repeat;
border-image-width: 2rem;
image-rendering: pixelated;
}
#linktree > * {
margin-left: 1rem;
margin-right: 1rem;
}
#linktree > i {
font-size: 0.75rem;
margin: -0.5rem 1rem 1rem;
display: block;
}
#linktree h2 {
margin: 0 1rem;
padding-top: 0.25rem;
}
#linktree .links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
gap: 0.75rem;
font-size: 0.75rem;
}
#linktree .links > div > * {
color: white;
text-decoration: none;
}
#linktree a:visited {
color: white;
text-decoration: none;
}
#linktree .links a:hover {
scale: 1.1;
}
#linktree .links > div > * {
display: grid;
grid-template-rows: auto auto;
transition: scale 0.1s;
}
#linktree .links > div > * > * {
align-self: center;
margin: auto;
}
#linktree img {
border-radius: 1rem;
width: 3rem;
height: 3rem;
}
#linktree hr {
border: none;
border-top: 1rem solid black;
border-top-width: 1rem;
border-image: url("images/tripwire.png");
border-image-slice: 8 0 0 0;
border-image-repeat: repeat;
border-image-width: 32px;
image-rendering: pixelated;
margin: 1rem 0 0;
}
.contents {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100vw;
max-width: unset;
}
.contents li {
/* min-width: 17rem; */
margin: 0.5rem 0.5rem 0 0.5rem;
}
.rss {
gap: 0.3rem;
}
.rss li {
display: flex;
gap: 0.2rem;
}
.rss img {
display: inline-block;
filter: invert(54%) sepia(46%) saturate(4069%) hue-rotate(344deg)
brightness(95%) contrast(100%);
}
.weather figure {
max-width: 90vw;
width: 30rem;
margin: 0;
}
.weather img {
width: 100%;
aspect-ratio: calc(296 / 128);
height: auto;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
color: red;
}
.weather details {
cursor: pointer;
flex-grow: 1;
}
.weather details > summary {
list-style: none;
}
.weather figcaption {
display: flex;
justify-content: space-between;
}
.weather figcaption span:last-child {
/* margin-left: auto; */
}
.stuff-haver {
max-width: unset;
width: 100%;
}
.stuff {
display: grid;
/* make basis smaller on thinner screens */
grid-template-columns: repeat(auto-fit, minmax(min(40rem, 60vw), auto));
max-width: none;
justify-content: center;
}
.stuff > article {
margin: 0 auto 0 auto;
max-width: 95vw;
}
.pages {
max-width: 40rem;
list-style-type: none;
padding: 0;
margin: 1rem 1rem 4rem 1rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.page {
position: relative;
flex: 1 0 10rem;
background-color: var(--primary-subtle);
outline: 1px solid black;
border-radius: 0.5rem;
box-shadow: 0 0 0.5rem black;
display: flex;
justify-content: center;
align-items: center;
min-height: 11rem;
}
.page a {
display: block;
width: 100%;
height: 100%;
padding: 1rem;
margin: auto;
font-size: 2rem;
font-family: "Josefin Sans", sans-serif;
text-decoration: none;
color: white;
transition: transform 0.1s ease;
}
.page img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 0.5rem;
transition: filter 0.1s ease;
filter: brightness(0.5);
object-fit: cover;
}
.page:hover img {
filter: brightness(0.25);
}
.page:hover {
transform: scale(1.05);
}
.page a {
position: relative;
z-index: 1;
display: flex;
height: 100%;
align-items: center;
justify-content: center;
}
</style>
<style>
.other-sites {
margin: 0.5rem 0 0 0;
max-width: 100vw;
width: auto;
}
.other-sites h2 {
font-size: 2rem;
margin: 0;
}
.other-sites-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 0.5rem;
margin: 0 0.5rem;
}
/* blog style */
.blog-post {
background-color: #dcd;
font-family: "Josefin Sans", sans-serif;
box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.2);
pointer-events: none;
margin: 0.5rem 0;
max-width: 20rem;
}
.blog-post a {
color: #000;
padding: 1rem;
}
.blog-post a:visited {
color: #000;
}
.blog-post:hover {
box-shadow: 0 0 1rem rgba(255, 255, 255, 0.2);
}
.blog-post .link {
text-decoration: none;
color: black;
pointer-events: auto;
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 1fr;
grid-template-areas: "preview-image info";
align-items: center;
}
.blog-post .link > * {
margin: 0 0.5rem;
}
.blog-post .link > .info {
grid-area: info;
}
.blog-post .link > .preview-image {
grid-area: preview-image;
max-width: 100%;
display: flex;
}
.blog-post .preview-image > img {
width: 5rem;
height: 5rem;
object-fit: contain;
border-radius: 1em;
margin: 0 auto;
}
.blog-post .info .title {
margin: 0;
font-size: 2rem;
}
.blog-post .info .date {
margin: 0;
margin-top: 0.5rem;
opacity: 0.6;
font-size: 0.8rem;
}
/* notes style */
.notes {
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
background-color: white;
color: #111;
padding: 1rem 0.5rem;
border: 2px dashed #f0f8;
--link-visited: #111;
}
.notes p {
margin: 0;
}
.notes .n1 {
font-size: 2rem;
font-weight: bold;
}
#changelog {
width: 100%;
max-width: 40rem;
background-color: #333;
height: 40rem;
padding: 1rem 1rem 0.5rem;
margin: 0 0 1rem 0;
font-family: monospace;
font-size: 1rem;
border: 2px #5555 dashed;
max-height: 20rem;
overflow-y: scroll;
}
#changelog * {
text-align: left;
}
#changelog h2,
p {
margin: 0;
}
</style>
<!-- temporary for winter -->
<!-- <script src="component_island.js"></script> -->
<!-- <script src="component_snow.js"></script> -->
</head>
<body>
<header>
<h1>
<a href="/">alifeee</a>
</h1>
</header>
<is-land on:media="(prefers-reduced-motion: no-preference)">
<snow-fall></snow-fall>
</is-land>
<main>
<p class="blurb title">
<span class="hi">Hi!</span> I'm alifeee and I make things!
</p>
<p class="blurb subtitle">
Some of those things are here. Some are on GitHub. Some are made of
cardboard.
</p>
<p style="margin: 0">skip down to:</p>
<ul class="contents">
<li>
↓
<a href="#interactive-things-ive-made">things I've made</a>
</li>
<li>
↓
<a href="#information-presented-nicely">information</a>
</li>
<li>
↓
<a href="#some-of-my-favourite-things">favourites</a>
</li>
<li>↓ <a href="#stuff-on-my-server">my server</a></li>
</ul>
<p style="margin: 0.5rem 0 0" id="feeds">
my RSS feeds (<a href="https://aboutfeeds.com/"><i>what</i> feeds?</a>):
</p>
<ul class="contents rss">
<li>
<img alt="_RSS_" src="./icons/rss.svg" />
<a href="https://blog.alifeee.net/feed.xml">blog</a>
</li>
<li>
<img alt="_RSS_" src="./icons/rss.svg" />
<a href="https://blog.alifeee.net/notes/feed.xml">notes</a>
</li>
<li>
<img alt="_RSS_" src="./icons/rss.svg" />
<a href="https://alifeee.net/changelog.xml">changelog</a>
</li>
</ul>
<section id="linktree">
<h2>me elsewhere</h2>
<i>I guess if I'm chronically online you should know where</i>
<div class="links">
<!-- !!start linktree!! -->
<div><a href="https://alifeee.net/"><img src="icons/linktree/profile.svg" alt=" icon"><span>website</span></a></div>
<div><a href="mailto:webserf@alifeee.net"><img src="icons/linktree/email.svg" alt="email icon"><span>email</span></a></div>
<div><a href="https://blog.alifeee.net/"><img src="icons/linktree/profile.svg" alt=" icon"><span>blog</span></a></div>
<div><a href="https://blog.alifeee.net/notes/"><img src="icons/linktree/profile.svg" alt=" icon"><span>notes</span></a></div>
<div><a href="https://weeknotes.alifeee.net/"><img src="icons/linktree/profile.svg" alt=" icon"><span>weeknotes</span></a></div>
<div><a href="https://server.alifeee.net/"><img src="icons/linktree/profile.svg" alt=" icon"><span>server</span></a></div>
<div><a href="https://mastodon.social/@alifeee"><img src="icons/linktree/mastodon.svg" alt="mastodon icon"><span>Mastodon</span></a></div>
<div><a href="https://instagram.com/alifeeerenn"><img src="icons/linktree/instagram.svg" alt="instagram icon"><span>Instagram</span></a></div>
<div><div href=""><img src="icons/linktree/discord.svg" alt="discord icon"><span>Discord</span></div></div>
<div><a href="https://t.me/alifeeerenn"><img src="icons/linktree/telegram.svg" alt="telegram icon"><span>Telegram</span></a></div>
<div><a href="https://signal.me/#eu/kIgXWNVUkaOSiIeC_kGA1KGIi8kcNdQEnY7tEq3S9DaJHrvr3dZNtIkNaPqid1Py"><img src="icons/linktree/signal.svg" alt="signal icon"><span>Signal</span></a></div>
<div><a href="https://open.spotify.com/user/alifeeerenn"><img src="icons/linktree/spotify.svg" alt="spotify icon"><span>Spotify</span></a></div>
<div><a href="https://ramblingreaders.org/user/alifeee/"><img src="icons/rambling-readers.jpg" alt="/rambling-readers.jpg icon"><span>Bookwyrm</span></a></div>
<div><a href="https://movary.alifeee.net/users/alifeee"><img src="icons/linktree/movary.svg" alt="movary icon"><span>Movary</span></a></div>
<div><a href="https://youtube.com/@alifeeer.2187"><img src="icons/linktree/youtube.svg" alt="youtube icon"><span>YouTube</span></a></div>
<div><a href="https://steamcommunity.com/id/alifeee/"><img src="icons/linktree/steam.svg" alt="steam icon"><span>Steam</span></a></div>
<div><a href="https://alfierenn.dev/"><img src="icons/linktree/profile.svg" alt=" icon"><span>portfolio</span></a></div>
<div><a href="https://github.com/alifeee/"><img src="icons/linktree/github.svg" alt="github icon"><span>GitHub</span></a></div>
<div><a href="https://alifeee.itch.io/"><img src="icons/linktree/itch_io.svg" alt="itch_io icon"><span>Itch.io</span></a></div>
<div><a href="https://downpour.games/~alifeee"><img src="icons/linktree/downpour.svg" alt="downpour icon"><span>Downpour</span></a></div>
<div><a href="https://bewelcome.org/members/alifeee"><img src="icons/linktree/bewelcome.svg" alt="bewelcome icon"><span>BeWelcome</span></a></div>
<!-- !!end linktree!! -->
</div>
</section>
<section class="other-sites">
<h2>Why not check out:</h2>
<div class="other-sites-list">
<div class="blog-post">
<a class="link" href="https://blog.alifeee.net">
<div class="preview-image">
<img src="./profile-picture.png" alt="drawing of author" />
</div>
<div class="info">
<span class="title">my blog !!!</span>
<p class="date">blog.alifeee.net</p>
</div>
</a>
</div>
<a class="notes" href="https://blog.alifeee.net/notes/">
<p class="n1">notes by alifeee</p>
<p class="n2">short, text-only notes, mostly about programming.</p>
</a>
</div>
</section>
<span>or</span> <br />
<span style="font-size: 1rem">
<a href="https://mynutiae.neocities.org/">mynutiae</a>,
<a href="https://thoughtsofahummingbirdhawkmoth.neocities.org/"
>TOAHHM</a
>,
<a href="https://day2day-moral-ambiguities.neocities.org/"
>moral ambiguities</a
>, <a href="https://materialgirl.neocities.org/">materialgirl</a>, or
<a href="https://jellyburger.neocities.org/">jellyburger</a>
</span>
<div class="stuff-haver">
<section class="stuff">
<article class="weather">
<h2 id="the-weather-where-i-am">The weather where I am</h2>
<figure>
<img
src="https://server.alifeee.net/static/weather/sheffield.bmp"
alt="live weather visualisation for sheffield"
title="live weather visualisation for sheffield"
height="128"
width="296"
/>
<figcaption>
<span>now</span>
<details>
<summary>(?)</summary>
generated every 15 minutes on
<a href="https://server.alifeee.net/">my server</a>
with
<a href="https://github.com/lds133/weather_landscape"
>weather_landscape</a
>
</details>
<span>later</span>
</figcaption>
</figure>
</article>
<article>
<h2 id="interactive-things-ive-made">
things I've made (interactive)
</h2>
<ul class="pages">
<li class="page">
<img
alt="me doing a handstand"
src="./images/handstands.webp"
/>
<a href="https://downpour.games/~alifeee"
>Downpour games!!! ↗</a
>
</li>
<li class="page">
<img
alt="thumbnail for video games page"
src="./space-pirates-and-the-mind-stone/images/square.png"
/>
<a href="./video_games/">Video Games on itch.io</a>
</li>
<li class="page p5js">
<img
alt="thumbnail for p5.js page"
src="./p5js/thumbnail.png"
/>
<a href="./p5js">p5.js Simulations</a>
</li>
<li class="page tpe-soundboard">
<img
alt="thumbnail for tpe-soundboard page"
src="./images/tpe-soundboard.png"
/>
<a href="./tpe-soundboard/">TransPennine Express Soundboard</a>
</li>
<li class="page">
<img
alt="thumbnail for cryptography page"
src="./cryptography/thumbnail.png"
/>
<a href="./cryptography">Cryptography</a>
</li>
<li class="page">
<img
alt="thumbnail for steam mosaic page"
src="./steam_mosaic/thumbnail.jpg"
/>
<a href="./steam_mosaic">Steam Collage</a>
</li>
</ul>
</article>
<article>
<h2 id="non-interactive-things-ive-made">
things I've made (non-interactive)
</h2>
<ul class="pages">
<li class="page">
<img
alt="thumbnail for talks and workshops page"
src="./talks-and-workshops/images/font-workshop-3.webp"
/>
<a href="./talks-and-workshops/">Talks & Workshops</a>
</li>
<li class="page">
<img
alt="thumbnail for anvil emoji proposal page"
src="./anvil/anvilbg.png"
/>
<a href="./anvil/">Anvil Emoji Proposal</a>
</li>
<li class="page">
<img
alt="thumbnail for fonts page"
src="./fonts/bogface_lower.png"
/>
<a href="./fonts">Fonts</a>
</li>
</ul>
</article>
<article>
<h2 id="information-presented-nicely">
information presented nicely
</h2>
<ul class="pages">
<li class="page">
<img alt="thumbnail for maps page" src="./maps/pins.webp" />
<a href="./maps">maps</a>
</li>
<li class="page">
<img
alt="thumbnail for Sheffield page"
src="./sheffield/images/shefield_cutler.webp"
/>
<a href="./sheffield">Sheffield infodump</a>
</li>
<li class="page">
<img
alt="thumbnail for films page"
src="./films/collage.webp"
/>
<a href="./films">Films</a>
</li>
<li class="page">
<a href="./finances">Finances</a>
</li>
<li class="page">
<img
alt="thumbnail for itch.io bundle page"
src="./itch.io_bundle/thumbnail.png"
/>
<a href="./itch.io_bundle">Itch.io games</a>
</li>
<li class="page">
<img
alt="thumbnail for diplomacy page"
src="./diplomacy/thumbnail.png"
/>
<a href="./diplomacy">Diplomacy</a>
</li>
<li class="page">
<img
alt="thumbnail for durham physics page"
src="./durham_physics/thumbnail.png"
/>
<a href="./durham_physics">Durham Physics</a>
</li>
</ul>
</article>
<article>
<h2 id="some-of-my-favourite-things">
some of my favourite things
</h2>
<ul class="pages">
<li class="page">
<img alt="" src="./favourites/images/borders.png" />
<a href="./favourites/">favourite things</a>
</li>
<li class="page">
<img
alt="thumbnail for bookmarks page"
src="./bookmarks/thumbnail.png"
/>
<a href="./bookmarks">Bookmarks</a>
</li>
<li class="page">
<img
alt="thumbnail for technology page"
src="./technology/screenshot.png"
/>
<a href="./technology/">All My Computers</a>
</li>
</ul>
</article>
<article>
<h2 id="stuff-on-my-server">stuff on my server</h2>
<p>
Most on there is either temporary, experimental, or very
interactive
</p>
<ul class="pages">
<li class="page">
<img
alt="thumbnail for server homepage"
src="./images/server_homepage.png"
/>
<a href="http://server.alifeee.net">server.alifeee.net ↗</a>
</li>
</ul>
</article>
<article>
<h2 id="other-stuff-im-involved-in">other stuff I'm involved in</h2>
<ul class="pages">
<li class="page">
<img
alt="thumbnail for lipu tenpo"
src="./images/liputenpo.webp"
/>
<a href="https://liputenpo.org">lipu tenpo ↗</a>
</li>
<li class="page">
<img
alt="sheffield hackspace logo"
src="./images/shhm-logo.png"
/>
<a href="https://www.sheffieldhackspace.org.uk/"
>Sheffield Hackspace ↗</a
>
</li>
</ul>
</article>
</section>
</div>
<section id="changelog">
<h2>changelog <a href="#changelog">#</a></h2>
<p class="rss">
generated via <a href="./changelog.md">changelog.md</a> and
<a href="./changelog_build.sh">script</a>.
<img alt="_RSS_" src="./icons/rss.svg" />
<a href="./changelog.xml">RSS</a>.
</p>
<!-- !!start changelog!! -->
<dl>
<dt id="2026-01-09">2026-01-09</dt>
<dd>add an "all my computers" page on <a href="./technology/">/technology/</a></dd>
<dt id="2026-01-05">2026-01-05</dt>
<dd>added WHO BROKE THE INTERNET to my <a href="./favourites/#podcasts">favourite podcasts</a> page</dd>
<dt id="2025-12-24">2025-12-24</dt>
<dd>added <a href="/favourites/#proximity%20chat%20games">proximity chat games</a> to my <a href="/favourites/">favourites</a> page !</dd>
<dt id="2025-12-23">2025-12-23</dt>
<dd>add <a href="https://bewelcome.org/">https://bewelcome.org/</a> profile to my linktree :]</dd>
<dt id="2025-12-15 12:00">2025-12-15 12:00</dt>
<dd>remove Google fonts dependency! I serve my fonts direct to you now ;]</dd>
<dt id="2025-12-15">2025-12-15</dt>
<dd>move <a href="/bookmarks/">bookmarks</a> code generation to my website (away from some <a href="https://github.com/alifeee/firefox-bookmarks">random GitHub repository</a>)</dd>
<dt id="2025-11-29">2025-11-29</dt>
<dd>change all references to <code>alifeee.co.uk</code> to <code>alifeee.net</code> (new domain ! wahoo !)</dd>
<dt id="2025-11-23 19:00">2025-11-23 19:00</dt>
<dd>added a <a href="./robots.txt">robots.txt</a> file to my site, stolen (with kindness) from <a href="https://caolan.uk/">https://caolan.uk/</a></dd>
<dt id="2025-11-23 18:00">2025-11-23 18:00</dt>
<dd>add <a href="/films/"><code>/films/</code></a> page, mainly to re-host sortable, filterable versions of lists from Mubi (have a look ;])</dd>
<dt id="2025-11-23">2025-11-23</dt>
<dd>add Penumbra to <a href="./video_games/">video games</a>. made it this summer ;]</dd>
<dt id="2025-10-26 12:00">2025-10-26 12:00</dt>
<dd>add another dog to my <a href="/favourites#images">favourite images</a>. I'm a cat person I swear.</dd>
<dt id="2025-10-26">2025-10-26</dt>
<dd>added <a href="/sheffield/#independent venue guide">independent venue guide</a> to Sheffield page</dd>
<dt id="2025-10-23">2025-10-23</dt>
<dd>added a <a href="#linktree">linktree</a>! very exciting! don't have to rely on that damn linktree company!</dd>
<dt id="2025-10-21">2025-10-21</dt>
<dd>add some places to my <a href="/sheffield/#some%20of%20my%20google%20maps%20saved%20places">Sheffield</a> page from Google maps</dd>
<dt id="2025-10-09">2025-10-09</dt>
<dd>add <a href="https://github.com/alifeee/firefox-bookmarks/commit/debb64be960d8819e770eb60bec4d98b7f2673f6">some bookmarks</a> to my <a href="https://alifeee.net/bookmarks/">bookmarks page</a></dd>
<dt id="2025-09-24">2025-09-24</dt>
<dd>add creepy dog to <a href="/favourites#images">favourite images</a></dd>
<dt id="2025-09-15">2025-09-15</dt>
<dd>added <a href="/favourites#bookmarklets">bookmarklets</a> to my favourites page :]</dd>
<dt id="2025-08-26">2025-08-26</dt>
<dd>add section on <a href="/sheffield/#Sheffield Council Open Data">Sheffield Council Open Data</a> to my <a href="/sheffield/">Sheffield</a> page. love open data ;] thanks to <a href="https://about.cubictype.com/">David</a> to pointing me at it</dd>
<dt id="2025-08-13">2025-08-13</dt>
<dd>add link to the <a href="https://alifeee.net/tpe-soundboard/">TransPennine Express Soundboard</a> that I made to the "things I've made" section :]</dd>
<dt id="2025-08-09">2025-08-09</dt>
<dd>add 2022-2023 and 2023-2024 to <a href="./finances/">"slash finances"</a>. maybe I'll ignore it til next year now.</dd>
<dt id="2025-07-30 21:00">2025-07-30 21:00</dt>
<dd>add <a href="./finances/">"slash finances"</a> (first pass) — more to add later!</dd>
<dt id="2025-07-30">2025-07-30</dt>
<dd>add "AI is for losers" to <a href="./favourites/#images">favourites</a> page and add Godot cheatsheet to <a href="./video_games/">video games</a> page</dd>
<dt id="2025-06-06">2025-06-06</dt>
<dd>reformatted <a href="/sheffield/">sheffield</a> page to be a bit easier to edit (now works like <a href="/favourites">favourites</a> page</dd>
<dt id="2025-05-29">2025-05-29</dt>
<dd>added <a href="/favourites#hackspaces">hackspaces</a>, <a href="/favourites#openstreetmap">openstreetmap</a>, <a href="/favourites#dimensional_analysis">dimensional analysis</a> and <a href="/favourites#modded%20kindles">modded kindles</a> to my <a href="/favourites/">favourites</a> page!</dd>
<dt id="2025-05-24">2025-05-24</dt>
<dd>added a <a href="/talks-and-workshops/#micropython-hackathon">micropython hackathon</a> to <a href="/talks-and-workshops/">/talks-and-workshops/</a>, and added some pictures to the <a href="/talks-and-workshops/#personal-website-workshop">personal website workshop</a> (just promo pics)</dd>
<dt id="2025-05-14 17:00">2025-05-14 17:00</dt>
<dd>put my collection of river walk coordinates into a <a href="https://github.com/alifeee/river-walks/">repository</a>, so now there's a nicer combined map on <a href="/maps/#river-walks"><code>/maps/#river-walks</code></a></dd>
<dt id="2025-05-14 15:00">2025-05-14 15:00</dt>
<dd>some updates to <a href="/europe-trips/"><code>/europe-trips/</code></a> which is now fairly complete! (added mpptp route and made all routes toggleable)</dd>
<dt id="2025-05-09">2025-05-09</dt>
<dd>removed links to weeknotes from here and from my blog. The site is still on <a href="https://weeknotes.alifeee.net/">https://weeknotes.alifeee.net/</a>.</dd>
<dt id="2025-05-06 18:00">2025-05-06 18:00</dt>
<dd>added interrail trip from 2022 to my <a href="/europe-trips/">europe trips map</a>. the traces aren't true to the actual trains I took, sadly.</dd>
<dt id="2025-05-06 12:00">2025-05-06 12:00</dt>
<dd>removed fundraiser... it got funded !</dd>
<dt id="2025-05-06">2025-05-06</dt>
<dd>add some items to Sheffield page: Festival of Debate, DocFest, ScrapDragon, CeilidhSoc, NowThen and NowThen feed. There is much more that still remains only in my head. Such is life.</dd>
<dt id="2025-04-16">2025-04-16</dt>
<dd>added <a href="/europe-trips/">Europe trips</a> webpage to <a href="/maps/#trips-to-europe">maps page</a>. I love geojson :]</dd>
<dt id="2025-03-28">2025-03-28</dt>
<dd>added link to <a href="https://gofund.me/d8fcca90">fundraiser</a> on homepage</dd>
<dt id="2025-03-18">2025-03-18</dt>
<dd>added a section about RSS feeds to my favourites page -> <a href="/favourites/#RSS feeds"><code>/favourites/#RSS feeds</code></a>. I love RSS feeds.</dd>
<dt id="2025-03-13">2025-03-13</dt>
<dd>added <a href="/favourites/#hardware%20hacking">hardware hacking</a> to favourites page, because I wanted to link to it from <a href="https://blog.alifeee.net/notes/testing-micropython-on-an-esp-8266-d1-mini/">a note about microcontrollers</a> and... it didn't exist yet</dd>
<dt id="2025-02-24 12:30">2025-02-24 12:30</dt>
<dd>added <a href="/favourites/#big%20tech%20alternatives">favourites section on alternatives to big tech</a></dd>
<dt id="2025-02-24">2025-02-24</dt>
<dd>added <a href="/favourites/#coop%20resources">favourites section on cooperatives</a></dd>
<dt id="2025-02-19">2025-02-19</dt>
<dd>added some articles about LLMs/AI to <a href="./favourites/#articles">favourites</a></dd>
<dt id="2025-02-18">2025-02-18</dt>
<dd>updated <a href="./bookmarks/">bookmarks</a>, new since last time is a fair few personal websites, some interesting websites, and a few articles. <a href="https://github.com/alifeee/firefox-bookmarks">changelog</a></dd>
<dt id="2025-02-15">2025-02-15</dt>
<dd>created <a href="http://mycelium.alifeee.net/">http://mycelium.alifeee.net/</a> which is the same as this page but it loses 10 characters from the HTML file every day. a slow decay.</dd>
<dt id="2025-02-10 10:30">2025-02-10 10:30</dt>
<dd>added two more mobile games to my <a href="/favourites/#mobile%20games">favourites</a>, 80 Days and Slice & Dice</dd>
<dd>fixed some <a href="https://github.com/alifeee/alifeee.github.io/commit/483e667514f2d2a80b709bc53a53bd91de96d42a">GitHub workflows</a></dd>
<dt id="2025-02-10 10:00">2025-02-10 10:00</dt>
<dd>removed (well, retired) my <a href="/favourites/feed.xml">favourites RSS feed</a> in preference to this one. made one final post to it.</dd>
<dt id="2025-02-10">2025-02-10</dt>
<dd>added a changelog to my site. it may be quite brittle and I imagine the RSS feed will stop validating almost immediately. but what's a website without some fun.</dd>
</dl>
<!-- !!end changelog!! -->
</section>
<p>
Reached the end? You're mistaken. Click
<a href="https://server.alifeee.net/github/html.cgi">here</a> for a
random one of my GitHub repositories.
</p>
</main>
<footer>
<div class="links">
<a href="./sitemap.html">
<img alt="graph icon" src="./icons/sitemap-solid.svg" />
<span class="text">sitemap</span>
</a>
</div>
<a href="https://github.com/alifeee/alifeee.github.io"
>website source code</a
>
</footer>
</body>
</html>