<?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>cfsilence</title>
			<link>http://cfsilence.com/blog/client/index.cfm</link>
			<description>The personal blog of Todd Sharp.</description>
			<language>en-us</language>
			<pubDate>Mon, 06 Sep 2010 21:19:36 -0400</pubDate>
			<lastBuildDate>Wed, 11 Aug 2010 10:26:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>cfsilence@gmail.com</managingEditor>
			<webMaster>cfsilence@gmail.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>cfsilence@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>cfsilence</title>
				<link>http://cfsilence.com/blog/client/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Mobile Optimized ColdFusion Administrator</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2010/8/11/Mobile-Optimized-ColdFusion-Administrator</link>
				<description>
				
				&lt;p&gt;&lt;a href=&quot;http://coldfusionjedi.com&quot;&gt;Ray&lt;/a&gt; &lt;a href=&quot;http://www.coldfusionjedi.com/index.cfm/2010/7/28/Announcing-CFAM--ColdFusion-Administrator-Mobile&quot;&gt;blogged&lt;/a&gt; about our collaborative project during CFUnited a few weeks ago but we had yet to release the code.  I&apos;m happy to announce that &lt;a href=&quot;http://cfam.riaforge.org/&quot;&gt;CFAM&lt;/a&gt; is now on &lt;a href=&quot;http://riaforge.org&quot;&gt;RIAForge&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;There is still an issue with using this app on the iPhone due to the admin API&apos;s use of &amp;lt;cflogin&amp;gt; that we have been unable to overcome as of yet.  If anyone has a workaround we&apos;d be glad to hear about it!  Otherwise, please give it a try and let us know what you think.&lt;/p&gt;
				
				</description>
						
				
				<category>CFAM</category>				
				
				<pubDate>Wed, 11 Aug 2010 10:26:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2010/8/11/Mobile-Optimized-ColdFusion-Administrator</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Var Scoping In a For Loop - Watch Your Var Names</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2010/8/4/Var-Scoping-In-a-For-Loop--Watch-Your-Var-Names</link>
				<description>
				
				&lt;p&gt;
I was doing some work with &lt;a href=&quot;http://danvega.org/blog&quot;&gt;Dan Vega&apos;s&lt;/a&gt; &lt;a href=&quot;http://hyrule.riaforge.org&quot;&gt;Hyrule&lt;/a&gt; project yesterday and noticed some odd behavior where the validation routine would basically stop if I used an &apos;isMatch&apos; validator.  I checked the normal logs, etc and made sure there wasn&apos;t an errant abort or try/catch in the code and then I finally spotted the issue.
&lt;/p&gt;

&lt;p&gt;
Basically it boils down to the fact that Dan had an outer and nested loop that were both var scoping the loop iterator of &apos;i&apos;.  This led to the unfortunate circumstance of prematurely ending the outer loop from completing.  Consider the following code:
&lt;/p&gt;

&lt;code&gt;
public void function foo(){
	for(var i=1; i&lt;=3; i++){
		writeOutput(&apos;outer loop - i=&apos; &amp; i &amp; &apos;&lt;br /&gt;&apos;);
		for(var i=1; i&lt;=2; i++){
			writeOutput(&apos;inner loop - i=&apos; &amp; i &amp; &apos;&lt;br /&gt;&apos;);
		}
	}
}
&lt;/code&gt;

&lt;p&gt;
You might expect the following output from that code:
&lt;/p&gt;

&lt;img src=&quot;http://cfsilence.com/blog/client/images/for-loop-good.PNG&quot; alt=&quot;for loop good&quot; /&gt;

&lt;p&gt;But you&apos;d actually get this:&lt;/p&gt;

&lt;img src=&quot;http://cfsilence.com/blog/client/images/for-loop-bad.PNG&quot; alt=&quot;for loop bad&quot; /&gt;

&lt;p&gt;That&apos;s because the inner loop overrides the assignment of &apos;i&apos;.  When the inner loop completes and the outer loop proceeds it realizes that &apos;i&apos; is no longer less then or equal to 3 and it stops processing.&lt;/p&gt;

