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
@msimpson
msimpson / cfire
Created July 21, 2011 10:51
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 = []