<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>The Warp - ColdFusion</title>
			<link>http://thewarp.org/blog/index.cfm</link>
			<description></description>
			<language>en-us</language>
			<pubDate>Mon, 06 Sep 2010 18:14:44 -0700</pubDate>
			<lastBuildDate>Sat, 02 May 2009 18:44:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>ledgeswarp@yahoo.com</managingEditor>
			<webMaster>ledgeswarp@yahoo.com</webMaster>
			
			
			
			
			
			<item>
				<title>BlogCFC: Removing lastXDays feature</title>
				<link>http://thewarp.org/blog/index.cfm/2009/5/2/BlogCFC-Removing-lastXDays-feature</link>
				<description>
				
				I am one of those people that doesn&apos;t get to blog all the time on their primary blog...  :)  I have a few other blogs and it seems that this one gets neglected from time to time.  That always leaves my blog with the &quot;Sorry there are no blog entries&quot; message on my homepage.

I got tired of seeing that today and found this older article about removing the lastXDays feature on BlogCFC.

&lt;a href=&quot;http://www.danvega.org/blog/index.cfm/2007/7/16/BlogCFC-Removing-lastXDays-feature&quot;&gt;http://www.danvega.org/blog/index.cfm/2007/7/16/BlogCFC-Removing-lastXDays-feature&lt;/a&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 02 May 2009 18:44:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2009/5/2/BlogCFC-Removing-lastXDays-feature</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Getting paid for interviews...</title>
				<link>http://thewarp.org/blog/index.cfm/2008/5/5/Getting-paid-for-interviews</link>
				<description>
				
				I like almost everyone out there get a lot of calls for interviews from headhunters, etc.  They get paid to find someone for the right job, so why isn&apos;t that spread around?  Why don&apos;t I get paid to go on an interview?  My time is as just as valuable (if not more) than theirs.  Why should I take time off work and go on an interview?  Sure the prospect of a new job is in there for me, but in all reality I should be compensated for my time.

I think I am going to setup a new wishlist on Amazon for recruiters and headhunters.  Send me something off that list and I will go on an interview...  Not saying that I would take the position, but it never hurts to listen and keep your ears open...

&lt;a href=&quot;http://www.notchup.com/&quot;&gt;http://www.notchup.com/&lt;/a&gt;

I found this website notchup.com after I originally posted this article.  It is exactly what I am talking about. 

Here is how they describe themselves:

NotchUp is for you if&lt;BR&gt;
you&apos;re happy at your job&lt;BR&gt;
you&apos;re good at what you do&lt;BR&gt;
you&apos;re not looking for a new job

Great concept and Great site!
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Flash</category>				
				
				<category>Advertising</category>				
				
				<pubDate>Mon, 05 May 2008 14:40:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2008/5/5/Getting-paid-for-interviews</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Easy Dynamic Google Sitemap with ColdFusion</title>
				<link>http://thewarp.org/blog/index.cfm/2008/4/28/Easy-Dynamic-Google-Sitemap-with-ColdFusion</link>
				<description>
				
				Have you ever wanted to have your google sitemap updated on the fly based on your postings or other data? This is a simple but effective example:
&lt;code&gt;
&lt;CFQUERY name=&quot;qFind&quot; datasource=&quot;astores&quot;&gt;
select * from astores_names
&lt;/CFQUERY&gt;

&lt;cfxml variable=&quot;mydoc&quot;&gt;
  &lt;urlset xmlns=&quot;http://www.google.com/schemas/sitemap/0.84&quot;&gt;
    &lt;cfoutput query=&quot;qFind&quot;&gt;
      &lt;url&gt;
       &lt;loc&gt;http://www.thewarp.org/blog/store.cfm?site=#store_name#&lt;/loc&gt;
       &lt;changefreq&gt;daily&lt;/changefreq&gt;
       &lt;priority&gt;0.8&lt;/priority&gt;
       &lt;/url&gt;
    &lt;/cfoutput&gt;
  &lt;/urlset&gt;
&lt;/cfxml&gt;

&lt;!--- &lt;cfdump var=#mydoc#&gt; ---&gt;
&lt;CFCONTENT
TYPE=&quot;text/xml&quot;
RESET=&quot;yes&quot;&gt;&lt;CFOUTPUT&gt;#ToString(mydoc)#&lt;/CFOUTPUT&gt;

&lt;/code&gt;

An example can be seen here:

