Debug window for Javascript

I wrote this short little function when I got tired of debugging JavaScript by using the alert() function. It pops up a new window and outputs whatever you send to the function along with the UTC date.
PLAIN TEXT
JavaScript:

function logOutput(message)

    {

    debugWindow = window.open('', 'dbgWindow', 'height=300,width=400');

    var newDate = new Date();

  [...]

FxIF plugin for FireFox

For those FireFox users out there there is a new plugin called FxIF that will allow you to view EXIF data on any image by right clicking and selecting Properties.

How to create a favicon.ico file in Photoshop

There is a small graphic file that most people probably don't know about, but your web browser does. It's the favicon.ico file and it can help your site to stand out.

Spell Checking and Firefox 2.0

I had been putting off upgrading from Firefox 1.5 to 2.0 with the fear that some of the extensions I have installed wouldn't work. Once I finally sat down and upgraded I was surprised to find spell checking built in. Now any text box behaves like Word when I misspell a word. [...]

coComment slowing down FireFox

As a blogger you probably comment on blogs all over the internet. If you're like me it's that interaction that drew you to blogging in the first place. But it's difficult to track all of those conversations.
A few days ago I downloaded and installed a plugin for Firefox called coComment which promises, and [...]