Orange is my favorite color

Archive for the 'Web/Internet' Category


We’ve been hard at work the last few weeks on making real, meaningful ground on CFPAYMENT, the open source ColdFusion payment processing library that generalizes many different gateways into a single, pluggable API. In the run-up to 1.0, I wanted to share some snippets to get you excited about using cfpayment for your next [...]

I need to run a customer satisfaction survey for 2008 so I spent some time reviewing the available online survey options and comparing which would be most suitable for my needs. I am not a survey junkie so it doesn’t make sense for me to buy a premium service or subscribe on an ongoing [...]

Doing a little Javascript hacking today and have a few parsers to share for the TableSorter jQuery plugin. I’ve written some in the past but more is always merrier.
Sorting alphanumeric data in numeric order
I have member numbers which can look like ‘A23423423′ or ‘2000-342′ or ‘220342BMW’ but I want to sort them [...]

I read a post by Jared Rypka-Hauer this morning on the Model-Glue list about his Apache-CF configuration that got me nodding in agreement. He sets up his Apache like so:

I leave CFIDE and WEB-INF in the default location and create a symbolic link to it in the webroot of any vhost that needs access [...]

Found something out yesterday that I thought was interesting and a little surprising. I have my main application, let’s call it “www”. I am creating a new codebase called “api” that will be a RESTful API for third-party consumers (more on that later). I want to have the two applications share the same [...]

Transfer’s nifty cache causes real problems if you’re running a cluster as data changes without notifying other nodes. Over time, one server may report value A while another reports value B and the only way to correct this is to turn caching off. Boo! The solution is TransferSync, a recent project by [...]

I was reading about reinit troubles on the Coldspring users mailing list today. It made me think this might be an interesting meme to see how many ways people restart their applications.
My Routine
I run a Model-Glue, Coldspring and Transfer application. Here’s how I restart my application:
<!– see if we should restart the [...]

Have you had your application in production for awhile? Maybe you have a little traffic now and you’re starting to see some places where performance could be better? The easiest place to find gains that will benefit your entire application is usually in the database. Because the schema tends to be [...]

Let’s talk about being an e-commerce company. We have this fun thing called PCI DSS that has a few hundred security and procedural requirements for anyone taking credit cards. Then we have third party integrations like product fulfillment that require us, as the intermediary, to pass around the credit card number to complete [...]

The title is a long way of saying I have domain.com and I also have domainS.com, plural, in case people mistype the name. If someone hits my site as domainS.com, I want to automatically correct it to be domain.com to maintain my branding. This is pretty straightforward to fix with your <VirtualHost> and [...]