&lt;p&gt;The lesson here is to be careful with your var scoping.  You&apos;ll no longer get the luxury of ColdFusion telling you that a local variable can not be declared more then once.  Also, remember the importance of variable naming.  You won&apos;t get an error but you could end up with some seriously unexpected results.&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 04 Aug 2010 15:47:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2010/8/4/Var-Scoping-In-a-For-Loop--Watch-Your-Var-Names</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Real Life RIA Powered By The Adobe Stack - CFUnited 2010</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2010/7/30/Real-Life-RIA-Powered-By-The-Adobe-Stack--CFUnited-2010</link>
				<description>
				
				&lt;p&gt;I created an online focused version of my slides from my Real Life RIA session at &lt;a href=&quot;http://cfunited.com/2010&quot;&gt;CFUnited&lt;/a&gt;.  To check it out head past the jump.&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>AIR</category>				
				
				<category>CFUnited</category>				
				
				<category>Flex</category>				
				
				<category>ColdFusion</category>				
				
				<category>CFUnited 2010</category>				
				
				<category>SlideSix</category>				
				
				<pubDate>Fri, 30 Jul 2010 16:23:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2010/7/30/Real-Life-RIA-Powered-By-The-Adobe-Stack--CFUnited-2010</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFUnited 2010 Presentations on SlideSix</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2010/7/30/CFUnited-2010-Presentations-on-SlideSix</link>
				<description>
				
				&lt;p&gt;Just a quick note to let folks know about a few slide decks from &lt;a href=&quot;http://cfunited.com&quot; target=&quot;_blank&quot;&gt;CFUnited 2010&lt;/a&gt; that have been uploaded to &lt;a href=&quot;http://slidesix.com&quot; target=&quot;_blank&quot;&gt;SlideSix&lt;/a&gt;.  Here is a quick list of those presentations available at the time this blog post was published (please leave a comment if I missed one):&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>CFUnited 2010</category>				
				
				<pubDate>Fri, 30 Jul 2010 11:50:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2010/7/30/CFUnited-2010-Presentations-on-SlideSix</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFUnited Is Almost Here!</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2010/7/21/CFUnited-Is-Almost-Here</link>
				<description>
				
				&lt;p&gt;Wow, it&apos;s been six months since I wrote a post on the old blog here (I know you&apos;ve all missed me)!  The awesome news is that &lt;a href=&quot;http://cfunited.com&quot;&gt;CFUnited&lt;/a&gt; is right around the corner - just a week away in fact!  So, on to the important news...&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>AIR</category>				
				
				<category>CFUnited</category>				
				
				<category>Flex</category>				
				
				<category>ColdFusion</category>				
				
				<category>CFUnited 2010</category>				
				
				<category>SlideSix</category>				
				
				<pubDate>Wed, 21 Jul 2010 09:49:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2010/7/21/CFUnited-Is-Almost-Here</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Facial Recognition in 14 Lines Of ColdFusion</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2010/1/21/Facial-Recognition-in-14-Lines-Of-ColdFusion</link>
				<description>
				
				&lt;p&gt;
I was doing a bit of research on a potential project when I stumbled across &lt;a href=&quot;http://faint.sourceforge.net/&quot;&gt;faint&lt;/a&gt;, a Java facial recognition library and decided to give it a quick try.  
&lt;/p&gt;
&lt;p&gt;The bad news is that the documentation is literally non-existent.  So I did a bit of poking around the Jar and quickly found an &apos;OpenCVDetection&apos; class.  I dropped the faint Jar in my class path, restarted CF and about 5 minutes and 14 lines of code later I got the following result:&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>Java</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 21 Jan 2010 14:05:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2010/1/21/Facial-Recognition-in-14-Lines-Of-ColdFusion</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Getting Started With The SlideSix Presenter - Part 3</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/12/18/Getting-Started-With-The-SlideSix-Presenter--Part-3</link>
				<description>
				
				&lt;p&gt;This is the third post in a series of posts introducing the &lt;a href=&quot;http://slidesix.com/labs/#presenter&quot; target=&quot;_blank&quot;&gt;SlideSix Presenter&lt;/a&gt; destkop application.&#xa0; In this post we&apos;ll look at the navigating the notes and slides panels as well as how you can use the Twitter panel to monitor a backchannel while presenting.&#xa0; We will also see how to broadcast live video and participate in a real-time chat session with your audience.&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>SlideSix</category>				
				
				<pubDate>Fri, 18 Dec 2009 11:10:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/12/18/Getting-Started-With-The-SlideSix-Presenter--Part-3</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Getting Started With The SlideSix Presenter - Part 2</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/12/15/Getting-Started-With-The-SlideSix-Presenter--Part-2</link>
				<description>
				
				&lt;p&gt;In this entry we&apos;ll start to take a look at the various &apos;panels&apos; within the SlideSix Presenter desktop application.&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>SlideSix</category>				
				
				<pubDate>Tue, 15 Dec 2009 21:01:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/12/15/Getting-Started-With-The-SlideSix-Presenter--Part-2</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>How To Use The SlideSix Presenter - Part 1</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/12/14/How-To-Use-The-SlideSix-Presenter--Part-1</link>
				<description>
				
				&lt;p&gt;
I thought it might be helpful to start a short series of posts showing how to use the &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm/2009/12/11/Introducing-The-SlideSix-Presenter-Desktop-Application&quot;&gt;SlideSix Presenter&lt;/a&gt; desktop application.  Most of the content in these posts will be coming directly from the &lt;a href=&quot;http://slidesix.com/downloads/SlideSixPresenterUserGuide.pdf&quot;&gt;user guide&lt;/a&gt;, but I&apos;ll break them up in to small chunks so they&apos;re easier to digest then the complete 24-odd page guide.  Today I&apos;ll give a small intro, talk about logging in and then show some basic navigation.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>SlideSix</category>				
				
				<pubDate>Mon, 14 Dec 2009 09:48:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/12/14/How-To-Use-The-SlideSix-Presenter--Part-1</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Introducing The SlideSix Presenter Desktop Application</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/12/11/Introducing-The-SlideSix-Presenter-Desktop-Application</link>
				<description>
				
				&lt;p&gt;&lt;a href=&quot;http://cfsilence.com/blog/client/enclosures/left_right_open_2.png&quot;&gt;&lt;img title=&quot;left_right_open&quot; style=&quot;border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 5px 10px; border-right-width: 0px&quot; height=&quot;196&quot; alt=&quot;left_right_open&quot; src=&quot;http://cfsilence.com/blog/client/enclosures/left_right_open_thumb.png&quot; width=&quot;320&quot; align=&quot;right&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; I&apos;m thrilled to announce the public beta launch of the SlideSix Presenter desktop application.&#xa0; The SlideSix Presenter gives &lt;a href=&quot;http://slidesix.com&quot; target=&quot;_blank&quot;&gt;SlideSix&lt;/a&gt; users the ability to present materials to both a live and virtual audience at the same time.&#xa0; That means that you can use the application to present your material just as you would with your legacy slideware program (including support for multiple monitors/displays), but in addition to all of the legacy slideware features you can simultaneously broadcast a your slides and a live video stream and interact with your virtual audience via real time text based chat in your own dedicated room on the web.&#xa0; If you&apos;re brave you can also monitor Twitter for a given keyword or #hashtag for instant feedback and Q&amp;A from your audience.&#xa0; &lt;/p&gt;  &lt;p&gt;To get started, &lt;a href=&quot;http://slidesix.com/go/presenter&quot; target=&quot;_blank&quot;&gt;download the SlideSix Presenter&lt;/a&gt; and the &lt;a href=&quot;http://slidesix.com/downloads/SlideSixPresenterUserGuide.pdf&quot; target=&quot;_blank&quot;&gt;user guide&lt;/a&gt;.&#xa0; Install the application by launching the file you downloaded (requires the latest version of &lt;a href=&quot;http://adobe.com/go/air&quot; target=&quot;_blank&quot;&gt;Adobe AIR&lt;/a&gt; to be installed on your computer).&#xa0; Here&apos;s a presentation with some video demos to introduce the app and show you some of the things that you can do:&lt;/p&gt;  &lt;p&gt;&lt;object height=&quot;425&quot; width=&quot;550&quot;&gt;
	&lt;param name=&quot;movie&quot; value=&quot;http://slidesix.com/viewer/SlideSixViewer.swf?alias=Introducing-The-SlideSix-Presenter&quot; /&gt;
	&lt;param name=&quot;menu&quot; value=&quot;false&quot; /&gt;
	&lt;param name=&quot;scale&quot; value=&quot;noScale&quot; /&gt;
	&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;
	&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot; /&gt;
	&lt;embed src=&quot;http://slidesix.com/viewer/SlideSixViewer.swf?alias=Introducing-The-SlideSix-Presenter&quot; allowscriptaccess=&quot;always&quot; allowFullScreen=&quot;true&quot; height=&quot;425&quot; width=&quot;550&quot; type=&quot;application/x-shockwave-flash&quot; /&gt;
