অনুসন্ধান ফলাফল
  1. ১৭ জুলাই

    Random DFS (Depth First Search) (code in thread, add FLIP() before last END to watch it working; very mesmerizing)

    এই থ্রেডটি দেখান
  2. ১৬ জুলাই

    I present the Jackson Pollock simulator cls(7) j=1 ::s:: t=0 x={0xcc33,1,0x3c00,0x8c63} k=rnd(32) if (j>=4) j=1 else j+=1 for l=1,rnd(3) do fillp(x[j]) circ(rnd(128),rnd(128), rnd(128),rnd(128),k)end ::k:: t+=0.8 flip() if (t>1) goto s goto k

  3. ১৬ জুলাই

    -- Voronoi Diagrams p={} for i=0,100 do p[i]={rnd(128),rnd(128)} end for x=0,127 do for y=0,127 do c=0 d=32767 for i=0, do n=(x-p[i][1])^2+(y-p[i][2])^2 if n<d then c=i d=n end end pset(x,y,c%10+6) end end

  4. ১৬ জুলাই

    -- Fireball function fb(x,y) local r=50+25*sin(t()/5) local x0=64+r*cos(t()/2) local y0=64+r*sin(t()/2) local d=(x-x0)^2+(y-y0)^2 if d<10^2 then return 8 elseif d<15^2 then return 9 else return 0 end end ::_:: x=rnd(128) y=rnd(128) pset(x,y,fb(x,y)) goto _

  5. ১৬ জুলাই

    -- Saṃsāra w=3 cls() function r_s() return flr(rnd(w))-flr(w/2) end for x=0,127 do for y=0,127 do pset(x,y,rnd(16)) end end ::✽:: x=rnd(128) y=rnd(128) c=0 for i=1,4 do c+=pget(x+r_s(),y+r_s())+rnd(2) end c/=4 pset(x,y,c) goto ✽

    এই থ্রেডটি দেখান
  6. ১৫ জুলাই

    With some maths it could be prettier, but I made something and I don't see anyone else using fillp (lemme know if you have) cls() ::s:: t=0 k=rnd(2^15) fillp(k) rectfill(0,0,127,127,k) ::k:: t+=0.2 flip() if t>1 then goto s else goto k end

    এই থ্রেডটি দেখান
  7. ১৫ জুলাই

    -- Mandala z,w=circfill,64 ::_:: cls() for k=15,1,-1 do r0=k*10 r1=r0+10 c=16-k z(w,w,r1,c) n=3+11*k for i=0,n do a=t()/(1+2*k) line(w+r0*cos(a+i/n),w+r0*sin(a+i/n),w+r1*cos(a+i/n),w+r1*sin(a+i/n),c-1) end end z(w,w,10,7) z(w,w,5,2) z(w,w,3,0) flip() goto _

  8. ১৩ জুলাই

    Connections (code in thread)

    এই থ্রেডটি দেখান
  9. ১৩ জুলাই

    If you take the vowels out of the string it fits so I'm counting it as a

    এই থ্রেডটি দেখান
  10. ১১ জুলাই

    -- Random Bubble Sort for x=0,127 do for y=0,127 do pset(x,y,rnd(16)) end end ::_:: x=rnd(128) y=rnd(128) if rnd()<0.5 then x1=x+1 y1=y else x1=x y1=y+1 end c1=pget(x,y) c2=pget(x1,y1) if c1<c2 then c=c1 pset(x,y,c2) pset(x1,y1,c) end goto _

  11. ১০ জুলাই

    What about a little DRAGON BALL 🌟🏐 effect for in 279 bytes ? Hope you like it 🐉♥♻️

    এই থ্রেডটি দেখান
  12. ৯ জুলাই

    -- t,h=0,127::🐱::cls()t+=.01 for i=0,h,4 do for j=0,h,4 do d=i/h+t e=j/h+t a=sin(sin(i/h)/2+cos(j/h)/2+t)*2 rectfill(i,j,i+a*8,j+a*8, 11.5+a/2) end end flip()goto 🐱

  13. ৯ জুলাই

    -- t=0;h=127::_::cls()t+=.01 rectfill(0,0,64,127,12) srand(flr(t)) for i=0,h do x=rnd(h)y=rnd(h)a,b=0,1 if(x>64)a,b=12,-1 circ(x,(y+t*b*rnd(h))%h,rnd(8)+sin(t),a) end flip()goto _

    এই থ্রেডটি দেখান
  14. ২৭ জুন

    cls()s,c,t=sin,cos,0::_::t+=.01 for y=0,63 do for x=0,63 do m=(s(x/63-t)*s(y/31+t)) p=x/32+m q=y/32+m poke(24576+x+y*128,c(p%16)*2-c(q%16)+16) end end flip()goto _

  15. ২০ জুন

    3D HELIX 💫 effect in 275 bytes Hope you like it. It was really fun to tweak and go from first version over 400 bytes without extrusion to 275 with vertical tilt and extrusion. ♻️❤️ to share the love ^____^

    এই থ্রেডটি দেখান
  16. ১২ জুন
    এই থ্রেডটি দেখান
  17. ৬ জুন

    --spiralwhirl -- t=0 w=cos z=sin ::_:: cls()t=t+.01 v=w(t/8)e=40*v*w(t)d=40*v*z(t) for b=0,1,.001 do l=60*b m=l/2-t/2 k=l*z(m)j=l*w(m)o,p=k+e,j+d r=sqrt(o*o+p*p)/60 s=z(r*v-t+3*atan2(o/50,p/50)) circ(64+k-4*s*r,64+j-5*s*r,2+2*s,8+l/4%7) end flip()goto _

  18. ৬ জুন

    --This is fun! u=0 ::_:: cls(1)x=0y=0 e=0.6*cos(u) for t=0,10,0.005 do x+=0.75*cos(e*t*sin(t)+(1-e)*t*cos(t)) y+=0.75*sin(e*t*sin(t)+(1-e)*t*cos(t)) pset(32+x+0.5*y,72+y-0.5*x,(t*20)%8+7) end u+=0.005 flip() goto _ --

  19. ৪ জুন

    Could this be the world's first (+ Room Escape) ? ¯\_(ツ)_/¯ (Couldn't resist - Code in reply)

    এই থ্রেডটি দেখান
  20. ১ জুন

    -- spiralistic rainbow flag -- ::_:: cls() for i=6,122,4 do for j=6,122,4 do n=64-i+24*cos(t()/4) m=64-j+24*sin(t()/4) r=sqrt(n*n+m*m)/64 a=atan2(n,m) x=i+4*r*cos(r-a*7-t()*2) y=j+4*r*sin(r-a*7-t()*2) circ(x,y,1,7+5*r) end end flip() goto _

লোড হতে বেশ কিছুক্ষণ সময় নিচ্ছে।

টুইটার তার ক্ষমতার বাইরে চলে গেছে বা কোনো সাময়িক সমস্যার সম্মুখীন হয়েছে আবার চেষ্টা করুন বা আরও তথ্যের জন্য টুইটারের স্থিতি দেখুন।