"It is no coincidence that in no known language does the phrase 'As pretty as an Airport' appear."
- Douglas Adams
Our recent trip inspired me to choose this quote. No deep meaning or anything - just an observation. Airports are dirty, ugly places, usually built decades ago. They all look the same, and they all look dull and uninspired. What ever happened to the attitude that travelling by air was exciting and adventurous? THis was before my time, of course, but I've read about it. People used to get dressed up to fly, and the whole thing had a carnival atmosphere that was shared by the passengers, flight attendants, gate agents - everyone involved. Now they charge you more than I paid for my first car, treat you like crap, make you pay for a snack, delay or bump your flights, and expect you to feel special that they decided to deal with you at all. Is it any wonder that airlines are declaring bankruptcy?
"The impossible often has a kind of integrity which the merely improbable lacks."
- Douglas Adams
So true, so true. There is just something about being able to say that something is "impossible" that is so much more satisfying than having to say that it is "almost impossible". This one also applies well to software development. When debugging code, a typical strategy involves elminating the bits of code that cannot have caused the problem, until you are left with only one bit that therefore must have caused the problem. The challenge always comes from the fact that with any moderately-complex software, you can never with 100% certainy say that it is "impossible" that a certain piece of code is causing problems. This becomes a very irritating fact. The debugging process eventually degenerates into one of two approaches - a "brute force" approach, where the developer systematically disables one bit of code at a time until the problem goes away, or the "inspired" approach, where the developer uses educated guesses and hunches to zero-in on the problem code right away. And of course, that almost never works, and the developer eventually reverts back to the "brute force" approach.