March 2010
6 posts
Mar 29th
1 tag
Mar 22nd
3 tags
Color Palette in Python
I though this might be of use to somebody. It got some rough edges but is good enough™ for my needs. # -*- coding: utf-8 -*- from colorsys import rgb_to_hls, hls_to_rgb from PIL import Image import struct from cStringIO import StringIO __author__ = 'Simon Pantzare' class Color(object): def __init__(self, r, g, b): self.r = r self.g = g self.b = b self.h,...
Mar 10th
3 tags
Alice in Wonderland
I can not think of anyone better suited for interpreting Alice in Wonderland than Tim Burton. However, I do not feel that the extremes of the pleasant wickedness found in Edward Scissorhands or Corpse Bride is present in Wonderland. Johnny Depp is, of course, a good fit for playing the Mad Hatter; I also like Stephen Fry as the Cheshire Cat. Tweedledum and Tweedledee are funny in a Disney “they...
Mar 8th
Mar 7th
1 tag
“I don’t like words that hide the truth. I don’t like words that...”
– George Carlin
Mar 2nd