Charlie Arehart On ColdFusion 8's Hidden Gems

Posted November 14, 2007 at 7:58 AM

Tags: ColdFusion

I've had this one bookmarked for a while in my To Be Reviewed folder and finally got to reading it all the way through this morning. I'm talking about Charlie Arehart's presentation on Hidden Gems in ColdFusion 8. I read through the PDF version, but you can also watch his recorded Adobe connect presentation. If you haven't yet had a chance to look at this or watch his presentation, stop what you're doing and make this a priority. It's quite literally a laundry list of all the awesome features available in ColdFusion 8 that you need to know about.

Charlie Arehart is like the master of information organization. Between the User Group TV collection, Object Oriented Programming round-ups, and documents like this one, Charlie seems to have a super power for rounding up all the useful information on a given topic or area of interest and packaging it neatly for our benefit. It's pretty sweet!

Not only is this a great list for developers to read, I intend to use this list almost as a marketing tool through which I can sell ColdFusion 8 to my own company. When my boss asks me "Why should we upgrade to ColdFusion 8", it's great to be able to have something like to send him. At that point, the onus is practically on the company to provide a reason as to why we shouldn't upgrade.

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




Reader Comments

Nov 18, 2007 at 1:02 AM // reply »
14 Comments

Hey Ben, thanks so much for the kind words. I really appreciate it. I should say, though, for those who may be motivated to look at the presentation, that while Ben says it has "a laundry list of all the awesome features available in ColdFusion 8 that you need to know about", it actually is *just* a subset of them, not even all of them. I clarify that it's "hidden gems" and only about those features that don't get talked about a lot. I don't list many (over a dozen) of the prominent new features, so just be clear that you want to combine what I have with of the lists from Adobe or others who've listed the "big features".


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »