Autodiscovery Bookmarklet Generator

The Autodiscovery Bookmarklet Generator will generate Javascript bookmarklet code for autodiscovering metadata linked from an HTML document using the LINK tag. Thought it might be useful for folks wanting to glue various services together. This has had absolutely minimal testing (i.e. I've checked it against FOAF and RSS examples) so let me know if you … Continue reading Autodiscovery Bookmarklet Generator

The JBoss Documentation Project. Why Doesn’t It Exist?

Has anyone considered starting a collaborative, open source JBoss documentation project? The current JBoss documentation is out of date. Even the "for fee" documentation is lagging behind the current release which is a pretty poor state of affairs anyway, but for a company thats trying to make money out of an open source project it … Continue reading The JBoss Documentation Project. Why Doesn’t It Exist?

Increments

My life in code... int leighsAge=30; int doddsFamilySize=3; //me, debs and Ethan leighsAge++; Calendar octoberSeventh = Calendar.newInstance(); octoberSeventh.clear(); calendar.set(2003, 9, 7); //7th October 2003 if ( Calendar.newInstance().after(octoberSeventh) ) { doddsFamilySize++; } Which is a geeky way to say that today is my birthday, and that my wife and I are expecting another baby in early … Continue reading Increments

Bookmarklets

Whilst digging around during the implementation of my FOAF Bookmarklet I came across a number of interesting bookmarklet techniques and examples. I've started documenting some of these in wordtin. See Bookmarklet for an entry point. The Bookmarklet Bootloader is a very interesting technique. I started writing up some notes on the techniques for using bookmarklets … Continue reading Bookmarklets

Ant Fan

Ant is rapidly becoming my favourite Java and XML processing tool. It features heavily in my next tutorial for IBM developerWorks (working title "Code Generation using XSLT") which describes how to use XSLT as a code generation tool using an Ant based build framework. Basically using Ant + Jalopy takes all the hard work out … Continue reading Ant Fan