There are a few tricks that can be used to summarize a body of text into a paragraph. One of the simplest methods is to…
ColdFusion dynamic sitemap
I searched the web this morning in hopes that someone has already written a recursive sitemap generator in ColdFusion. It may be out there, but…
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…
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…
Normalizing a string (PHP)
We'll present one algorithm below which demonstrates the use of a loop and the ord function to step through the characters in a string. In…