http://www.thewarp.org/store_xml.cfm
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 28 Apr 2008 08:39:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2008/4/28/Easy-Dynamic-Google-Sitemap-with-ColdFusion</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Adobe MAX -- Problems with the United Way Volunteer Site</title>
				<link>http://thewarp.org/blog/index.cfm/2007/10/4/Adobe-MAX--United-Way-Volunteer-Site</link>
				<description>
				
				Ben Forta and Scott Fegette got together on the first day of the show and did a cool demonstartion of ColdFusion.  They rebuilt the volunteer site for the United Way.  It looks great, but appears to have some problems in FF.  The main thing that I notice when I go there in FF is:

&lt;img src=&quot;http://thewarp.org/blog/images/unitedway.jpg&quot;&gt;

It even looks this way after you close the little white window... I think in all the rush they didn&apos;t do some good old QA on the site first...  Good site other than that though...

&lt;a href=&quot;http://volunteer.unitedway.org/&quot;&gt;http://volunteer.unitedway.org/&lt;/a&gt;

&lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/10/1/MAX-2007-Day-One-Wrap-Up&quot;&gt;http://www.forta.com/blog/index.cfm/2007/10/1/MAX-2007-Day-One-Wrap-Up&lt;/a&gt;
				
				</description>
						
				
				<category>Adobe</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 04 Oct 2007 12:58:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2007/10/4/Adobe-MAX--United-Way-Volunteer-Site</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Adobe MAX Chicago is SOLD OUT!!</title>
				<link>http://thewarp.org/blog/index.cfm/2007/9/26/Adobe-MAX-is-SOLD-OUT</link>
				<description>
				
				Wow.  This is a first I think.  A friend of mine went to sign up to go yesterday and found out that MAX is Sold Out.  I knew it was a record, but wow...


&lt;a href=&quot;http://blog.adobemax2007.com/2007/09/adobe-max-2007-north-america-is-sold.html&quot;&gt;http://blog.adobemax2007.com/2007/09/adobe-max-2007-north-america-is-sold.html&lt;/a&gt;
				
				</description>
						
				
				<category>Adobe</category>				
				
				<category>ColdFusion</category>				
				
				<category>Flash</category>				
				
				<category>Flex</category>				
				
				<pubDate>Wed, 26 Sep 2007 07:39:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2007/9/26/Adobe-MAX-is-SOLD-OUT</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Installing ColdFusion 8 Eclipse Extensions</title>
				<link>http://thewarp.org/blog/index.cfm/2007/5/30/Installing-ColdFusion-8-Eclipse-Extensions</link>
				<description>
				
				The ColdFusion extensions for Eclipse include RDS panels, a Services Browser panel, a CF Log Viewer, RDS support, help, wizards, and of course the interactive debugger. These extensions are available for download along with ColdFusion 8 and will be distributed with the product when it ships.

&lt;a href=&quot;http://eclipse.sys-con.com/read/382377.htm&quot;&gt;http://eclipse.sys-con.com/read/382377.htm&lt;/a&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 30 May 2007 11:20:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2007/5/30/Installing-ColdFusion-8-Eclipse-Extensions</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Adobe&apos;s ColdFusion warms to .Net</title>
				<link>http://thewarp.org/blog/index.cfm/2007/5/30/Adobes-ColdFusion-warms-to-Net</link>
				<description>
				
				Adobe Systems Inc.&apos;s ColdFusion software for building Internet applications and Web sites is being improved with Microsoft .Net support, enabling .Net objects to be invoked from within the ColdFusion language.

A public beta of ColdFusion 8, is to be offered starting today. The general release is set for mid-year. Version 8 is the first Adobe-branded release of the former Macromedia technology.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 30 May 2007 09:42:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2007/5/30/Adobes-ColdFusion-warms-to-Net</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Report says that 90% of businesses plan to have RIA&apos;s.</title>
				<link>http://thewarp.org/blog/index.cfm/2007/1/11/Report-says-that-90-or-businesses-plan-to-have-RIAs</link>
				<description>
				
				One Stop Click News has a story on RIA&apos;s and a survey done by Scene 7.  I guess this only goes to show that the use of RIA&apos;s will continue to expand.

&quot;Around 90 per cent of retailers, catalogers and commerce sites surveyed by Scene7, the rich application provider, planned to enhance their customer&apos;s experiences by implementing rich internet applications.

Around 78 per cent of respondents wanted consumers to be able to zoom in on product pictures, 76 per cent required visual configurators and 75 per cent of companies planned colour swatching and colouring.&quot;

&lt;a href=&quot;http://www.onestopclick.com/news/Rich-internet-applications-planned-by-90-per-cent-of-businesses_18029593.html&quot;&gt;http://www.onestopclick.com/news/Rich-internet-applications-planned-by-90-per-cent-of-businesses_18029593.html&lt;/a&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Flash</category>				
				
				<category>Flex</category>				
				
				<pubDate>Thu, 11 Jan 2007 11:29:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2007/1/11/Report-says-that-90-or-businesses-plan-to-have-RIAs</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Updating Blog to Current version of BlogCFC</title>
				<link>http://thewarp.org/blog/index.cfm/2006/12/30/Updating-Blog-to-Current-version-of-BlogCFC</link>
				<description>
				
				You may see some screwy looking pages during this update, including the ugly orange css colors until I have a chance to update the css.  So far so good though on the update.  I have already done all my database changes, now I just have to swap the directories and cross my fingers.... :)


