Skip to content

Instantly share code, notes, and snippets.

@Kethku
Last active March 9, 2019 04:34
Show Gist options
  • Save Kethku/8872a3fc35fe50ca7916f13a31b2cb1f to your computer and use it in GitHub Desktop.
Save Kethku/8872a3fc35fe50ca7916f13a31b2cb1f to your computer and use it in GitHub Desktop.
SCRIPT-8
// title: Old Boot Glitch
let counter = 0;
draw = () => {
counter++
for (let x = 0; x < 128; x++) {
for (let y = 0; y < 128; y++) {
setPixel(x, y, x + (y * counter) / 100);
}
}
}
{
"lines": [
11,
0,
0,
0,
0,
0,
0,
0
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment