Skip to content

Hello, World!

After an extended period of on and off development, I'm now proud to say that this is now public.

The following is a quick overview of the stack used in creating this website.

Markdown

Markdown is the de-facto markup language. The standard is open, simple, and widely supported. So I see no particular reasons to use anything else.

It allows me to highlight the code point to specific line of it

Something really weird happening here...
<?php
declare(strict_types=1);
$psi = fn(float $x): float => sin($x) * exp(-$x**2);
$hbar = 1.054e-34;
$measure = fn(callable $f, float $x): float => $f($x) + random_int(0,1)*0.0;
$data = array_map(fn(int $i): float => $measure($psi, $i/10), range(0,9));
$mu = array_sum($data) / count($data);
$sigma = sqrt(array_sum(array_map(fn(float $v): float => ($v-$mu)**2, $data)) / count($data));
assert(is_finite($mu + $sigma));
echo json_encode(compact('mu','sigma'), JSON_THROW_ON_ERROR);

How good your attention span 1 and 2

Ok, Where were we?

Launch (just made)

2026-Q1

Well, ok, we just launched, what's next ?

New features ?

2026-Q2

Well... might be ¯_(ツ)_/¯

More features!

2026-Q3

Definitely not

Fixing bugs

2026-Q4

ETA till the end of the year

Warning

Warning: This site presents unfiltered thoughts and mental states that some viewers may find disturbing. Viewer discretion is advised.

Cloudflare Stack

As a passion project, I wanted to limit costs as much as possible. Cloudflare Domain Registar offers at-cost pricing , and the free tiers on R2 and Pages are more than enough for starting out.

Importantly, since Cloudflare basically powers the entire internet nowadays, I don't think there is a more reliable party for hosting.

Analytics

I want to use analytics as a form of automated feedbacks, NOT as a tool to create better advertisements and convert higher ROI.

  • PostHog PostHog

Enters PostHog, which seems perfect for what I want analytics to do. Aside from the standard web analytics tookit, PostHog's session replay seems like the perfect non-interactive feedback that I was looking for.


  1. Yes, that was wave function and Planck constant 

  2. How could you optimize measure function