<?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>CFgears - ColdFusion</title>
			<link>http://www.cfgears.com/index.cfm</link>
			<description>Eric Cobb&apos;s blog about ColdFusion, Railo, Mach-II, Web Development, and other things that make the CF Gears in my head turn.</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 10:09:43 -0500</pubDate>
			<lastBuildDate>Wed, 21 Jul 2010 10:49:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>ecobb@ecartech.com</managingEditor>
			<webMaster>ecobb@ecartech.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>ecobb@ecartech.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>All CFCs inherit component.cfc</title>
				<link>http://www.cfgears.com/index.cfm/2010/7/21/All-CFCs-inherit-componentcfc</link>
				<description>
				
				&lt;p&gt;
This is a pretty cool feature built in to ColdFusion that I&apos;ll wager many people don&apos;t know about.  I had certainly never hear of it until this morning.  Did you know that ColdFusion has a built in component.cfc component that is automatically inherited by all CFCs on your server?
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 21 Jul 2010 10:49:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/7/21/All-CFCs-inherit-componentcfc</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion debugging breaks jQuery AJAX calls</title>
				<link>http://www.cfgears.com/index.cfm/2010/6/17/ColdFusion-debugging-breaks-jQuery-AJAX-calls</link>
				<description>
				
				&lt;p&gt;
This may be a no-brainier for some, but I fought with it for about 2 hours yesterday so I wanted to make note of it in case it happened again.
&lt;/p&gt;&lt;p&gt;
I had a situation where my code worked correctly on my local development machine, but wouldn&apos;t work in our staging environment.  The exact problem was that I was using jQuery to call a CFC, which returned some JSON, and jQuery then populated a div with it.  Pretty basic stuff.  But for some reason, on our staging server jQuery encountered problems and would never populate the div, even though I could see in FireBug where the CFC call was returning the JSON correctly.  All code was identical in every comparison, and both sites were using the same database so the data was identical as well.  
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>jQuery</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 17 Jun 2010 09:56:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/6/17/ColdFusion-debugging-breaks-jQuery-AJAX-calls</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion feedback from a Java/Ruby Developer</title>
				<link>http://www.cfgears.com/index.cfm/2010/5/17/ColdFusion-feedback-from-a-JavaRuby-Developer</link>
				<description>
				
				&lt;p&gt;I just came across this blog post and wanted to share it.  For me, it&apos;s always interesting to hear from someone coming to ColdFusion from another language/background and get their thoughts on it.  As he openly admits, when he started working at a ColdFusion shop two years ago, he didn&apos;t think much of CF.
His exact quote is, &quot;With more than 15 years of development experience, primarily as a Java, ActionScript, and Ruby developer, I had a relatively low opinion of ColdFusion.&quot;
&lt;/p&gt;&lt;p&gt;
&lt;a href=&quot;
http://webmonkeyswithlaserbeams.wordpress.com/2010/05/04/a-javaruby-developer-appreciates-coldfusion/
&quot;&gt;Read the whole post here&lt;/a&gt;
&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 17 May 2010 08:20:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/5/17/ColdFusion-feedback-from-a-JavaRuby-Developer</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Query struct gets added to the Variables scope of Application.cfc, whether you like it or not.</title>
				<link>http://www.cfgears.com/index.cfm/2010/3/29/Query-struct-gets-added-to-the-Variables-scope-of-Applicationcfc-whether-you-like-it-or-not</link>
				<description>
				
				&lt;p&gt;I&apos;ve been spending a lot of time lately working on porting a legacy ColdFusion application over from Application.cfm to Application.cfc on ColdFusion 8.  One of the things I&apos;m paying close attention to is what gets put into the variables scope inside of my Application.cfc.  I don&apos;t want to accidentally have stuff floating around in there and causing problems.  So, my constantly checking the variables scope of various methods is how I found this little gem.
&lt;/p&gt;&lt;p&gt;
Did you know that, even if a query name is var scoped in Application.cfc, you&apos;ll still get CFQUERY.EXECUTIONTIME stored in the variables scope of your CFC?
				 [More]
				</description>
						
				
				<category>CFML</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 29 Mar 2010 15:11:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/3/29/Query-struct-gets-added-to-the-Variables-scope-of-Applicationcfc-whether-you-like-it-or-not</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Since Hibernate is in CF 9, will Spring be in CF 10?</title>
				<link>http://www.cfgears.com/index.cfm/2010/3/12/Since-Hibernate-is-in-CF-9-will-Spring-be-in-CF-10</link>
				<description>
				
				&lt;p&gt;While going through my morning blog roll, I came across a post where someone mentioned using both CF 9&apos;s Hibernate ORM and ColdSpring in an application. This got me to thinking, since Hibernate was incorporated into CF 9, should we expect to see Spring in CF 10 (or another future release of CF)?  
