Add Coffee Notes collection and page
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
---
|
||||
date: 2026-03-07T21:30:00Z
|
||||
title: Late-night systems
|
||||
draft: false
|
||||
---
|
||||
|
||||
There is a very specific kind of peace in checking on a quiet system late at
|
||||
night and finding that everything is simply humming along.
|
||||
|
||||
No alerts. No drama. Just warm coffee, a few container logs, and the feeling
|
||||
that the machines are behaving themselves for once.
|
||||
@@ -0,0 +1,11 @@
|
||||
---
|
||||
date: 2026-03-05T20:40:00Z
|
||||
title: Learning by breaking
|
||||
draft: false
|
||||
---
|
||||
|
||||
One of the nicest things about a homelab is that it gives you permission to
|
||||
learn by breaking things in a place that still feels like yours.
|
||||
|
||||
Rebuild, retry, take notes, improve the backup story, and understand the system
|
||||
a little better than you did the night before.
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
date: 2026-03-06T23:10:00Z
|
||||
title: Privacy as care
|
||||
draft: false
|
||||
---
|
||||
|
||||
Privacy is often framed like fear, but most of the time I experience it more as
|
||||
care.
|
||||
|
||||
Care for my own data. Care for other people's attention. Care for building
|
||||
systems that do not assume they are entitled to watch everyone who walks
|
||||
through the door.
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
date: 2026-03-07T18:05:00Z
|
||||
title: Small sites still matter
|
||||
draft: false
|
||||
---
|
||||
|
||||
I still think small personal websites matter because they let a person sound
|
||||
like themselves again.
|
||||
|
||||
Not every thought needs to be flattened into a post that fights for reach. Some
|
||||
things are better when they can just quietly exist on a page someone made on
|
||||
purpose.
|
||||
+10
-1
@@ -17,4 +17,13 @@ const blog = defineCollection({
|
||||
}),
|
||||
});
|
||||
|
||||
export const collections = { blog };
|
||||
const coffee = defineCollection({
|
||||
type: "content",
|
||||
schema: z.object({
|
||||
title: z.string().optional(),
|
||||
date: z.coerce.date(),
|
||||
draft: z.boolean().optional().default(false),
|
||||
}),
|
||||
});
|
||||
|
||||
export const collections = { blog, coffee };
|
||||
|
||||
Reference in New Issue
Block a user