Experiments
A sandbox for interactive 3D math, visual illusions, and rendering experiments built with React Three Fiber.
Non-Euclidean Corridor
An impossible, infinite looping hallway built using shader-based global clipping planes, seamless treadmill mechanics, and physically correct lighting.
WebGLShaders
Fractal Explorer
GPU-accelerated Mandelbrot set rendered entirely in a GLSL fragment shader with smooth escape-time coloring, 4x RGSS anti-aliasing, zoom, and pan.
GLSLFractals
z1 = dot(W1, x) + b1
a1 = relu(z1)
z2 = dot(W2, a1) + b2
a2 = softmax(z2)
loss = -log(a2[target])
MLP
Micro-Neural Network
An interactive, fully client-side Multi-Layer Perceptron built from scratch. Watch the network connections adapt and shift in real-time as it learns a text corpus.
Machine LearningTypeScript
Equation Evolver
Paste raw data and watch a genetic algorithm physically evolve the mathematical equation that fits it. See equations mutate, crossover, and converge in real-time.
Genetic AlgorithmSymbolic Regression