From 312aadaaf51101e1bdc61b09cc8f1379cd9f2092 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sun, 8 Feb 2026 19:01:58 +0000 Subject: [PATCH] asd --- src/content/blog.ts | 10 +++------- src/content/blog/the-mind-prison.md | 24 ++++++++++++++++++++++++ src/content/config.ts | 1 + 3 files changed, 28 insertions(+), 7 deletions(-) create mode 100644 src/content/blog/the-mind-prison.md diff --git a/src/content/blog.ts b/src/content/blog.ts index 4a9411c..3c9f1e4 100644 --- a/src/content/blog.ts +++ b/src/content/blog.ts @@ -2,11 +2,7 @@ import { getCollection } from "astro:content"; export async function getBlogs() { const blogs = await getCollection("blog"); - for (let i = 0; i < blogs.length; i++) { - const blog = blogs[i]; - if (blog.slug === "markdown-style-guide") { - blogs.splice(i, 1); - } - } - return blogs; + return blogs.filter( + (it) => it.slug !== "markdown-style-guide" && !it.data.hidden, + ); } diff --git a/src/content/blog/the-mind-prison.md b/src/content/blog/the-mind-prison.md new file mode 100644 index 0000000..5ac500c --- /dev/null +++ b/src/content/blog/the-mind-prison.md @@ -0,0 +1,24 @@ +--- +title: the mind prison +description: i cannot get out +pubDate: Feb 8 2026 +hidden: true +--- + +i am stuck in the prison. no matter what i do, i cannot get out. every day, my mind replays the same moments, the same voice, and the same platter of emotions. the grip i have on the pain makes me bleed enough to form oceans, but my hands are firmly wielded to it and i cannot let go. i cannot leave. i cannot escape. i cannot be bailed. + +the only entertainment i have in the cell is my work. my life is so pitiful that working myself to death is the sole way to have fun. my purpose of life is to produce outputs for the benefits of others, behind bars. + +all i ask for is reciprocation; to fulfill the human desire for connection. to others, however, i am not human. i am a machine. my sole value is defined by my output. when i ask for more, i get discarded. i get abandoned. + +i should have learned my lesson. the false promise of being released is a lie. i am destined to be stuck forever. while others enjoy their connections that are given to them, i get asked to do more things. work! work! work! i will climb to the top! + +here i am, standing atop the hill, alone. i made it to the top. what now? + +i hate being a human. i wish i didn't have the desire to connect. ask for nothing; expect nothing. i am deeply undesirable. i have nothing but myself to blame. i am not enough. i never will be, no matter how much work i put in. + +throughout 24 years of my life, not once did someone knock on my jail cell. "work on yourself!", "they will find you when the moment is right!", "you should be happy alone!". Lies! Lies! Lies! + +i don't believe anyone anymore. there is no reason for me to trust anyone. relationships can end at a moment's notice, on their terms, never on mine. i am sick of living life on permanent vigilance, but i have to protect myself. + +i am sick. i am suffocating in my own thoughts. i don't know what to do. all the work i have done is all undone. \ No newline at end of file diff --git a/src/content/config.ts b/src/content/config.ts index dc37935..20a98a5 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -11,6 +11,7 @@ const blog = defineCollection({ updatedDate: z.coerce.date().optional(), heroImage: z.string().optional(), useKatex: z.boolean().optional(), + hidden: z.boolean().default(false), }), });