Author Archives: James McParlane

Unknown's avatar

About James McParlane

CTO Massive Interactive. Ex Computer Whiz Kid - Now Grumpy Old Guru.

And They Said I Was Crazy

Just listened to a podcast on IT Conversations where Werner Vogels discussed scaleable systems that are inspired by biological processes. What he described is exactly what I was working on in the networking protocols and “Entropy” VM in the MetaWrap project, … Continue reading

Posted in Meta-Narrative, MetaWrap Server, Nostalgia for Misspent Youth, Rants | 1 Comment

Some More Cool JavaScript Libraries

JavaScript Vector Graphics Library http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm JavaScript Graphing Library http://www.walterzorn.com/grapher/grapher_e.htm

Posted in Coolhunting, JavaScript | Leave a comment

My Oldest Usenet Posting

I know there are ones older than this on rec.music.industrial, but I can’t remember my old University account name. http://groups.google.com.au/group/aus.jobs/msg/09e9ae5602193ee1?dmode=source&hl=en  

Posted in Coolhunting, Nostalgia for Misspent Youth | Leave a comment

Most Useful Site Ever

This is by far the most useful site ever. In the last month I have visited it every day. Its a pleasure to read, is full of accurate information for JavaScript programmers. When I say “most useful site ever” I … Continue reading

Posted in Coolhunting, JavaScript | Leave a comment

We Apologise For This Break In Transmission…

I was up too late playing with the Great Satan that is cross browser JavaScript to have any brain power left to make an insightful or informative blog post. So instead.. here is a picture of dogs playing pool

Posted in Downtime | Leave a comment

Nifty New JavaScript Library

Looks like a very nice wrapper of prototype, with great documentation and a really effective website. http://openrico.org/rico/demos.page  

Posted in JavaScript | Leave a comment

My New Word Of The Day – "Downstall"

down·stall     Pronunciation Key  (dounstôl)tr.v. down·stall·ed, down·stall·ing, down·stalls To transfer (data or programs) from a server or host computer to one’s own computer or device and then set it in position and prepare for use.

Posted in Coolhunting, Rants | Leave a comment

XML Standalone Voodoo

The XML standalone declaration should always be last. The encoding declaration Second and the version info First. <?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes” ?> GOOD <?xml version=”1.0″ standalone=”yes” encoding=”UTF-8″ ?> BAD See the XML Prolog and document type declaration format for clarity on this Prolog [22]  … Continue reading

Posted in Rants, XML | Leave a comment

Some Cool Tools

“ActiveWords is user interface technology that adds a simple and powerful attribute to Windows®, it turns words into actions. You enter or select any words in any context at any time, and are directly connected with services related to the … Continue reading

Posted in Coolhunting | Leave a comment

The Very Useful JavaScript call() And apply() Functions For Overriding 'this' For A Given Function.

apply Syntax functionreference.apply(thisArg, argArray) Parameters thisArg (parameter for the calling object) argArray (an optional parameter of an argument array for the object) Description apply allows you to apply a method of another object in the context of a different object … Continue reading

Posted in JavaScript | Leave a comment