<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Jamie Krug&apos;s ColdFusion Blog - ColdFusion</title>
			<link>http://jamiekrug.com/blog/index.cfm</link>
			<description>Jamie Krug&apos;s ColdFusion blog, regarding ColdFusion/CFML and other programming adventures as well as some learning experiences. EDB: Event Driven Blogging (in the event that I actually have something worth sharing:)</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 19:44:54 -0400</pubDate>
			<lastBuildDate>Tue, 31 Aug 2010 22:27:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jamie@jamiekrug.com</managingEditor>
			<webMaster>jamie@jamiekrug.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>jamie@jamiekrug.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Jamie Krug&apos;s ColdFusion Blog</title>
				<link>http://jamiekrug.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>CFML on Tomcat via Apache AJP Proxy, Redux</title>
				<link>http://jamiekrug.com/blog/index.cfm/2010/8/31/cfml-tomcat-apache-ajp-proxy-redux</link>
				<description>
				
				I often use &lt;a href=&quot;http://tomcat.apache.org/&quot;&gt;Tomcat&lt;/a&gt; as my servlet container to power my CFML apps (works great for &lt;a href=&quot;http://www.adobe.com/products/coldfusion/&quot;&gt;ColdFusion&lt;/a&gt;, &lt;a href=&quot;http://www.openbluedragon.org/&quot;&gt;Open BlueDragon&lt;/a&gt; and &lt;a href=&quot;http://www.getrailo.org/&quot;&gt;Railo&lt;/a&gt;!). I&apos;ve been perfectly happy with the power and flexibility of using Apache HTTPD&apos;s mod_rewrite with an AJP proxy, as &lt;a href=&quot;http://corfield.org/blog/post.cfm/Railo_for_Dummies_Part_IV_Appendix&quot;&gt;Sean Corfield has detailed&lt;/a&gt;. Then, after repeating a lot of rewrite rules in all of my virtual host definitions, I decided to merely place the following in my main Apache configuration file:

&lt;code&gt;&lt;Proxy *&gt;
    Allow from 127.0.0.1
&lt;/Proxy&gt;
ProxyPreserveHost On
ProxyPassMatch  ^/(.+\.cf[cm])(/.*)?$  ajp://localhost:8009/$1$2&lt;/code&gt;

That&apos;s it! Now, any Apache virtual hosts for CFML application can be defined as simple as this:

&lt;code&gt;&lt;VirtualHost *:80&gt;
    ServerName myrockinapp
    DocumentRoot /var/www/myrockinapp
    DirectoryIndex index.cfm
&lt;/VirtualHost&gt;&lt;/code&gt;

I can still easily add URL rewriting to my Apache virtual hosts. For example, when using &lt;a href=&quot;http://www.getmura.com/&quot;&gt;Mura CMS&lt;/a&gt; I often set the properties siteIdInURLs=0 and indexFileInURLs=0 to make super clean looking URLs (with no siteID or index.cfm in the URLs). This then of course requires a rewrite rule to ensure the proper requests are passed to Tomcat, which is as simple as adding these lines to your virtual host (or an .htaccess file in your Web root):

&lt;code&gt;RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^([a-zA-Z0-9/-]+)$ /index.cfm%{REQUEST_URI} [PT]&lt;/code&gt;

Makes all the configuration I used in &lt;a href=&quot;http://jamiekrug.com/blog/index.cfm/2009/5/22/url-rewrite-goodies-for-apache-tomcat-railo-and-mura-cms&quot;&gt;this post&lt;/a&gt; look a bit silly now :P

Also, if you&apos;re interested in a clean, production-worthy server setup running on &lt;a href=&quot;http://www.ubuntu.com/&quot;&gt;Ubuntu&lt;/a&gt; 10.04 with Railo, Tomcat, Apache and MySQL, I have this fairly well documented in &lt;a href=&quot;http://docs.google.com/View?id=dchcmx7_70dqhqgsdw&quot;&gt;this Google Doc&lt;/a&gt;.
				
				</description>
						
				
				<category>CFML</category>				
				
				<category>Tomcat</category>				
				
				<category>Open BlueDragon</category>				
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<category>Railo</category>				
				
				<category>Apache</category>				
				
				<pubDate>Tue, 31 Aug 2010 22:27:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2010/8/31/cfml-tomcat-apache-ajp-proxy-redux</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>cf.Objective() 2010: Intro to JEE Servlet Containers for ColdFusion Developers</title>
				<link>http://jamiekrug.com/blog/index.cfm/2010/1/27/cf-objective-2010-jee-servlet-containers-for-coldfusion-developers</link>
				<description>
				
				I am thrilled and honored to have the opportunity to speak at this year&apos;s &lt;a href=&quot;http://cfobjective.com/&quot;&gt;cf.Objective()&lt;/a&gt; 2010 conference! My session title is &quot;Intro to JEE Servlet Containers for ColdFusion Developers&quot; and here is the preliminary description I used when submitting my session topic:

&lt;blockquote&gt;An alternate title for this session might be, &quot;What the heck is a servlet container and what does it have to do with CFML?&quot; We&apos;ll discuss the relationship between CFML &quot;engines&quot; (i.e., servlets), JEE application servers and servlet containers, and Web servers. Understanding the basics of this relationship can provide CFML developers with a greater confidence to leverage underlying Java tools, improve development environments and deployments and write more flexible and powerful applications.&lt;/blockquote&gt;

&lt;h3&gt;Why Bother?&lt;/h3&gt;

I submitted this topic because I believe there are &lt;em&gt;many&lt;/em&gt; CF developers, of all skill levels, with very little knowledge in this area. I was most certainly one of these developers for the better part of my CF career thus far! Over the past year or two I&apos;ve developed a much deeper understanding of Java Enterprise Edition (JEE/J2EE), Servlets, Servlet Containers, Java Application Servers and Web servers. Most importantly I&apos;ve learned a lot more about how &lt;a href=&quot;http://www.adobe.com/products/coldfusion/&quot;&gt;Adobe ColdFusion&lt;/a&gt;, &lt;a href=&quot;http://openbluedragon.org/&quot;&gt;Open BlueDragon&lt;/a&gt; and &lt;a href=&quot;http://www.getrailo.org/&quot;&gt;Railo&lt;/a&gt; leverage the power of these Java platform specifications.

Much of my learning has been out of necessity -- and I feel like I had to do it the hard way (on my own)! But looking back, had I possessed some base knowledge in the right areas, I really think I may have put all the puzzle pieces together much more quickly. So I&apos;m hoping to provide these building blocks in my cf.Objective() session this year.

You don&apos;t need to become a Java guru to grok these concepts, but they can greatly increase your toolset as a ColdFusion developer, allowing you to design and develop more robust applications and gain greater marketability in the job market. Here are some points that I hope to provide attendees:

&lt;ul&gt;
&lt;li&gt;10,000-foot view of how CFML Engines, Servlet Containers, Java Applications Servers and Web Servers interact to make the magic we&apos;ve all come to know and love&lt;/li&gt;
&lt;li&gt;Understanding the many options the Adobe ColdFusion installer provides and what you can (and might want to) do on your own&lt;/li&gt;
&lt;li&gt;Confidence and flexibility in CF development environments (application isolation, starting app servers from your IDE, super-simple portability, etc.)&lt;/li&gt;
&lt;li&gt;Configuration options to keep both development and production environments running smoothly&lt;/li&gt;
&lt;li&gt;Understanding and leveraging EAR/WAR deployments&lt;/li&gt;
&lt;li&gt;Awareness of the many options and not being afraid to check them out!&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Lots to talk about, feedback needed!&lt;/h3&gt;

As you can imagine, there is a lot that can be covered here. My goal for this session is to provide an understanding of the important pieces of the big picture, tools you can put to immediate use, and a confidence to safely explore more deeply. If any of the concepts or buzz words I&apos;ve mentioned in this post are scary, please know that they&apos;re not -- not if you start in the right place.

