Way back in 2008 I did a blog post on performant ways to concatinate strings in ColdFusion. I've just been working on improving the speed of an old website and thought it was good time to revisit the code. Read more »
I've been updating some error handling code and was using IsNull to detect if the URL and FORM scope exist (as some remote calls may not URL or form scopes). However, IsNull was always returning true. Read more »
I've been playing around with Sean Corfield's DI/1, a simple convention-based IoC framework. My preferred file structure doesn't work with the default convention, so I started thinking about a convention that would support my style. Read more »
This week I've been lucky enough to be speak as part of Adobe's ColdFusion Developer Week. The recording from my session on Building applications using ColdFusion 10 and ORM is now available Read more »
Marc Esher blogged about Hashing passwords with bcrypt in ColdFusion. Since Marc posted this, ColdFusion 10 has been released which has improved Java integration. so I thought I'd take his code and do it with ColdFusion 10. Read more »
Ever wondered if ColdFusion ORM gets all the records from the database and then filter them, or does it only get the records it needs from the database. Read more »
I'm please to announce that I will be speaking as part of the 2nd annual ColdFusion Developer Week hosted by Adobe. There will be several presentations covering a range of topics and levels, and best of all you can sign up for FREE. Read more »
A while ago I saw a post about using Google Analytics to log client side error messages. However, I use Aaron Greenlee's excellent Hoth project for handling error reporting and wanted to keep all my error logging in one place. Read more »