Update: Just did the directory swap.  If anyone sees a problem, let me know.  Now I have to get my adsense and everything else working again... :(
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 30 Dec 2006 16:53:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2006/12/30/Updating-Blog-to-Current-version-of-BlogCFC</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Finally going to take the plunge and upgrade...</title>
				<link>http://thewarp.org/blog/index.cfm/2006/8/1/upgrades</link>
				<description>
				
				I am planning on starting the upgrade to the most recent version of Ray Camden&apos;s &lt;a href=&quot;http://ray.camdenfamily.com/projects/blogcfc/&quot;&gt;Blog CFC&lt;/a&gt;.  I think it may take a little bit of tweaking though to get it up to the current version.  I think I am still on Blog CFC 3.x, so if anyone has any tips they will be greatly appreciated.  Last time I updated was a while back and I ended up wiping out my SQL Server database.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 01 Aug 2006 08:25:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2006/8/1/upgrades</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Standalone ColdFusion...</title>
				<link>http://thewarp.org/blog/index.cfm/2005/10/3/standalone-cf</link>
				<description>
				
				I wonder if anyone else has ever thought, hey it would be nice to be able to write a ColdFusion App, compile the code on your machine and have a standalone app that didn&apos;t require a ColdFusion server.

I really wish that Macromedia would create something like this.  There could even be a browser plugin that sits on the users machine, much like Flash has a player that sits on a users machine.

In reality they may be positioning Flash for this more and more.  I just think it would be nice to have the ability to take a ColdFusion app, compile it, and put it on lets say a CD.

Let me know what you think...
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 03 Oct 2005 10:50:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2005/10/3/standalone-cf</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Using RSS XML in Flash  - Part 1</title>
				<link>http://thewarp.org/blog/index.cfm/2005/5/4/using-rss-xml</link>
				<description>
				
				Want to use RSS XML in flash from another website?  Having problems with the fact that flash will only allow you to pull in XML from your own domain?  Try this code out if you have Cold Fusion...

&lt;div class=&quot;code&quot; width=&quot;400&quot;&gt;&lt;FONT COLOR=MAROON&gt;&amp;lt;cfprocessingdirective suppressWhiteSpace = &lt;FONT COLOR=BLUE&gt;&quot;Yes&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;br&gt;
&lt;FONT COLOR=GRAY&gt;&lt;I&gt;&amp;lt;!--- This specifies the URL that you want to retrieve data from ---&amp;gt;&lt;/I&gt;&lt;/FONT&gt;&lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;cfset dataURL=&lt;FONT COLOR=BLUE&gt;&quot;&lt;A TARGET=&quot;_blank&quot; HREF=&quot;http://rss.news.yahoo.com/rss/tech&quot;&gt;http://rss.news.yahoo.com/rss/tech&lt;/A&gt;&quot;&lt;/FONT&gt;/&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;cfhttp url=&lt;FONT COLOR=BLUE&gt;&quot;#dataURL#&quot;&lt;/FONT&gt; method=&lt;FONT COLOR=BLUE&gt;&quot;get&quot;&lt;/FONT&gt; redirect=&lt;FONT COLOR=BLUE&gt;&quot;yes&quot;&lt;/FONT&gt; timeout=&lt;FONT COLOR=BLUE&gt;&quot;10&quot;&lt;/FONT&gt;/&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;cfheader name = &lt;FONT COLOR=BLUE&gt;&quot;Content-type&quot;&lt;/FONT&gt; value = &lt;FONT COLOR=BLUE&gt;&quot;#cfhttp.mimeType#&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;cfoutput&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;#cfhttp.fileContent# &lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;/cfoutput&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;/cfprocessingdirective&amp;gt;&lt;/FONT&gt;&lt;/div&gt;

Then, just treat this CFM page as if it was an XML  file.

&lt;a href=&quot;http://thewarp.org/blog/index.cfm?mode=entry&amp;entry=AE5D9654-3048-2C47-341DC323457C5B6B&quot;&gt;Link to Part 2 of the article&lt;/a&gt; - This part deals with the ActionScript.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 04 May 2005 14:10:00 -0700</pubDate>
				<guid>http://thewarp.org/blog/index.cfm/2005/5/4/using-rss-xml</guid>
				
			</item>
			
		 	
			</channel></rss>