If you feel any one area or concept that I&apos;ve mentioned would be of greatest value to you... If you have a more specific question that keeps coming up, or something that you continue to avoid... If you know this stuff cold, but see common problem points out in the CFML community... I would highly value your feedback as I continue to refine my session preparation. Please comment on this blog post or use my &lt;a href=&quot;http://jamiekrug.com/blog/contact.cfm&quot;&gt;contact form&lt;/a&gt; to contact me directly.

Whether you&apos;re already grokking some or none of what I&apos;ve discussed here, I hope you can make it to my cf.Objective() session and take away some useful bits!
				
				</description>
						
				
				<category>CFML</category>				
				
				<category>Open BlueDragon</category>				
				
				<category>ColdFusion</category>				
				
				<category>Java</category>				
				
				<category>Railo</category>				
				
				<pubDate>Wed, 27 Jan 2010 15:23:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2010/1/27/cf-objective-2010-jee-servlet-containers-for-coldfusion-developers</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CFC Creation Time in ColdFusion 8/9, Open BlueDragon 1.1 and Railo 3.1</title>
				<link>http://jamiekrug.com/blog/index.cfm/2009/7/21/cfc-creation-time-in-coldfusion-8-9-open-bluedragon-11-and-railo-31</link>
				<description>
				
				There&apos;s lots of chatter about CFC creation performance in the popular CFML engines (&lt;a href=&quot;http://www.adobe.com/products/coldfusion/&quot;&gt;Adobe ColdFusion&lt;/a&gt;, &lt;a href=&quot;http://openbluedragon.org/&quot;&gt;Open BlueDragon&lt;/a&gt; and &lt;a href=&quot;http://www.getrailo.org/&quot;&gt;Railo&lt;/a&gt;), and plenty of others have ran their own tests, but I&apos;m just curious and had to see some tests for myself. 

I do not intend to encourage anyone to choose any one engine over another solely based on these tests. This is just one small indicator of the many performance considerations! In a real world application, there are &lt;strong&gt;many&lt;/strong&gt; other performance considerations (hardware, operating system, application server, JVM tuning, CFML engine admin settings, various cache mechanisms, database server, database tuning, etc.).

I&apos;m just focused on the speed of CFC creation here. In many small or medium sized apps, this is not much of a factor, but in larger applications where large sets of objects need to be created, this can potentially become crippling to application performance.

Also keep in mind that not all CFML applications are guaranteed or even likely to migrate flawlessly between any two CFML engines, despite lots of great progress towards compatibility and a core CFML spec. There are also lots of vendor specific features that may sway a particular developer or team to a particular CFML engine, and this may vary from project to project.

I could ramble on with more disclaimers, but let&apos;s get to the good stuff!
				 [More]
				</description>
						
				
				<category>CFML</category>				
				
				<category>Open BlueDragon</category>				
				
				<category>ColdFusion</category>				
				
				<category>Railo</category>				
				
				<pubDate>Tue, 21 Jul 2009 16:50:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2009/7/21/cfc-creation-time-in-coldfusion-8-9-open-bluedragon-11-and-railo-31</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>&quot;Does anyone have an opinion on Adobe Coldfusion?&quot;</title>
				<link>http://jamiekrug.com/blog/index.cfm/2009/7/2/opinion-on-adobe-coldfusion-cfml</link>
				<description>
				
				&lt;p&gt;A (very) brief list of ColdFusion/CFML resource links in response to Tweet from &lt;a href=&quot;http://twitter.com/ryanmaurodesign&quot;&gt;@ryanmaurodesign&lt;/a&gt;: &amp;quot;Does anyone have an opinion on Adobe Coldfusion?&amp;quot;&lt;/p&gt;
&lt;p&gt;The short answer: yes :) There is a vibrant CFML community and many will be excited to tell you why it&apos;s so fantastic!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.adobe.com/products/coldfusion/evangelism_kit/&quot;&gt;Adobe ColdFusion Evangelism Kit&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Other major (open source and free) CFML engines:&lt;br /&gt;
&lt;a href=&quot;http://www.openbluedragon.org/&quot;&gt;Open BlueDragon&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.getrailo.org/&quot;&gt;Railo&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.opencfml.org/&quot;&gt;CFML Advisory Committee&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;ColdFusion is a Java EE application... &lt;a href=&quot;http://en.wikipedia.org/wiki/Coldfusion#ColdFusion_and_Java&quot;&gt;http://en.wikipedia.org/wiki/Coldfusion#ColdFusion_and_Java&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Just a few of the very many busy bloggers:&lt;br /&gt;
&lt;a href=&quot;http://forta.com/&quot;&gt;Ben Forta&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://bennadel.com/&quot;&gt;Ben Nadel&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.carehart.org/&quot;&gt;Charlie Arehart&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://halhelms.com/&quot;&gt;Hal Helms&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.coldfusionjedi.com/&quot;&gt;Ray Camden&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://corfield.org/&quot;&gt;Sean Corfield&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;...and a bunch more ;-)&lt;br /&gt;
&lt;a href=&quot;http://coldfusionbloggers.org/&quot;&gt;http://coldfusionbloggers.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A bunch of open source ColdFusion apps (as well as other Adobe RIA related stuff):&lt;br /&gt;
&lt;a href=&quot;http://riaforge.org/&quot;&gt;RIAForge&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Popular MVC frameworks (there are more):&lt;br /&gt;
&lt;a href=&quot;http://www.coldboxframework.com/&quot;&gt;ColdBox&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.fusebox.org/&quot;&gt;Fusebox&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.mach-ii.com/&quot;&gt;Mach-II&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.model-glue.com/&quot;&gt;Model-Glue&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Other popular frameworks (there are more):&lt;br /&gt;
&lt;a href=&quot;http://coldspringframework.org/&quot;&gt;ColdSpring (&amp;quot;Spring framework for ColdFusion&amp;quot;)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://reactorframework.com/&quot;&gt;Reactor (ORM)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.transfer-orm.com/&quot;&gt;Transfer ORM&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;There&apos;s a ton of other great information out there, so go check it out! (Ignore the occasional/ignorant &amp;quot;ColdFusion is dead&amp;quot; nonsense that somehow still creeps up from time to time, despite continued growth!:)&lt;/p&gt;
				
				</description>
						
				
				<category>CFML</category>				
				
				<category>ColdFusion</category>				
				
				<category>Railo</category>				
				
				<pubDate>Thu, 02 Jul 2009 23:08:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2009/7/2/opinion-on-adobe-coldfusion-cfml</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>cfmail using Gmail SMTP</title>
				<link>http://jamiekrug.com/blog/index.cfm/2009/2/13/cfmail-using-Gmail-SMTP</link>
				<description>
				
				I wanted to have a cfmail tag use my Gmail SMTP to send mail, which was relatively straightforward, but there is some vague language in the Google help doc that didn&apos;t immediately translate to cfmail attribute settings. I did find plenty of search results on the topic, but most threads were a little confusing and noted differing experiences between developers. So I&apos;ve taken a little time to experiment and thought I&apos;d share the results.

