"When you have seven homes, that's a lot of garages to fill. After the fuss over the number of residences owned by the two presidential nominees, NEWSWEEK looked into the candidates' cars. And based on public vehicle-registration records, here's the score. John and Cindy McCain: 13. Barack and Michelle Obama: one."
Monday, September 22, 2008
Thursday, September 18, 2008
Wednesday, September 17, 2008
Project, Day ???
Monday, September 15, 2008
Food
"I don't have a green thumb. When little plants misbehave, their parents threaten to send them to my yard. But with supermarket prices for produce on the rise, it seemed a good time to try, yet again, to grow a vegetable garden. And I wouldn't be alone. According to the National Garden Assn., hard times seed more gardens."
With a shocking portion of the nation eager to continue all the current policies that have brought us to the current state of affairs, there might not be much choice about home gardening.Wednesday, September 10, 2008
Cuban
"You can't stop it. There isn't really a solution," he said, speaking at a keynote event at TechCrunch50. "At different stages of our lives we have more time than money . . . I don't think [the people who download movies] were going to buy much anyway."
-- Mark Cuban on "file sharing"
Wednesday, September 03, 2008
One Way to Convert java.sql.Date to XMLGregorianCalendar
PreparedStatement pstmt = con.prepareStatement("SELECT getDate()");
ResultSet rs = pstmt.executeQuery();
while (rs.next()) {
java.sql.Date d = rs.getDate(4);
GregorianCalendar cal = new GregorianCalendar();
cal.setTime(d);
XMLGregorianCalendar gc =
DatatypeFactory.newInstance().newXMLGregorianCalendar(cal);
}
Here's an example of going the other direction; getting a java.sql.Data from an
XMLGregorianCalendar.XMLGregorianCalendar gc /* = something */; GregorianCalendar c = gc.toGregorianCalendar(); java.util.Date d = c.getTime(); java.sql.Data sqlDate = new java.sql.Date(d.getTime());
Complaining
http://www.neighborhoodnotes.com/nw/pearl_district/news/2008/09/railroad_quiet_zone/
"The City of Portland, the Portland Development Commission, the Pearl District Neighborhood Association, along with other property owners in the area support the establishment of a Quiet Zone at the roadway-railroad crossings located at NW 9th, NW 15th and NW 17th Avenues."
Monday, September 01, 2008
Hard to Tell
What is it about Bigfoot that makes it so hard to get a good picture? On the other hand, maybe it's just a racoon in my backyard this morning... I'm not an expert, you be the judge.
Jeff Sexton