<?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 Wind-Up Thoughts</title>
	<atom:link href="http://www.billzajac.com/wordpress/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.billzajac.com/wordpress</link>
	<description></description>
	<lastBuildDate>Wed, 24 Nov 2010 17:17:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>Comment on China, Day 9 &#8211; Xi&#8217;an by Arlene Gover</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/07/02/china-day-9-xian/comment-page-1/#comment-104</link>
		<dc:creator>Arlene Gover</dc:creator>
		<pubDate>Wed, 24 Nov 2010 17:17:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-104</guid>
		<description>Fantastic. I&#039;ve been on a big noodle craze lately, I have no idea why - I just got a crazy craving for noodles!! Is that even possible? I&#039;ve already tried nearly half of all the &lt;a href=&quot;http://www.noodlerecipes.net/noodle/nutritious-noodles-recipes/&quot; rel=&quot;nofollow&quot;&gt;noodle recipe&lt;/A&gt; here ! Crazy huh. I should probably stop soon, I dont think eating noodles every day isnt so healthy for me...</description>
		<content:encoded><![CDATA[<p>Fantastic. I&#8217;ve been on a big noodle craze lately, I have no idea why &#8211; I just got a crazy craving for noodles!! Is that even possible? I&#8217;ve already tried nearly half of all the <a href="http://www.noodlerecipes.net/noodle/nutritious-noodles-recipes/" rel="nofollow">noodle recipe</a> here ! Crazy huh. I should probably stop soon, I dont think eating noodles every day isnt so healthy for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JQuery with Rails by Random Thoughts » jQuery smart multiple DIV replace with LiveQuery</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/11/26/using-jquery-with-rails/comment-page-1/#comment-77</link>
		<dc:creator>Random Thoughts » jQuery smart multiple DIV replace with LiveQuery</dc:creator>
		<pubDate>Thu, 27 Nov 2008 06:58:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.billzajac.com/wordpress/?p=157#comment-77</guid>
		<description>[...] &#171;&#160;Using JQuery with Rails       Nov 26 2008 [...]</description>
		<content:encoded><![CDATA[<p>[...] &laquo;&nbsp;Using JQuery with Rails       Nov 26 2008 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using xml with the resource_controller plugin by billz</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/02/23/using-xml-with-the-resource_controller-plugin/comment-page-1/#comment-67</link>
		<dc:creator>billz</dc:creator>
		<pubDate>Wed, 12 Nov 2008 16:48:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-67</guid>
		<description>Good question.  I remember it striking me as odd that I had to do that at all.  r_c has recently been updated from version 0.2 to 0.5, so the new version may have xml defaults built it.  I&#039;ll check it out and update this post if that&#039;s the case.</description>
		<content:encoded><![CDATA[<p>Good question.  I remember it striking me as odd that I had to do that at all.  r_c has recently been updated from version 0.2 to 0.5, so the new version may have xml defaults built it.  I&#8217;ll check it out and update this post if that&#8217;s the case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using xml with the resource_controller plugin by Jesper Rønn-Jensen</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/02/23/using-xml-with-the-resource_controller-plugin/comment-page-1/#comment-66</link>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
		<pubDate>Wed, 05 Nov 2008 15:42:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-66</guid>
		<description>Interesting. 
How to make this more DRY for reuse in other controllers?

I wondered how to put this out in a separate module that could be included. Do you have any idea of how i could do this?</description>
		<content:encoded><![CDATA[<p>Interesting.<br />
How to make this more DRY for reuse in other controllers?</p>
<p>I wondered how to put this out in a separate module that could be included. Do you have any idea of how i could do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making ActiveResource find work with your controller by BillZ</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/02/23/making-activeresource-find-work-with-your-controller/comment-page-1/#comment-20</link>
		<dc:creator>BillZ</dc:creator>
		<pubDate>Mon, 23 Jun 2008 19:19:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-20</guid>
		<description>Martijn,
I didn&#039;t realize that method is actually part of a third party plugin I&#039;m using called &quot;Resource Controller&quot;.  I use it to help with associations in my model.  In this case, I used end_of_association_chain because I wanted my find to happen after the associations are done.

According to James Golick, &quot;All fetching must be done on top of the method end_of_association_chain, or else parent resources (including polymorphic ones) won&#039;t function correctly.&quot;  

The comment from his code about that particular method is: 
  # If there is a parent, returns the relevant association proxy.  Otherwise returns model.

Source: &lt;a href=&quot;http://jamesgolick.com/resource_controller/rdoc/classes/ResourceController/Helpers.html&quot; rel=&quot;nofollow&quot;&gt;http://jamesgolick.com/resource_controller/rdoc/classes/ResourceController/Helpers.html&lt;/a&gt;

Finally, as for the value of a parameter being passed as a string.  Good point.  I haven&#039;t looked at this code in a while.  I must have thought Rails was ok with that.  (I hope to verify soon and figure out more of why I thought that would work.)

If there is no other obvious way to send an array value, a very quick and very dirty fix for you could be to send a string with a delimiter (assuming you can guarantee that delimiter is never in any of your values) and then split on it to create an array.

Good luck and thanks for the feedback.</description>
		<content:encoded><![CDATA[<p>Martijn,<br />
I didn&#8217;t realize that method is actually part of a third party plugin I&#8217;m using called &#8220;Resource Controller&#8221;.  I use it to help with associations in my model.  In this case, I used end_of_association_chain because I wanted my find to happen after the associations are done.</p>
<p>According to James Golick, &#8220;All fetching must be done on top of the method end_of_association_chain, or else parent resources (including polymorphic ones) won&#8217;t function correctly.&#8221;  </p>
<p>The comment from his code about that particular method is:<br />
  # If there is a parent, returns the relevant association proxy.  Otherwise returns model.</p>
<p>Source: <a href="http://jamesgolick.com/resource_controller/rdoc/classes/ResourceController/Helpers.html" rel="nofollow">http://jamesgolick.com/resource_controller/rdoc/classes/ResourceController/Helpers.html</a></p>
<p>Finally, as for the value of a parameter being passed as a string.  Good point.  I haven&#8217;t looked at this code in a while.  I must have thought Rails was ok with that.  (I hope to verify soon and figure out more of why I thought that would work.)</p>
<p>If there is no other obvious way to send an array value, a very quick and very dirty fix for you could be to send a string with a delimiter (assuming you can guarantee that delimiter is never in any of your values) and then split on it to create an array.</p>
<p>Good luck and thanks for the feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making ActiveResource find work with your controller by Martijn</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/02/23/making-activeresource-find-work-with-your-controller/comment-page-1/#comment-19</link>
		<dc:creator>Martijn</dc:creator>
		<pubDate>Thu, 12 Jun 2008 01:10:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-19</guid>
		<description>Wait... this code doesn&#039;t work with an array. A value, passed as a parameter, is always a String.</description>
		<content:encoded><![CDATA[<p>Wait&#8230; this code doesn&#8217;t work with an array. A value, passed as a parameter, is always a String.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making ActiveResource find work with your controller by Martijn</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/02/23/making-activeresource-find-work-with-your-controller/comment-page-1/#comment-18</link>
		<dc:creator>Martijn</dc:creator>
		<pubDate>Thu, 12 Jun 2008 00:35:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-18</guid>
		<description>This is exactly what I needed. It should be implemented in Rails. I don&#039;t know why it isn&#039;t yet.

Bu what does end_of_association_chain mean?</description>
		<content:encoded><![CDATA[<p>This is exactly what I needed. It should be implemented in Rails. I don&#8217;t know why it isn&#8217;t yet.</p>
<p>Bu what does end_of_association_chain mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Amway Traffic by billyz</title>
		<link>http://www.billzajac.com/wordpress/articles/2007/10/02/amway-traffic/comment-page-1/#comment-17</link>
		<dc:creator>billyz</dc:creator>
		<pubDate>Sun, 08 Jun 2008 14:51:08 +0000</pubDate>
		<guid isPermaLink="false">#comment-17</guid>
		<description>hey nate, i&#039;ll have to write more then.  ;)</description>
		<content:encoded><![CDATA[<p>hey nate, i&#8217;ll have to write more then.  <img src='http://www.billzajac.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CA DMV by billyz</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/03/25/ca-dmv/comment-page-1/#comment-16</link>
		<dc:creator>billyz</dc:creator>
		<pubDate>Sun, 08 Jun 2008 14:43:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-16</guid>
		<description>just got back from china.  expect to see more soon.</description>
		<content:encoded><![CDATA[<p>just got back from china.  expect to see more soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CA DMV by http://1979semifinalist.wordpress.com</title>
		<link>http://www.billzajac.com/wordpress/articles/2008/03/25/ca-dmv/comment-page-1/#comment-15</link>
		<dc:creator>http://1979semifinalist.wordpress.com</dc:creator>
		<pubDate>Wed, 21 May 2008 09:35:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-15</guid>
		<description>Honestly, this is the EXACT same thing that happened to me, from the multiple calls about the &quot;piece of paper kept with license&quot;, down to scheduling the appointment and all the rest.  If it happened to both of us, imagine how many people it must jhave happened to.  All of us wandering around shaking our heads wondering how such a screwed up system manages to survive.  

On another note, glad to see you&#039;re back and blogging.  I checked some of the older posts, and of course I&#039;m a moron when it comes to IT type talk, so I might as well have been trying to read greek...but I&#039;m still glad you&#039;re posting...even if I can&#039;t understand it all.  :)

Kelly</description>
		<content:encoded><![CDATA[<p>Honestly, this is the EXACT same thing that happened to me, from the multiple calls about the &#8220;piece of paper kept with license&#8221;, down to scheduling the appointment and all the rest.  If it happened to both of us, imagine how many people it must jhave happened to.  All of us wandering around shaking our heads wondering how such a screwed up system manages to survive.  </p>
<p>On another note, glad to see you&#8217;re back and blogging.  I checked some of the older posts, and of course I&#8217;m a moron when it comes to IT type talk, so I might as well have been trying to read greek&#8230;but I&#8217;m still glad you&#8217;re posting&#8230;even if I can&#8217;t understand it all.  <img src='http://www.billzajac.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Kelly</p>
]]></content:encoded>
	</item>
</channel>
</rss>

