<?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>Webapper Blog &#187; Fusebox</title>
	<atom:link href="http://www.webapper.com/blog/index.php/category/fusebox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webapper.com/blog</link>
	<description>Web Application Engineers</description>
	<lastBuildDate>Wed, 04 Jan 2012 21:23:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ColdFusion Heroes</title>
		<link>http://www.webapper.com/blog/index.php/2010/07/27/coldfusion-heroes/</link>
		<comments>http://www.webapper.com/blog/index.php/2010/07/27/coldfusion-heroes/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 22:47:03 +0000</pubDate>
		<dc:creator>Patrick Quinn</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[JVM & Java]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SeeFusion]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1250</guid>
		<description><![CDATA[As leading ColdFusion performance engineers and application development specialists, we&#8217;re pretty good at what we do. Still, it&#8217;s comparatively unglamorous work that we do, focused as it is on recondite topics like software frameworks and Java memory utilization patterns. We&#8217;ve got thousands of happy customers of our ColdFusion support and development services, and our SeeFusion [...]]]></description>
			<content:encoded><![CDATA[As leading ColdFusion performance engineers and application development specialists, we&#8217;re pretty good at what we do. Still, it&#8217;s comparatively unglamorous work that we do, focused as it is on recondite topics like software frameworks and Java memory utilization patterns. We&#8217;ve got thousands of happy customers of our ColdFusion support and development services, and our SeeFusion [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2010/07/27/coldfusion-heroes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evils of Global Variables when Unit Testing</title>
		<link>http://www.webapper.com/blog/index.php/2008/01/23/evils-of-global-variables-when-unit-testing/</link>
		<comments>http://www.webapper.com/blog/index.php/2008/01/23/evils-of-global-variables-when-unit-testing/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 11:53:00 +0000</pubDate>
		<dc:creator>Steve Nelson</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Unit Testing]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2008/6/30/Evils-of-Global-Variables-when-Unit-Testing</guid>
		<description><![CDATA[Let&#8217;s jump right to some code.
::CODECOLORER_BLOCK_1::
versus:
::CODECOLORER_BLOCK_2::
They look pretty similar right? Near identical. Neither is really easier or harder to read. Performance wise, I suspect you couldn&#8217;t see much of a difference. If you&#8217;re thinking to yourself,  &#8220;Aww geez Steve Nelson is about to go on a week long rampage about something.&#8221; You would be [...]]]></description>
			<content:encoded><![CDATA[Let&#8217;s jump right to some code.
::CODECOLORER_BLOCK_3::
versus:
::CODECOLORER_BLOCK_4::
They look pretty similar right? Near identical. Neither is really easier or harder to read. Performance wise, I suspect you couldn&#8217;t see much of a difference. If you&#8217;re thinking to yourself,  &#8220;Aww geez Steve Nelson is about to go on a week long rampage about something.&#8221; You would be [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2008/01/23/evils-of-global-variables-when-unit-testing/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Use CFArgument For&#8230; Everything</title>
		<link>http://www.webapper.com/blog/index.php/2008/01/22/use-cfargument-for-everything/</link>
		<comments>http://www.webapper.com/blog/index.php/2008/01/22/use-cfargument-for-everything/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 14:31:00 +0000</pubDate>
		<dc:creator>Steve Nelson</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[Best Practices]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2008/6/30/Use-CFArgument-For-Everything</guid>
		<description><![CDATA[In my new effort to rid my life of global variables, I&#8217;ve been focusing on the arguments scope. I think the arguments scope is the key to solving this problem.
With my MVC-CFC framework I find it is easy as pie to live without global variables. In a nutshell, EVERYTHING is passed in through a &#60;cfargument&#62;. [...]]]></description>
			<content:encoded><![CDATA[In my new effort to rid my life of global variables, I&#8217;ve been focusing on the arguments scope. I think the arguments scope is the key to solving this problem.
With my MVC-CFC framework I find it is easy as pie to live without global variables. In a nutshell, EVERYTHING is passed in through a &lt;cfargument&gt;. [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2008/01/22/use-cfargument-for-everything/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Steve&#8217;s MVC Framework a year later</title>
		<link>http://www.webapper.com/blog/index.php/2008/01/21/steves-mvc-framework-a-year-later/</link>
		<comments>http://www.webapper.com/blog/index.php/2008/01/21/steves-mvc-framework-a-year-later/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 22:07:00 +0000</pubDate>
		<dc:creator>Steve Nelson</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[OOP]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2008/6/30/Steves-MVC-Framework-a-year-later</guid>
		<description><![CDATA[A few people have asked me if I&#8217;ve done anything with my MVC framework that I presented a year ago at the CF Frameworks conference. The short answer. Yes, but very minor.
I admit it. I&#8217;m an addict. Mostly it&#8217;s the utter simplicity that I love. It takes the power of CFCs with the simplicity of [...]]]></description>
			<content:encoded><![CDATA[A few people have asked me if I&#8217;ve done anything with my MVC framework that I presented a year ago at the CF Frameworks conference. The short answer. Yes, but very minor.
I admit it. I&#8217;m an addict. Mostly it&#8217;s the utter simplicity that I love. It takes the power of CFCs with the simplicity of [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2008/01/21/steves-mvc-framework-a-year-later/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Rejuvenating FLiP, Part 2</title>
		<link>http://www.webapper.com/blog/index.php/2007/06/14/rejuvenating-flip-part-2/</link>
		<comments>http://www.webapper.com/blog/index.php/2007/06/14/rejuvenating-flip-part-2/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 14:40:00 +0000</pubDate>
		<dc:creator>Nat Papovich</dc:creator>
				<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[FLiP]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2007/6/29/Rejuvenating-FLiP-Part-2</guid>
		<description><![CDATA[On frauds, chickens and Visio
There&#8217;s a quasi-psychological disorder called &#8220;Impostor Syndrome&#8221; wherein the sufferer feels that, despite appearing to others as having mastered a particular skill and achieving numerous quantitative successes, he or she is not really &#8220;worthy&#8221; of the titles or benefits (or infamy) that goes along with those skills or successes. Sufferers are unable to internalize their accomplishments. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[On frauds, chickens and Visio
There&#8217;s a quasi-psychological disorder called &#8220;Impostor Syndrome&#8221; wherein the sufferer feels that, despite appearing to others as having mastered a particular skill and achieving numerous quantitative successes, he or she is not really &#8220;worthy&#8221; of the titles or benefits (or infamy) that goes along with those skills or successes. Sufferers are unable to internalize their accomplishments. It&#8217;s [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2007/06/14/rejuvenating-flip-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rejuvenating FLiP, Part 1</title>
		<link>http://www.webapper.com/blog/index.php/2007/06/13/rejuvenating-flip/</link>
		<comments>http://www.webapper.com/blog/index.php/2007/06/13/rejuvenating-flip/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 17:34:00 +0000</pubDate>
		<dc:creator>Nat Papovich</dc:creator>
				<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[FLiP]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2007/6/29/Rejuvenating-FLiP</guid>
		<description><![CDATA[The Case for Functional Business Specification Documents
FLiP is getting a little long in the tooth. When Jeff Peters and I codified Hal Helms&#8217;s development methodology theories in our Fusebox book and coined the name &#8220;Fusebox Lifecycle Process&#8221;, we were living very much in a &#8220;web 1.0&#8243; world. Fusebox was developed as a page-centric controller framework and we all [...]]]></description>
			<content:encoded><![CDATA[The Case for Functional Business Specification Documents
FLiP is getting a little long in the tooth. When Jeff Peters and I codified Hal Helms&#8217;s development methodology theories in our Fusebox book and coined the name &#8220;Fusebox Lifecycle Process&#8221;, we were living very much in a &#8220;web 1.0&#8243; world. Fusebox was developed as a page-centric controller framework and we all [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2007/06/13/rejuvenating-flip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My (Other) Frameworks Presentation: Best Practices for Integrating CFCs, Flex and Fusebox</title>
		<link>http://www.webapper.com/blog/index.php/2007/02/20/my-other-frameworks-presentation-best-practices-for-integrating-cfcs-flex-and-fusebox/</link>
		<comments>http://www.webapper.com/blog/index.php/2007/02/20/my-other-frameworks-presentation-best-practices-for-integrating-cfcs-flex-and-fusebox/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 14:32:00 +0000</pubDate>
		<dc:creator>Nat Papovich</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Flex & Flash]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[CFC]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2007/6/29/My-Other-Frameworks-Presentation-Best-Practices-for-Integrating-CFCs-Flex-and-Fusebox</guid>
		<description><![CDATA[I was more excited about the FB3 to FB5 presentation than this presentation, but a lot more people have requested the materials for this one, so here it is.
Download here Integrating.zip
The presentation didn&#8217;t have a working sample application, but inside, you will find the handful of example files I showed, as well as a PowerPoint
Comments [...]]]></description>
			<content:encoded><![CDATA[I was more excited about the FB3 to FB5 presentation than this presentation, but a lot more people have requested the materials for this one, so here it is.
Download here Integrating.zip
The presentation didn&#8217;t have a working sample application, but inside, you will find the handful of example files I showed, as well as a PowerPoint
Comments [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2007/02/20/my-other-frameworks-presentation-best-practices-for-integrating-cfcs-flex-and-fusebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Frameworks Conference Presentation: Making the Jump from FB3 to FB5</title>
		<link>http://www.webapper.com/blog/index.php/2007/02/19/my-frameworks-conference-presentation-making-the-jump-from-fb3-to-fb5/</link>
		<comments>http://www.webapper.com/blog/index.php/2007/02/19/my-frameworks-conference-presentation-making-the-jump-from-fb3-to-fb5/#comments</comments>
		<pubDate>Mon, 19 Feb 2007 15:42:00 +0000</pubDate>
		<dc:creator>Nat Papovich</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Fusebox]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2007/6/29/My-Frameworks-Conference-Presentation-Making-the-Jump-from-FB3-to-FB5</guid>
		<description><![CDATA[I&#8217;ve had a few people ask for the materials from my &#8220;Making the Jump from FB3 to FB5&#8243; presentation at the Frameworks Conference from earlier this month. Sorry for the delay, but I finally put together all the materials fit for consumption.
Download here turkeylogin.zip
Inside, you&#8217;ll find the PowerPoint along with a sample application which, although [...]]]></description>
			<content:encoded><![CDATA[I&#8217;ve had a few people ask for the materials from my &#8220;Making the Jump from FB3 to FB5&#8243; presentation at the Frameworks Conference from earlier this month. Sorry for the delay, but I finally put together all the materials fit for consumption.
Download here turkeylogin.zip
Inside, you&#8217;ll find the PowerPoint along with a sample application which, although [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2007/02/19/my-frameworks-conference-presentation-making-the-jump-from-fb3-to-fb5/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>CFCs are the Framework</title>
		<link>http://www.webapper.com/blog/index.php/2007/02/05/cfcs-are-the-framework/</link>
		<comments>http://www.webapper.com/blog/index.php/2007/02/05/cfcs-are-the-framework/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 11:59:00 +0000</pubDate>
		<dc:creator>Steve Nelson</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[Framework]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2007/6/29/cfcs-are-the-framework</guid>
		<description><![CDATA[This CFC framework is too simple for you. It has too much power without enough work. It doesn&#8217;t even have a really clever name. Frankly, you&#8217;re not going to like it. 
But in case you&#8217;re still curious, you can download my presentation, the codebase and a 5 page code walk through here:
http://labs.webapper.net
]]></description>
			<content:encoded><![CDATA[This CFC framework is too simple for you. It has too much power without enough work. It doesn&#8217;t even have a really clever name. Frankly, you&#8217;re not going to like it. 
But in case you&#8217;re still curious, you can download my presentation, the codebase and a 5 page code walk through here:
http://labs.webapper.net
]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2007/02/05/cfcs-are-the-framework/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>I am Concerned about my Presentation Tomorrow</title>
		<link>http://www.webapper.com/blog/index.php/2007/01/31/justtooeasy/</link>
		<comments>http://www.webapper.com/blog/index.php/2007/01/31/justtooeasy/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 01:15:00 +0000</pubDate>
		<dc:creator>Steve Nelson</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[User Group]]></category>

		<guid isPermaLink="false">http://www.webapper.net/blog/index.cfm/2007/6/29/justtooeasy</guid>
		<description><![CDATA[I have to be honest, I&#8217;m a little concerned that my presentation at 12:30 tomorrow. My new CFC framework/methodology/method (whatever you call it) is just too simple. I&#8217;m concerned that it won&#8217;t confuse enough people tomorrow.
I mean, this conference is about frameworks, the attendees are the smartest of the smart people in the CF community. [...]]]></description>
			<content:encoded><![CDATA[I have to be honest, I&#8217;m a little concerned that my presentation at 12:30 tomorrow. My new CFC framework/methodology/method (whatever you call it) is just too simple. I&#8217;m concerned that it won&#8217;t confuse enough people tomorrow.
I mean, this conference is about frameworks, the attendees are the smartest of the smart people in the CF community. [...]]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2007/01/31/justtooeasy/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

