This was easily the best gastronomic experience in my life.
The whole party opted for a menu degustation (sample menu) consisting of eight courses. Each dish was an explosion of flavours and textures; often 3 or more per dish. In true degustation fashion each dish is minuscule to give you a chance to get through all of them. Nevertheless, by the 7th dish we were struggling.
Not being accustomed to such a culinary input I quickly lost track of everything being served. There was langoustine tortellini, a white fish on a bed of vegetables, amazing and generous portion of beef, cheeses and 3 deserts in a row.
There was not a single thing to complain about. Each dish was perfection in regards to composition of flavours, preparation and presentation. Not a small feat considering the size of the menu.
If I really had to point out one single imperfection, it would be the langoustine tortellini that was a wee bit over done. On the other hand, since cooking time of pasta is a personal preference one cannot blame the chef for that.
My choice of cheese platter involved a cheese connoisseur turning up with a selection of 40+ cheeses. There was a story about each cheese and he could have been talking about them for the rest of the night had I not interrupted him. A selection of 8 cheeses was served in order from the weakest to the strongest.
The service was impeccable, partly due to the all French staff. Normally I would have been worried about the staff being pretentious but they weren’t at all. They even managed to withstand uncustomary demands like commenting on famous French football players and deciding a bet about the Toyota Cup.
Kill Bill vol. 2
I was like a kid on Christmas waiting to see Kill Bill vol. 2. Volume 1 with its roaring soundtrack and cool characters had left me wanting so much more.
Vol. 2. starts of with a flashback to that interrupted wedding. The various characters are presented in much more detail and more time is spent on each one of them.
We are shown how the bride acquired her skills through some harsh training. She picks up two martial arts techniques that will save her life twice.
The movie has a very slow pace, especially compared to part one. Maybe this is why it was such a disappointment for me. The Japanese influence was replaced with gritty surroundings of some Texas outback.
While I loved the soundtrack in part one, the soundtrack was non-existent in this one.
Some hard core Tarantino fans will argue that the second part was more true to his style; volume one was more a tribute to Asian movie making. I however found volume 2 to be artificially pro-longed.
One special edition I would like to see is one 3 hour movie where volume 2 has been cut down majorly. Just my ¢2.
Put Champagne on ice
The good news finally came yesterday. A 2 year long fight with a major UK developer over a new St George development site in an existing woodland was over.
The results from the public enquiry had come back: the local residents, represented by SRRA, had won.
The process culminated in a public enquiry where the arguments from both sides were presented and a decision was made by the inspector:
In my judgement the overall planning balance is heavily weighted against the scheme. The manner in which the present proposals respond to the attributes and address the constraints of the site has sacrificed many environmental quality objectives for the sake of maximising the amount of accommodation. I conclude that the appeals should be dismissed and that planning permission should be refused
Have a look at the SRRA summary or download the inspectors full report.
I have learned that the democratic system is a double-edged sword. While it gave us residents an opportunity to affect the local council in their decision, it also gave the developers right to appeal a chain of decisions against their “monstrous” plans. (However their practice of submitting dual identical applications in order not to give the council a chance to reply in assigned time and thus escalating the matter was less than honest.)
The victory would not have been possible without the organisation skills and eloquence of local resident Phillipe Auclair. As another resident put it, “A whole lot of people were doing their bit but without Phillipe’s help we would not have known what our bits were”. Phillipe’s eloquence was both a motivator to all of us and a stinging to the developer’s arguments.
“Is this the end?” one of the local residents asked. “It’s more like the beginning of a long struggle to keep the woodland unharmed” was the consensus of the groups leading group.
Netbeans 3.6
I have been using NetBeans 3.6 for a couple of days now and can say it’s a very good improvement on the previous version 3.5.1.
(NetBeans is a free, open source development tool. Mainly for Java development but also suitable for C/C++)
The intention was to wait until end of summer 2004 and release version 4.0 but because of the fierce competition (Eclipse, IntelliJ, JBuilder and etc) an intermediate version was released with promises of what is to come.
The most prominent change is that the window system has been completely redone. Away with the clunky and very Java-ish interface. In with a leaner, more native looking and intuitive one.
While I suspect that this enhancement required a lot of work input, the user will not notice too much difference (this is good).
Other useful features include code folding, smart brackets, help with overriding methods, Servlet 2.4 and JSP 2.0 code completion and much more.
In previous versions it was needed to download several modules after an install but they all seem to be included in 3.6: database explorer, XML/XSL support, tasklists and more.
NetBeans 3.6 support J2SDK 1.4.1 and above but prefers 1.4.2 so make sure to update it from Sun web site.
Potatoes
What happens to you if your diet consists of (too) many potatoes and you have been working long hours lately? You end up dreaming about writing software for storing data in… wait for it… potatoes.
My particular version of the dream consisted of me joining a new software project. I was briefed by a project manager that the business of sending data into potatoes is particularly tricky due to the volatile(?) nature of potato data storage.
Apparently it is not possible to know the location of the data inside a potato once it has been transmitted. Instead, some kind of feed-back mechanism had to be developed.
My first innovation in the new project was to incorporate real-time virus checking while transmitting the data to the said potato. I figured that the last thing one would want was a virus ridden potato. Makes sense in a kind of nonsense way.
Zatoichi – Kill Bill meets Stomp
I didn’t know anything about this movie until I was well seated in the cinema chair. As soon as I saw that the movie was directed by Takeshi Kitano I knew I was in for a treat.
The movie is set in a small Japanese rural town run by two rivalling gangs. Zatoichi who is a blind masseur but in secret is a master swordsman stumbles into this town.
Quickly he meets up with a female farmer and two beautiful dancing and singing sister. Their goal becomes to fight the two gangs that are ruling the village and bothering the farmers.
Zatoichi’s nemesis is a ronin (Samurai with no owner) who as well is a master swords man. He is hired as bodyguard by one of the gang’s bosses and thus is put against Zatoichi.
Humour plays a big part in the movie, often serving as a relieve from violence and graphic scenes. The humour was sometime bit too childish from time to time but overall generated a nice atmosphere.
So, what does Stomp have to do anything with this? You’ll have to watch the movie, especially the ending, to find out.
Validating a DB Connection
You may have been tempted to execute Connection.isClosed() to test whether a connection is live and can be reused. This is however not sufficient as the Sun JDBC API guide states:
“Note that the method Connection.isClosed is guaranteed to return true only when it is called after the method Connection.close has been called. As a result, a programmer cannot depend on this method to indicate whether a connection is valid or not. Instead, a typical JDBC client can determine that a connection is invalid by catching the exception that is thrown when a JDBC operation is attempted.”
The only safe way of ensuring that a connection is valid is to execute a tiny query and catch any SQLExceptions thrown. If no exceptions are thrown, you can go on and using that connection.
If any exceptions are thrown, it is safest to close that connection, set the reference to null and create a new connection.
What query to execute?
It would be nice to execute a general (database independent) method like Connection.getMetaData(). Unfortunately I have seen some indication that this may be successful even when a connection is invalid.
To be on the safe side it is best to execute a query like “SELECT COUNT(*) FROM
/**
* A method that tests whether a connection is valid by executing
simple query and catch any exceptions
*/
private boolean connectionIsValid(Connection dbConn) {
//log.debug("ENTER connectionIsValid(): "+dbConn);
boolean result = true;
PreparedStatement psr = null;
try {
//Prepared statement is used to cache the compiled SQL
psr = dbConn.prepareStatement("SELECT COUNT(*) FROM sysusers WHERE 1 = -1");
psr.executeQuery();
} catch (SQLException e) {
log.debug("Excpetion occured, connection is not valid. "+e.getMessage());
try {
dbConn.close(); //dbConn is never null at this point
dbConn=null;
} catch (Exception ee) {
//quite
}
result = false;
} finally {
try {
//free up resource kept by the test statement
if (psr!=null) {
psr.close();
}
psr=null;
} catch (Exception e) {
//quite
}
}
//log.debug("EXIT connectionIsValid(): "+result);
return result;
}
Not snowboarding in Prague
2 years have passed since I last visited Prague and a lot has changed.
Most noticeable was the damage caused by the 2002 flooding. While a lot has been restored the rest shows just how devastating the high water was to the lower parts of central Prague.
In some areas the water line had reached 2.5 meters; damaging walls, statues, bars, shops, flats and etc. that were below.
However, many of the places that have been restored were in dear need of restoration after years of neglect during the communist regime. The result is new colourful walls and sometimes uncovered art from early 20th century.
The level of tourism has risen.. again. Walking around on Charle’s Bridge, Old Square and St. Vit Cathedral you don’t hear ANY Czech around you. While all the money that the tourism brings in is great, it is a bit shame that the prices and environment scares away the local residents.
Have a look at the other photos from Prague.
Big Red Button
For the last 8 days I have been enjoying snow boarding in Spindleruv Mlýn, a Czech ski resort.
While it is not the most radical resort around, the atmosphere is superb. Food is cheap and a plenty and the beer even more so. An added bonus was the fact that this trip also was a family get-together to catch up and plan the upcoming events.
While most of the boarding went OK, I had completely forgotten how to use the anchor lifts while on a snowboard. I actually tried to straddle the anchor resulting in an embarrassing situation.
While I was fumbling with the anchor it pulled away and I lost balance completely. The closest object was a rod with a big red button and I managed to regain balance by slamming down on this very button. It turned out to be the emergency stop so the whole row of couples was halted, most certainly swearing at the retard at the bottom of the slope – me.
The weather was a dream come true. Plenty of snow from earlier heavy snow falls and four days of solid sunshine.
“BUSH NEEDS YOUR HELP” (freep a poll)
The other David Kaspar over at Medienkritik recently wrote about an online poll deducted by the German newspaper Spiegel Online.
It has stirred up some emotions and has escalated to a larger discussion. While it is a clear case of Freeping (poll manipulating), I will not get into the same discussion.
If you are looking for this article, please go to: David Kaspar’s Medienkritik
===
Der andere David Kaspar (von Davids Medienkritik) schrieb vor kurzem über eine Online-Abstimmung der deutschen Zeitschrift Spiegel Online.
Die Gefühle kochten hoch und es entwickelte sich daraus eine größere Diskussion. Obwohl es ein klarer Fall von Freeping (Manipulation einer Abstimmung) ist, werde ich nicht die selbe Diskussion lostreten.
Wenn Sie den Artikel suchen, gehen Sie bitte zu David Kaspars Medienkritik.
(translation by Vasili)