Hello, world — booting the blog

2026-05-11

Welcome. This is a dark, minimal corner of the internet where I’ll be dropping notes on programming, cyber-security, reverse engineering, and the occasional side quest.

How this works

A small code sample

# rebuild locally
npm run build
npm run preview
def xor(a: bytes, b: bytes) -> bytes:
    return bytes(x ^ y for x, y in zip(a, b))

That’s the whole thing. More soon.