Bluish Coder

Programming Languages, Martials Arts and Computers. The Weblog of Chris Double.

Associative Arrays and Javascript

Andrew Dupont has a post about Associative Arrays in Javascript. He makes the good point that you shouldn't use the Array object for this functionality, instead use 'Object'. Unfortunately using 'Object' has its own set of pitfalls. Try the following code in your favourite Javascript implementation: var x = {} x["toString"] more →

Phobos available for download

Phobos appears to be available for download now. Phobos is the server side javascript system that Sun is making available. Robert Chinnici has a blog outlining features of Phobos and answering the question about why you'd want to use Javascript on the server. more →

Minix and Haskell

There's an interesting post on the Haskell group about Minix and the possibility of writing OS core components in Haskell for it. Minix is an open source operating system that's been around for quite some time. I first tried it out sometime in the early 90's after downloading over some very slow dialup connection connected to a BBS. From the... more →