<?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, 05 Mar 2013 17:29:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>ColdFusion function returns space before value</title>
		<link>http://www.cfchimp.com/wordpress/2013/03/coldfusion-function-returns-space-before-value/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=coldfusion-function-returns-space-before-value</link>
		<comments>http://www.cfchimp.com/wordpress/2013/03/coldfusion-function-returns-space-before-value/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 17:28:42 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=466</guid>
		<description><![CDATA[I had an annoying issue this morning where a function I wrote that rounds and formats values for use in an internal financial app kept sticking a single space before the value returned. This was obviously not good for a &#8230; <a href="http://www.cfchimp.com/wordpress/2013/03/coldfusion-function-returns-space-before-value/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I had an annoying issue this morning where a function I wrote that rounds and formats values for use in an internal financial app kept sticking a single space before the value returned.  This was obviously not good for a financial app.  After spending 10-15 minutes tearing the function&#8217;s innards apart it turns out what was going on in the function was not the cause.  The cause was simple.</p>
<p>In a tag based ColdFusion function you need to be sure to include the &#8216;output=&#8221;no&#8221;&#8216; attribute.</p>
<p><code><br />
&lt;cffunction name="RoundMoney" returntype="numeric" output="no"&gt;<br />
     ... MAGIC STUFF HERE ...<br />
&lt;/cffunction&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2013/03/coldfusion-function-returns-space-before-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A LESS Mixin to change font-color based on font-size</title>
		<link>http://www.cfchimp.com/wordpress/2013/03/a-less-mixin-to-change-font-color-based-on-font-size/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-less-mixin-to-change-font-color-based-on-font-size</link>
		<comments>http://www.cfchimp.com/wordpress/2013/03/a-less-mixin-to-change-font-color-based-on-font-size/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 00:49:36 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[LESS]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=382</guid>
		<description><![CDATA[Just a little LESS fun for the day&#8230; Here is a LESS Mixin to change font-color based on font-size. Green big. Yellow just right. Red little. It can be used with or without passing units (without units will use pixels). &#8230; <a href="http://www.cfchimp.com/wordpress/2013/03/a-less-mixin-to-change-font-color-based-on-font-size/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Just a little LESS fun for the day&#8230; Here is a LESS Mixin to change font-color based on font-size.</p>
<p>Green big.<br />
Yellow just right.<br />
Red little.</p>
<p>It can be used with or without passing units (without units will use pixels).  Adds bold just for fun.</p>
<p><code><br />
.colorBySize(@pxValue) when (@pxValue < 12px){<br />
    color:red;<br />
}</p>
<p>.colorBySize(@pxValue) when (@pxValue =< 16px) and (@pxValue >= 12px){<br />
    color:yellow;<br />
}</p>
<p>.colorBySize(@pxValue) when (@pxValue > 16px){<br />
    color:green;<br />
}</p>
<p>.colorBySize(@_) when not (ispixels(@_)){<br />
    font-size: ~"@{_}px";<br />
    // font-size: @_;<br />
    font-weight: bold;<br />
}</p>
<p>.colorBySize(@_) when (ispixels(@_)){<br />
    font-size: @_;<br />
    font-weight: bold;<br />
}</p>
<p>p.little{<br />
    .colorBySize(9);<br />
}</p>
<p>p.justright{<br />
    .colorBySize(12);<br />
}</p>
<p>p.big{<br />
    .colorBySize(18);<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2013/03/a-less-mixin-to-change-font-color-based-on-font-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy files from one Windows server to another and retain permissions</title>
		<link>http://www.cfchimp.com/wordpress/2013/01/copy-files-from-one-windows-server-to-another-and-retain-permissions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=copy-files-from-one-windows-server-to-another-and-retain-permissions</link>
		<comments>http://www.cfchimp.com/wordpress/2013/01/copy-files-from-one-windows-server-to-another-and-retain-permissions/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 19:32:29 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Misc programming]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=392</guid>
		<description><![CDATA[Just want the script? If you don&#8217;t want to read the blah blah blah you can access robocopy-script on Github I want to know the details&#8230; At my day job I was tasked with migrating several websites and folders from &#8230; <a href="http://www.cfchimp.com/wordpress/2013/01/copy-files-from-one-windows-server-to-another-and-retain-permissions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><strong>Just want the script?</strong></p>
<p>If you don&#8217;t want to read the blah blah blah you can <a title="access robocopy-script on Github" href="https://github.com/ccsimmons/robocopy-script" target="_blank">access robocopy-script on Github</a></p>
<p><strong>I want to know the details&#8230;</strong></p>
<p>At my day job I was tasked with migrating several websites and folders from one Windows server to another. The sites have a ton of quirky permissions settings because they are mostly intranet sites. Several have anonymous browsing turned off. As you may or may not know if you just copy them via drag and drop in File Explorer you will lose all of those permissions that took years to refine. Additionally you will lose creation dates, etc.</p>
<p>After some research I determined that <a title="Robocopy" href="http://en.wikipedia.org/wiki/Robocopy" target="_blank">Robocopy</a> was what I needed to retain all that valuable <del datetime="2013-01-25T18:55:30+00:00">cruft</del> information. Unfortunately (or fortunately if you dig command line stuff) Robocopy is a command line tool with quite a few flags. A little more digging revealed <a title="Robocopy GUI" href="http://technet.microsoft.com/en-us/magazine/2006.11.utilityspotlight.aspx" target="_blank">there is a GUI for Robocopy</a> which allows you to save scripts, but I decided to roll my own script.</p>
<p><strong>Features:</strong></p>
<ul>
<li>A simple &#8220;config&#8221; section in the script where you define the to/from locations</li>
<li>A config option to run attended or unattended (set this in the script)</li>
<li>Logging</li>
<li> Utilization of the following flags (descriptions are verbatim from the Robocopy documentation):
<ul>
<li><code>/E</code> &#8211; Copies all subdirectories (including empty ones).</li>
<li><code>/SEC</code> &#8211; Copies NTFS security information. (Source and destination volumes must both be NTFS). Equivalent to /COPY:DATS.</li>
<li><code>/COPY:DATSO</code> &#8211; Copies the file information specified by copyflags, which can be any combination of the following : D – file Data. | A – file Attributes | T – file Timestamps. | S – file Security (NTFS ACLs). | O – file Ownership information.</li>
<li><code>/V</code> &#8211; Produces verbose output (including skipped files).</li>
<li><code>/TEE</code> &#8211; Displays output in the console window, in addition to directing it to the log file specified by /LOG or /LOG+.</li>
<li><code>/NP</code> &#8211; Turns off copy progress indicator (% copied). **</li>
<li><code>/LOG</code> &#8211; Redirects output to the specified file, overwriting the file if it already exists.</li>
<li><code>/B</code> &#8211; Copies files in Backup mode (Backup copies are not restartable, but can copy some files that restartable mode cannot). ***</li>
<li><code>/R:10</code> &#8211; Specifies the number of retries on failed copies. (The default is 1 million.)</li>
<li><code>/W:30</code> &#8211; Specifies the wait time between retries. (The default is 30 seconds.)</li>
</ul>
</li>
</ul>
<p>** I liked seeing the progress as it copied, but all those percentages get written to the log file same as the screen.<br />
*** Consider <code>/Z</code> to use restartable mode.</p>
<p>Obviously you could tweak the flags in the script to get a combination more suitable for you.</p>
<p>If this sounds like something you might find useful you can <a title="access robocopy-script on Github" href="https://github.com/ccsimmons/robocopy-script" target="_blank">access robocopy-script on Github</a>.  I should note that this is my first public repo on Github.  Yay.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2013/01/copy-files-from-one-windows-server-to-another-and-retain-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing albums using iTunes cover art screen saver</title>
		<link>http://www.cfchimp.com/wordpress/2013/01/playing-albums-using-itunes-cover-art-screen-saver/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=playing-albums-using-itunes-cover-art-screen-saver</link>
		<comments>http://www.cfchimp.com/wordpress/2013/01/playing-albums-using-itunes-cover-art-screen-saver/#comments</comments>
		<pubDate>Tue, 15 Jan 2013 15:38:40 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=386</guid>
		<description><![CDATA[Just learned an iTunes trick. When using cover art for screensaver you can click covers to play/pause albums. Notice how the controls appear in the photo when you mouse over a cover.]]></description>
				<content:encoded><![CDATA[<p>Just learned an iTunes trick. When using cover art for screensaver you can click covers to play/pause albums.  Notice how the controls appear in the photo when you mouse over a cover.</p>
<div id="attachment_387" class="wp-caption alignnone" style="width: 310px"><a href="http://www.cfchimp.com/wordpress/2013/01/playing-albums-using-itunes-cover-art-screen-saver/itunes-cover-art/" rel="attachment wp-att-387"><img src="http://www.cfchimp.com/wordpress/wp-content/uploads/2013/01/itunes-cover-art-300x300.jpg" alt="Playing albums using iTunes cover art screen saver" width="300" height="300" class="size-medium wp-image-387" /></a><p class="wp-caption-text">Playing albums using iTunes cover art screen saver</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2013/01/playing-albums-using-itunes-cover-art-screen-saver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helpful links and definitions of Raspberry Pi related hardware / software for the absolute beginner</title>
		<link>http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner</link>
		<comments>http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/#comments</comments>
		<pubDate>Fri, 28 Dec 2012 18:03:40 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=371</guid>
		<description><![CDATA[The Raspberry Pi is basically a $25 computer (Model A) or a $35 computer (Model B) meant to encourage children to learn programming by providing an affordable computing platform that can drive all kinds of projects from controlling robots to &#8230; <a href="http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="attachment_374" class="wp-caption alignnone" style="width: 310px"><a href="http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/2012-12-27-16-36-29/" rel="attachment wp-att-374"><img src="http://www.cfchimp.com/wordpress/wp-content/uploads/2012/12/2012-12-27-16.36.29-300x300.jpg" alt="Raspberry Pi First Boot" width="300" height="300" class="size-medium wp-image-374" /></a><p class="wp-caption-text">Here is the first boot up of my Raspberry Pi</p></div>
<p>The Raspberry Pi is basically a $25 computer (Model A) or a $35 computer (Model B) meant to encourage children to learn programming by providing an affordable computing platform that can drive all kinds of projects from controlling robots to running a media center on a tv. I am not a hardcore programmer so I bought one to tinker and encourage my inner programming child.</p>
<p>I bought the Model B because it has 512MB Ram, 2 USB ports, and an ethernet port. The model A has 256MB Ram, 1 USB port, and no ethernet port.</p>
<p>So far I have managed three tasks.</p>
<ol>
<li>I have booted up with a copy of Raspbian “Wheezy”, surfed the internet and installed a mail client.</li>
<li>I have booted up with a copy of Raspbmc, added some music, and took XBMC for a test drive.</li>
<li>I have installed XBMC Commander to my iPhone and controlled my Raspbmc installation by playing music, videos, etc. I had varying degrees of success with this task.</li>
</ol>
<p>Rather than copy other people’s fine tutorials I am going to provide definitions of the different technologies, as defined at their site(s). Below the definitions are link(s) to the site(s).</p>
<h2>Raspberry Pi</h2>
<p><strong>What is (a) Raspberry Pi</strong></p>
<blockquote><p>“The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard.”</p></blockquote>
<p><a href="http://www.raspberrypi.org/">Raspberry Pi Site</a></p>
<h2>Task 1: Raspbian</h2>
<p><strong>What is Raspbian</strong></p>
<blockquote><p>“Raspbian is a free operating system based on Debian optimized for the Raspberry Pi hardware.”</p></blockquote>
<p>Wheezy is the recommended starting distro. There is also a link below to a distro that uses the MATE desktop environement instead of the LXDE desktop environment that “Wheezy” uses.</p>
<p><a href="http://www.raspberrypi.org/downloads">Raspbian “wheezy”</a></p>
<p><a href="http://www.raspbian.org/PiscesMATEImages">Bootable Raspbian “Pisces+MATE” Image by Mike Thompson</a></p>
<h2>Task 2: Raspbmc</h2>
<p><strong>What is Raspbmc?</strong></p>
<blockquote><p>“Raspbmc is a minimal Linux distribution based on Debian that brings XBMC to your Raspberry Pi.”</p></blockquote>
<p><a href="http://www.raspbmc.com/">Raspbmc Site</a></p>
<h2>Task 3: XBMC / XBMC Commander</h2>
<p><strong>What is XBMC?</strong></p>
<blockquote><p>“A Complete media center solution for Windows, OSX, Linux, and more!”</p></blockquote>
<p><a href="http://xbmc.org">XBMC Site</a></p>
<p><strong>What is XBMC Commander?</strong></p>
<blockquote><p>“XBMC Commander is a remote control for the iPad especially designed to interact with XBMC, one of the most advanced open source media centers out there.” <em>(There are iPhone and Adroid versions as well)</em></p></blockquote>
<p><a href="http://xbmc-commander.com/">XBMC Commander Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>App Store Software &#8211; What the Description Really Means</title>
		<link>http://www.cfchimp.com/wordpress/2012/12/app-store-software-what-the-description-really-means/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=app-store-software-what-the-description-really-means</link>
		<comments>http://www.cfchimp.com/wordpress/2012/12/app-store-software-what-the-description-really-means/#comments</comments>
		<pubDate>Sun, 16 Dec 2012 04:34:16 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=353</guid>
		<description><![CDATA[I buy a lot of software.  A LOT OF SOFTWARE.  The following is my tongue-in-cheek assessment of App Store software descriptions. Gorgeous / Stunning Graphics We have a graphic artist.  We think her work is awesome.  Lots of companies have awesome &#8230; <a href="http://www.cfchimp.com/wordpress/2012/12/app-store-software-what-the-description-really-means/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I buy a lot of software.  A LOT OF SOFTWARE.  The following is my tongue-in-cheek assessment of App Store software descriptions.</p>
<h2>Gorgeous / Stunning Graphics</h2>
<blockquote><p>We have a graphic artist.  We think her work is awesome.  Lots of companies have awesome graphic artists.  Many times they are pretty much as awesome.</p></blockquote>
<h2>Feature Rich</h2>
<blockquote><p>Our app is really complex.  We put a whole bunch of stuff into it.  Unfortunately the <a href="http://en.wikipedia.org/wiki/Pareto_principle">Pareto principle (80/20 Rule)</a> likely applies.</p></blockquote>
<p><strong>Minimalist</strong></p>
<blockquote><p>Our app is really sparse.  We &lt;3 <a title="http://gettingreal.37signals.com/" href="http://gettingreal.37signals.com/">Getting Real</a>.  This may or may not be good for you depending on what we consider essential.</p></blockquote>
<p><strong>Our most awesome version to date</strong></p>
<blockquote><p>Our last version had bugs / was less than awesome.</p></blockquote>
<p><strong>Frequent Updates</strong></p>
<blockquote><p>See &#8220;Our most awesome version to date&#8221;.</p></blockquote>
<h2>Winner of the Blah Blah Blah Award</h2>
<blockquote><p>If it&#8217;s not an Oscar or a Grammy&#8230; well ok, if it&#8217;s not an Oscar be suspicious.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2012/12/app-store-software-what-the-description-really-means/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helpful Commands for ColdFusion 10 on OSX&#8230; aka Start and Stop CF10 from the command line</title>
		<link>http://www.cfchimp.com/wordpress/2012/06/helpful-commands-for-coldfusion-10-on-osx-aka-start-and-stop-cf10-from-the-command-line/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=helpful-commands-for-coldfusion-10-on-osx-aka-start-and-stop-cf10-from-the-command-line</link>
		<comments>http://www.cfchimp.com/wordpress/2012/06/helpful-commands-for-coldfusion-10-on-osx-aka-start-and-stop-cf10-from-the-command-line/#comments</comments>
		<pubDate>Thu, 07 Jun 2012 04:20:35 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=345</guid>
		<description><![CDATA[This post assumes you are working with the default instance (cfsusion) and that you installed ColdFusion 10 to the default location on you Mac. STATUS: /Applications/ColdFusion10/cfusion/bin/coldfusion status START: /Applications/ColdFusion10/cfusion/bin/cf-standalone-startup OR /Applications/ColdFusion10/cfusion/bin/coldfusion start STOP: /Applications/ColdFusion10/cfusion/bin/coldfusion stop RESTART: /Applications/ColdFusion10/cfusion/bin/coldfusion restart Launch GUI &#8230; <a href="http://www.cfchimp.com/wordpress/2012/06/helpful-commands-for-coldfusion-10-on-osx-aka-start-and-stop-cf10-from-the-command-line/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This post assumes you are working with the default instance (cfsusion) and that you installed ColdFusion 10 to the default location on you Mac.</p>
<p><strong>STATUS:</strong><br />
/Applications/ColdFusion10/cfusion/bin/coldfusion status</p>
<p><strong>START:</strong><br />
/Applications/ColdFusion10/cfusion/bin/cf-standalone-startup<br />
<em>OR</em><br />
/Applications/ColdFusion10/cfusion/bin/coldfusion start</p>
<p><strong>STOP:</strong><br />
/Applications/ColdFusion10/cfusion/bin/coldfusion stop</p>
<p><strong>RESTART:</strong><br />
/Applications/ColdFusion10/cfusion/bin/coldfusion restart</p>
<p><strong>Launch GUI for configuring Web Connectors:</strong><br />
sudo /Applications/ColdFusion10/cfusion/runtime/bin/wsconfig</p>
<p><strong>RESET CFADMIN PASSWORD:</strong><br />
/Applications/ColdFusion10/cfusion/bin/passwordreset.sh<br />
(Then Enter 1 for changing Admin Password and put in your new super strong password!)</p>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2012/06/helpful-commands-for-coldfusion-10-on-osx-aka-start-and-stop-cf10-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<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/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=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. &#8230; <a href="http://www.cfchimp.com/wordpress/2012/02/using-not-in-jquery-to-exclude-a-member-of-a-class/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=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 &#8230; <a href="http://www.cfchimp.com/wordpress/2012/01/rds-query-viewer-not-working/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>2</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/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=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 &#8230; <a href="http://www.cfchimp.com/wordpress/2012/01/coldfusion-9-select-in-query-using-ormexecutequery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>
	</channel>
</rss>
