Monday, January 25, 2010

Spring JDBC is awesome

I would like to just take a moment to express my love for Spring JDBC. I just deleted giant swaths of database connection handling code from an app I'm maintaining by replacing a DAO with a Spring JDBC version. If you haven't taken the time to learn about it, check it out here.

Friday, January 15, 2010

Google Health sort of sucks

It seems like Google Health was developed without much consultation with a domain expert. For example, it looks like they just got some sort of shotgun list of lab tests and dumped it into their database:


which of these should I select if I want to record an HDL value? They all seem the same to me.

Then, you have something like EKG which is way more complicated than having a single numeric unit value, and they expect you to just type in a number:



It's a good start, being able to get all of the data stored, but I just wish it were a little more intelligent about the data it is collecting.

Thursday, January 14, 2010

Moving code from one SVN to another

I am currently working on merging some of the projects from two different SVN repositories to one repository. I don't want to do a full dump of one and restore to the other, because the organization is a bit different in each. The solution is something like this:
  1. Dump the entire source repository
  2. Use svndumpfilter to split the dump into separate files
  3. Import each file separately into the right spot in the target repository
Here's a couple one-liners to split the dump file (I love Unix):


$ cat source_repo.dump |grep -a ^Node-path: | grep -v / |uniq | sed "s/Node-path: //g" > projectlist.txt
$ for i in `cat projectlist.txt`; do cat svn_oasis.dump | svndumpfilter include $i > $i.dump; done


The first command creates a list of top level directories, and the second does the splitting. Now, you have a separate dump file for each different top level directory in the source repo. This can be tweaked if you want to split it based on different criteria.

Once you have the dump file for a project and you want to import it, you use a command like this:
cat project.dump | svnadmin load /usr/local/svn/myrepo


Make sure that the path you are importing doesn't exist. I did not make sure, then I think svnadmin imported a bunch of stuff, but was unable to create the top level dir, so it probably left a bunch of orphaned crap in the repo. The load process seems pretty half baked, so be careful :)

Tuesday, January 12, 2010

PHP

Samson pointed out this PHP bug report to me:

http://bugs.php.net/bug.php?id=50696

It is an entertaining read. This illustrates a couple of problems with PHP that make me wary of using it for anything too serious. They seem to have a flagrant disregard for specification of their API, as well as backward compatibility. Additionally, the lack of strong typing appears to be the source of all of their issues. I'm not going to say weak typing is bad, I just find strong typing forces the programmer to resolve issues at compile time instead of at runtime (i.e. before the end user is actually running the code and the app blows up on them).

All of this culminates into this bug report, which erupts into a flame war, uncovering the underlying big egos that have probably led to the feeling that strict specification is unnecessary and developers can just "deal with" changes in the API in minor releases. Both of the PHP developers involved in the conversation were extremely unprofessional and resorted to such tactics as name dropping to argue their case.

It sucks, because I think PHP would be pretty nice if they were just a little more strict and professional about these things (both the technical and personal issues).

Thursday, January 07, 2010

X Windows

Recently, I have heard several references to the term "X Windows". For all of you uninformed fools out there, here's the official word straight from the horse's mouth (see man X):

The X.Org Foundation requests that the following names be used when referring to this software:

X
X Window System
X Version 11
X Window System, Version 11
X11


So, as you can see, there is no reference to "X Windows". It has nothing to do with "Windows", so don't call it that.

Tuesday, December 22, 2009

Sometimes I feel like constructors should be removed from Java

Sometimes constructors in Java are convenient. You can instantiate your class with all the data you need with a simple one-liner:
Car car = new Car(numberOfWheels, color, engine, doors);


That code is fairly readable and concise, but things can quickly spiral out of control. Unless you use really descriptive variable names like those above, it's pretty easy to get lost. Eventually you end up with code like this (partially obfuscated to protect the innocent):



foo = new Bar(rs.getString(1),
rs.getString(2),
rs.getString(3),
rs.getString(4),
rs.getString(5),
rs.getString(6),
rs.getString(7),
rs.getString(8),
rs.getString(9),
rs.getString(10),
rs.getDate(11),
rs.getDate(12),
("Y".equals(rs.getString(13)) ? true : false),
("Y".equals(rs.getString(14)) ? true : false),
("Y".equals(rs.getString(15)) ? true : false),
("Y".equals(rs.getString(16)) ? true : false),
("Y".equals(rs.getString(17)) ? true : false),
("Y".equals(rs.getString(18)) ? true : false),
("Y".equals(rs.getString(19)) ? true : false),
rs.getTimestamp(20),
rs.getTimestamp(21),
rs.getString(22),
rs.getString(23),
rs.getString(24));



This is the point where I say you gotta just use a blank constructor and setter methods. Much more readable. And on a side note, when you are typing rs.getString(24), you should probably start thinking about how it might be more readable if you refer to your result set columns by name. That is all.

Wednesday, December 16, 2009

Ditch MySQL now


MySQL was "bought" by Sun last year, as you may know. The fact that this is significant sort of illustrates one of the reasons I didn't like MySQL from the moment I met it in 1997 or so. It's only like half in the game as far as being free and open source. It is tied way too much to MySQL AB, the company, and the way it is licensed is totally shady. Anyway, now Sun is dying and Larry Ellison is about to scoop it up. Monty, the MySQL guy is whining to the Internet, trying to get the European Commission to block the deal. It's a sad story, but if Oracle doesn't buy Sun, they will just need to get bought by someone else or go out of business. The real sad part of the story is the death of Sun, one of the original great Internet companies (my other favorite being SGI which met its fate years ago). In any case, MySQL's future is dark and cloudy.

That is why I'm just going to go ahead and plug my favorite database, PostgreSQL. You should check it out, it's awesome. It is way more powerful than MySQL and the licensing is better. It was built from the ground up to be a real database, not some tinkering project like MySQL. If you are running a project, especially an open source one, that is dependent on a database, you should take a serious look at PostgreSQL and consider making it your database of choice.