Skip to content

Instantly share code, notes, and snippets.

@owenmax6
owenmax6 / sandbox.py
Last active October 23, 2025 13:51
sandbox
from math import *
from kandinsky import *
from ion import *
from time import *
palette = [
(96,181,97),
(70,166,71),
(51,150,51),
(27,94,32), # 0-3 Greens
@owenmax6
owenmax6 / conways.py
Last active October 19, 2025 19:12
game-of-life
from math import *
from kandinsky import *
from random import *
from ion import *
from time import *
from random import *
BLACK = (0,0,0)
GREY = (80,80,80)
WHITE = (255,255,255)
@owenmax6
owenmax6 / snake.py
Last active October 19, 2025 02:27
snake
from math import *
from kandinsky import *
from random import *
from ion import *
from time import *
from random import *
scale = 10
x_limit = 32
y_limit = 22