Hello, World

Introducing Alkemical Development — what we are building and why.

meta

Welcome to the Alkemical Development blog.

We’re an open source software research lab exploring the boundaries of computation. This blog is where we’ll share our work — deep dives into algorithms, systems architecture, and the mathematics that connects them.

What to expect

Posts here will cover:

  • Research notes — explorations of ideas in progress
  • Project updates — what we’re building and why
  • Technical deep dives — the interesting problems we encounter

A quick math test

The Euler identity, rendered with KaTeX:

eiπ+1=0e^{i\pi} + 1 = 0

And some code

function isPrime(n: number): boolean {
if (n < 2) return false
for (let i = 2; i * i <= n; i++) {
if (n % i === 0) return false
}
return true
}

Stay tuned.