<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Joshua Arnold</title>
	<atom:link href="http://www.joshua-arnold.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joshua-arnold.com</link>
	<description>Random thoughts on software development, life, and the art of growing old.</description>
	<lastBuildDate>Fri, 23 Jul 2010 20:33:57 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Moving blogs by Lee</title>
		<link>http://www.joshua-arnold.com/2010/02/moving-blogs/comment-page-1/#comment-283</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Fri, 23 Jul 2010 20:33:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=270#comment-283</guid>
		<description>Boo on you.</description>
		<content:encoded><![CDATA[<p>Boo on you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single Point of Failure: The dangers of isolated decision making by Jon Delbridge</title>
		<link>http://www.joshua-arnold.com/2008/10/single-point-of-failure-the-dangers-of-isolated-decision-making/comment-page-1/#comment-282</link>
		<dc:creator>Jon Delbridge</dc:creator>
		<pubDate>Wed, 02 Jun 2010 11:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=143#comment-282</guid>
		<description>hi,The Topic of your blog is very good to me, I hope more interflow with you this Topic.</description>
		<content:encoded><![CDATA[<p>hi,The Topic of your blog is very good to me, I hope more interflow with you this Topic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Defining an Architect: The intersection of business and technology by Randee Dargenio</title>
		<link>http://www.joshua-arnold.com/2009/02/defining-an-architect-the-intersection-of-business-and-technology/comment-page-1/#comment-280</link>
		<dc:creator>Randee Dargenio</dc:creator>
		<pubDate>Tue, 18 May 2010 16:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=145#comment-280</guid>
		<description>hey,I find that your weblog is quite informative and helpful and we were curious if there is really a possibility of getting More stories like this on your weblog. If you willing to aid us out, we will be willing to compensate you... Sincerely, Randee Dargenio</description>
		<content:encoded><![CDATA[<p>hey,I find that your weblog is quite informative and helpful and we were curious if there is really a possibility of getting More stories like this on your weblog. If you willing to aid us out, we will be willing to compensate you&#8230; Sincerely, Randee Dargenio</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FubuToDo &#8211; Part 2: Forms, Controllers, View, and jQuery by Kurt</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-279</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Thu, 22 Apr 2010 18:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-279</guid>
		<description>Great articles, thank you. FubuMVC looks promising.

Worth mentioning, with the latest Fubu build the following has been replaced:
           JsonOutputIf.WhenTheOutputModelIs();

with
            
Output.ToJson.WhenTheOutputModelIs();</description>
		<content:encoded><![CDATA[<p>Great articles, thank you. FubuMVC looks promising.</p>
<p>Worth mentioning, with the latest Fubu build the following has been replaced:<br />
           JsonOutputIf.WhenTheOutputModelIs();</p>
<p>with</p>
<p>Output.ToJson.WhenTheOutputModelIs();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FubuToDo &#8211; Part 2: Forms, Controllers, View, and jQuery by Josh</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-272</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 10 Feb 2010 23:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-272</guid>
		<description>@smaclell thanks for catching that. I&#039;ve updated the tags to reflect that change.</description>
		<content:encoded><![CDATA[<p>@smaclell thanks for catching that. I&#8217;ve updated the tags to reflect that change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FubuToDo &#8211; Part 2: Forms, Controllers, View, and jQuery by smaclell</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-271</link>
		<dc:creator>smaclell</dc:creator>
		<pubDate>Wed, 10 Feb 2010 22:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-271</guid>
		<description>For those looking through the code the Scripts/home/index.js file does not correctly setup the ajaxSubmit. 

instead of 
$(&#039;frmItem&#039;).submit( function() {
   $(this).ajaxSubmit( ... setup goes here ...);
});

it needs to be
$(&#039;frmItem&#039;).submit( function() {
   $(this).ajaxSubmit( ... setup goes here ...);

   // this prevents a redirect to a view showing you the returned json. 
   // See jquery.form.js documentation for details.
   return false;
});</description>
		<content:encoded><![CDATA[<p>For those looking through the code the Scripts/home/index.js file does not correctly setup the ajaxSubmit. </p>
<p>instead of<br />
$(&#8217;frmItem&#8217;).submit( function() {<br />
   $(this).ajaxSubmit( &#8230; setup goes here &#8230;);<br />
});</p>
<p>it needs to be<br />
$(&#8217;frmItem&#8217;).submit( function() {<br />
   $(this).ajaxSubmit( &#8230; setup goes here &#8230;);</p>
<p>   // this prevents a redirect to a view showing you the returned json.<br />
   // See jquery.form.js documentation for details.<br />
   return false;<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FubuToDo &#8211; Part 2: Forms, Controllers, View, and jQuery by Jake Scot</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-264</link>
		<dc:creator>Jake Scot</dc:creator>
		<pubDate>Mon, 18 Jan 2010 10:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-264</guid>
		<description>Hi Josh, instead of using 
jQuery.ajax({
data: { random: new Date().getUTCMilliseconds() },
});

you can tell jQuery not to cache the result (It appends a random timestamp to the request) by going

jQuery.ajax({  
  cache:false
});

or globally

jQuery.ajaxSetup({
  cache:false
});</description>
		<content:encoded><![CDATA[<p>Hi Josh, instead of using<br />
jQuery.ajax({<br />
data: { random: new Date().getUTCMilliseconds() },<br />
});</p>
<p>you can tell jQuery not to cache the result (It appends a random timestamp to the request) by going</p>
<p>jQuery.ajax({<br />
  cache:false<br />
});</p>
<p>or globally</p>
<p>jQuery.ajaxSetup({<br />
  cache:false<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FubuToDo &#8211; Part 2: Forms, Controllers, View, and jQuery by FubuMVC Example - Creating a To-Do application using FubuMVC (Part 1) - Joshua Arnold</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-263</link>
		<dc:creator>FubuMVC Example - Creating a To-Do application using FubuMVC (Part 1) - Joshua Arnold</dc:creator>
		<pubDate>Sun, 17 Jan 2010 23:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-263</guid>
		<description>[...] Part 2: Forms, Controllers, Views, and jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 2: Forms, Controllers, Views, and jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FubuToDo &#8211; Part 1: Conventions, Opinions, and Bootstrapping by FubuMVC Example - Creating a To-Do application using FubuMVC (Part 2) - Joshua Arnold</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-1-conventions-opinions-and-bootstrapping/comment-page-1/#comment-262</link>
		<dc:creator>FubuMVC Example - Creating a To-Do application using FubuMVC (Part 2) - Joshua Arnold</dc:creator>
		<pubDate>Sun, 17 Jan 2010 23:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=251#comment-262</guid>
		<description>[...] Part 1: Conventions, Opinions and Bootstrapping [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 1: Conventions, Opinions and Bootstrapping [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeCamp and Car Wrecks by SnapDragon and Patterns at Neumont - Joshua Arnold</title>
		<link>http://www.joshua-arnold.com/2009/05/codecamp-and-car-wrecks/comment-page-1/#comment-221</link>
		<dc:creator>SnapDragon and Patterns at Neumont - Joshua Arnold</dc:creator>
		<pubDate>Mon, 08 Jun 2009 05:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=199#comment-221</guid>
		<description>[...] I began with introducing myself and ProAce. Afterwards I went over the same basic presentation that I used for Austin Code Camp. I did elaborate on the examples, however, and gave a demonstration of a prototype of the [...]</description>
		<content:encoded><![CDATA[<p>[...] I began with introducing myself and ProAce. Afterwards I went over the same basic presentation that I used for Austin Code Camp. I did elaborate on the examples, however, and gave a demonstration of a prototype of the [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
