Skip to content

Instantly share code, notes, and snippets.

@zackd
zackd / thumbnail_filter.py
Created March 5, 2010 16:54
django template tag filter to generate jpeg thumbnails
# django template tag filter to generate jpeg thumbnails
import os
import Image
from django.template import Library
register = Library()
def scale(max_x, size):
" size is a tuple: (image_x,image_y) "
@zackd
zackd / test-bgscript.js
Created September 29, 2009 16:11
blocks and random colors / images javascript experiment
var colors = new Array(
[116,143,138],
[78,117,143],
[191,206,197],
[0,40,40],
[0,60,60],
[0,80,80],
[0,100,100],
[165,187,181],
[134,160,154],