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

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
Uncategorized

cfajaxproxy issue with ColdFusion 9.0.1

I was really happy when I heard about coldfusion 9.0.1 update and specially because of Amazon S3 could support. Recently I have started working…

·2 min read
Uncategorized

jQuery Code and Syntax Guidelines for Improved Code Performance

If you want to publish your jQuery plugins following jQuery core code writing guidelines is a good idea. Here are some of the guidelines.…

·2 min read
Uncategorized

Custom Tag To Log Data

This may not be the perfect code for logging data to a custom file in coldfusion.Any views/suggestions will be welcomed. [code:cf]<!— String List Of…

·3 min read
Uncategorized

An Introduction to Image Processing

An image is an array, or a matrix, of square pixels (picture elements) arranged in columns and rows. In a (8-bit) grayscale image each…

·2 min read
Uncategorized

SQL Server Get Table List from Column Name

Today, I wanted to list down all table from column name in sql server. Sql server stores all table, column, database or etc in…

·1 min read
Uncategorized

New ColdFusion 9 Feature: CFMAP

One of our projects had a requirement for displaying a google map on one the webpages. There are three options for setting google map…

·2 min read
Uncategorized

New method Passing Attributes to jQuery 14

jQuery supports adding attributes to collection of elements with Attr function. Previously if we wanted to add stylesheet then we had to apply CSS…

·1 min read
Uncategorized

Popular Video Container Formats

Audio Video Interleave This is an .avi extension. The AVI container format was invented by Microsoft in a simpler time, when the fact those…

·2 min read
Uncategorized

How to Prevent Your Site from Being Framed

If you do not want that someone links your web site within a frame, the following javascript code will enable you to prevent your…

·1 min read
Uncategorized

CFPresentation

One of the tags introduced in ColdFusion 8 is CFPRESENTATION, which allows you to create a Flash-based presentation that is very slick and can…

·2 min read