public marks

PUBLIC MARKS from image with tags print & elements

17 April 2007

A List Apart: Articles: Dynamic Text Replacement

Older versions of Mozilla, including Netscape 6.2, contained a bug where the browser would download images even if the user had instructed it not to display them. This obviously made no sense, and has been fixed since version 1.4. Although this technique

27 March 2007

ASPN : Python Cookbook : Padding variable length sequences

even simpler variable-length tuple unpacking, Greg Jorgensen, 2005/03/31 I can reduce that function even more: def vunpack(t, n, defaults=[]): return tuple( (list(t) + list(defaults)[len(t):] + [None] * n)[0:n] ) One of the examples in my f