I went to visit the web site for one of my favorite bands (Judas Priest) tonight, and found that my favorite browser, Google’s Chrome, was a bit confused. It helpfully offered to translate the web site.

Chrome Offers To Translate
The only problem with the offer to help is that the web site isn’t actually in German.

Actual Web Site
Tags: humor, web browser
We had a power outage today that, naturally, took all of the computer systems down. The outage by itself was a bit unusual as the power kept going down and then coming back on. This repeated every few minutes for the better part of 45 minutes.
When the outage was over a Linux laptop that runs Nagios wouldn’t come back on the network. Well, it would come back on the network well enough to get a DHCP address from the router. But that was it. It couldn’t see anything. It couldn’t even ping the router once the IP address was assigned. It didn’t really come back until I #$%&ed around with the network settings for a while. I’m not even really sure what I did to get it back.
The whole even vis-a-vis the Linux laptop doesn’t make any sense. It really should have come back fine considering that I shut it down during the first cycle of the power outage. That laptop doesn’t have much in the way of a battery and it doesn’t make much sense to have it wasting power on wireless trying to get to systems it will never be able to reach during the power outage. The system has been shutdown before and it has always recovered just fine.
I remain baffled.
Tags: linux, nagios, power outage
I just noticed that the entire month of February was about to slip by without saying anything. Well, I can’t let that happen.
Actually, I’ve been really, really busy overhauling another web site. It’s finally done.
Posted by: DungeonMaster in humor
I’d been meaning to upload this picture for some time. It was taken near St. Cloud, MN during our trip there during the summer of 2009.

"TNT" Store
We had pulled off the freeway to get some coffee and saw this, a burned out “TNT” store. We started laughing like crazy as I’m sure many others did over the months that the building was under repair.
The store’s actual name was “Treasures N Things”.
Tags: humor
Why is ignorance self-reinforcing?
Posted by: DungeonMaster in Drupal
In working on porting a hand coded web site to a
Drupal web site there are a number of pages that need to be ported to the “Drupal way” of doing things. One strange item that I ran across was was this image of what Drupal rendered for an image. Admittedly, the src URL wasn’t correct. What was unexpected was that instead of showing a placeholder the src and alt attributes were showing.

Drupal Image Oddity
Typically when I setup a page with images I like to use a style like:
<img class="badge"
src="images/badges/npp.logo.80x15.png"
alt="Notepad++" />
Using multiple lines makes it easier to see all that is happening with the image.
Apparently this confuses Drupal in some way. Drupal would not render the placeholder for the image until all of the attributes for the <img> tag were placed on the same line.
<img class="badge" src="images/badges/npp.logo.80x15.png" alt="Notepad++" />
Tags: Drupal