From both my gmail.com account and my Google Apps for Your Domain mail (gmail for custom domain name) accounts I was able to find the same &lt;a href=&quot;http://mail.google.com/support/bin/answer.py?answer=13287&quot;&gt;help doc&lt;/a&gt; for standard POP/SMTP configuration.

We can quickly deduce that the username attribute should be your full e-mail address (including @gmail.com or @your_domain.com), and the password is of course your Gmail password.

The help doc provides the following information for the outgoing/SMTP server configuration:

&lt;blockquote&gt;smtp.gmail.com (use authentication)&lt;br /&gt;
Use Authentication: Yes&lt;br /&gt;
Use STARTTLS: Yes (some clients call this SSL)&lt;br /&gt;
Port: 465 or 587&lt;/blockquote&gt;

So, how does the above information translate to relevant cfmail tag attributes (server, port, username, password, useSSL, useTLS)? It&apos;s a bit more specific than the Gmail help doc suggests...
				 [More]
				</description>
						
				
				<category>CFML</category>				
				
				<category>Open BlueDragon</category>				
				
				<category>Gmail</category>				
				
				<category>ColdFusion</category>				
				
				<category>Railo</category>				
				
				<pubDate>Fri, 13 Feb 2009 07:35:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2009/2/13/cfmail-using-Gmail-SMTP</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion round() function bug when operation performed on argument</title>
				<link>http://jamiekrug.com/blog/index.cfm/2009/2/12/ColdFusion-round-function-bug-when-operation-performed-on-argument</link>
				<description>
				
				&lt;em&gt;&lt;strong&gt;UPDATE (July 15, 2009):&lt;/strong&gt; This &quot;bug&quot; still exists in &lt;a href=&quot;http://labs.adobe.com/technologies/coldfusion9/&quot; title=&quot;Adobe ColdFusion&quot;&gt;Adobe ColdFusion 9 beta 1&lt;/a&gt;. It also seems to behave the same in &lt;a href=&quot;http://openbluedragon.org/&quot; title=&quot;Open BlueDragon CFML Engine&quot;&gt;OpenBD 1.1&lt;/a&gt;. This bug does not seem to exist in &lt;a href=&quot;http://www.getrailo.org/&quot; title=&quot;Railo CFML Engine&quot;&gt;Railo&lt;/a&gt; (I can&apos;t reproduce any similar problems in Railo 3.0 or Railo 3.1). For example, round(4.0005*1000) outputs 4000 from both AdobeCF and OpenBD while Railo outputs the expected 4001. There may very well be other scenarios where a floating point representation causes similar unexpected results in Railo as well, but I have not been able to find it yet (nor have I performed an absolutely thorough test, maybe soon if time permits).&lt;/em&gt;

