August 30, 2004

Illustrated Guide to Hashes.

It's more likely that a million people will correctly guess all the California Lottery numbers every day for a billion trillion years...

-- From the Illustrated Guide to Cryptographic Hashes

Posted by Daniel at 05:27 PM | Comments (0)

August 17, 2004

Extreme Ironing.

Extreme Ironing, the pursuit of taking photos of yourself ironing while doing crazy things.

Posted by Daniel at 04:09 AM | Comments (0)

August 14, 2004

Olympic Lines.

Favorite commentary during the opening ceremony of the olympics:

  • "...the small island nation of Belize."
  • "Athena, the patron saint of Athens."
Posted by Daniel at 04:35 PM | Comments (0)

August 11, 2004

Safari Javascript bug.

Posted for Google to find:

Safari does not like functions to called be called "status". If you commit such a monstrosity, execution will stop when you call your function. Naming a function "status" works fine in IE, Firefox, and Opera.

If you have javascript debugging turned on in Safari, you will see:

(result of expression status) is not object. Cannot be called.
(event handler):Value function status() 

Demonstration of problem:

<script>
function astatus(){
	document.write("will be written once")
}
function status(){
document.write("will never be written.")
}

astatus()
status()
astatus()

</script>
Posted by Daniel at 06:09 PM | Comments (0)

TeX.

I've just "discovered" TeX and LaTeX, the unix way of making pretty documents. TeX uses special codes inside a plain text document - no WYSIWYG here. I'm in love with the separation between content and presentation. In the past, for this reason, I just used HTML and CSS for writing documents.

Posted by Daniel at 04:27 AM | Comments (0)