<?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>Fri, 24 Feb 2012 16:02:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using not() in jQuery to exclude a member of a class</title>
		<link>http://www.cfchimp.com/wordpress/2012/02/using-not-in-jquery-to-exclude-a-member-of-a-class/</link>
		<comments>http://www.cfchimp.com/wordpress/2012/02/using-not-in-jquery-to-exclude-a-member-of-a-class/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 15:59:35 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=340</guid>
		<description><![CDATA[This is just a quick tip I thought I throw out there. We have an application that applies a fade to a .alert class on all its pages. We have 2 pages that need to not fade one particular alert. Here is one way it can be handled. Add a class of .notfade to the [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick tip I thought I throw out there. We have an application that applies a fade to a .alert class on all its pages. We have 2 pages that need to not fade one particular alert. Here is one way it can be handled.</p>
<ol>
<li>Add a class of .notfade to the alert that needs to stay put and not fade out:<br />
<code>&lt;div class="alert alert-info nofade"&gt;&lt;/div&gt;</code></li>
<li>Place the following in $().ready(): <code>$(".alert").not(".notfade")fadeOut(7000);</code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2012/02/using-not-in-jquery-to-exclude-a-member-of-a-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RDS Query Viewer not working: How to fix the ColdFusion Builder error: &#8216;/YOURPROJECTFOLDER/.rdsTempFiles/RDS Query Viewer&#8217; does not exist</title>
		<link>http://www.cfchimp.com/wordpress/2012/01/rds-query-viewer-not-working/</link>
		<comments>http://www.cfchimp.com/wordpress/2012/01/rds-query-viewer-not-working/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 03:49:32 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[CFBuilder]]></category>
		<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=334</guid>
		<description><![CDATA[I have had this issue for a while and it finally made me crazy enough to try to figure it out. It appears that this error occurs when the &#8220;RDS Query Viewer&#8221; file does not exist in the .rdsTempFiles folder within your project. On Mac Open Terminal Navigate to the directory where your project is [...]]]></description>
			<content:encoded><![CDATA[<p>I have had this issue for a while and it finally made me crazy enough to try to figure it out.  It appears that this error occurs when the &#8220;RDS Query Viewer&#8221; file does not exist in the .rdsTempFiles folder within your project.</p>
<p><strong>On Mac</strong></p>
<ol>
<li>Open Terminal</li>
<li>Navigate to the directory where your project is located.  For example type: <em>cd /Applications/ColdFusion9/wwwroot/YOURPROJECTFOLDER</em> and hit &lt;enter&gt;</li>
<li>If the &#8220;.rdsTempFiles&#8221; directory does not exist type: <em>mkdir .rdsTempFiles</em> and hit &lt;enter&gt;</li>
<li>If the &#8220;RDS Query Viewer&#8221; file does not exist type: <em>touch &#8220;.rdsTempFiles/RDS Query Viewer&#8221;</em> and hit &lt;enter&gt;.  BE SURE TO SURROUND THE COMMAND WITH THE DOUBLE QUOTES BECAUSE THE FILE NAME HAS SPACES.</li>
<li>Refresh the &#8220;RDS Query Viewer&#8221; view.  RDS Query View should work now.</li>
</ol>
<p><strong>On Windows</strong></p>
<ol>
<li>Open DOS</li>
<li>Navigate to the directory where your project is located.  For example type: <em>cd C:\ColdFusion9\wwwroot\YOURPROJECTFOLDER </em>and hit &lt;enter&gt;</li>
<li>If the &#8220;.rdsTempFiles&#8221; directory does not exist type: <em>mkdir .rdsTempFiles</em> and hit &lt;enter&gt;</li>
<li>If the &#8220;RDS Query Viewer&#8221; file does not exist type: <em>fsutil file createnew &#8220;RDS Query Viewer&#8221; 0</em> and hit &lt;enter&gt;.  BE SURE TO SURROUND THE COMMAND WITH THE DOUBLE QUOTES BECAUSE THE FILE NAME HAS SPACES.</li>
<li>Refresh the &#8220;RDS Query Viewer&#8221; view.  RDS Query View should work now.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2012/01/rds-query-viewer-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColdFusion 9 SELECT IN query using ormExecuteQuery()</title>
		<link>http://www.cfchimp.com/wordpress/2012/01/coldfusion-9-select-in-query-using-ormexecutequery/</link>
		<comments>http://www.cfchimp.com/wordpress/2012/01/coldfusion-9-select-in-query-using-ormexecutequery/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 03:23:22 +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=328</guid>
		<description><![CDATA[For some reason this took me some effort to figure out. Maybe others will find it useful. &#60;cfscript&#62; CategoryList = '1,2,3'; Categories = ormExecuteQuery("from Category where Id IN (:IdList)",{IdList=ListToArray(CategoryList)}); &#60;cfscript&#62; If you know a better way please drop me a comment. I posted this in the Adobe Coldfusion forum for a few days but didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason this took me some effort to figure out.  Maybe others will find it useful.</p>
<p><code><br />
&lt;cfscript&gt;<br />
CategoryList = '1,2,3';<br />
Categories = ormExecuteQuery("from Category where Id IN (:IdList)",{IdList=ListToArray(CategoryList)});<br />
&lt;cfscript&gt;<br />
</code></p>
<p>If you know a better way please drop me a comment.  I <a title="Link to Adobe ColdFusion forum" href="http://forums.adobe.com/message/4136917" target="_blank">posted this in the Adobe Coldfusion forum</a> for a few days but didn&#8217;t get anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2012/01/coldfusion-9-select-in-query-using-ormexecutequery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding more resource navigator filters to ColdFusion Builder (Eclipse) Redux</title>
		<link>http://www.cfchimp.com/wordpress/2011/07/adding-more-resource-navigator-filters-to-coldfusion-builder-eclipse-redux/</link>
		<comments>http://www.cfchimp.com/wordpress/2011/07/adding-more-resource-navigator-filters-to-coldfusion-builder-eclipse-redux/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:19:20 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[CFBuilder]]></category>
		<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=317</guid>
		<description><![CDATA[There is a post at 12robots.com for how to add resource navigator filters to CFBuilder: http://www.12robots.com/index.cfm/2010/8/10/Adding-more-resource-navigator-filters-to-ColdFusion-Builder-Eclipse The solution below is similar, but does not involve accessing .jar files. Step 1: Locate your version of CFBuilder by selecting &#8220;About Adobe ColdFusion Builder 2&#8243;.  Make a note of the Version and Build numbers.  For this post I [...]]]></description>
			<content:encoded><![CDATA[<p>There is a post at 12robots.com for how to add resource navigator filters to CFBuilder:</p>
<p><a href="http://www.12robots.com/index.cfm/2010/8/10/Adding-more-resource-navigator-filters-to-ColdFusion-Builder-Eclipse" target="_blank">http://www.12robots.com/index.cfm/2010/8/10/Adding-more-resource-navigator-filters-to-ColdFusion-Builder-Eclipse</a></p>
<p>The solution below is similar, but does not involve accessing .jar files.</p>
<p><strong>Step 1:</strong> Locate your version of CFBuilder by selecting &#8220;About Adobe ColdFusion Builder 2&#8243;.  Make a note of the Version and Build numbers.  For this post I am on Version: 2.0.0 and Build: 277745<br />
<strong>Step 2:</strong> Locate the plugin.xml file in the com.adobe.ide.coldfusion.rcp_X.X.X.XXXXXX folder (Notice how X.X.X.XXXXXX corresponds to the Version and Build from Step 1):<br />
com.adobe.ide.coldfusion.rcp_2.0.0.277745<br />
<strong>Step 2:</strong> Locate the following section:<br />
<code>&lt;extension<br />
point="org.eclipse.ui.ide.resourceFilters"&gt;</code><br />
<strong>Step 3:</strong> Add a block like this for each new filter you want:<br />
<code>&lt;filter<br />
pattern="_notes"<br />
selected="true"/&gt;</code><br />
<strong>Step 4:</strong> Start CFBuilder from the command line.  For me on the Mac I execute the following command in Terminal:<br />
<code>"/Applications/Adobe ColdFusion Builder 2/CFBuilder.app/Contents/MacOS/CFBuilder" -clean</code><br />
<strong>Step 5:</strong> Enjoy your new navigator filter(s).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2011/07/adding-more-resource-navigator-filters-to-coldfusion-builder-eclipse-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a last modified date to FW/1 (Framework One) pages</title>
		<link>http://www.cfchimp.com/wordpress/2011/06/add-a-last-modified-date-to-fw1-framework-one-pages/</link>
		<comments>http://www.cfchimp.com/wordpress/2011/06/add-a-last-modified-date-to-fw1-framework-one-pages/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 19:21:16 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[FW/1]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=305</guid>
		<description><![CDATA[Disclaimer: I&#8217;m a total newb to FW/1. There is most likely a better, or built in way to do this. Still with me?  Ok.  Here is the specification for this little ditty: The site I&#8217;m working on is mostly static. It is required (perhaps legally, definitely procedurally) that every page of the site must have [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Disclaimer</strong>:</p>
<ol>
<li>I&#8217;m a total newb to FW/1.</li>
<li>There is most likely a better, or built in way to do this.</li>
</ol>
<p>Still with me?  Ok.  Here is the specification for this little ditty:</p>
<ol>
<li>The site I&#8217;m working on is mostly static.</li>
<li>It is required (perhaps legally, definitely procedurally) that every page of the site must have a last modified date in the footer.</li>
<li>The site is built using FW/1 (which is awesome).</li>
</ol>
<p>Here are the cliff notes of what&#8217;s about to go down:</p>
<ol>
<li>I have a footer that is included in every page.</li>
<li>In the footer view Im going to look at the current page&#8217;s action in the request context (rc) and figure out what the corresponding &#8220;view&#8221; is based on the action</li>
<li>I&#8217;m going to use cfdirectory to find the lastmodifieddate of the view file from step 2.</li>
</ol>
<p>Without further adieu:</p>
<p><code><br />
</code>&lt;!&#8212; Start with the path to our views folder &#8212;&gt;<br />
&lt;cfset local.viewPath=&#8221;#VARIABLES.FRAMEWORK.BASE#views&#8221; /&gt;<br />
&lt;!&#8212; Make an array of rc.action (we use this to append subfolders) &#8212;&gt;<br />
&lt;cfset local.arrAction=ListToArray(rc.action,&#8221;.&#8221;) /&gt;<br />
&lt;!&#8212; Set the counter to be 1 short of the action array len b/c the last member will be our view page &#8212;&gt;<br />
&lt;cfset local.counter=ArrayLen(local.arrAction)-1 /&gt;<br />
&lt;!&#8212; Set the last member of our action array to be our action page &#8212;&gt;<br />
&lt;cfset local.viewPage=&#8221;#local.arrAction[ArrayLen(local.arrAction)]#.cfm&#8221; /&gt;<br />
&lt;!&#8212; Append any subfolders to our viewPath &#8212;&gt;<br />
&lt;cfloop from=&#8221;1&#8243; to=&#8221;#local.counter#&#8221; index=&#8221;local.a&#8221;&gt;<br />
&lt;cfset local.viewPath=&#8221;#local.viewPath#/#local.arrAction[local.a]#&#8221; /&gt;<br />
&lt;/cfloop&gt;<br />
&lt;!&#8212; Look for our viewPage cfm file in our viewPath &#8212;&gt;<br />
&lt;cfdirectory action=&#8221;list&#8221;<br />
directory=&#8221;#ExpandPath(local.viewPath)#&#8221;<br />
name=&#8221;qGetLastdateModified&#8221;<br />
filter=&#8221;#ListLast(local.viewPage, &#8220;/&#8221;)#&#8221;&gt;<br />
&lt;!&#8212; If we have a record count then calculate the last modified date &#8212;&gt;<br />
&lt;cfif qGetLastdateModified.recordCount&gt;<br />
&lt;cfset local.siteLastUpdated=&#8217;#DateFormat(qGetLastdateModified.dateLastModified,&#8221;long&#8221;)# at #TimeFormat(qGetLastdateModified.dateLastModified,&#8221;hh:mm:ss tt&#8221;)#&#8217; /&gt;<br />
&lt;cfelse&gt;<br />
&lt;cfset local.siteLastUpdated=&#8221;unknown :- (&#8221; /&gt;<br />
&lt;/cfif&gt;<br />
&lt;cfoutput&gt;#local.siteLastUpdated#&lt;/cfoutput&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2011/06/add-a-last-modified-date-to-fw1-framework-one-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAPTCHA Fails</title>
		<link>http://www.cfchimp.com/wordpress/2011/05/captcha-fails/</link>
		<comments>http://www.cfchimp.com/wordpress/2011/05/captcha-fails/#comments</comments>
		<pubDate>Thu, 26 May 2011 12:14:38 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=303</guid>
		<description><![CDATA[I was buying some software this morning and got the following CAPTCHA at checkout. CLASSIC. Yup. For real. My other favorite was one I received while working on an application at the office. Good stuff.]]></description>
			<content:encoded><![CDATA[<p>I was buying some software this morning and got the following CAPTCHA at checkout.  CLASSIC.<br />
<a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/05/fecal.png"><img src="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/05/fecal-300x241.png" alt="" title="fecal CAPTCHA" width="300" height="241" class="alignnone size-medium wp-image-294" /></a><br />
Yup.  For real.  My other favorite was one I received while working on an application at the office.<br />
<a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/05/pussiest.png"><img src="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/05/pussiest-300x249.png" alt="" title="pussiest CAPTCHA" width="300" height="249" class="alignnone size-medium wp-image-295" /></a><br />
Good stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2011/05/captcha-fails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle equivalent of SQL Server SELECT TOP (SELECT TOP n)</title>
		<link>http://www.cfchimp.com/wordpress/2011/03/oracle-equivalent-of-sql-server-select-top-select-top-n/</link>
		<comments>http://www.cfchimp.com/wordpress/2011/03/oracle-equivalent-of-sql-server-select-top-select-top-n/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 18:29:47 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=288</guid>
		<description><![CDATA[I had to do a small update on a site for work with an Oracle back end.  I don&#8217;t work with Oracle so I ran into a little snag.  I needed to find the Oracle equivalent of SQL Server&#8217;s &#8220;SELECT TOP&#8221;.  So, here it is: MS SQL SELECT TOP 10 field1, field2 FROM tablename ORDER [...]]]></description>
			<content:encoded><![CDATA[<p>I had to do a small update on a site for work with an Oracle back end.  I don&#8217;t work with Oracle so I ran into a little snag.  I needed to find the Oracle equivalent of SQL Server&#8217;s &#8220;SELECT TOP&#8221;.  So, here it is:</p>
<p><strong>MS SQL</strong><br />
<code><br />
SELECT TOP 10<br />
field1, field2<br />
FROM<br />
tablename<br />
ORDER BY<br />
field1<br />
</code></p>
<p><strong>ORACLE</strong><br />
<code><br />
SELECT *<br />
FROM<br />
(SELECT<br />
field1, field2<br />
FROM<br />
tablename<br />
ORDER BY field1)<br />
WHERE<br />
ROWNUM &lt;= 10<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2011/03/oracle-equivalent-of-sql-server-select-top-select-top-n/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a (ColdFusion) comic using iPhone apps</title>
		<link>http://www.cfchimp.com/wordpress/2011/02/create-a-coldfusion-comic-using-iphone-apps/</link>
		<comments>http://www.cfchimp.com/wordpress/2011/02/create-a-coldfusion-comic-using-iphone-apps/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:07:03 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Shameless Plugs]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=282</guid>
		<description><![CDATA[It&#8217;s no secret how I love my iPhone.  Further, it&#8217;s no secret either that I love ColdFusion and making silly cartoons around the office or home.  Time to roll it all up into one effort. The Abbreviated How To: Take a couple of pictures on your iPhone Use the &#8220;ComicStrip&#8221; app to create the layout [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret how I love my iPhone.  Further, it&#8217;s no secret either that I love ColdFusion and making silly cartoons around the office or home.  Time to roll it all up into one effort.</p>
<p><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/02/it-was-945.jpg"><img class="alignnone size-medium wp-image-283" title="it-was-945 a ColdFusion comic" src="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/02/it-was-945-300x200.jpg" alt="" width="300" height="200" /></a></p>
<h2>The Abbreviated How To:</h2>
<ol>
<li>Take a couple of pictures on your iPhone</li>
<li>Use the &#8220;ComicStrip&#8221; app to create the layout and captions</li>
<li>Save the output from ComicStrip</li>
<li>Open the image you just made in the &#8220;SketchMee&#8221; app</li>
<li>Fiddle with the settings until you get the sketched look you like</li>
<li>Save the output from SketchMee</li>
<li>Post to the www</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2011/02/create-a-coldfusion-comic-using-iphone-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColdFusion SOLR error: org/apache/pdfbox/pdmodel/PDDocument null</title>
		<link>http://www.cfchimp.com/wordpress/2011/02/coldfusion-solr-error-orgapachepdfboxpdmodelpddocument-null/</link>
		<comments>http://www.cfchimp.com/wordpress/2011/02/coldfusion-solr-error-orgapachepdfboxpdmodelpddocument-null/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 17:46:43 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=271</guid>
		<description><![CDATA[I got the following pretty obscure error the other day from a cfscheduler job that runs nightly to index documents uploaded to our site: org/apache/pdfbox/pdmodel/PDDocument null Turns out that the error is caused by a file having the extension of .PDF instead of .pdf.  No, really. Luckily I only had one offending file, but what [...]]]></description>
			<content:encoded><![CDATA[<p>I got the following pretty obscure error the other day from a cfscheduler job that runs nightly to index documents uploaded to our site:</p>
<p><code>org/apache/pdfbox/pdmodel/PDDocument null</code></p>
<p>Turns out that the error is caused by a file having the extension of .PDF instead of .pdf.  No, really.  Luckily I only had one offending file, but what if I had many?  Also, what if users uploaded more after I renamed the problematic one?  There are two parts to &#8220;future proofing&#8221; my situation.  The first part it to address the .PDF extensions in the uploads.  The second part, and what I&#8217;m going to pass on to you, is a custom tag that will look in a directory you specify and rename all .PDF extensions to .pdf.</p>
<p>To implement:</p>
<ul>
<li><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/02/pdf_cleanup.cfm_.zip">Download the pdf_cleanup custom tag</a></li>
<li>Unzip it to whatever directory you keep you custom tags in</li>
<li>Call it using the following syntax just before you run your &lt;cfindex&gt; operation(s):<br />
<code>&lt;cf_pdf_cleanup dirToClean="C:\mysuperdocs"&gt;</code></li>
</ul>
<p>Be forewarned I take no responsibility for your use of the tag <img src='http://www.cfchimp.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2011/02/pdf_cleanup.cfm_.zip">Download the pdf_cleanup custom tag</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2011/02/coldfusion-solr-error-orgapachepdfboxpdmodelpddocument-null/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Doing quick math using spotlight (spotlight calculator)</title>
		<link>http://www.cfchimp.com/wordpress/2010/08/doing-quick-math-using-spotlight-spotlight-calculator/</link>
		<comments>http://www.cfchimp.com/wordpress/2010/08/doing-quick-math-using-spotlight-spotlight-calculator/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 14:31:25 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=263</guid>
		<description><![CDATA[I discovered by accident today when trying to search for a software license key document that you can use spotlight as a simple calculator.]]></description>
			<content:encoded><![CDATA[<p>I discovered by accident today when trying to search for a software license key document that you can use spotlight as a simple calculator.</p>
<div class="mceTemp">
<dl id="attachment_264" class="wp-caption alignnone" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/08/spotlight-math.png"><img class="size-medium wp-image-264" title="spotlight-math" src="http://www.cfchimp.com/wordpress/wp-content/uploads/2010/08/spotlight-math-300x119.png" alt="" width="300" height="119" /></a></dt>
</dl>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2010/08/doing-quick-math-using-spotlight-spotlight-calculator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

