<?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 Jay R. Wren - lazy dawg evarlast</title>
	<atom:link href="http://jrwren.wrenfam.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jrwren.wrenfam.com/blog</link>
	<description>babblings of a computer loving fool</description>
	<lastBuildDate>Sat, 06 Mar 2010 13:53:30 -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 LINQ Abuse with the C# 4 dynamic type by jrwren</title>
		<link>http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/comment-page-1/#comment-31267</link>
		<dc:creator>jrwren</dc:creator>
		<pubDate>Sat, 06 Mar 2010 13:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/#comment-31267</guid>
		<description>@keith

because we don&#039;t know if it will be IEnumerable. A more real example would be like this:

dynamic x = SomeDynamicResultFromPythonOrSomething();
object o = x;
var result = from i in o where ... select ...;

The method which returns a dynamic may or may not return a dynamic which ultimately implements IEnumerable. Further more, depending on my implementation of Where, Select, etc. I might not even care if they implement IEnumerable. It may be enough that it returns an object which implements GetEnumerator. Remember that foreach does not require a type implement IEnumerable, just that the GetEnumerator method exist.</description>
		<content:encoded><![CDATA[<p>@keith</p>
<p>because we don&#8217;t know if it will be IEnumerable. A more real example would be like this:</p>
<p>dynamic x = SomeDynamicResultFromPythonOrSomething();<br />
object o = x;<br />
var result = from i in o where &#8230; select &#8230;;</p>
<p>The method which returns a dynamic may or may not return a dynamic which ultimately implements IEnumerable. Further more, depending on my implementation of Where, Select, etc. I might not even care if they implement IEnumerable. It may be enough that it returns an object which implements GetEnumerator. Remember that foreach does not require a type implement IEnumerable, just that the GetEnumerator method exist.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LINQ Abuse with the C# 4 dynamic type by Keith J. Farmer</title>
		<link>http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/comment-page-1/#comment-31266</link>
		<dc:creator>Keith J. Farmer</dc:creator>
		<pubDate>Sat, 06 Mar 2010 04:12:46 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/#comment-31266</guid>
		<description>Actually, instead of extending object, why not simply extend the non-generic IEnumerable. After all, you are making that presumption internally with Select.</description>
		<content:encoded><![CDATA[<p>Actually, instead of extending object, why not simply extend the non-generic IEnumerable. After all, you are making that presumption internally with Select.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LINQ Abuse with the C# 4 dynamic type by Ayende Rahien</title>
		<link>http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/comment-page-1/#comment-31263</link>
		<dc:creator>Ayende Rahien</dc:creator>
		<pubDate>Fri, 05 Mar 2010 08:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/#comment-31263</guid>
		<description>Never mind, got it to work.
Thanks, that actually solved my problem completely!</description>
		<content:encoded><![CDATA[<p>Never mind, got it to work.<br />
Thanks, that actually solved my problem completely!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LINQ Abuse with the C# 4 dynamic type by Ayende Rahien</title>
		<link>http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/comment-page-1/#comment-31262</link>
		<dc:creator>Ayende Rahien</dc:creator>
		<pubDate>Fri, 05 Mar 2010 08:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/03/04/linq-abuse-with-the-c-4-dynamic-type/#comment-31262</guid>
		<description>Well, that is nice!
Can you make it work for SelectMany as well?
I tried a bit, but I couldn&#039;t really get it to work</description>
		<content:encoded><![CDATA[<p>Well, that is nice!<br />
Can you make it work for SelectMany as well?<br />
I tried a bit, but I couldn&#8217;t really get it to work</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version Control Tools Is More Than Just The Tools by encoded</title>
		<link>http://jrwren.wrenfam.com/blog/2010/02/17/version-control-tools-is-more-than-just-the-tools/comment-page-1/#comment-31247</link>
		<dc:creator>encoded</dc:creator>
		<pubDate>Tue, 23 Feb 2010 16:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/02/17/version-control-tools-is-more-than-just-the-tools/#comment-31247</guid>
		<description>Good points on a whole Jay.  I knew about bitbucket,  but didn&#039;t know that launchpad could be self-hosted.  Interesting.

&quot;But for anything but the tiniest organization outsourcing your VCS to github is not a practical option.&quot;

Github also has paid accounts for companies.  Granted their prices are high, IMO, it is an option.

e.</description>
		<content:encoded><![CDATA[<p>Good points on a whole Jay.  I knew about bitbucket,  but didn&#8217;t know that launchpad could be self-hosted.  Interesting.</p>
<p>&#8220;But for anything but the tiniest organization outsourcing your VCS to github is not a practical option.&#8221;</p>
<p>Github also has paid accounts for companies.  Granted their prices are high, IMO, it is an option.</p>
<p>e.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version Control Tools Is More Than Just The Tools by Peter</title>
		<link>http://jrwren.wrenfam.com/blog/2010/02/17/version-control-tools-is-more-than-just-the-tools/comment-page-1/#comment-31241</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 19 Feb 2010 03:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/02/17/version-control-tools-is-more-than-just-the-tools/#comment-31241</guid>
		<description>Just to promote our open source tool:

Groowiki is also a front-end to svn that makes it easy to browse, but you can also upload and modify properties. This fits mainly when you store ofiice documents in your repo and work with external experts, who may not be familiar with svn or just simply do not want to install a client software.

I hope it also makes SVN more usable, better.</description>
		<content:encoded><![CDATA[<p>Just to promote our open source tool:</p>
<p>Groowiki is also a front-end to svn that makes it easy to browse, but you can also upload and modify properties. This fits mainly when you store ofiice documents in your repo and work with external experts, who may not be familiar with svn or just simply do not want to install a client software.</p>
<p>I hope it also makes SVN more usable, better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Its 2010 and there is still not a good audio manager by Rick Harding</title>
		<link>http://jrwren.wrenfam.com/blog/2010/02/09/its-2010-and-there-is-still-not-a-good-audio-manager/comment-page-1/#comment-31239</link>
		<dc:creator>Rick Harding</dc:creator>
		<pubDate>Tue, 09 Feb 2010 17:39:44 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/02/09/its-2010-and-there-is-still-not-a-good-audio-manager/#comment-31239</guid>
		<description>Makes you wish for the good ole days of winamp doesn&#039;t it :P</description>
		<content:encoded><![CDATA[<p>Makes you wish for the good ole days of winamp doesn&#8217;t it <img src='http://jrwren.wrenfam.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on double.IsNaN is 100 times slower by Craig Maloney</title>
		<link>http://jrwren.wrenfam.com/blog/2010/02/05/double-isnan-is-100-times-slower/comment-page-1/#comment-31231</link>
		<dc:creator>Craig Maloney</dc:creator>
		<pubDate>Sat, 06 Feb 2010 06:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/02/05/double-isnan-is-100-times-slower/#comment-31231</guid>
		<description>And eventually someone will run into this when they&#039;re busily working with incredibly large numbers, and wonder why in the hell they&#039;re coming back NaN. Creative.</description>
		<content:encoded><![CDATA[<p>And eventually someone will run into this when they&#8217;re busily working with incredibly large numbers, and wonder why in the hell they&#8217;re coming back NaN. Creative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows Home Server backup database by Keith Elder</title>
		<link>http://jrwren.wrenfam.com/blog/2010/01/02/windows-home-server-backup-database/comment-page-1/#comment-31213</link>
		<dc:creator>Keith Elder</dc:creator>
		<pubDate>Wed, 20 Jan 2010 21:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/2010/01/02/windows-home-server-backup-database/#comment-31213</guid>
		<description>Did you build your own? I&#039;m guessing knowing you you did. Mistake #1.  I have the home server HP media smart.  And I built my own.  I like the HP one way better.  WHy?  It has better software for converting videos, searching and moving pictures / movies / etc into one place on the network.  

Also having your files like pictures and things on the server, not on your linux box allows you to share data, etc and get to data wherever you are (as well as remote into any machine on the network).  

Tons of stuff here other than just backups Jay.  Get with the program!</description>
		<content:encoded><![CDATA[<p>Did you build your own? I&#8217;m guessing knowing you you did. Mistake #1.  I have the home server HP media smart.  And I built my own.  I like the HP one way better.  WHy?  It has better software for converting videos, searching and moving pictures / movies / etc into one place on the network.  </p>
<p>Also having your files like pictures and things on the server, not on your linux box allows you to share data, etc and get to data wherever you are (as well as remote into any machine on the network).  </p>
<p>Tons of stuff here other than just backups Jay.  Get with the program!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m Lazy And I Need My Helpers by jrwren</title>
		<link>http://jrwren.wrenfam.com/blog/2010/01/07/im-lazy-and-i-need-my-helpers/comment-page-1/#comment-31204</link>
		<dc:creator>jrwren</dc:creator>
		<pubDate>Fri, 08 Jan 2010 17:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://jrwren.wrenfam.com/blog/?p=915#comment-31204</guid>
		<description>Effectively that is what those &quot;licenses&quot; do is public domain something. It turns out that there is no legal way to declare something in the public domain. You can&#039;t just say &quot;I release this into the public domain&quot;. Further, in some nations there is something called &quot;moral rights&quot;, which also have no ability to be transferred.

see the problem statement at http://creativecommons.org/about/cc0 for details.</description>
		<content:encoded><![CDATA[<p>Effectively that is what those &#8220;licenses&#8221; do is public domain something. It turns out that there is no legal way to declare something in the public domain. You can&#8217;t just say &#8220;I release this into the public domain&#8221;. Further, in some nations there is something called &#8220;moral rights&#8221;, which also have no ability to be transferred.</p>
<p>see the problem statement at <a href="http://creativecommons.org/about/cc0" rel="nofollow">http://creativecommons.org/about/cc0</a> for details.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
