Hello world!

Published: 12/31/2024

This is my first blogpost! What else there to do but test out all the nifty features I’ve just spent the last few hours configuring.

My favorite thing is how code blocks look, courtesy of Expressive Code:

breadth_first_search.py
@dataclass
class Node:
2 collapsed lines
value: any
children: dict[str, "Node"]
def bfs(start: Node):
q = deque([start])
while q:
cur = q.popleft()
print(cur.value)
q.extend(cur.children.values())

Here’s a block quote

And I think I should even be able to use some mdx to define a list easily:

  1. foo
  2. bar
  3. baz

H1

H2

H3

H4

H5
H6

Does

m=athm=a^{th}

work? Can I do inlinemathinline math? Noice.