Posted by andy in : Agile on April 12, 2004. There are no responses »Ron Jeffries posted the following (rather fab) summary of the various agile methods on the extreme programming news group… and I could not resist blogging them.
1. Go in that room there and do all 12 XP practices until you actually do know better. (XP)
2. Go in that room there, don’t let anyone screw with you, work on whatever you think you can get done for a month. Keep doing that until everyone is happy. (Scrum)
3. Go in that room there, in peace love and understanding, ship software every month, and think about it. (Crystal Clear.)
Posted by andy in : Agile on April 11, 2004. There are no responses »Just found Tom Poppendieck’s photos from XPDay.
http://www.poppendieck.com/photogallery/XP_Day_2003.htm
Nice work Tom.
Posted by andy in : Software on April 8, 2004. There are no responses »We had a weird problem today and thought other people may appreciate the fix.
We have a swing application deployed using Jave Web Start. A java swing JOptionPage was rendered without any GUI components – just a small grey square.
It only failed on Java Web Start and not when we ran the code from the developer machines.
Even more baffling, was that it ran on some machines via Java Web Start and not others…
So we fired up the Web Start console to see what was happening and it worked – the act of running the console changed the behaviour of the app!
Lots of scratching of heads…
The problem was that on some environments, Swing could not find the JGoodies look and feel for the JOptionPane. The fix is to force the UIManager to load the JGoodies class loader:
1
| UIManager.put("ClassLoader", LookUtils.class.getClassLoader()); |