From: Cameron Otsuka Date: Tue, 14 Apr 2026 06:47:49 +0000 (-0700) Subject: rename article categories X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=refs%2Fheads%2Fmain;p=cotsuka.github.io rename article categories --- diff --git a/content/articles/bitcoin-mempools-cleared-is-nobody-using-bitcoin/index.mdx b/content/articles/bitcoin-mempools-cleared-is-nobody-using-bitcoin/index.mdx index c931b5f..a9a9da3 100644 --- a/content/articles/bitcoin-mempools-cleared-is-nobody-using-bitcoin/index.mdx +++ b/content/articles/bitcoin-mempools-cleared-is-nobody-using-bitcoin/index.mdx @@ -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. diff --git a/content/articles/minimum-utxo-value/index.mdx b/content/articles/minimum-utxo-value/index.mdx index 6e679bd..63b6e7e 100644 --- a/content/articles/minimum-utxo-value/index.mdx +++ b/content/articles/minimum-utxo-value/index.mdx @@ -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. diff --git a/content/articles/monetary-system-enshittification/index.mdx b/content/articles/monetary-system-enshittification/index.mdx index c93d303..21bb863 100644 --- a/content/articles/monetary-system-enshittification/index.mdx +++ b/content/articles/monetary-system-enshittification/index.mdx @@ -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? diff --git a/content/articles/r1-vs-o1-ai-as-commodity-or-moat/index.mdx b/content/articles/r1-vs-o1-ai-as-commodity-or-moat/index.mdx index e3086d5..dfdd155 100644 --- a/content/articles/r1-vs-o1-ai-as-commodity-or-moat/index.mdx +++ b/content/articles/r1-vs-o1-ai-as-commodity-or-moat/index.mdx @@ -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? diff --git a/content/articles/removing-a-drive-from-a-btrfs-array.mdx b/content/articles/removing-a-drive-from-a-btrfs-array.mdx index c5c765f..74eb348 100644 --- a/content/articles/removing-a-drive-from-a-btrfs-array.mdx +++ b/content/articles/removing-a-drive-from-a-btrfs-array.mdx @@ -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. diff --git a/src/content.config.ts b/src/content.config.ts index f0a9f88..06dcf72 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -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']), }), });