Insights

Written by the people doing the work.

We publish on agentic AI, automation, ColdFusion and modernization; the topics where we think the received wisdom is currently wrong. No ghostwriting, no vendor summaries.

Uncategorized

jQuery Multiple Selection

Today, I am very glad to announce finally I have made jQuery multi selection plug-in. I am really thankful to my one of friend…

·3 min read
Uncategorized

List Out All Coldfusion Function

How to list out all ColdFusion function? Whenever we want to see all ColdFusion function, we just open our favorite search engine (it may…

·1 min read
Uncategorized

Installing RAILO Tomcat on Windows Step By Step – Part II

In part-I I have explained how to configure RAILO with Tomcat where we copied all RAILO jar files into tomcat’s lib folder. If you…

·1 min read
Uncategorized

Running Multiple Instances of RAILO on Tomcat

Week ago I wrote blog about "Installing RAILO with Tomcat" this is what I have first time installed RAILO on my PC. After getting…

·2 min read
Uncategorized

List Out All Coldfusion Data Sources Along with Username and Password

Using ColdFusion service Factory we can take all details of data sources, database, username, class, map details (database role), driver.The following code can be…

·2 min read
Uncategorized

Place Scripts at the Bottom of Your Page

Placing JavaScripts at the bottom of the page is a good way to makeother things of the page download faster. Keep in mind —…

·1 min read
Uncategorized

Using ColdFusion Code Within .htm/.html File

If you want to use .htm and .html files in coldfusion.you should follow below step.you will need to edit the web.xml file located generally…

·2 min read
Uncategorized

How to Hide Output in Coldfusion Function Without Set Attribute output=false

Everybody know’s how to print output in function ,you just need to set attributes output=true. But here I have a function which outputs some…

·2 min read
Uncategorized

A Little About Coldfusion Sessions and General Logout Code

I just started working on ColdFusion, and I have some interesting stuffs, that I’d like to share with you. For any web application, we…

·3 min read
Uncategorized

How to Declare Argument’s Attributes in cfscript Function

All persons are familiar with cfscript function would like to know how to define parameters qualifiers in cfscript function.It is just FYI on how…

·1 min read
Uncategorized

Reset Identity Column Value

Easiest way to reset the identity column value in MSSQL is to use ‘TRUNCATE TABLE’ on the table.This will reset the identity column value.This…

·1 min read
Uncategorized

Anonymous Procedure to Measure Query Performance by Averaging

Following code can be used to measure query elapsed time by performing multiple runs of the same query and finding the average elapsed time…

·1 min read