-
Javapolis: WebWork
2005-12-15 This talk had Jason Carreira presenting WebWork. It was good getting information regarding the WebWork/Struts merger straight from the source.
In the Q&A session, people asked a lot of questions about tool support. This surprises me - why do people find this a necessity? Are people actually like Bill Roth of BEA who said in his keynote that he can’t write XML manually? Of course, he sells tools.
-
Javapolis: Wicket
2005-12-15 Wicket provides a really excellent programming paradigm - plain HTML templates, really nice Java and no XML what so ever. My feelings are mixed though, as it is component based with weird URL’s. Also it uses the session by default. I really have to think about this one. I’m not that big a fan of component based web frameworks as I think that they are abtract away too much of the real world of stateless requests and responses.
-
Javapolis: XOM Design Principles
2005-12-15 XOM Design Principles with Eliotte Rusty Harold. Eliotte is a very good opionionated speaker. While I do not agree with his view on the topic on humane interfaces, he does present some really good ideas.
Quote to remember: “One out of three untested lines of code has bugs.”
-
Must ... have ... power ...
2005-12-15 As I am constantly on the outlook for power outlets, Pragmatic Andys post on Travelling with power was really funny.
Battery life: the new frontier.
So true
(Via /\ndy’s Blog.)
-
The Wifi Access is Getting Worse
2005-12-15 This is a short test to see if I can post at all :(
-
Weird Wifi Access
2005-12-15 The wifi access here at Javapolis is really weird. Surfing the web works like a charm, so does receiving mail. Sending mail seems to be a hard thing to do, as it works half the time. However, when refreshing NetNewsWire, I get no updates. That combined with the fact that I can’t post with MarsEdit makes me suspect that Proximus has some really funky settings for their wireless network.
-
Intial report from Javapolis
2005-12-14 So I arrived yesterday to Antwerpen, and have just sat through the keynote. It was basically a shameless plug battle between Sun and BEA. The most interesting thing was Bill Roth talking about WebLogic “in the coming years” supporting “languages that might take off”. This is in line with what Jon wrote some time ago. Rails on WebLogic? Could be interesting, if not for no other reason but to gain a wider acceptance for Rails.
-
Javapolis: Access Wifi at the Metropolis
2005-12-14 If you have a Mac and want to use the Proximus wifi at the Metropolis, Safari or Firefox won’t help. I got through using Omniweb.
-
Re: Humane Interface
2005-12-06 Martin Fowler writes: “If you only try to provide the minimum, you end up with multiple clients duplicating code for common cases.”
Or one billion jakarta.commons packages
(Via Martin Fowler’s Bliki.)
-
Some Very Basic Code Standards
2005-12-05 Whilst on the topic of aggravation:
/** * Returns the url for the link * @return the url for the link * @param oFooUtil the foo util * @param sSomething the something * @param iAge the age */ public String getRelationPath(FooUtil oFooUtil, String sSomething, int iAge) { ... }
- Do not name your methods deceptively and keep the correct information in the javadoc only
- Do not use hungarian notation. It is extra useless in Java as it is an object oriented language which means that many, many variables will be prefixed with o.
- Do not comment the obvious