added content to feed posts; removed march drawings feed post stub

This commit is contained in:
2026-04-13 21:54:08 +02:00
parent c30097f781
commit 6a9f7f763f
9 changed files with 39 additions and 27 deletions

View File

@@ -54,8 +54,8 @@
{#if entry.images && entry.images.length > 0} {#if entry.images && entry.images.length > 0}
<div class="image-gallery"> <div class="image-gallery">
{#each entry.images as i, index} {#each entry.images as i, index}
<a href="{entry.path}/{i}"> <a href="{entry.path}/{i}.webp">
<img loading="lazy" src="{entry.path}/{i}" alt={entry.imageAlts[index]}> <img loading="lazy" src="{entry.path}/{i}.webp" alt={entry.imageAlts[index]}>
</a> </a>
{/each} {/each}
</div> </div>

View File

@@ -35,12 +35,18 @@ export async function load({ params, url }) {
let page = await import(`./${pathArray[0]}/${pathArray[1]}.md`); let page = await import(`./${pathArray[0]}/${pathArray[1]}.md`);
let md = page.metadata; let md = page.metadata;
let date = md.date;
// prevent SvelteKit from being smart and formatting a YYYY-MM-DD string to a Date object or similar
if ((date as string).endsWith("0Z")) {
date = date.split("T")[0];
}
feedEntries.push({ feedEntries.push({
path, path,
content: page.default, content: page.default,
title: md.title, title: md.title,
subtitle: md.subtitle, subtitle: md.subtitle,
date: md.date, date: date,
images: md.images, images: md.images,
imageAlts: md.imageAlts, imageAlts: md.imageAlts,
}); });

View File

@@ -1,7 +0,0 @@
---
title: asdf
subtitle: asd
date: aaa
images:
imageAlts:
---

View File

@@ -0,0 +1,15 @@
---
title: Lecturer Confused About Gender
subtitle: uni doodles
date: 2026-04-10
images:
- drawing
- hinge
imageAlts:
-
-
---
I had my first day of uni in quite a while. For my class in descriptive statistics, I used my drawing tablet to take notes in Krita, which also proved excellent for doodling. This drawing was inspired by my lecturer, in good faith, saying: "there's male and female, but there's also diverse, which is a lot of genders, well I actually don't know how many".
I also noticed that my drawing tablet's hinge broke!! It's very frustrating, though I can fortunately still use it, just without the ability to adjust it (it's just stuck on the max angle).

View File

@@ -1,7 +0,0 @@
---
title: asdf
subtitle: asd
date: aaa
images:
imageAlts:
---

View File

@@ -1,15 +1,21 @@
--- ---
title: Transparent Phone Back title: Transparent Phone Back
subtitle: asd subtitle: see-through
date: aaa date: 2026-04-11 2026-04-12
images: images:
- scratching.webp - scratching
- halfway.webp - halfway
- clear.webp - clear
- final.webp - final
imageAlts: imageAlts:
- The back of a Samsung Galaxy S20 FE lying face-down on a deskmat. Toothpicks, cotton pads, and a metal spudger are lying nearby. - The back of a Samsung Galaxy S20 FE lying face-down on a deskmat. Toothpicks, cotton pads, and a metal spudger are lying nearby.
- A white phone back that's half-scratched off to reveal the clear plastic. - A white phone back that's half-scratched off to reveal the clear plastic.
- An entirely clear phone back. - An entirely clear phone back.
- A Samsung Galaxy S20 FE with a clear back inside a clear phone case. The phone has a sticker in the middle of the back that shows a lantern with leaves around it. - A Samsung Galaxy S20 FE with a clear back inside a clear phone case. The phone has a sticker in the middle of the back that shows a lantern with leaves around it.
--- ---
Inspired by Nothing phones and cool dbrand skins from way back, I gave my phone a clear back mod! I've grown a bit tired of the white back and wanted to do something cool and unique instead of just buying a new back and sticking that on there. I've been using this phone for 5 years and the glue has been struggling hard to hold onto the back, so I didn't feel bad doing this.
This was arduous and took a lot of time too (5 hours). I used a metal spudger, bamboo toothpicks, and cottons swabs and pads soaked in acetone-free nail polish remover to remove the two paint layers slowly but surely, being careful not to scratch the back too much. It revealed a slightly cloudly but actually decently transparent back that still preserved its slightly pearlescent purple glow!
Only contra is that the back can't hold on anymore because I removed all the glue, but since I'm keeping the phone in a case at all times, this isn't really an issue. Oh and, the exposure to alcohol made the back develop plenty of hairline cracks around the top and bottom, but it's still in one piece!

View File

@@ -2,8 +2,7 @@ export let entries: string[] = [
// 2026 // 2026
// "misc/lightyears-font", // "misc/lightyears-font",
"electronics/trans-phone", "electronics/trans-phone",
"drawings/mossig-gender", "drawings/lecturer-gender",
"drawings/2026-march",
// 2024 // 2024
// "electronics/3ds-usb-c", // "electronics/3ds-usb-c",
// "electronics/deej0461", // "electronics/deej0461",

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB