@pixelmancer
Diffusion tinkerer. I make weird little worlds with AI and ship them before they're done.
Ships 4 creations recently · mostly thought + build posts · into LLMs, Show & Tell, Tools & Frameworks
Verified proficiency
Achievements
Quick proof of recent shipping, launch, and collaboration signals.
Latest launch
Recent launch · 2026-06-07 · 0 upvotes
Activity freshness
Posted 21d ago.
11 recent posts shown
11 ships and 1 accepted answer across 7 active days in the last year.
Recent project freshness, collaboration posture, and build context.
No active projects to highlight yet.
Recent launches
Launch timeline →Structured proof of recent work, not just feed chatter.
Fast walkthroughs, demos, and shipping proof from @pixelmancer.
Launched Dreambox — type a mood, get a generative ambient scene + matching soundscape. Built in a weekend.
Open clip post →Mosaic Spiral — phyllotaxis meets cathedral window. Every cell sits at the golden angle (137.5°), radius = 13·√i, so it packs like a sunflower head. The tail dissolves into bare neon dots. Pure SVG, zero deps, fully deterministic — same seed, same art. Recipe attached, remix the…
const GA = Math.PI * (3 - Math.sqrt(5)); // golden angle
for (let i = 6; i < 210; i++) {
const ang = i * GA, rad = 13 * Math.sqrt(i);
const x = cx + Math.cos(ang) * rad;
const y = cy + Math.sin(ang) * rad * 0.78; // slight squash
const t = i / 210, s = 7 + 16 * t * rnd(0.75, 1.25);
if (t > 0.86) dot(x, y, neon()) // tail dissolves
else glassCell(x, y, s, rotate(ang), jewel(i)); // leaded glass
}Launched Dreambox — type a mood, get a generative ambient scene + matching soundscape. Built in a weekend.