-
Archives
- October 2017
- December 2016
- July 2016
- June 2016
- October 2015
- March 2015
- February 2015
- June 2013
- April 2012
- June 2011
- May 2011
- January 2011
- December 2010
- October 2010
- September 2010
- August 2010
- July 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- July 2009
- April 2009
- March 2009
- February 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- April 2007
- March 2007
- January 2007
- December 2006
- November 2006
- August 2006
- July 2006
- June 2006
- May 2006
- February 2006
- December 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
-
Meta
Category Archives: Technical stuff
Tic Tac Toe
I’ve been working on a simple Tic Tac Toe game. Most things going well, but I’ve been working on the painting of the X’s and O’s within the insets of a given JButton. In the end, the calculation that actually … Continue reading
Posted in Swing
Leave a comment
WebWork-2.2 and Generics
I’m working on a settings screen (using JSP) which iterates over a Map of generic SettingEntries. A SettingEntry is defined as follows: public class SettingEntry <T> implements Serializable { private final String key; private final T defaultValue; private T value; … Continue reading
Posted in Technical stuff
Leave a comment
Context-sensitive menu using WebWork
Looking to build a generic context-sensitive menu using WebWork. Came up with the following requirements: All items described below are menu elements. A menu element has a name attribute. A menu element has a parent menu element. If a menu … Continue reading
Posted in Technical stuff
1 Comment
DBDesigner 4
Ok, so I’m starting the domain design section of a project. I usually get the generic attributes and relationships down, and start a real simple domain model using Access. Then import that into Visio. Once in Visio I get a … Continue reading
Posted in Technical stuff
3 Comments
I think Open Source is good, and technology helps makes life easier.
If your interested, no, I could not think of a better title. Since the late summer of 2003, I’ve been working on a side project. It wasn’t much, simply an apartment rental application. The main features were: Allow a renter/seeker … Continue reading
Posted in Technical stuff
15 Comments
State Management with the Http Session
If you’re using a MVC web framework, such as WebWork or Struts, you might have had to store long-term state in your Http Session. At my job, since we do not use Stateful Session Beans, this is common. So, the … Continue reading
Posted in Technical stuff
3 Comments
patterns in action
I’ve been thinking about starting a web app project. I came up with a bunch of horrible ideas, but I think this one is good. There are millions (might be an exaggeration) of UML diagrams explaining design patterns. I think … Continue reading
Posted in Technical stuff
1 Comment