101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

521
active users

#genuary12

0 posts0 participants0 posts today

#genuary2025 #genuary #genuary12 #genuary14: only black and white, subdivision. Combining the two prompts. Not in love with this, but can't tweak all day. Variation on the Koch curve.

Yes, I know it's February 1, and the world is on fire.

Edit 1: Not Sierpienski triangle! Edit 2: Here's the code: web.ludus.dev/?code=let+side_l

#genuary11 prompt: Impossible day.
#genuary12 prompt: Subdivision.

I combined the prompts since what I wanted to do for ages now is frequency-aware realtime audio visualization. This is the result. Makes most sense with the volume up.

As you can confirm in the source code, the lighting action is all driven by the music.

Made with #PyScript:
ambv.pyscriptapps.com/genuary-

Replied in thread

demo-style metaballs, but they're inexpertly sizecoded using p5.js #genuary14 with added #genuary12

t=0;s=120;w=240
setup=()=>{createCanvas(240,136);loadPixels();frameRate(60);}
draw=()=>{
t+=.05;
for (i=0; i<4*w*136; i+=4) {
y=i/4/w;
x=(i/4)%w;
pixels[i+1]=255;
pixels[i+3]=(s/dist(s+sin(t)*30,60,x,y)+s/dist(s+cos(t)*60,76,x,y))*16;
}updatePixels();}