Hello World

January 11, 2026 · meta test

Hello World

Welcome to my new blog! This post demonstrates the features available for writing.

Math Support

You can write inline math like $E = mc^2$ or $\sum_{i=1}^{n} x_i$.

Display equations work too:

\[\nabla \cdot \mathbf{E} = \frac{\rho}{\epsilon_0}\]

Here’s the quadratic formula:

\[x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}\]

Code Blocks

Python code with syntax highlighting:

import numpy as np

def gaussian(x, mu=0, sigma=1):
    """Compute the Gaussian/Normal distribution."""
    return (1 / (sigma * np.sqrt(2 * np.pi))) * \
           np.exp(-0.5 * ((x - mu) / sigma) ** 2)

Lists and Formatting

  • Bold text for emphasis
  • Italic text for subtle emphasis
  • inline code for technical terms
  1. First item
  2. Second item
  3. Third item

Blockquotes

The best way to predict the future is to invent it. — Alan Kay


That’s it for now. More posts coming soon!