Skip to content

Instantly share code, notes, and snippets.

View poetaman's full-sized avatar
🍊
vitamin C(ode)

poetaman

🍊
vitamin C(ode)
View GitHub Profile
@poetaman
poetaman / cfire
Created March 18, 2022 18:28 — forked from msimpson/cfire
Curses based ASCII art fire animation.
#!/usr/bin/python
import curses, random
screen = curses.initscr()
width = screen.getmaxyx()[1]
height = screen.getmaxyx()[0]
size = width*height
char = [" ", ".", ":", "^", "*", "x", "s", "S", "#", "$"]
b = []