/* ============================================================================ Home — landing, with 3 switchable hero directions ========================================================================== */ function RegMark() { return (
50.4°N
); } function HeroA({ go, showPattern = true }) { return (
{showPattern &&
}
Writing · Projects · Ideas

Think clearly. Build deliberately.

A public notebook on science, philosophy, history, and the technology between them — written so you leave with something you can actually use.

go("writing")}>Read the latest
); } function HomePage({ go, openPost, tweaks = {} }) { return (
{/* Latest writing */}
Writing

Latest essays & notes

go("writing")}>All writing
{POSTS.slice(0, 3).map((p) => )}
{/* Selected projects */}
Projects

Selected work

go("projects")}>All projects
{PROJECTS.slice(0, 2).map((p) => )}
); } Object.assign(window, { HomePage, HeroA });