Skip to content

Instantly share code, notes, and snippets.

==========================
How Software Companies Die
==========================
- Orson Scott Card
The environment that nurtures creative programmers kills management and
marketing types - and vice versa.
Programming is the Great Game. It consumes you, body and soul. When
you're caught up in it, nothing else matters. When you emerge into
@andersonDadario
andersonDadario / deflate.py
Created September 2, 2015 16:57
PNG generator
#!/usr/bin/env python
# David Fifield <[email protected]>
# http://www.bamsoftware.com/hacks/deflate.html
# This program is in the public domain.
import Image
import struct
import sys
import zlib
#!/usr/bin/env python2.7
try:
import simplejson as json
except ImportError:
import json
import tempfile
import sqlite3
import subprocess