&lt;/p&gt;&lt;p&gt;
To me, this seems like a logical progression.  What do you think?
&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 12 Mar 2010 09:19:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/3/12/Since-Hibernate-is-in-CF-9-will-Spring-be-in-CF-10</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Upcoming CFUG meeting that you do not want to miss.</title>
				<link>http://www.cfgears.com/index.cfm/2010/2/12/Upcoming-CFUG-meeting-that-you-do-not-want-to-miss</link>
				<description>
				
				&lt;p&gt;I just saw where the Connecticut ColdFusion User Group has their next meeting coming up on Monday and I wanted to comment on the topic of that meeting, &lt;a href=&quot;http://www.cfugitives.com/index.cfm?commentID=91&quot;&gt;Integrating ColdFusion and BlazeDS&lt;/a&gt;, which will be presented by Aaron West.  I have been fortunate enough to see this presentation by Aaron in person, and let me tell you, you do not want to miss it!  Even if you currently have no need for BlazeDS/CF integration, you will want to see this presentation.  Aaron does an excellent job of showing just how dead simple this processes is, and it really got the gears in my head turning.&lt;/p&gt;
&lt;p&gt;Trust me, when his presentation is over you&apos;ll be thinking about all of the cool little apps you can build with this stuff.&lt;/p&gt;
				
				</description>
						
				
				<category>General</category>				
				
				<category>Flex</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 12 Feb 2010 08:17:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/2/12/Upcoming-CFUG-meeting-that-you-do-not-want-to-miss</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Discrepancies in the way ColdFusion validates dates.</title>
				<link>http://www.cfgears.com/index.cfm/2010/2/8/Discrepancies-in-the-way-ColdFusion-validates-dates</link>
				<description>
				
				&lt;p&gt;There seems to be discrepancies in the various date validations used throughout ColdFusion, or at least I&apos;ve found one case where it inconsistently considers a value a valid date.  It&apos;s probably easier to demo what I&apos;m talking about than to try to explain it.  Here&apos;s an example:
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>CFML</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 08 Feb 2010 14:29:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2010/2/8/Discrepancies-in-the-way-ColdFusion-validates-dates</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion 9&apos;s built in ORM support</title>
				<link>http://www.cfgears.com/index.cfm/2009/7/8/ColdFusion-9s-built-in-ORM-support</link>
				<description>
				
				&lt;p&gt;&lt;a href=&quot;http://forta.com&quot;&gt;Ben Forta&lt;/a&gt; has done an excellent job (as always!) of explaining the built in ORM support that will come with ColdFusion 9.
&lt;/p&gt;&lt;p&gt;
I have to admit, I&apos;ve heard a lot of buzz about &lt;a href=&quot;https://www.hibernate.org/&quot;&gt;Hibernate&lt;/a&gt; being added to CF 9, but I wasn&apos;t exactly sure what it was. I knew that it gave you a way to connect to a database without having to use cfquery, but that&apos;s about the extent of it. I had no idea how to use it or how it would work.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 08 Jul 2009 07:48:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/7/8/ColdFusion-9s-built-in-ORM-support</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Adding CFFormProtect to a BlogCFC contact form.</title>
				<link>http://www.cfgears.com/index.cfm/2009/6/26/Adding-CFFormProtect-to-a-BlogCFC-contact-form</link>
				<description>
				
				&lt;p&gt;
