One major decision when it comes to performance optimizing your site is how to merge your CSS files, if at all. Let's say that you…
Accept fractions in place of numeric input
If there's one thing your competitor probably isn't doing, when it comes to online tools, it's accepting fractions for numeric input. For instance, if you…
ColdFusion / JDBC / MySQL & VarBinary fields
If you've used a varbinary field to store data, such as an encrypted password, you mind find that the JDBC Connector (used by ColdFusion) falls…
ColdFusion – copy form or url scope to request scope
<cfset StructAppend(request, form)> OR <cfset StructAppend(request, url)> Handy in the event that you're not sure which scope to expect your "inputs" from.
Bulk inserts to reduce trips to database
By combining multiple inserts into one bulk insert statement, you can reduce the total number of statements sent to the database, speeding up combined execution…
Country, City, State and Other location information from IP Address
If you wish to determine a remote visitor's country, city, state, postal code and other location information, I'd personally recommend integrating with a web service…
CFDocument image quality
If you find that your CFDocument PDF output bears poor image quality, it may be a quick fix. Double check the resolution on your image.…