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

Clear Structure Keys in Coldfusion

Generally, If we want to clear keys value of any structure then we take it as list and use loop to clear data. That’s…

·1 min read
Uncategorized

ColdFusion Fastest String Concatenation Using CFSAVECONTENT

There are many way to concatenation string in coldfusion but there is one easiest way for that. it can be done using CFSAVECONTENT tag.…

·1 min read
Uncategorized

List Common and List Compare in Coldfusion

If you want to intersect between two list, look at the solution given below : [code:cf] <cffunction name="listCommon" output="false" returnType="string"><cfargument name="list1" type="string" required="true" /><cfargument…

·2 min read
Uncategorized

Comma Separated Values of Table Column in SQL Server

Today i came across one interesting inbulit function of sql that is ‘COALESCE’. Using which i can get comma separated values of a column…

·1 min read
Uncategorized

Dump all Scopes Together in Coldfusion

This is just a bit sharing of knowledge. You all are very well aware about dumping scopes as very often we require to do…

·1 min read
Uncategorized

Installing Ubuntu Server 11.04 64bit on Hyper-V

Installing Ubuntu 11.04 server 64bit on Hyper-V is very straight forward but does require some manual editing before it work like charm. Mainly adding…

·3 min read
Uncategorized

Master Detail Record in a One Row

In some cases we need a list of detail records according to master record. i.e. We need a list of detail table’s id for…

·3 min read
Uncategorized

Configure GIT Server On Windows Server 2008

We are using SVN since long time as version control system for our local development and quite happy with it as well until I…

·4 min read
Uncategorized

ColdFusion Schedule Task Error: The Cron Service Is Not Available

Recently I face strang error in five years of career in ColdFusion. Message: "The Cron service is not available." Detail: "This exception is usually caused by…

·1 min read
Uncategorized

Export Only Current Page of CFGRID to Excel

If you want to export only the current page of your CFGRID to Excel with also the gridsortcolumn and the gridsortdirection, then let’s take…

·4 min read
Uncategorized

CFPARAM in CFSCRIPT

Today i was working with cfscript and i wanted to use a cfparam inside cfscript and i came to one solution. This is what…

·1 min read
Uncategorized

ColdFusion Schedule Task Issue with Daily Every Task

Schedule task in ColdFusion is something I love most and I guess all ColdFusion developers are too. It is really easy to schedule any…

·2 min read