I’ve been wondering if I should be using Try / Catch for more readable code. My biggest worry is of course efficient. Found this concise test on JSFiddle. http://jsfiddle.net/jonjenkins/adJQn/
I love dark themes and really wisth CFEclipse installed with one standard. Found this great post from Craig Kaminsky on easily installing pre-made theme files. Check it out. http://craigkaminsky.me/cfeclipse-themerations
Guess what? It doesn’t exist. You are so foo bar! The work around is to use: include “mycfsettinginclude.cfm”; In that file just add one line, your cfsetting tag. It’s hacktastic but it works. Oh, and don’t forget to bitch to Adobe about this oversight. sheesh!
When working with cfdirectory or DirectoryList you can pass in multiple filters like this “*.png|*.jpg”. Pretty simple and the pipe is easy to remember. When using cffileupload though, you have to separate your filters using a comma. e.g. “.png,.jpg” This sucks if you’re trying to store a single filter and use it in two places. [...]
You can pass a structure to your methods using this: myFunc(argumentCollection=myStruct);