Skip to content

Instantly share code, notes, and snippets.

View fluxiums's full-sized avatar

fluxium fluxiums

  • Tezcorp Industries
  • San Francisco Bay Area
View GitHub Profile
@fluxiums
fluxiums / cfire
Created December 7, 2020 18:22 — 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 = []