memoscan
← all memos

Memo 0xb1944f85…15455a on Ethereum

let F=['serif','sans-serif','monospace','cursive','fantasy'],C=[];function setup(){createCanvas(500,500);textAlign(CENTER,CENTER);textFont(random(F));noStroke();C=Array.from({length:420},(_,i)=>({x:i*73%540-20,y:floor(i*73/540)*21+10,s:constrain(random(13,56),13,56),c:random(55,255),d:i*1.4}));}function draw(){background(0);C.filter(p=>frameCount>p.d).map(p=>{let t=min((frameCount-p.d)/12,1),z=sin(t*HALF_PI)*1.25-t*.25;fill(p.c);textSize(p.s*z);text('residual',p.x,p.y)})}