]> git.otsuka.systems Git - cotsuka.github.io/commitdiff
rename article categories main
authorCameron Otsuka <cameron@otsuka.haus>
Tue, 14 Apr 2026 06:47:49 +0000 (23:47 -0700)
committerCameron Otsuka <cameron@otsuka.haus>
Tue, 14 Apr 2026 06:47:49 +0000 (23:47 -0700)
content/articles/bitcoin-mempools-cleared-is-nobody-using-bitcoin/index.mdx
content/articles/minimum-utxo-value/index.mdx
content/articles/monetary-system-enshittification/index.mdx
content/articles/r1-vs-o1-ai-as-commodity-or-moat/index.mdx
content/articles/removing-a-drive-from-a-btrfs-array.mdx
src/content.config.ts

index c931b5f6b6e8c1af83f1c925963756ded4f957b1..a9a9da33a4c955fce7891389af62fca815e4cc59 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: 'Bitcoin Mempools Cleared: Is Nobody Using Bitcoin?'
-type: missive
+type: memo
 date: 2025-02-09
 modified: 2025-10-24
 description: Bitcoin mempools have cleared before and there's no immediate reason to panic.
index 6e679bdd789f5e419ef8619e2fc0847479e68dfd..63b6e7e1c96de9fefc75328889fdb6d04952ad5e 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: Minimum UTXO Value
-type: missive
+type: memo
 date: 2023-08-04
 modified: 2025-02-07
 description: A look at what Bitcoin dust is, historical fee rates, how fees are calculated, and a decision on a minimum UTXO value to stay above the dust threshold.
index c93d303c44844797d1414495b583c4e01c3eaf18..21bb863a420cdbf21fd13c019fd3458b43d4d728 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: Monetary System Enshittification
-type: missive
+type: memo
 date: 2024-03-01
 modified: 2025-01-27
 description: Is the US monetary system experiencing enshittification? And how do we solve it?
index e3086d5a8935206684d70f0b835c19597cc2cdff..dfdd15588bbc073865654f05bd24634b8ce926ae 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: 'R1 vs. o1: AI as Commodity or Moat'
-type: missive
+type: memo
 date: 2025-01-27
 modified: 2025-10-24
 description: Is DeepSeek's R1 an existential threat to OpenAI?
index c5c765f0ec34ddecb9a71bd7f4bf05342865cc9b..74eb3481d21259cbe283034d75a3c2167c70f61a 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: 'Removing a Drive from a Btrfs Array'
-type: marginalia
+type: note
 date: 2023-07-05
 modified: 2024-12-23
 description: If a drive is failing in an array, Btrfs could block attempts at removing the drive due to corrupted files. A quick write-up of how to get it removed.
index f0a9f88e3830a2de912e9a87d3b6be559f98cf71..06dcf72712dbcc9f1e51d46322e7f6136c20488b 100644 (file)
@@ -14,7 +14,7 @@ const baseSchema = z.object({
 const articles = defineCollection({
   loader: glob({ pattern: '**/*.{md,mdx}', base: 'content/articles' }),
   schema: baseSchema.extend({
-    type: z.enum(['marginalia', 'missive']),
+    type: z.enum(['note', 'memo']),
   }),
 });