At the #Gdcr2023. This year I offering to do sessions in @MiniscriptCode. So far 2 successful sessions! A third one already booked. People get miniScript instantly, development is super fast and we focus on the problem.
import "tc"
clr;fcirc 9,9,9,pal[-1];m=g.getImage(0,0,40,20);clr pal[0]
display(6).mode=displayMode.tile;t=display(6)
t.tileSet=m;t.tileSetTileSize=20;t.extent=[16,10]
while 1;for y in oneTo(31);for x in oneTo(46);i=floor(rnd*2);
t.setCell x,y,i;end for;end for;wait.5;end while
import "tc"
while 1
clr"#E4D19B"
for y in range(0,32)
for x in range(0,47)
if floor(rnd*2) then fcirc 10+x*20,10+y*20,10,pal[-1]
end for
end for
wait.5
end while
I'm really enjoying the "miniban" #sokoban levels ... often more challenging than the original ones if you ask me!
(coded on the #MiniMicro in @MiniscriptCode)
Mac users might want to plug an external display to play on the web ... or better yet, download #MiniMicro and try out the code locally ;-)
https://t.co/k64yeJoZZP
Finished my memorygame for #MiniMicro.
Code published and demo deployed.
https://t.co/Fh17WDxV9g
Playable at:
https://t.co/k0wKQ0MzNI
A good way to keep those memory neurons in shape! :-D
#miniscript cc @MiniscriptCode
clear
margin=60
size=90
// Make it a 320x200 screen ;-)
gfx.scale = [3,3.2]
for x in range(margin,320-margin,10)
gfx.drawEllipse x-size/2,100-size/2,size,size
end for
Another "blast from the past".
I used to type this on a Commodore 128's BASIC at the age of around 10.
Today: ported to the #MiniMicro#miniscript#tweetcode