I hate Spam, which means I love &lt;a href=&quot;http://cfformprotect.riaforge.org/&quot;&gt;CFFormProtect&lt;/a&gt;. One of the first things I did when I set my blog up (4 or 5 months) ago was to make sure CFFormProtect was enabled. A few weeks ago, though, I started seeing some comment Spam getting through. So, I got a &lt;a href=&quot;http://www.projecthoneypot.org/&quot;&gt;Project Honeypot&lt;/a&gt; key and an &lt;a href=&quot;http://akismet.com/&quot;&gt;Akismet&lt;/a&gt; key (both free) and enabled both of those features in CFFormProtect and that put a stop to it. Since enabling these features, I haven&apos;t had any comment Spam. It has been completely shut down, and this is a glorious thing!
&lt;/p&gt;&lt;p&gt;
I can&apos;t, however, say the same for my blog&apos;s contact form. It has been getting hammered!
				 [More]
				</description>
						
				
				<category>General</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 26 Jun 2009 11:54:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/6/26/Adding-CFFormProtect-to-a-BlogCFC-contact-form</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Win a copy of Adobe Master Collection, Adobe Flex Builder, and more!</title>
				<link>http://www.cfgears.com/index.cfm/2009/6/18/Win-a-copy-of-Adobe-Master-Collection-Adobe-Flex-Builder-and-more</link>
				<description>
				
				&lt;p&gt;It&apos;s just been announced that at the Adobe ColdFusion User Group Tour in Nashville tonight, a copy of Adobe Master Collection (your choice, Mac or PC) and a copy of Adobe Flex Builder have been added to the prize list! This brings the monetary value of tonight&apos;s software giveaways to nearly $7,000!!
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 18 Jun 2009 10:31:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/6/18/Win-a-copy-of-Adobe-Master-Collection-Adobe-Flex-Builder-and-more</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Coding best practices for ColdFusion performance</title>
				<link>http://www.cfgears.com/index.cfm/2009/6/9/Coding-best-practices-for-ColdFusion-performance</link>
				<description>
				
				&lt;p&gt;I thought this was pretty interesting. It&apos;s actually part of a larger article (which I picked up from &lt;a href=&quot;http://www.cftips.net/post.cfm/performance-tuning-for-coldfusion-applications&quot;&gt;cftips.net&lt;/a&gt;), but can be read as a &quot;stand alone&quot; as well. It touches on several things such as variable scoping, query &quot;blockfactors&quot;, IIf() vs. cfif, query caching, page caching, stored procs vs. cfqueries, cfthread, etc... There&apos;s some good little tidbits of info in there.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 09 Jun 2009 21:26:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/6/9/Coding-best-practices-for-ColdFusion-performance</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Adobe is coming to town!</title>
				<link>http://www.cfgears.com/index.cfm/2009/6/9/Adobe-is-coming-to-town</link>
				<description>
				
				&lt;p&gt;The 2009 Adobe ColdFusion User Group Tour is coming to Nashville! It&apos;s time to learn about CF 9 and win some cool prizes!&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 09 Jun 2009 08:19:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/6/9/Adobe-is-coming-to-town</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Best ColdFusion quote EVER!</title>
				<link>http://www.cfgears.com/index.cfm/2009/5/21/Best-ColdFusion-quote-EVER</link>
				<description>
				
				&lt;p&gt;In a (long) series of comments posted on &lt;a href=&quot;http://net.tutsplus.com/tutorials/other/rapid-development-with-coldfusion-and-cfml/&quot;&gt;this ColdFusion tutorial&lt;/a&gt; by &lt;a href=&quot;http://www.mattgifford.co.uk/coldfusion-tutorial-cfml-101/&quot;&gt;Matt Gifford&lt;/a&gt;, the usual CF vs. PHP argument reared it&apos;s ugly head again. When the argument reached the topic of shared hosting costs, I almost spit out my drink when I read this comment:
&lt;/p&gt;&lt;p&gt;
&quot;You probably won&apos;t find a 5 dollar a month hosting option for CF like you can with PHP. But basing your business on a host that charges as much as an imported beer is probably not a good idea.&quot;
&lt;/p&gt;&lt;p&gt;
Who said that? Our very own &lt;a href=&quot;http://www.coldfusionjedi.com/&quot;&gt;Jedi Master&lt;/a&gt;.
				
				</description>
						
				
				<category>Fun Stuff</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 21 May 2009 05:32:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/5/21/Best-ColdFusion-quote-EVER</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Can the CF Frameworks take a beating?</title>
				<link>http://www.cfgears.com/index.cfm/2009/3/31/Can-the-CF-Frameworks-take-a-beating</link>
				<description>
				
				&lt;p&gt;There&apos;s been a lot of buzz lately (more than usual) around the various CF Frameworks, and whether some of them are &lt;a href=&quot;http://corfield.org/blog/index.cfm/do/blog.entry/entry/Is_ModelGlue_Dead&quot;&gt;dead&lt;/a&gt; or &lt;a href=&quot;http://www.mach-ii.com/index.cfm/go/blog:showEntry/entryId/5508A1AB%2DC444%2DAA51%2D6F433A703EB301BF&quot;&gt;alive &lt;/a&gt; and &lt;a href=&quot;http://www.model-glue.com/blog/index.cfm/2009/3/26/Dan-Wilson-takes-over-the-ModelGlue-Framework&quot;&gt;kicking&lt;/a&gt;. I&apos;ve never used any of the frameworks much (although I&apos;ve recently started getting into &lt;a href=&quot;http://www.coldspringframework.org/&quot;&gt;ColdSpring&lt;/a&gt;). I&apos;ve tinkered with a few of them, just to see what they&apos;re about, but that&apos;s pretty much been the extent of it. That&apos;s probably about to change.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>Frameworks</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 31 Mar 2009 12:35:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/3/31/Can-the-CF-Frameworks-take-a-beating</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>You know you&apos;ve screwed up when you get an Allaire error!</title>
				<link>http://www.cfgears.com/index.cfm/2009/3/16/You-know-youve-screwed-up-when-you-get-an-Allaire-error</link>
				<description>
				
				&lt;p&gt;That&apos;s right, CF gave me an Allaire error today! It&apos;s been a while since I&apos;ve seen one of these. Brings back memories of my good ole&apos; CF 4.0 days.&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 16 Mar 2009 18:18:00 -0500</pubDate>
				<guid>http://www.cfgears.com/index.cfm/2009/3/16/You-know-youve-screwed-up-when-you-get-an-Allaire-error</guid>
				
				
			</item>
			
		 	
			</channel></rss>