Jun 2, 2009
Ever work with <cfdirectory> or <cfzip> and notice that they both ignore empty directories? This might make sense with some business logic, where an empty directory can (and should) be ignored. However, what if you want to ensure that empty directories are included in a zip file?
Read More
Mar 25, 2009
In this next installment of the series on using YUI, we are going to learn about YUI and the Dom. Generally speaking, scripting the DOM sucks. That might even be an understatement. Thankfully, we have innerHTML and a variety of tools provided by the YAHOO.util.Dom singleton class as well as the YAHOO.util.Element class.
Read More
Mar 10, 2009
As part of the ColdFusion User Group of Central NY CF Object Oriented Programming (OOP) series, I presented design patterns in ColdFusion. The objective of the presentation is to inform people about the basic design pattern principles that guide good OOP Programming.
Read More
Feb 5, 2009
Creating a TinyURL using ColdFusion is super simple, but I thought I would share if you are wondering where to start.
Read More
Jan 23, 2009
The Yahoo User Interface is very extensive JavaScript library that enables a developer to easily create a next generation web application. Why am I using YUI? Well, as you know I like the Ext library, which was originally built as an extension to the YUI library. If you have worked with either Ext or YUI, you can pick up the other one pretty quickly.
Read More
Dec 12, 2008
A conditional Insert is often used when inserting a record, and you want to make sure that the record doesn’t already exist. There are several ways to accomplish this task. First, you can rely on Primary Key or Unique constraints to ensure data integrity, which are best-practice and should be implemented. You can also add some logic to your SQL statements to prevent duplicate records.
Read More
Nov 11, 2008
At our user group meeting today we had ColdFusion Jeopardy. I think everyone had fun, and hopefully learned some stuff in the process. So, here’s your chance to give it a try…
Read More
Oct 29, 2008
Did you recently upgrade SVN from 1.4x to 1.5x? If so, you may that you cannot merge changes because you will get an error similar to this:
Retrieval of mergeinfo unsupported
The reason for this is because Subversion 1.5 has started the implementation of a new feature called “Merge Tracking”, which means that Subversion is now tracking what changes have been merged where in your code - similar to how it tracks changes made to your files between revisions.
Read More
Oct 16, 2008
On Tuesday I have a short presentation on getting started with Subversion (SVN) to the local ColdFusion User Group of Central New York.
The presentation focused on the following key elements:
* Learn about the client-server relationship with SVN
* Learn about setting up a SVN server
* Learn about the actions involved with using SVN
* Learn about the tools and resources
Read More
Oct 6, 2008
Here is a link to a great cheat sheet (or reference card/sheet, whichever you prefer to call it):
http://www.cs.put.poznan.pl/csobaniec/Papers/svn-refcard.pdf
Read More