Skip to main content

Posts

Showing posts from 2009

Flex getItemAt() function vs Array Notation

Just a quick tip I found while doing some debugging on a Flex project I am working on. While myArray.getItemAt(0).firstname and myArray[0].firstname return the same value, the getItemAt() function will save you ten steps. By ten steps I mean that 10 steps after the compiler hits the line that says myArray[0].firstname, it will run the getItemAt() function anyway. It is doubtful that you will see any significant performance gains out of this. So, it may take more time to type out the getItemAt() function over array notation, but it processes quicker.

Adobe ColdFusion tour coming to Nashville!

WHO: Greg Wilson (an AIR, ColdFusion, Flex, LiveCycle ES evangelist      at Adobe) WHAT: Greg will be discussing new features in ColdFusion, how      ColdFusion integrates with other Adobe technologies like AIR, Flex      and LCDS.      Also, Greg will be showing some demo's of the new features that      are going to be in the next ColdFusion release.      There will be food, drinks and of course prizes/giveaways that you      don't want to miss.(<cfhint = you have to be registered to be      eligible for giveaways!>) WHERE: Russ Carroll Financial Peace Conference Center,1749 Mallory      Lane, Brentwood, Tennessee 37027       Map of Location WHEN:Thursday, June 18, 2009 at 7:00pm CDT HOW: Register at the Nashville ColdFusion User Group site.

Try/Catch in OnError function of Application.cfc

So you're stoked that you switched to application.cfc and you wont have to see those hard ColdFusion errors since app cfc has the OnError function? Sorry to bust your bubble, but what if your OnError function throws an error(referencing a variable that isn't present for example)? Then what? That's right, a hard ColdFusion error will be shown and hopefully you were smart and turned off the Robust Exception option in the ColdFusion Administrator! :) To remedy this situation you could add in a try/catch block right there in the OnError function. A more generic process could be put in the catch block that perhaps should never throw an error, something very simple that doesn't reference any variables that may not be present.

State of Tennessee Pays $135M for Edison Program

This is one of the top stories in Nashville right now, because the program is so horrible and so much money was spent on it. 135 million dollars!!! I would have happily done it for $1 Million and I would have made sure it was done right! Also, this could be one of the main contributors to State employees not getting a raise this year. They are not even getting a cost of living raise this year! Think about how far $135M can go. Even if you divide $135M 40,000 ways, that is still $3,375 that could be going towards someones raise and potentially back into the economy.

ColdFusion Val() function Gotcha.

Try this and you will see what i am talking about <cfdump var="#Val(08234)#"> <cfdump var="#Val(80234)#"> You will see that in the first dump strips the 0 off of the number leaving you with 8234...not good for people that believe in wrapping Val() around everything that should be numeric. NOTE: It doesn't matter if there is one 0 or 20 at the beginning of the number, they will all be stripped off.

Want to view a summary of your ColdFusion Components

If you need a quick overview of one of your ColdFusion components for documentation purposes for example, here is how you do it. Go to your browser of choice and type in the URL you use to get to your CF Administrator. For example, I access my CF Administrator with: http://127.0.0.1:8302/CFIDE/administrator/index.cfm Next delete everything after the CFIDE/ and copy and paste: componentutils/cfcexplorer.cfc?NAME=CFIDE.adminapi.datasource& METHOD=getcfcinhtml This will show you all the details about the datasource.cfc that is used in the coldfusion administrator. you can replace the 'CFIDE.adminapi.datasource' with any cfc you want to view. just replace that string with the component_name of your choice.