Monday, November 22, 2004

Impromptu fireworks display


I was sitting at my desk this evening and fireworks started shooting out of the Grove. So I called Beth and we watched, then I grabbed my camera and took what photos I could. You can see the Christmas tree in the middle left of the picture.Posted by Hello

Saturday, November 13, 2004

Teddy: Jan 29, 1926 - Oct 30, 2004

My stepfather died two weeks ago due to complications from a stroke. He was 79. I knew him for about ten years and I miss him terribly.
Teddy was a WWII veteran. He fought in the Battle of the Bulge. We arrived at the cemetary and the rabbi said, "I haven't seen that in 15 years." He was referring to the color guard. Two soldiers took a flag which was sitting over his coffin during the funeral, and there at the cemetary, draped it once more over Teddy's coffin and presented it to my mother. Then a third soldier played taps. I cried, not out of grief, but because I was so moved.

I never expected to see that in my lifetime, let alone with my mother as the primary participant. I also had never wanted to bring a camera to a burial. I wish I had. I, and I suspect other people, would have liked to have had it. Mostly I think Teddy would have liked it.

We climbed back into the limousine and we laughed. Not because we were inappropriate, but because the last few months of the war, Teddy and his comrades came across a cache of wine in the Black Forest. They dumped their water, dumped their tents, and "didn't drink water for the rest of the war." So we were laughing that if the Army knew that was how they spent their time during the endgame, they'd knock on my mother's door to ask for the flag back. :)

She is considering what to do with the flag. I think when the time comes she should consider giving it to one of his four grandchildren.

Bad choice for Enumerations in J2SE 5.0

Once again, I can't tell too much here, but I'm very unhappy with the implementation of enumerated types for J2SE 5.0.

If I have an enumeration such as


public enum Weekdays {
SUNDAY,
MONDAY,
...
SATURDAY,
SUNDAY};


I cannot choose to disallow this:

Weekday weekday = null;

Now all my code still requires if(blah == null). Not very happy.

Generics in J2SE 5.0

It sounds like I'm not the first person to recognize that in J2SE 5.0, the following causes a compiler error:
public void arrayTest(List<T> list) {
T[] array = new T[list.size()];
}

because you're not allowed to create generic arrays. This has to do with the way Sun implemented Generics by preserving a significant amount of backward compatibility and by dropping the type safety once the source is compiled. In other words, these two statements generate the same bytecode:

List<String> list = new ArrayList<String>();
List list = new ArrayList();

I have a way to go before I can make any determinations, but I'm not particularly pleased with this.

The Democratic Manifesto?

Well written. I suspect this page will be archived soon, and I'm not going to archive it just yet.
http://www.thestranger.com/current/feature.html