Have you ever used a CFML trick like this to round a number to the nearest hundredth?

&lt;code&gt;&lt;cfoutput&gt;#round(someNumber*100)/100#&lt;/cfoutput&gt;&lt;/code&gt;

I have, and I never had a problem, until...

&lt;code&gt;&lt;cfscript&gt;
	valueA = 4000.5;
	valueB = 4.0005*1000;
	roundedA = round(valueA);
	roundedB = round(valueB);
&lt;/cfscript&gt;&lt;/code&gt;

You&apos;d be perfectly sane to expect the first two variables to output as 4000.5 and the second two (rounded) to output 4001. Unfortunately, &lt;em&gt;roundedB&lt;/em&gt; is output as &lt;em&gt;4000&lt;/em&gt;, &lt;strong&gt;not&lt;/strong&gt; &lt;em&gt;4001&lt;/em&gt;!

This definitely appears to be a bug, but I do have a rather simple workaround...
				 [More]
				</description>
						
				
				<category>CFML</category>				
				
				<category>Open BlueDragon</category>				
				
				<category>ColdFusion</category>				
				
				<category>Railo</category>				
				
				<pubDate>Thu, 12 Feb 2009 21:44:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2009/2/12/ColdFusion-round-function-bug-when-operation-performed-on-argument</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Hello, [blog] world!</title>
				<link>http://jamiekrug.com/blog/index.cfm/2009/2/12/Hello-blog-world</link>
				<description>
				
				Yes, it was probably at least two years ago when I first thought, &quot;I should start blogging,&quot; and here, finally, is my first ever post. Since this will be a blog about ColdFusion development and other programming related topics, I couldn&apos;t resist a &quot;hello world&quot; style title for my first post. That said, I&apos;d like to share a little about why I decided to start blogging, what I hope to share and what I hope to gain from blogging.

First, my relevant geek background, in a nutshell:

