2006

You are browsing the archive for 2006.

Tags in Subversion

A while back, I posted an entry about using Subversion and just got a comment on it a day or two ago with a question about tags.  Tags are absolutely essential in CVS, but in Subversion, they're a bit less required.  Still very useful, however.
In a nutshell, a tag is a named handle on a [...]

Now only Mostly Human

For the first time in my life, I'm now only mostly human.  Yesterday I had hernia surgery and got a plastic mesh implant to help strengthen the hole in my abdominal wall where the plumbing for my testicles passes through.  In a nutshell, the hole is supposed to be tight (only enough to let the [...]

To Closure Or Not To Closure

Sean, programmer extrordinaire, released a closures library for CF and it's generated a lot of interest.  Unfortunately, a lot of the interest has been of the "what are closures and what are they good for" type.  So I thought I'd contribute my thoughts.
Closures, at a most basic level, are functions defined inside a scope of [...]

Charlie's Stalking

Charlie Arehart is stalking bloggers, and wants the bloggers to help.  Just kidding, of course, but he makes a good point about the anonymity of a lot of blogs.  I can't say I'm all over the personal sharing, but I've at least got my name and a contact form available.  People can build enormous personal [...]

Google Screwed Up?

Part of the application I spend most of my time working on is consumption and aggregation of XML feeds, and when the month of October turned, and interesting thing happened: processing a significant number of feeds suddenly started erroring.  We don't do it manually, instead using the very capable rssatom.cfc from Roger Benningfield, so the [...]

New App – Purchase Tracker

I've been using GnuCash for my money management for a long while, and quite like it.  But certain transactions cause problems.  In particular, when Heather goes to the store and buys apples and laundry detergent, the transaction needs to be split between groceries and household expenses.  You can imagine that when there are 30 different [...]

Mollio

I've used Mollio on two projects now, and I have to say I'm really impressed.  The guys down at Daemon have done a great service to web developers at large by releasing Mollio as they have.  I can't say I particularly care for the red/black theme, but it's consistent, attractive, and unless you've got branding [...]

Get Firefox – Piss Off

After much griping about my Get Firefox banner, I've added a 'piss off' (read: opt-out) link to the banner that will set a cookie so you won't see it again for 30 days.  After that, it'll tell you you still need a better  browser, but you can, of course, opt out again, ad nauseam.

CSS and Get Firefox

Everyone knows that browser compatibility is the bane of web developers.  If it's not a CSS bug or some DOM incompatibility, it's a plugin version issue (what's that, you say?  I'm thinking of something that starts with 'F' and ends with 'lex'….).  So help people put their best foot forward with a neat little CSS [...]

floatToFraction UDF

Someone on CF-Talk just asked about converting floating point numbers back to decimals.  Always one to enjoy a little abstract thought on a random topic during my lunch, I threw together a solution:
function floatToFraction(num, maxDenom) { var denom = ""; var numer = ""; var intPart = fix(num); var sigFigs = [...]