<?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>ColdFusioning - Tips</title>
			<link>http://www.coldfusioning.com/index.cfm</link>
			<description>My personal blog about ColdFusion, code, Adobe, Google, &amp; computers...</description>
			<language>en-us</language>
			<pubDate>Thu, 09 Sep 2010 20:35:23 -0400</pubDate>
			<lastBuildDate>Sun, 22 Aug 2010 23:08:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>james@gulftobaytrading.com</managingEditor>
			<webMaster>james@gulftobaytrading.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>james@gulftobaytrading.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>ColdFusioning</title>
				<link>http://www.coldfusioning.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Need Multiple EMail Addresses For Testing?</title>
				<link>http://www.coldfusioning.com/index.cfm/2010/8/22/Need-Multiple-EMail-Addresses-For-Testing</link>
				<description>
				
				Many times when we&apos;re debugging software or testing new functionality, we need to use an email address to register, over and over.  Well, rather than create multiple accounts over and over, you can just use Gmail.  
&lt;br /&gt;&lt;br /&gt;
Let&apos;s say your email address is:
&lt;br /&gt;&lt;br /&gt;
james@gmail.com 
&lt;br /&gt;
(it&apos;s not because they require 6 letter minimum so this is a good example)
&lt;br /&gt;&lt;br /&gt;
If you append a plus sign (+) after your username, but before the @, you can enter any number or combination of characters and you will still receive the email at your normal Gmail address.  For example:
&lt;br /&gt;&lt;br /&gt;
james+test@gmail.com&lt;br /&gt;
james+test1@gmail.com&lt;br /&gt;
james+test2@gmail.com&lt;br /&gt;
james+testOneMillion@gmail.com
&lt;br /&gt;&lt;br /&gt;
All of these would be delivered to james@gmail.com and save you from having to create one million email addresses.  

&lt;br /&gt;&lt;br /&gt; 
				</description>
				
				<category>Tips</category>				
				
				<pubDate>Sun, 22 Aug 2010 23:08:00 -0400</pubDate>
				<guid>http://www.coldfusioning.com/index.cfm/2010/8/22/Need-Multiple-EMail-Addresses-For-Testing</guid>
				
			</item>
			
			<item>
				<title>Load jQuery From Google Without Risk of Breaking Your Site</title>
				<link>http://www.coldfusioning.com/index.cfm/2010/7/9/Load-jQuery-From-Google-Without-Risk-of-Breaking-Your-Site</link>
				<description>
				
				We&apos;ve all heard the best practices recommendation to load jQuery (or &lt;a href=&quot;http://code.google.com/apis/ajaxlibs/documentation/&quot;&gt;other JavaScript libraries&lt;/a&gt;) from a CDN, such as Google&apos;s for performance reasons.  But what happens if, in the rare chance, Google&apos;s network is down or inaccessible?  At a minimum, your site would start throwing errors &amp; wouldn&apos;t function properly.
&lt;br /&gt;&lt;br /&gt;

Fear not, all is not lost.  Using the code below, we can try to load the file from the Google CDN and then quickly test if it successfully loaded.  If it did load properly, we don&apos;t do anything different.  But if it didn&apos;t, we can load the file from another location, assumingly our web server.  Then our site will function properly and once Google&apos;s CDN is re-accessible, visitors will continue to benefit from the use of the CDN.


&lt;code&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;&gt;&lt;/script&gt; 

&lt;script type=&quot;text/javascript&quot;&gt; 
if (typeof jQuery === &apos;undefined&apos;) document.write(&quot;&lt;scr&quot;+&quot;ipt src=&apos;/js/jquery-1.4.2.min.js&apos;&gt;&lt;/scr&quot;+&quot;ipt&gt;&quot;);
&lt;/script&gt; 
&lt;/code&gt;
&lt;br /&gt;&lt;br /&gt; 
				</description>
				
				<category>jQuery</category>				
				
				<category>Tips</category>				
				
				<pubDate>Fri, 09 Jul 2010 03:23:00 -0400</pubDate>
				<guid>http://www.coldfusioning.com/index.cfm/2010/7/9/Load-jQuery-From-Google-Without-Risk-of-Breaking-Your-Site</guid>
				
			</item>
			
			<item>
				<title>Microsoft Outlook 2007 Hide / Show Non-Printable Characters</title>
				<link>http://www.coldfusioning.com/index.cfm/2009/12/10/Microsoft-Outlook-2007-Hide--Show-NonPrintable-Characters</link>
				<description>
				
				I accidentally turned on non-printable characters in an email in Microsoft Outlook.  I couldn&apos;t figure out how to turn it off until I pushed:
&lt;br /&gt;&lt;br /&gt;
ctrl-shift-8 
&lt;br /&gt;
(the number eight above the keys (NOT the 8 on the keypad).
&lt;br /&gt;&lt;br /&gt;
Also, ctrl-shit-8 turns on non-printable characters, if you&apos;d like to see them.... 
				</description>
				
				<category>Tips</category>				
				
				<pubDate>Thu, 10 Dec 2009 10:11:00 -0400</pubDate>
				<guid>http://www.coldfusioning.com/index.cfm/2009/12/10/Microsoft-Outlook-2007-Hide--Show-NonPrintable-Characters</guid>
				
			</item>
			</channel></rss>