Using Opus 5.5 (Extra), the author built a single HTML file that implements a deep-zoom Mandelbrot explorer and Conway's Game of Life, capable of diving to 10^300 with high-precision math and WebGL2 optimizations.
The 2-minute demo is attached. It starts at the whole set, dives to 10^300 on a spiral, zooms in on various fractals, then turns the fractal into Conway's Game of Life. How it came together It started with research, not code. I dug through how the best open-source deep-zoom explorers solve the core problem: normal floating point falls apart around 10^15 zoom. Most of the strongest projects land on the same answer. Compute one reference orbit in arbitrary precision, then have the GPU track each pixel's tiny offset from it. I built on that, plus a couple of newer techniques from the fractal community for avoiding glitches and skipping thousands of iterations at a time. The build is a single file with no libraries, running on WebGL2. The high-precision math runs in a background worker so the UI never freezes. Everything else happens on the GPU. Color is computed separately from the math, so palettes, lighting and color cycling change instantly without re-rendering. Then came verification, which was the part I cared most about. I compared the output against independent high-precision renders at 10^11, 10^31 and 10^300. Agreement on what's inside versus outside the set came in at 99.7–100%, and side-by-side images were indistinguishable. Fun finding: the few "wrong" pixels weren't bugs. In those regions the true answer changes by dozens of iterations if you move a hundred-thousandth of a pixel. Optimization came next, profile first and then fix. The changes that made the biggest difference: skipping regions provably inside the set sizing GPU work to real measured timings snapping the reference point onto nearby mini-Mandelbrots, so its orbit only needs one cycle a progressive half-res pass that never computes a pixel twice Overall it's about 2.4× faster than the first working version, and up to 5.5× on interior-heavy views, with no loss in image quality. One of my "optimizations" actually made things 3× slower. Benchmarking caught it before it shipped. The last stretch was polish: autopilot that steers itself toward detail, hand-tuned palettes, relief lighting, and the Game of Life mode. What's next: getting this to scale. A website so you can try this yourself (I could use some help on this)! More on that soon. Try with the Claude link: https://claude.ai/artifact/65DhaH5Kice4D2A6EMeCoC
Opus 5.5 showcases impressive capabilities in generating complex Web 3D code, enabling interactive demos with advanced features like dynamic lighting and physics, indicating a significant shift in software development paradigms.
Opus 5.5, an AI model, has advanced to generate realistic 3D worlds in a single HTML file with just a prompt, marking significant progress in AI capabilities.
An experiment comparing the qwen3.8:27b model with Claude Opus 5 on a complex code porting task from C to HTML/three.js, highlighting that local models struggle with long contexts and require effective prompting to avoid poor results.
This article compares the game generation capabilities of AI models Opus 4.6 and Opus 5.5 by having them create a complete Wolfenstein 3D-style game in a single HTML file, highlighting advancements in AI code generation over recent months.