-
Random DFS (Depth First Search)
#pico8#tweetcart (code in thread, add FLIP() before last END to watch it working; very mesmerizing) pic.twitter.com/ooC4KglhX4
এই থ্রেডটি দেখান -
I present the Jackson Pollock simulator
#pico8#tweetcart#tweetjam 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 kpic.twitter.com/BXJfvBCg9Z -
-- Voronoi Diagrams
#pico8#tweetcart 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,#p 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 endpic.twitter.com/V1U72YAfbf
-
-- Fireball
#pico8#tweetcart 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 _ pic.twitter.com/4uzJfMDR9k -
-- Saṃsāra
#pico8#tweetcart 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 ✽ pic.twitter.com/hhxeawD5mjএই থ্রেডটি দেখান -
#pico8#tweetcart#tweetjam 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 endpic.twitter.com/ySo0kedxJIএই থ্রেডটি দেখান -
-- Mandala
#pico8#tweetcart 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 _ pic.twitter.com/Ci8jpGHqNz -
-
If you take the vowels out of the string it fits so I'm counting it as a
#tweetcart pic.twitter.com/Z963e7SVWCএই থ্রেডটি দেখান -
-- Random Bubble Sort
#pico8#tweetcart#sorting 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 _pic.twitter.com/O6MmCmPifZ -
What about a little DRAGON BALL

#demoscene effect for#pico8 in 279 bytes#tweetcart#tweetjam ? Hope you like it

pic.twitter.com/AczGAwdRIjএই থ্রেডটি দেখান -
--
#pico8#tweetjam#tweetcart 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
pic.twitter.com/KhE5zaUd13 -
--
#pico8#tweetjam#tweetcart 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 _ pic.twitter.com/AvRNR69UgRএই থ্রেডটি দেখান -
#pico8#tweetcart#tweetjam 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 _pic.twitter.com/lF828whW5t -
3D HELIX
#pico8#demoscene effect in 275 bytes#tweetcart#tweetjam 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 ^____^pic.twitter.com/CHYoNrLR89এই থ্রেডটি দেখান -
-
--spiralwhirl --
#pico8#tweetcart#tweetjam 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 _pic.twitter.com/2Lna5Z98cN -
--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 _ --
#tweetcart@lexaloffle@TRASEVOL_DOG@blokatt#pico8pic.twitter.com/PK7KFGRfPx -
Could this be the world's first
#PointAndClick (+ Room Escape)#TweetCart? ¯\_(ツ)_/¯ (Couldn't resist - Code in reply)#Pico8#TweetJampic.twitter.com/YYN71zWmOgএই থ্রেডটি দেখান -
-- spiralistic rainbow flag --
#pico8#tweetcart#tweetjam ::_:: 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 _pic.twitter.com/s0FgQ18ADS
লোড হতে বেশ কিছুক্ষণ সময় নিচ্ছে।
টুইটার তার ক্ষমতার বাইরে চলে গেছে বা কোনো সাময়িক সমস্যার সম্মুখীন হয়েছে আবার চেষ্টা করুন বা আরও তথ্যের জন্য টুইটারের স্থিতি দেখুন।