&lt;/object&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Where do I get help?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The first place you should check is the onboard help system within the application itself.&#xa0; In the presentation panel at the top of the application you&apos;ll see a &apos;Help&apos; button that will display the onboard help system.&#xa0; The help system contains a number of tutorials that cover specific functionality within the app as well as a list of Frequently Asked Questions that should help you figure things out if you get stuck.&#xa0; &lt;/p&gt;  &lt;p&gt;You can also check out the user guide as it will give you a comprehensive overview on all of the features and functionality within the application as well as detailed screenshots that walk you through performing specific tasks.&#xa0; Finally, if you&apos;re really stuck feel free to post a message to the &lt;a href=&quot;http://groups.google.com/group/slidesix-beta&quot; target=&quot;_blank&quot;&gt;SlideSix Beta Google Group&lt;/a&gt; and we will do our best to help you out.&#xa0; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;What if I find a bug?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;There are no bugs, my software is perfect.&#xa0; OK, so that&apos;s not quite true.&#xa0; If you find a bug please post a message to the &lt;a href=&quot;http://groups.google.com/group/slidesix-beta&quot; target=&quot;_blank&quot;&gt;SlideSix Beta Google Group&lt;/a&gt; and our crack staff (me) will do their (my) best to assist you.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Where do I get it?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://slidesix.com/go/presenter&quot; target=&quot;_blank&quot;&gt;SlideSix Presenter Download&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://slidesix.com/downloads/SlideSixPresenterUserGuide.pdf&quot; target=&quot;_blank&quot;&gt;User Guide&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
				
				</description>
						
				
				<category>AIR</category>				
				
				<category>SlideSix</category>				
				
				<pubDate>Fri, 11 Dec 2009 13:33:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/12/11/Introducing-The-SlideSix-Presenter-Desktop-Application</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Now Running ColdFusion 9</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/11/12/Now-Running-ColdFusion-9</link>
				<description>
				
				&lt;p&gt;
If you follow me on Twitter you probably already know, but I wanted to put the word out that I&apos;m now running &lt;a href=&quot;http://adobe.com/go/coldfusion&quot;&gt;ColdFusion 9&lt;/a&gt; Enterprise.  From a performance standpoint, the difference on &lt;a href=&quot;http://slidesix.com&quot;&gt;SlideSix&lt;/a&gt; is pretty noticeable.  I&apos;m also loving how quick the Flex Management Console is now thanks to the complete Flash Remoting overhaul that came with CF9.
&lt;/p&gt;

&lt;p&gt;
Want to know the coolest thing of all about this upgrade?  It didn&apos;t cost me a dime.  That&apos;s right, I was lucky enough to get a completely free license to CF9 Enterprise from ColdFusion Product Manager &lt;a href=&quot;http://adrocknaphobia.com&quot;&gt;Adam Lehman&lt;/a&gt;.  Do you have a brilliant idea for a startup that takes advantages of the power of ColdFusion?  Pitch your idea to Adrock and you may just get your hands on a free license too!
&lt;/p&gt;

&lt;p&gt;
I can&apos;t wait to take advantage of some of the UI enhancments and I know that the PDF upgrades will lead to an immediate improvement in the conversion quality of some presentations.  There&apos;s also a handful of other ideas I have in mind to play with.  More on those later.&lt;/p&gt;

&lt;p&gt;
As a footnote, I should mention that for the most part the upgrade went fine but there was one minor annoyance.  The process to get CF working on IIS7+ is widely &lt;a href=&quot;http://blog.kukiel.net/2009/10/coldfusion-9-on-windows-server-2008.html&quot;&gt;documented&lt;/a&gt;, but I ran into a different issue.  After CF installed I kept getting Handler Mapping errors thrown by IIS.  &lt;strike&gt;I&apos;m not exactly sure this is the &lt;em&gt;right&lt;/em&gt; thing to do, but the fix was to check &apos;Configure 32 bit webserver&apos; in the web server connector tool.&lt;/strike&gt;  See screenshot:
&lt;/p&gt;

