]> git.otsuka.systems Git - cotsuka.github.io/commitdiff
redefine article subcategories
authorCameron Otsuka <cameron@otsuka.haus>
Wed, 15 Apr 2026 22:37:38 +0000 (18:37 -0400)
committerCameron Otsuka <cameron@otsuka.haus>
Wed, 15 Apr 2026 22:37:38 +0000 (18:37 -0400)
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
src/content.config.ts

index a9a9da33a4c955fce7891389af62fca815e4cc59..90252bead9a816cdfbbd5cbf94d76619f59d1808 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: 'Bitcoin Mempools Cleared: Is Nobody Using Bitcoin?'
-type: memo
+type: essay
 date: 2025-02-09
 modified: 2025-10-24
 description: Bitcoin mempools have cleared before and there's no immediate reason to panic.
index 63b6e7e1c96de9fefc75328889fdb6d04952ad5e..61cbf62b0e75f610ae84718828b500d2549c39cd 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: Minimum UTXO Value
-type: memo
+type: note
 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 21bb863a420cdbf21fd13c019fd3458b43d4d728..a726d8d39cd81ada27dbee0334c43c5a5c835fb1 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: Monetary System Enshittification
-type: memo
+type: essay
 date: 2024-03-01
 modified: 2025-01-27
 description: Is the US monetary system experiencing enshittification? And how do we solve it?
index dfdd15588bbc073865654f05bd24634b8ce926ae..0af55f45e3427bc3f19421712238b6436695cdcd 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: 'R1 vs. o1: AI as Commodity or Moat'
-type: memo
+type: essay
 date: 2025-01-27
 modified: 2025-10-24
 description: Is DeepSeek's R1 an existential threat to OpenAI?
index 06dcf72712dbcc9f1e51d46322e7f6136c20488b..3b2abe8d5791d9dfa912998b46db1d2038571879 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(['note', 'memo']),
+    type: z.enum(['note', 'essay']),
   }),
 });