October 18, 2002
Tab completion in Windows 2000
One of my favorite features of unix is tab completion. You can type the first letter of a directory, and then hit tab and it will complete the rest for you. This is enabled by default on Windows XP, but on windows 2000 it isn't. Here's how you enable it. Run regedit.
October 17, 2002
Looking for Java Blogs?
October 15, 2002
How to make ColdFusion MX go to sleep
Many people have had the need for a ColdFusion page to sleep, typically between iterations of a loop. There is a tag called CFX_Sleep in the Tag Gallery, but in ColdFusion MX you don't need a CFX tag to make the current processing thread sleep using the static sleep method on the java.lang.
October 14, 2002
Uptime for Windows 2000, 2003, XP and NT
Almost every unix operating system comes with a utility called uptime that tells you how long your server has been running.Unfortunitly no such tool comes with windows, but there is a pretty fool proof way to determine the date you computer was last started.
October 10, 2002
Batch Files to Restart Services on Windows
I wrote some batch files today for restarting services on windows. The bat files can be used to restart ColdFusion MX or IIS services on Windows NT/2000/XP.Batch File to restart ColdFusion MX
@echo off
REM - File: cfmxrestart.
October 09, 2002
CFC's - private works like protected
I noticed yesterday that when you use access="private" in a CFC function, inherited CFC's also have access to this function.In object oriented languages such as Java, C++, or C# this type of access is known as "protected" access.






