Skip to content

Instantly share code, notes, and snippets.

View livinbits's full-sized avatar

Antonio Belluscio livinbits

View GitHub Profile
I am attesting that this GitHub handle livinbits is linked to the Tezos account tz1PAoZ7RxQrvvC2ceyVR7YGKFmgyLxs1ZEH for tzprofiles
sig:edsigttjq8SVzYDRnz55LU9uJ7PufegjuSeBkVC8hT5ceCtP946izHfpLFaRLGq5UrjmGJUFbPBm6zPYrQz9aSFFFusUQJ5cpqv
@livinbits
livinbits / _info.md
Last active July 7, 2021 07:07
"Bresenham's dreams" - A generative work of ca. 1986

Bresenham's dreams

More info: https://livinbits.com/bresenhams-dreams/

INSTRUCTION

  1. open on MSXPen
  2. show in fullscreen
  3. wait for the program to load and run (*)

(*) the execution can be accelerated by pressing Shift+Alt+Up several times.

@livinbits
livinbits / draw.js
Created May 3, 2019 05:00
Embedding test
function draw() {
circle( mouseX, mouseY, 3 );
}
@livinbits
livinbits / _info.md
Last active January 6, 2021 01:31
"Linea modulata B" (modulated line B) - A generative work of ca. 1987

INSTRUCTION

  1. open on MSXPen
  2. show in fullscreen
  3. wait patiently the completion of circle(*)
  4. press any key when you want to reset the line

(*) the execution can be accelerated by holding down the F12 key.

The work was created with a Philips VG-8235 ("MSX2 Europe" on the emulator).

@livinbits
livinbits / autoexec.bas
Last active March 10, 2017 07:17
Notes by increment and modulo operations, 1987 (maybe)
10 PLAY "t140l32v15"
20 K=K+1.1 :IF K>95 THEN K=K-96
30 NT=NT+K :IF NT>95 THEN NT=NT-96
40 PLAY "n=nt;"
50 GOTO 20