Welcome to the site! This is the first post, and it’s a good place to introduce what you’ll find here.

Getting Started

This site is built with Hugo and the PaperMod theme. Plots are rendered with Vega-Lite.

Line Chart

A random walk over 20 steps.

Bar Chart

Comparing values across categories.

Scatter Plot

Two groups with a linear trend.

A Code Snippet

Because every good blog deserves at least one code snippet:

def greet(name: str) -> str:
    return f"Hello, {name}!"

print(greet("world"))

That’s it for now. More to come.