<?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 code.commongroove.com</title>
	<atom:link href="http://code.commongroove.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.commongroove.com</link>
	<description>C#, T-SQL, and general IT mojo</description>
	<lastBuildDate>Fri, 26 Mar 2010 00:10:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on So I got a fake Intel Core i7-920 by MikeD</title>
		<link>http://code.commongroove.com/2010/03/10/so-i-got-a-fake-intel-core-i7-920/comment-page-1/#comment-14</link>
		<dc:creator>MikeD</dc:creator>
		<pubDate>Fri, 26 Mar 2010 00:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2010/03/09/so-i-got-a-fake-intel-core-i7-920.aspx#comment-14</guid>
		<description>Glad to hear NewEgg was at their usual responsive selves!</description>
		<content:encoded><![CDATA[<p>Glad to hear NewEgg was at their usual responsive selves!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly Clone a Serializable Object in C# by Sophi</title>
		<link>http://code.commongroove.com/2007/10/31/quickly-clone-a-serializable-object-in-c/comment-page-1/#comment-6</link>
		<dc:creator>Sophi</dc:creator>
		<pubDate>Sat, 23 Jan 2010 22:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2007/10/30/quickly-clone-a-serializable-object-in-c.aspx#comment-6</guid>
		<description>Is it deep clone?</description>
		<content:encoded><![CDATA[<p>Is it deep clone?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly Clone a Serializable Object in C# by auser</title>
		<link>http://code.commongroove.com/2007/10/31/quickly-clone-a-serializable-object-in-c/comment-page-1/#comment-5</link>
		<dc:creator>auser</dc:creator>
		<pubDate>Mon, 11 Jan 2010 18:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2007/10/30/quickly-clone-a-serializable-object-in-c.aspx#comment-5</guid>
		<description>I really liked your method. thanks for sharing this:) hope many people will find it useful as I did. have read lots of articles on the topic, but have never thought that could be so easy</description>
		<content:encoded><![CDATA[<p>I really liked your method. thanks for sharing this:) hope many people will find it useful as I did. have read lots of articles on the topic, but have never thought that could be so easy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache/Subversion: SSL negotiation failed: SSL error: parse tlsext by PJ</title>
		<link>http://code.commongroove.com/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext/comment-page-1/#comment-12</link>
		<dc:creator>PJ</dc:creator>
		<pubDate>Sun, 18 Oct 2009 14:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext.aspx#comment-12</guid>
		<description>Thanks a lot! I used&lt;br /&gt;SSLProtocol +ALL -SSLv2 -TLSv1&lt;br /&gt;to disable the problematic TLSv1 and it started to work!</description>
		<content:encoded><![CDATA[<p>Thanks a lot! I used<br />SSLProtocol +ALL -SSLv2 -TLSv1<br />to disable the problematic TLSv1 and it started to work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly Clone a Serializable Object in C# by greg</title>
		<link>http://code.commongroove.com/2007/10/31/quickly-clone-a-serializable-object-in-c/comment-page-1/#comment-4</link>
		<dc:creator>greg</dc:creator>
		<pubDate>Fri, 21 Aug 2009 05:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2007/10/30/quickly-clone-a-serializable-object-in-c.aspx#comment-4</guid>
		<description>Great idea - thanks galaktor</description>
		<content:encoded><![CDATA[<p>Great idea &#8211; thanks galaktor</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly Clone a Serializable Object in C# by galaktor^</title>
		<link>http://code.commongroove.com/2007/10/31/quickly-clone-a-serializable-object-in-c/comment-page-1/#comment-3</link>
		<dc:creator>galaktor^</dc:creator>
		<pubDate>Thu, 20 Aug 2009 19:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2007/10/30/quickly-clone-a-serializable-object-in-c.aspx#comment-3</guid>
		<description>Nice. I suggest adding a check to the method:&lt;br /&gt;&lt;br /&gt;if( !cloneThis.GetType().IsSerializable )&lt;br /&gt;{&lt;br /&gt;    throw new ArgumentException( &quot;Object must be serializable.&quot;);&lt;br /&gt;}</description>
		<content:encoded><![CDATA[<p>Nice. I suggest adding a check to the method:</p>
<p>if( !cloneThis.GetType().IsSerializable )<br />{<br />    throw new ArgumentException( &#8220;Object must be serializable.&#8221;);<br />}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechNet Magazine IT Toolbox: April 2009 Issue by larry</title>
		<link>http://code.commongroove.com/2009/03/31/technet-magazine-it-toolbox-april-2009-issue/comment-page-1/#comment-11</link>
		<dc:creator>larry</dc:creator>
		<pubDate>Wed, 08 Apr 2009 07:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2009/03/30/technet-magazine-it-toolbox-april-2009-issue.aspx#comment-11</guid>
		<description>nice - thanks for the write up</description>
		<content:encoded><![CDATA[<p>nice &#8211; thanks for the write up</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sys.WebForms.PageRequestManagerServerErrorException in FireFox with MSFT Ajax by Dmitri</title>
		<link>http://code.commongroove.com/2008/12/11/sys-webforms-pagerequestmanagerservererrorexception-in-firefox-with-msft-ajax/comment-page-1/#comment-10</link>
		<dc:creator>Dmitri</dc:creator>
		<pubDate>Wed, 28 Jan 2009 00:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2008/12/10/sys.webforms.pagerequestmanagerservererrorexception-in-firefox-with-msft-ajax.aspx#comment-10</guid>
		<description>&lt;p&gt;Thanks a lot for your solution it saved me a lot of time for my project. Regards&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Thanks a lot for your solution it saved me a lot of time for my project. Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on December Issue of TechNet Magazine: IT Toolbox by mike</title>
		<link>http://code.commongroove.com/2008/11/10/december-issue-of-technet-magazine-it-toolbox/comment-page-1/#comment-9</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Mon, 24 Nov 2008 05:12:14 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2008/12/13/december-issue-of-technet-magazine-it-toolbox.aspx#comment-9</guid>
		<description>nice work!</description>
		<content:encoded><![CDATA[<p>nice work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly Clone a Serializable Object in C# by Rahul Dantkale</title>
		<link>http://code.commongroove.com/2007/10/31/quickly-clone-a-serializable-object-in-c/comment-page-1/#comment-2</link>
		<dc:creator>Rahul Dantkale</dc:creator>
		<pubDate>Wed, 30 Jan 2008 14:38:08 +0000</pubDate>
		<guid isPermaLink="false">http://code.commongroove.com/archive/2007/10/30/quickly-clone-a-serializable-object-in-c.aspx#comment-2</guid>
		<description>Nice trick to Clone... this reduced my manual clone method from 100s of lines to 6.. &lt;br /&gt;&lt;br /&gt;Gud one</description>
		<content:encoded><![CDATA[<p>Nice trick to Clone&#8230; this reduced my manual clone method from 100s of lines to 6.. </p>
<p>Gud one</p>
]]></content:encoded>
	</item>
</channel>
</rss>
