Orange is my favorite color

Archive for 2008/03


I needed to find where I was at in a table so I could report back the row and cell position for another function. There aren’t any easy-to-find answers from the Google so I set about doing my standard Javascript DOM exploration:
for (var ii in this)
console.info(” ii = ” + ii);
I explore [...]

A really interesting thread on CFGURU today discussing how to minimize the impact of clients that don’t accept cookies from rapidly creating “phantom” sessions that eat up memory. Because the client doesn’t accept a cookie, each request will appear to be a new client and ColdFusion will generate a new session along with any [...]

Christian and I collaborated the other day on a new feature for the excellent jQuery plugin, TableSorter. I can only take credit for the idea as Christian made the magic happen. This addition makes it now possible to sort any content, whether it be a form field, inside markup, etc.
The Situation
For simple data [...]

So I know he has a speech writer but love him or hate him, you can’t deny this guy is a different kind of candidate. The video is a bit long but hits the nail on the head why Barack Obama should be our next president: he gets the issues. Not the “everyone is [...]

I love crazy long titles that make highly qualified claims. So as the title says, this is, in my humble opinion, the best available regular expression for ColdFusion developers who validate email addresses of everyday English-speaking users. Here is what I used to use, from cflib.org. This one is good because the [...]

While I’m not a designer, I do need to pop open Photoshop on a regular basis and save off graphics or make small changes. I often need to create a rounded corner rectangle when processing customer logos for theming and I never remember how to do it quickly. This tutorial shows the best [...]

I have been tempted, and even used successfully, the Transfer.clone() method to duplicate an existing Transfer object. But Mr. Corfield told me today that I was insane for relying on such a thing which is apparently well documented. So I began looking for another way to easily duplicate a transfer object.
Why I [...]