<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for grande.dev = true</title>
	<atom:link href="http://mattgrande.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattgrande.wordpress.com</link>
	<description>Random ramblings of a Ruby on Rails developer</description>
	<lastBuildDate>Wed, 16 Sep 2009 12:41:22 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Delaying File Processing &amp; Uploading with DelayedJob and PaperClip by mattgrande</title>
		<link>http://mattgrande.wordpress.com/2009/08/11/delayedjob/#comment-28</link>
		<dc:creator>mattgrande</dc:creator>
		<pubDate>Wed, 16 Sep 2009 12:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=69#comment-28</guid>
		<description>Hi Poul,

In order to modify the above example to handle several assets, I believe you would just need to loop through the assets.

In actuality, the above code does work with several assets.  We&#039;re using SWFUpload to upload multiple assets one at a time, and when they are uploaded they are sent to AssetsController&#039;s create method.

I am currently unavailable for freelance work in any sort of extensive capacity.  However, I may be able to answer some specific question you have.  If you&#039;d like, feel free to email me at matt.grande@gmail.com</description>
		<content:encoded><![CDATA[<p>Hi Poul,</p>
<p>In order to modify the above example to handle several assets, I believe you would just need to loop through the assets.</p>
<p>In actuality, the above code does work with several assets.  We&#8217;re using SWFUpload to upload multiple assets one at a time, and when they are uploaded they are sent to AssetsController&#8217;s create method.</p>
<p>I am currently unavailable for freelance work in any sort of extensive capacity.  However, I may be able to answer some specific question you have.  If you&#8217;d like, feel free to email me at <a href="mailto:matt.grande@gmail.com">matt.grande@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delaying File Processing &amp; Uploading with DelayedJob and PaperClip by Poul Frederiksen</title>
		<link>http://mattgrande.wordpress.com/2009/08/11/delayedjob/#comment-27</link>
		<dc:creator>Poul Frederiksen</dc:creator>
		<pubDate>Wed, 16 Sep 2009 04:48:22 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=69#comment-27</guid>
		<description>Very useful post. Thank you. 

I am wondering how this might vary in my situation where I have a &quot;Thing&quot; model with a one to many relationship with an &quot;Asset&quot; model. The Asset model has the paperclip attachments. So each Thing might have several Assets (attachments) associated with it. 

I would be interested in potentially hiring you on a free-lance basis to modify this example for the scenario I describe above. How would I contact you to discuss?</description>
		<content:encoded><![CDATA[<p>Very useful post. Thank you. </p>
<p>I am wondering how this might vary in my situation where I have a &#8220;Thing&#8221; model with a one to many relationship with an &#8220;Asset&#8221; model. The Asset model has the paperclip attachments. So each Thing might have several Assets (attachments) associated with it. </p>
<p>I would be interested in potentially hiring you on a free-lance basis to modify this example for the scenario I describe above. How would I contact you to discuss?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashtables and .Net Web Services by mattgrande</title>
		<link>http://mattgrande.wordpress.com/2008/10/21/hashtables-and-net-web-services/#comment-13</link>
		<dc:creator>mattgrande</dc:creator>
		<pubDate>Tue, 05 May 2009 22:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=26#comment-13</guid>
		<description>Thanks for the input.  Why do you feel it sucks?  Can you suggest a better alternative.</description>
		<content:encoded><![CDATA[<p>Thanks for the input.  Why do you feel it sucks?  Can you suggest a better alternative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashtables and .Net Web Services by issi</title>
		<link>http://mattgrande.wordpress.com/2008/10/21/hashtables-and-net-web-services/#comment-12</link>
		<dc:creator>issi</dc:creator>
		<pubDate>Tue, 05 May 2009 17:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=26#comment-12</guid>
		<description>this suckz</description>
		<content:encoded><![CDATA[<p>this suckz</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solving Multiple Inheritance in C# 3.0 by mattgrande</title>
		<link>http://mattgrande.wordpress.com/2008/09/17/solving-multiple-inheritance-in-c-30/#comment-11</link>
		<dc:creator>mattgrande</dc:creator>
		<pubDate>Tue, 21 Oct 2008 15:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=18#comment-11</guid>
		<description>Hi Marcel,

The &#039;this&#039; keyword at the class level does essentially the same thing as it does at the method level.  It specifies that the class &lt;i&gt;never&lt;/i&gt; needs to be invoked to call its methods.

You&#039;ll notice that the namespace that DynamicListControlExtension is defined in is included in the class for DynamicDropDownList.  This allows you to use &quot;this.DoYourStuff()&quot; rather than &quot;DynamicListControlExtension.DoYourStuff().&quot;

Hope this helps,
- Matt.</description>
		<content:encoded><![CDATA[<p>Hi Marcel,</p>
<p>The &#8216;this&#8217; keyword at the class level does essentially the same thing as it does at the method level.  It specifies that the class <i>never</i> needs to be invoked to call its methods.</p>
<p>You&#8217;ll notice that the namespace that DynamicListControlExtension is defined in is included in the class for DynamicDropDownList.  This allows you to use &#8220;this.DoYourStuff()&#8221; rather than &#8220;DynamicListControlExtension.DoYourStuff().&#8221;</p>
<p>Hope this helps,<br />
- Matt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solving Multiple Inheritance in C# 3.0 by marcel</title>
		<link>http://mattgrande.wordpress.com/2008/09/17/solving-multiple-inheritance-in-c-30/#comment-10</link>
		<dc:creator>marcel</dc:creator>
		<pubDate>Mon, 22 Sep 2008 15:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=18#comment-10</guid>
		<description>I didn&#039;t realize that you could use the &#039;this&#039; keyword in a function parameter, as in the static method. What does that actually do?</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t realize that you could use the &#8216;this&#8217; keyword in a function parameter, as in the static method. What does that actually do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single Quotes or Double Quotes? by Dan</title>
		<link>http://mattgrande.wordpress.com/2008/07/25/single-quotes-or-double-quotes/#comment-2</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 25 Jul 2008 15:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://mattgrande.wordpress.com/?p=9#comment-2</guid>
		<description>well, I don&#039;t know about you, but I process 5.4 million strings at least twice a second. So I guess that means that if I apply your theory, not only would I save time, I might be able to gain time and somehow create a time machine.

Thanks for these benchmarks. This has been something I&#039;ve wondered about for a while.</description>
		<content:encoded><![CDATA[<p>well, I don&#8217;t know about you, but I process 5.4 million strings at least twice a second. So I guess that means that if I apply your theory, not only would I save time, I might be able to gain time and somehow create a time machine.</p>
<p>Thanks for these benchmarks. This has been something I&#8217;ve wondered about for a while.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
