Skip to content

Instantly share code, notes, and snippets.

@jvcleave
jvcleave / openframeworks jetson nano.txt
Last active March 1, 2023 10:10
openframeworks jetson nano instructions
Nightly required - get link from the bottom of this page (e.g. https://openframeworks.cc/ci_server/versions/nightly/of_v20190324_linuxarmv7l_nightly.tar.gz)
https://openframeworks.cc/download/
Download OF and unpack:
wget https://openframeworks.cc/ci_server/versions/nightly/of_v20190324_linuxarmv7l_nightly.tar.gz
tar -zxvf of_v20190324_linuxarmv7l_nightly.tar.gz
mv of_v20190324_linuxarmv7l_nightly openFrameworks
@kylemcdonald
kylemcdonald / CONSTELLATION.BAS
Last active December 20, 2018 12:32
Some of the first generative code I ever wrote, for QBASIC. Written some time between 1997-2003.
DECLARE SUB redrawLine (n%)
DECLARE SUB drawDots (ntot%)
DECLARE SUB drawLines (ntot%)
CLS
SCREEN 12 '7 is white, 8 is gray, screen 7 is 320x200, screen 9 is 640x350, screen 12 is 640x480
ntot% = 55
DIM SHARED m(ntot%, 3) 'm(numberDot, [x, y, connected Dot, distance])
DIM SHARED bound(1)
bound(0) = 640