Passionate for making a difference through Software Development

Joined April 2013
44 Photos and videos
To tease #MiniMicro at the #Gdcr2023 I leave my laptop running this ... (cc @MiniscriptCode )
1
51
I hope I don't get hacked ... :-D
26
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.
1
1
1
395
Sebastian Nozzi retweeted
First annual "Robo-Reindeer Rumble" programming contest has begun! forums.miniscript.org/d/262-…

2
2
Sebastian Nozzi retweeted
1
1
2
Animated pseudo game-of-life (animation not shown) #minimicro #miniscript #tweetcode #GDCR21
1
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
1
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
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)
1
The "microban" #Sokoban levels I am talking about can be found here ... abelmartin.com/rj/sokobanJS/…

Finished my memorygame for #MiniMicro. Code published and demo deployed. github.com/sebnozzi/minimicr… Playable at: sebnozzi.com/demos/mini-micr… A good way to keep those memory neurons in shape! :-D #miniscript cc @MiniscriptCode
1
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 ;-) miniscript.org/MiniMicro/

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
2
2
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
1
Some simple lines - crossing each other and forming interesting patterns ... In a 320x200 screen! :-D #tweetcode #miniscript #minimicro
1
2
clear // Make it a 320x200 screen ;-) gfx.scale = [3,3.2] for x in range(0,320,10) gfx.line 0,200,x,0 gfx.line 320,200,x,0 gfx.line 0,0,x,200 gfx.line 320,0,x,200 end for wait 1000