Bottom Up Programming
I've come across this article by Paul Graham a number of times, but somehow never got round to blogging about it. It is a really good approach to architecting an application that will be easy to maintain . . .
The "it" I am talking about is bottom up programming where you grow your language to better fit your domain concepts (often using multiple layers). In ColdFusion this could be done using UDFs, Custom tags and/or CFCs providing an API or Domain Specific Language that is closer to your domain.
I'm sure you'll have found yourself doing a lot of what this article suggests, but sometimes it is nice to have a context to put your efforts within.





Question: I've been reading about your DSM and framework stuff. You're aiming to be able to produce web apps in hours instead of weeks. A web application itself is already a code generation tool, producing HTML. So why code-gen the code generator? Can a single codebase of back end not produce the variations needed?