&lt;p&gt;
&lt;img src=&quot;http://cfsilence.com/blog/client/images/cf9_web_connector.png&quot; /&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;Update&lt;/strong&gt;:  I ran into this issue because the App Pool was configured to run 32 bit.  When upgrading from 32 bit CF to 64 bit make sure to set &apos;Enable 32 bit applications&apos; to false in the App Pool&apos;s advanced settings.
&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>SlideSix</category>				
				
				<pubDate>Thu, 12 Nov 2009 08:51:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/11/12/Now-Running-ColdFusion-9</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>What&apos;s New At SlideSix?</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/11/4/Whats-New-At-SlideSix</link>
				<description>
				
				&lt;p&gt;
There are a handful of changes that went live last weekend on &lt;a href=&quot;http://slidesix.com&quot;&gt;SlideSix&lt;/a&gt;.  The changes consisted of several bug fixes, but more importantly some usability enhancements that will hopefully lead to a better user experience.  Here&apos;s a look at what&apos;s new.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>SlideSix</category>				
				
				<pubDate>Wed, 04 Nov 2009 10:07:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/11/4/Whats-New-At-SlideSix</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Quick Puzzler - Get Last Friday</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/10/27/Quick-Puzzler--Get-Last-Friday</link>
				<description>
				
				&lt;p&gt;
Here&apos;s a quick puzzler to get your brain working.  I just helped out a friend with the following issue but I&apos;m interested in seeing how others go about solving it.  I&apos;ll borrow Ray&apos;s Friday Puzzler rules - don&apos;t spend more then 5 minutes on it and the best solution is granted 1,794 bonus points.
&lt;/p&gt;
&lt;p&gt;
Write a UDF that solves the following puzzle:  If it is &lt;em&gt;any day or time&lt;/em&gt; after noon on Friday (server time) then set &apos;reportDate&apos; equal to the current date.  If it&apos;s &lt;em&gt;any day or time&lt;/em&gt; before noon on Friday then set &apos;reportDate&apos; to last Friday.  Sounds easy, but it can get a little tricky. 
&lt;/p&gt;
&lt;p&gt;
Post your entry in the comments below.  
&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 27 Oct 2009 13:49:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/10/27/Quick-Puzzler--Get-Last-Friday</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Building A Better Search For SlideSix - Part 1</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/10/22/Building-A-Better-Search-For-SlideSix--Part-1</link>
				<description>
				
				&lt;p&gt;After finishing up a few outstanding fixes and enhancements for &lt;a href=&quot;http://slidesix.com&quot;&gt;SlideSix&lt;/a&gt; the other day I decided to give search a bit of love.  Well, I didn&apos;t quite decide it; it was more of the gentle reminder from &lt;a href=&quot;http://corfield.org&quot;&gt;Sean Corfield&lt;/a&gt; about the existing search not really working all that well that prompted me to action.  Regardless, I learned a few things about search that I&apos;m going to share over a few blog posts that will use this &lt;a href=&quot;http://en.wikipedia.org/wiki/Alliteration&quot;&gt;alliteration&lt;/a&gt; littered title.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>Java</category>				
				
				<category>ColdFusion</category>				
				
				<category>SlideSix</category>				
				
				<pubDate>Thu, 22 Oct 2009 08:47:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/10/22/Building-A-Better-Search-For-SlideSix--Part-1</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>jQuery Method To Prompt A User To Save Changes Before Leaving Page</title>
				<link>http://cfsilence.com/blog/client/index.cfm/2009/10/12/jQuery-Method-To-Prompt-A-User-To-Save-Changes-Before-Leaving-Page</link>
				<description>
				
				&lt;p&gt;I&apos;m doing a little work on cleaning up an application and came acrossed an undesirable circumstance related to the UI.  The app contains what appears to be a tab navigator, but rather then the tabbed links revealing hidden form elements in another tab they take the user to a whole new page.  The obvious problem with this design is that the user may populate elements in the first &apos;pseudo-tab&apos; and click on the next tab assuming that they will be able to save the data after populating the other tab.  Since I&apos;m not at liberty to make massive changes to the UI I came up with the following solution using &lt;a href=&quot;http://jquery.com&quot;&gt;jQuery&lt;/a&gt; so the user is at least warned when they leave without saving their changes.  I think it&apos;s a workable solution, and better yet it was terribly easy to do.&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>jQuery</category>				
				
				<pubDate>Mon, 12 Oct 2009 12:58:00 -0400</pubDate>
				<guid>http://cfsilence.com/blog/client/index.cfm/2009/10/12/jQuery-Method-To-Prompt-A-User-To-Save-Changes-Before-Leaving-Page</guid>
				
				
			</item>
			
		 	
			</channel></rss>