&lt;ul&gt;&lt;li&gt;First program written in BASIC on a TRS-80 to calculate my baseball batting average at approximately 10 years old.&lt;/li&gt;
&lt;li&gt;Geeked out in MS-DOS, C programming and a touch of Perl (1989-1994).&lt;/li&gt;
&lt;li&gt;Finally made the switch from DOS to Windows 95 in 1996.&lt;/li&gt;
&lt;li&gt;Entered the University of Rochester as a computer science major -- a little too disinterested in many of the non-programming topics -- graduated with a music degree and a minor in mathematics, but also got a good little dose of data structures, Java and C++.&lt;/li&gt;
&lt;li&gt;HTML, MS Access and other general computer-related gigs for a couple years (1998-1999).&lt;/li&gt;
&lt;li&gt;Web development using ASP scripting with MS Access and SQL Server databases (1999-2002).&lt;/li&gt;
&lt;li&gt;Fell in love with ColdFusion around 2001 (using ColdFusion 4.52 at first) and used it to build and maintain dozens of sites (2001-2003).&lt;/li&gt;
&lt;li&gt;Really started digging in to object oriented CFML development and helped build, grow and maintain a group of large-scale applications primarily running Mach-II and ColdSpring (with a touch of Transfer, Reactor and Model-Glue) (2004-2008).&lt;/li&gt;
&lt;li&gt;Read on for present-day geekiness...&lt;/li&gt;&lt;/ul&gt;

In October of 2008 I decided to go solo and freelance develop again to have a better opportunity to code and learn and code and learn (as opposed to management and meetings and management and meetings). I&apos;ve spent the last few months doing nothing but coding and learning, and I&apos;m loving it! My main project right now is &lt;a href=&quot;http://www.mortgages.com/&quot;&gt;www.mortgages.com&lt;/a&gt;, which I&apos;ve built up from a blank slate, using &lt;a href=&quot;http://www.adobe.com/products/coldfusion/&quot;&gt;ColdFusion&lt;/a&gt; 8 Enterprise on Linux, &lt;a href=&quot;http://www.postgresql.org/&quot;&gt;PostgreSQL&lt;/a&gt; 8.3, &lt;a href=&quot;http://model-glue.com/&quot;&gt;Model-Glue&lt;/a&gt; 3 (Gesture, bleeding edge release), &lt;a href=&quot;http://coldspringframework.org/&quot;&gt;ColdSpring&lt;/a&gt;, &lt;a href=&quot;http://transfer-orm.com/&quot;&gt;Transfer ORM&lt;/a&gt;, &lt;a href=&quot;http://www.mxunit.org/&quot;&gt;MXUnit&lt;/a&gt;, &lt;a href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt; and and I even wrote a little code myself :) I also decided to ditch Microsoft entirely and I&apos;m running Ubuntu 8.04 on my development laptop, along with a Windows XP VM via &lt;a href=&quot;http://www.virtualbox.org/&quot;&gt;VirtualBox&lt;/a&gt; virtualization to allow for IE testing (will be looking to setup a Mac testing ground as well). This project has helped me ask and answer a lot of questions around good object oriented design, best practices, using the right tools, etc. Though I feel I&apos;ve had a great sprint of learning over the past few months, I&apos;m hungry to absorb so much more!

That brings me back to my main point, this blog. From many other bloggers I&apos;ve learned a lot through finding countless answers, great tips, great examples and tutorials, etc. I&apos;ve also solved a number of problems either on my own or with the help of tid-bits from various online resources. So, I&apos;d like to have a platform to share when I think I have something worth sharing, and that will be this blog. I will also likely blog about some of my own learning experiences, when I think it might help others embarking on a similar learning path. If I&apos;m lucky, some folks might actually read my blog and share some feedback, which will help me and other readers learn more and better ourselves as programmers.

Well, thanks for reading. Cheers to blogging!
				
				</description>
						
				
				<category>CFML</category>				
				
				<category>Ubuntu</category>				
				
				<category>Personal</category>				
				
				<category>Programming</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 12 Feb 2009 14:53:00 -0400</pubDate>
				<guid>http://jamiekrug.com/blog/index.cfm/2009/2/12/Hello-blog-world</guid>
				
			</item>
			
		 	
			</channel></rss>