Skip to content

Instantly share code, notes, and snippets.

@owenmax6
owenmax6 / sandbox.py
Last active October 22, 2025 13:50
sandbox
from math import *
from kandinsky import *
from ion import *
from time import *
#pixilart.com: a5d6a7,66bb6a,388e3c,1b5e20,90caf9,42a5f5,1976d2,0d47a1,ffdbac,f1c27d,e0ac69,c68642,ffd180,ffab40,ff9100,ff6d00,a1887f,8d6e63,6d4c41,5d4037,b0bec5,78909c,455a64,263238,ffea00,d500f9,b388ff,e53935
palette = [
(96,181,97),
(70,166,71),
(51,150,51),
@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