Tuesday
Sep212010

franzen does dfw

One thing I enjoyed in Jonathan Franzen's new novel, Freedom, was his use of David Foster Wallace-style intrafamily dialog. [spoiler alert] This scene, where Patty's father discourages her to involve the police in her rape, echoes the scene in Infinite Jest where Hal identifies his father as the "professional conversationalist", or the late night phone calls between Hal and Orin:  

"Coach Nagel says I should go to the police."

"Coach Nagel should stick to her dribbling," her dad said.

"Softball," Patty said. "It's softball season now."

"Unless you want to spend your entire senior year being publicly humiliated."

"Basketball is in the winter. Softball is in the spring, when the weather's warmer?"

"I'm asking you: is that really how you want to spend your senior year?"

"Coach Carver is basketball," Patty said. "Coach Nagel is softball. Are you getting this?"

Her dad started the engine. 

I enjoy this pattern, but not quite enough to justify reading the whole book. 

Another DFW-esque trick is the foreshadowing that never amounts to much, as in Freedom's opening sentence: 

The news about Walter Berglund wasn't picked up locally. [...] Walter had made quite a mess of his professional life out there in the nation's capital... [He is] in trouble now for conniving the with the coal industry and mistreating country people. 

When I read this, I was hoping that the rest of the book would emerge as the story of Walter's descent from environmentalist to corrupt crony, but Franzen pulls his punches. What could have been the climax of the plot, when precociously independent Joey calls his father for help in the middle of an arms-trading fiasco, is instead handled almost off-screen. The difference here is that DFW's foreshadowing -- of Hal and Don Gately digging up Incandenza père's head -- actually is the climax of multiple plots finally intertwining. Walter's scandal, however, sounds as a disappointing minor note in what could have been the unifying story line. Franzen could have used the scandal to show how all of this freedom led the main characters to betray their deepest beliefs, but he made it just another episode in a long novel that ultimately lacks a climax. 

Saturday
May152010

migration to squarespace

I'm in the process of moving from jumpline.com and blogger to squarespace.com. Please let me know if you run into any broken links or mis-placed apostrophes. You know how I hate those. 

Wednesday
Oct142009

Java foreach loops on empty collections

I've been worrying about whether I need to check for null when invoking a foreach loop on a collection that might be empty. The answer is, nope, I don't need to check for an empty list; java just Does The Right Thing.

List<Object> list = new ArrayList<Object>();
logger.info("here's a list that was always empty: " + list.toString());
for (Object o: list) {
logger.info("here's an object: " + o.toString());
}
logger.info("done");

...yields this output:
INFO: here's a list that was always empty: []
INFO: done

These alternate ways of expressing the same loop also all execute without a problem, even for an empty list:

for (int i = 0; i < list.size(); i++) {
Object o = list.get(i);
logger.info("here's an object: " + o.toString());
}
for (int i = 0; i < list.size(); i++) {
Object o = list.get(i);
logger.info("here's an object: " + o.toString());
}

That's just a detail that's been bugging me, and now I understand the behavior. For what it's worth, I couldn't find this issue addressed in the JSR.

Wednesday
Apr222009

best of ben

Sunday
Apr192009

graphical diff for git on mac os x

I just configured git to use FileMerge for diffs. FileMerge is a pretty graphical diff tool. I couldn't find quite the right invocation via google, so here's what I did:


  1. Create ~/bin/git-diff-driver.sh with these contents:
    #!/bin/sh
    /usr/bin/opendiff "$2" "$5"

  2. Make it executable
    chmod ugo+x ~/bin/git-diff-driver.sh


  3. Make git use this little script for diffs. Edit ~/.gitconfig to include these lines:
    [diff] 
    external = "/Users/ben/bin/git-diff-driver.sh"


Now the next time that you call git diff HEAD FileMerge will open. GUI sweetness.