The other day I saw a Java interface with well over 300 methods (with no inheritance). It’s one of these interfaces that is a single point of entry into a system, and I’m partly to blame. Really didn’t think about how the API should scale, and now that there’s years and years of development [...]
Filed under: Java, Software Development on February 28th, 2008 | No Comments »
Monica’s latest party had a fun “super star” Hanna Montana theme, and I made her this electric guitar piñata. We had a lot of fun making it, because of the shape there was no need for balloons or any messes with flour. I basically just used a box from one of my RC [...]
Filed under: Art, Family, Life on February 28th, 2008 | 2 Comments »
We all went to Disney’s Magic Kingdom last weekend, and I like this picture we took of the castle at night. Makes it look a bit spooky.
Filed under: Family, Life, Travel on February 24th, 2008 | 2 Comments »
So the other day I’m looking at somebody’s code and notice a class name that caught my attention; “GenderEditor”. I think it was just your normal JTable class to show a “gender” property, but I thought it was kind of funny because the class name implied you could use this program to switch a user’s [...]
Filed under: Software Development on February 15th, 2008 | 1 Comment »
Two people sent me this code blooper the other day, again, class and parameter names have been changed to protect the identity of the offender(s).
public SomeObject(
boolean lowSetting,
boolean highSetting,
boolean currentSetting,
Color lowColor,
Color highColor,
Color currentColor,
Color otherColor)
{
super();
lowSetting = this.lowSetting;
highSetting = this.highSetting;
[...]
Filed under: Code Bloopers on February 15th, 2008 | 3 Comments »