
We have bee using Git to some extent at work (Mannix Marketing, Inc.) for a while, and I though that it was high time that I start to do the same at home on personal projects.
Git is a FREE an open source, distributed version control system that is designed to handle everything from small to extremely large projects with speed efficiency.
First of all I installed Git (http://git-scm.com/) for Windows. It is pretty simply on Windows, as you just download the installer. Other operating systems may or may not have an installer, so you should google "GIT [operating system]" or just go to the main Git site. End result is that I now have Git running on my machine.
Next, I intalled TortoiseGit (http://code.google.com/p/tortoisegit/). This is a Git revision control client. There are many other clients, but using TortoiseGit allows me to install the Dreamweaver Extension called gitweaver (https://github.com/ChrisMcKee/gitweaver). This extension allows the integration of TortoiseGit and Adobe Dreamweaver. Nice!
So, once I have Git, TortoiseGit and gitweaver installed, I'm ready to get this going. For the most part, you can simply have a local repo (repository), but if you are colaborating on a project, then Git hosting is a must. There are sites like BitBucket.com, Github.com, BeanStalkApp.com, Unfuddle.com and many more. Setting up an account on most is a pretty simple task. I have used BeanStalkApp.com and Unfuddle.com - both have pros and cons compared with each other.
After setting up your repo you can not interact with Git directly from Dreamweaver. This is huge in both regard to productivity and project management.
I have started this on BounceHouses.com, F1Weekly.com and this site (blog.tobyandjoann.com), and I'm thinking that I may start adding other sites to, for the simple reason that version control, even for an individual on a single project, is a smarter way to work.

I came across this great tutorial from Perishable Press that demonstrates some really cool methods for E-Mail Obfuscation - that is the concealment of intended meaning in communication, or making an e-mail address unreadable to spambot farmers. I will be added this method to my collection of neat and handy tools.
Best Method for Email Obfuscation? • Perishable Press

I have created a detailed step-by-step to help you setup Adobe ColdFusion on a Windows machine using WampServer with Apache as the web server.
This is what I use for a development environment, and I completely recommend this to you if you are a ColdFusion Developer in need of a development environment and want to move away from Microsoft Internet Information Server (IIS).
https://docs.google.com/document/pub?id=1HqFDs6j_-2VCg7x4Y8X-T9wtJa2S9latFNN1_6EU6Ys
Please let me know if you have any questions. Thanks!

AIR, the Adobe Integrated Runtime, is part of the Adobe Flash platform that allows you to build and deploy a RIA (Rich Internet application) that will work the same whether you are on a Windows 7 machine, Windows XP, Apple Mac, and hopefully soon, the Android mobile phone platform.
This evening I decided to investigate AIR development a little, and I have created my first AIR App. I have named it "F1 Standings" as that is exactly what it is. Displays the current Formula 1 Driver and Team Standings.
You can download it here. You will need to install Adobe AIR to run this app.
Basically this app fires off an AJAX call to my home CF8 server where the data is gathered for either the Driver Standings or Team Standings, and then that process returns the data to the app, displaying the data on the screen.
Please comment with your feed back, and YES I know this is a very simply app. It's meant to be!
I was looking for a way to override the default version of jQuery that is being used in WordPress 2.9x and I came across this article that explains how to do this.
It doesn't say in the article where you place this function, but I figured that I'd slide it into the functions.php in my active theme and this did the trick.
Read the full article and get the code here Force WordPress to use the Latest Version of jQuery | bavotasan.com.