Skip to content

Category Archives: javascript

tools

At $work recently many late nights were spent hackety-hacking on a prototype that got written up in the New York Times today. Apart from some promotional materials, not much is available to the public just yet. I just got pulled in near the end to do some search stuff. Over the past few months I’ve [...]

>js

So I’ve been dabbling with that four letter word at $work to create a hierarchical journal/volume/issue/article browser. Le rails and scriptaculous make it pretty easy indeed.
I figured I’d be a good developer and try to understand what’s actually going on behind the scenes, so I picked up a copy of Ajax in Action [Illustrated] [...]

delicious json

I just noticed over on the del.icio.us blog that my data is available as JavaScript Object Notation (JSON) by following a simple URL like: http://del.icio.us/feeds/json/inkdroid.
Essentially you just load the URL as javascript source in your HTML:

<script type=”text/javascript” src=”http://del.icio.us/feeds/json/inkdroid?count=20″></script>

and voila you’ve magically got a new javascript array variable Delicious.posts, each element of which is a [...]

google’s map api

Adrian pointed out at the last chipy meeting that a formal API for GoogleMaps was in the works…but I had no idea it was this close.
After you’ve got an authentication key for your site directory, all you need to do to embed a map in your page is include a javascript library source [...]

HTML/HTTP

RFC 2397 has been around since August 1998 and I’m just learning about the data URL scheme today. Perhaps browser support for it is new? Basically data URLs allow you to embed data, like images directly in an HTML page. Data URLs remind me of Fred Lindberg’s old idea (circa 2001) of “mailing the web” [...]