cd ../blog

Hello World: The System Begins

April 3, 2026
systemintro

Introduction

This marks the beginning of the research notebook system.

The design is minimal, using strict structural principles to preserve knowledge.

Core Features

  1. Lightning fast search and navigation.
  2. Content strictly governed by MDX schema.
  3. Typography fine-tuned for reading on all devices.

Maths Example

Here's an inline math equation: i=0ni2=(n2+n)(2n+1)6\sum_{i=0}^n i^2 = \frac{(n^2+n)(2n+1)}{6}.

And block math:

0ex2dx=π2\int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2}

Code Example

def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)