creating wiki pages

published: August 1, 2025updated: August 24, 2026โ€ข
on this page

This guide explains how to create new wiki pages for this site.

Quick Start

  1. Create a new .md file in src/content/wiki/
  2. Add the required frontmatter
  3. Write your content
  4. Link to related pages

Required Frontmatter

Every wiki page needs this frontmatter:

wiki-page.mdyaml
---
title: 'Your Page Title'
description: 'Brief description of the page'
category: 'Infrastructure' # see the category list below
publishDate: 2025-08-01
updatedDate: 2026-08-24
tags: ['relevant', 'tags']
relatedPages: ['path/to/other-page']
---

File Naming

  • Use lowercase with hyphens: my-new-page.md
  • Keep names short but descriptive
  • The filename becomes the URL slug

Categories

Choose from:

  • Infrastructure - Data center power, cooling, siting, and grid topics
  • InfoSec - Vulnerability research, CVE write-ups, and security analysis
  • Security - Broader security topics and advisories
  • Data Centers - Projects, entities, geography, and market analysis
  • Programming - Languages, libraries, and tooling notes
  • Reasoning - Logic, fallacies, and argument analysis
  • Legal / Legal Tech - Law, legal practice, and legal AI
  • AI / Models / AI & Society - Model notes, evaluations, and societal impact
  • News - Dated event coverage and rolling logs
  • Meta - Documentation about the site itself
  • Networking, Outdoors, Maker, Tools, Sloppyright - Smaller topic areas

Linking Pages

  • Use relatedPages in frontmatter to connect topics
  • Reference other pages with standard markdown links: [text](/wiki/page-slug)

Best Practices

  • Keep pages focused on one topic
  • Use clear, descriptive titles
  • Include relevant tags for search
  • Link to related content
  • Update the updatedDate when editing
on this page