<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CFchimp</title>
	<atom:link href="http://www.cfchimp.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cfchimp.com/wordpress</link>
	<description>monkey love coldfusion</description>
	<lastBuildDate>Tue, 08 Jun 2010 13:40:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>OmniFocus Cheat Sheat</title>
		<link>http://www.cfchimp.com/wordpress/2010/06/omnifocus-cheat-sheat/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/06/omnifocus-cheat-sheat/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:40:56 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=252</guid>
		<description><![CDATA[I love me some OmniFocus. I also love me some keyboard shortcuts. OmniFocus is a great tool for trying to reign in the chaos when you take the time to learn its powerful features. Here is a useful cheat sheet I came across.  Now get out there and GTD without taking your hands off the [...]]]></description>
			<content:encoded><![CDATA[<p>I love me some OmniFocus.  I also love me some keyboard shortcuts. OmniFocus is a great tool for trying to reign in the chaos when you take the time to learn its powerful features.  Here is <a href="http://downloads.omnigroup.com/software/MacOSX/Extras/OmniFocus/OmniFocus-Shortcuts.pdf" target="_blank">a useful cheat sheet</a> I came across.  Now get out there and GTD without taking your hands off the keyboard!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/06/omnifocus-cheat-sheat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving to a database with ColdFusion using jQuery</title>
		<link>http://www.cfchimp.com/wordpress/2010/05/saving-to-a-database-with-coldfusion-using-jquery/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/05/saving-to-a-database-with-coldfusion-using-jquery/#comments</comments>
		<pubDate>Sat, 01 May 2010 15:43:54 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=239</guid>
		<description><![CDATA[A commenter asked me how to extend a previous jQuery post to perform the database save via ColdFusion.  It is REALLY easy (and please keep in mind this is meant to be a SIMPLE example, not production code).  From the jQuery side my example only required the following code to ship the data off to [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>A commenter asked me how to extend <a href="http://www.cfchimp.com/wordpress/2010/04/use-jquery-to-enable-submit-button-and-set-form-action/">a previous jQuery post</a> to perform the database save via ColdFusion.  It is REALLY easy (and please keep in mind this is meant to be a SIMPLE example, not production code).  From the jQuery side my example only required the following code to ship the data off to ColdFusion:<br />
<code><br />
function fSave(){<br />
	you=$("#you").val();<br />
	// Try to save<br />
	$.get("adduser.cfm?"+"you="+you , function(data){<br />
		// Result<br />
		alert(data);<br />
		window.location=location.href;<br />
	});<br />
}<br />
</code><br />
The adduser.cfm page then validates and inserts the data and returns a success or failure message.</p>
<p><a href="http://www.cfchimp.com/chimp/jquery-enabled-form-2.cfm" target="_blank">See it here</a> | <a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/05/jq-save-with-cf.zip">Get it here</a>.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/05/saving-to-a-database-with-coldfusion-using-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use jQuery to enable submit button and set form action</title>
		<link>http://www.cfchimp.com/wordpress/2010/04/use-jquery-to-enable-submit-button-and-set-form-action/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/04/use-jquery-to-enable-submit-button-and-set-form-action/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 17:54:30 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=228</guid>
		<description><![CDATA[I recently had to do a quick bit of coding to only accept data from a form if JavaScript was enabled. This example starts with a form that has no action and a disabled submit button.  When jQuery&#8217;s .ready() fires though it enables the submit button and attaches the appropriate action. Please note the example [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to do a quick bit of coding to only accept data from a form if JavaScript was enabled.</p>
<p>This example starts with a form that has no action and a disabled submit button.  When jQuery&#8217;s .ready() fires though it enables the submit button and attaches the appropriate action.</p>
<p>Please note the example file is in ColdFusion so your mileage may vary slightly for your own use.</p>
<p><a href="http://www.cfchimp.com/chimp/jquery-enabled-form.cfm" target="_blank">See it here</a> | <a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/04/jquery-enabled-form.cfm_.zip">Get it here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/04/use-jquery-to-enable-submit-button-and-set-form-action/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mac Diff/Merge Utility for Dreamweaver</title>
		<link>http://www.cfchimp.com/wordpress/2010/03/mac-diffmerge-utility-for-dreamweaver/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/03/mac-diffmerge-utility-for-dreamweaver/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 16:57:50 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=222</guid>
		<description><![CDATA[If you have done web development on a PC in Dreamweaver you have probably used WinMerge to check for differences between local and remote files.  Since I moved to the Mac a few years ago I have been neglectful in finding a similar tool for the Mac.  Thanks to some changes in my current day [...]]]></description>
			<content:encoded><![CDATA[<p>If you have done web development on a PC in Dreamweaver you have probably used <a href="http://winmerge.org/" target="_blank">WinMerge</a> to check for differences between local and remote files.  Since I moved to the Mac a few years ago I have been neglectful in finding a similar tool for the Mac.  Thanks to some changes in my current day job I now have a larger team and more of a need for getting my act together on this.</p>
<p>The tool I have decided on in a free one called <a href="http://www.sourcegear.com/diffmerge/downloads.html">DiffMerge</a>.  Part 1 of the install is the typical Mac install (drag a file to the Applications folder).  Part 2 is a little more detailed (but dead simple).  There is a readme.txt file in the installer image with instructions for copying 2 files to facilitate command line usage (You will need this for Dreamweaver).</p>
<p>Once you have done the installation and followed the readme.txt fire up Dreamweaver and click Dreamweaver &gt; Preferences &gt; File compare and set the path to your equivalent of the screenshot below:</p>
<p><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/03/DiffMerge-Dreamweaver.jpg" target="_blank"><img class="alignnone size-medium wp-image-223" title="DiffMerge for Dreamweaver on the Mac" src="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/03/DiffMerge-Dreamweaver-300x247.jpg" alt="DiffMerge for Dreamweaver on the Mac" width="300" height="247" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/03/mac-diffmerge-utility-for-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save, Format, View Dreamweaver Checked Out By Report</title>
		<link>http://www.cfchimp.com/wordpress/2010/03/save-format-view-dreamweaver-checked-out-by-report/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/03/save-format-view-dreamweaver-checked-out-by-report/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 00:24:37 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XSLT]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=215</guid>
		<description><![CDATA[I wrote a post a while back about a file I created to format Dreamweaver search results for printing. Recently the need arose for me to apply that same formatting to Dreamweaver&#8217;s &#8220;Checked Out By&#8221; report. Here is what your report will look like: Download the search_results.zip file here. It contains the files to transform [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="/wordpress/2008/05/save-format-view-dreamweaver-search-results/">wrote a post a while back</a> about a file I created to format Dreamweaver search results for printing.  Recently the need arose for me to apply that same formatting to Dreamweaver&#8217;s &#8220;Checked Out By&#8221; report.</p>
<p>Here is what your report will look like:</p>
<p><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/03/checked_out_by.jpg"><img class="alignnone size-medium wp-image-217" title="Checked Out By Report View" src="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/03/checked_out_by-300x126.jpg" alt="Checked Out By Report View" width="300" height="126" /></a></p>
<p><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2008/05/search_results.zip">Download the search_results.zip file here</a>.  It contains the files to transform both &#8220;Search Results&#8221; and the &#8220;Checked Out By&#8221; report.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/03/save-format-view-dreamweaver-checked-out-by-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Gmail to relay mail for ColdFusion Developer Edition</title>
		<link>http://www.cfchimp.com/wordpress/2010/03/using-gmail-to-relay-mail-for-coldfusion-developer-edition/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/03/using-gmail-to-relay-mail-for-coldfusion-developer-edition/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 03:35:36 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=212</guid>
		<description><![CDATA[It&#8217;s very simple to get gmail to relay email for applications you are developing/running locally on the ColdFusion Developer Edition (at least it&#8217;s easy in CF9).  Below is a screenshot of the proper settings and some notations of things to keep in mind.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s very simple to get gmail to relay email for applications you are developing/running locally on the ColdFusion Developer Edition (at least it&#8217;s easy in CF9).  Below is a screenshot of the proper settings and some notations of things to keep in mind.</p>
<p><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/03/gmail_to_relay_cfmail.jpg"><img class="alignnone size-thumbnail wp-image-213" title="gmail_to_relay_cfmail" src="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/03/gmail_to_relay_cfmail-150x150.jpg" alt="Gmail to relay cfmail" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/03/using-gmail-to-relay-mail-for-coldfusion-developer-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wishlist at The Pragmatic Bookshelf</title>
		<link>http://www.cfchimp.com/wordpress/2010/03/wishlist-at-the-pragmatic-bookshelf/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/03/wishlist-at-the-pragmatic-bookshelf/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 01:26:37 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Misc programming]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=209</guid>
		<description><![CDATA[Friends and family feel free to check out my wishlist: http://www.pragprog.com/wishlist/chris-simmons-63403-de6fd2bc84]]></description>
			<content:encoded><![CDATA[<p>Friends and family feel free to check out my wishlist:</p>
<p><a href="http://www.pragprog.com/wishlist/chris-simmons-63403-de6fd2bc84" target="_blank">http://www.pragprog.com/wishlist/chris-simmons-63403-de6fd2bc84</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/03/wishlist-at-the-pragmatic-bookshelf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using jQuery style a cftooltip span</title>
		<link>http://www.cfchimp.com/wordpress/2010/02/using-jquery-style-a-cftooltip-span/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/02/using-jquery-style-a-cftooltip-span/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 15:36:20 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=202</guid>
		<description><![CDATA[It&#8217;s not hard to figure out how to style the box that pops up when using cftooltip.  It is controlled by the .yui-tt class. /* Tool tip styling */ .yui-tt { color: #444; font-size:110%; border: 2px solid #1C64D1; background-color: #eee; padding: 10px; width:250px; cursor:help; } But how do you style the text that is triggering [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not hard to figure out how to style the box that pops up when using cftooltip.  It is controlled by the .yui-tt class.<br />
<code><br />
/* Tool tip styling */<br />
.yui-tt {<br />
color: #444;<br />
font-size:110%;<br />
border: 2px solid #1C64D1;<br />
background-color: #eee;<br />
padding: 10px;<br />
width:250px;<br />
cursor:help;<br />
}</code></p>
<p>But how do you style the text that is triggering the tooltip?  cftooltip is going to generate a span around your text with the id of cf_tooltip_999999999 (where 999999999 is some random number).  I didn&#8217;t want to add another span to the mix to provide styling so I turned to jQuery for a simple, quick solution.</p>
<p>In the css file I added a class:<br />
<code><br />
.terms{<br />
color:#168FC0;<br />
border-bottom:1px dashed #168FC0;<br />
text-decoration:none;<br />
margin-bottom:10px;<br />
font-weight:bold;<br />
}<br />
</code><br />
In the jQuery .ready() function I added this line:<br />
<code><br />
$("[id^=cf_tooltip_]").addClass("terms");<br />
</code><br />
The result is that the text which triggers all cftooltips is now controlled by the .terms class.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/02/using-jquery-style-a-cftooltip-span/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Firefox Add-ons for web developers?</title>
		<link>http://www.cfchimp.com/wordpress/2010/02/best-firefox-add-ons-for-web-developers/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/02/best-firefox-add-ons-for-web-developers/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 13:38:33 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Misc programming]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=199</guid>
		<description><![CDATA[I&#8217;m looking for the best Firefox Add-ons for web developers. A few things you should know about me: I like lists.  A lot.  I make them all the time for everything. I hate repetition and drudgery in my work.  If there is a (legitimate) shortcut I want to know about it. I&#8217;m a ColdFusion web [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I&#8217;m looking for the best Firefox Add-ons for web developers.</strong></p>
<p>A few things you should know about me:</p>
<ol>
<li>I like lists.  A lot.  I make them all the time for everything.</li>
<li>I hate repetition and drudgery in my work.  If there is a (legitimate) shortcut I want to know about it.</li>
<li>I&#8217;m a ColdFusion web developer who dabbles in jQuery.</li>
<li>I dig Firefox for helping me with all of the above.</li>
</ol>
<p>Now this is where you come in&#8230; What are your favorite/most useful Firefox Ad-ins that help you get your work done on a daily basis?</p>
<p>Here are mine (alpha order):</p>
<ul>
<li>ColorZilla &#8211; Eyedropper/colorpicker</li>
<li>Dummy Lipsum &#8211; Generate &#8220;Lorem Ipsum&#8221; dummy text.</li>
<li>Evernote Web Clipper &#8211; For selecting text to evernote</li>
<li>Fast Dial &#8211; Visual bookmark homepage</li>
<li>Firebug &#8211; My main usage is debugging AJAX</li>
<li>FIreGestures &#8211; Executes commands with mouse gestures</li>
<li>FireShot &#8211; Screen shot utility</li>
<li>iMacros &#8211; Awesome utility for building test cases or automating repetitious tasks</li>
<li>TinyURL Generator &#8211; Generates TinyURLs</li>
<li>Web Developer &#8211; Adds tons of tools (too numerous to list)</li>
<li>Xmarks &#8211; Sync your bookmarks across multiple machines (and platforms!)</li>
</ul>
<p>Thanks, I look forward to hearing from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/02/best-firefox-add-ons-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CF quickie: cfqueryparam with SQL&#8217;s LIKE operator</title>
		<link>http://www.cfchimp.com/wordpress/2009/12/cf-quickie-cfqueryparam-with-sqls-like-operator/</link>
		<comments>http://www.cfchimp.com/wordpress/2009/12/cf-quickie-cfqueryparam-with-sqls-like-operator/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:55:03 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=189</guid>
		<description><![CDATA[If you are using cfqueryparam to build a SQL statement from a search form and need to use the SQL&#8217;s LIKE operator here is how it&#8217;s done in the most basic way: &#60;cfquery name="qData" datasource="myDsn"&#62; SELECT DISTINCT last_name FROM person WHERE last_name LIKE &#60;cfqueryparam cfsqltype="cf_sql_varchar" value="#FORM.last_name#%"&#62; ORDER BY last_name &#60;/cfquery&#62; The magic is all in [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using cfqueryparam to build a SQL statement from a search form and need to use the SQL&#8217;s LIKE operator here is how it&#8217;s done in the most basic way:<br />
<code><br />
&lt;cfquery name="qData" datasource="myDsn"&gt;<br />
SELECT DISTINCT last_name<br />
FROM person<br />
WHERE last_name LIKE &lt;cfqueryparam cfsqltype="cf_sql_varchar" value="#FORM.last_name#%"&gt;<br />
ORDER BY last_name<br />
&lt;/cfquery&gt;<br />
</code><br />
The magic is all in the % sign at the end of the cfqueryparam value attribute.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2009/12/cf-quickie-cfqueryparam-with-sqls-like-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
