RSSAmplifier

Blog

(untitled)

/RSS feed ↗3 posts

Latest posts

Chladni Figures

--> Hint: Load this page in a WebGPU-supported browser to control a live simulation! import init from '/posts/chladni/chladni.js' async function isWebgpuSupported() { if (!navigator.gpu) { return false; } try { const adapter = await navigator.gpu.requestAdapter(); return adapter !== null; } catch (err) { return false; } } isWebgpuSupported().then((supported) => { if…

S P E E E D

import init from '/games/speeed/speeed.js' let btn = document.getElementById("start-game-btn"); btn.addEventListener("click", () => { init() }) Controls Move - Left/Right arrows Jump - Space Slam - Down arrow Hint: You can rebind the keys!

Floral Maze

import init from '/gallery/floral/floral.js' init() Hint: Refresh the page for more patterns! This is a fun generative art piece I made inspired by plant growth and the emerging patterns in nature that arise from simple rules. The working principle is based on agents traversing a square grid, leaving a trail as they move. There are different types of agents, each with…