<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for HackedBrain</title>
	<atom:link href="http://blog.hackedbrain.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hackedbrain.com</link>
	<description>Ramblings from a compromised mind</description>
	<lastBuildDate>Sat, 11 Feb 2012 11:17:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Rob Relyea demos WPF 3.5 &quot;Extensions&quot; @ Mix by Sreeja</title>
		<link>http://blog.hackedbrain.com/2008/03/07/rob-relyea-demos-wpf-3-5-extensions-mix/#comment-402</link>
		<dc:creator><![CDATA[Sreeja]]></dc:creator>
		<pubDate>Sat, 11 Feb 2012 11:17:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2008/03/07/6150.aspx#comment-402</guid>
		<description><![CDATA[So hard, so many ooitarepns, so stupid and very very slow. A year ago I spend my time learning Silverlight and I fail, my salvation was ASP.NET Forms, today, a year later, again, I try Silverlight and a grid, with LinqtoSQL and Ria Services spend 34 seconds to load 100 rows of text. In a same application with asp.net the results come in one second. I think the language was failed. But is true XAML is great, controls are beautiful, but for conclusion is useless.]]></description>
		<content:encoded><![CDATA[<p>So hard, so many ooitarepns, so stupid and very very slow. A year ago I spend my time learning Silverlight and I fail, my salvation was ASP.NET Forms, today, a year later, again, I try Silverlight and a grid, with LinqtoSQL and Ria Services spend 34 seconds to load 100 rows of text. In a same application with asp.net the results come in one second. I think the language was failed. But is true XAML is great, controls are beautiful, but for conclusion is useless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting a distinct list of changed files from TFS using PowerShell by ben</title>
		<link>http://blog.hackedbrain.com/2009/04/01/getting-a-distinct-list-of-changed-files-from-tfs-using-powershell/#comment-401</link>
		<dc:creator><![CDATA[ben]]></dc:creator>
		<pubDate>Thu, 02 Feb 2012 15:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2009/04/01/6166.aspx#comment-401</guid>
		<description><![CDATA[Thanks for this - very useful post as it would have taken me ages to figure out.

However I had one small problem Sort-Object failed to sort the items alphanumerically, instead they were coming out in some random order.

I think the problem is that the cmdlet is outputting objects of type &#039;PsCustomObject&#039;, and sort-object doesn&#039;t sort these by name..??

I added this in the pipeline before the sort, and it seems to work now:

 &#124; % { $_.Name  }

So the whole thing looks like:

Get-TfsItemHistory “$/Foo/v1.1” -Version “D3/1/09~D3/31/09” -Recurse -IncludeItems &#124; Select-Object -Expand “Changes” &#124; Where-Object { ($_.ChangeType -band ([Microsoft.TeamFoundation.VersionControl.Client.ChangeType]::Delete -bor [Microsoft.TeamFoundation.VersionControl.Client.ChangeType]::Merge -bor [Microsoft.TeamFoundation.VersionControl.Client.ChangeType]::Branch)) -eq 0 } &#124; Select-TfsItem &#124; Group-Object Path &#124; Select-Object Name &#124; % { $_.Name  } &#124; Sort-Object

I&#039;m a powershell newbie so there is probably a much better way, but it worked for me, so maybe it&#039;ll help someone else...]]></description>
		<content:encoded><![CDATA[<p>Thanks for this &#8211; very useful post as it would have taken me ages to figure out.</p>
<p>However I had one small problem Sort-Object failed to sort the items alphanumerically, instead they were coming out in some random order.</p>
<p>I think the problem is that the cmdlet is outputting objects of type &#8216;PsCustomObject&#8217;, and sort-object doesn&#8217;t sort these by name..??</p>
<p>I added this in the pipeline before the sort, and it seems to work now:</p>
<p> | % { $_.Name  }</p>
<p>So the whole thing looks like:</p>
<p>Get-TfsItemHistory “$/Foo/v1.1” -Version “D3/1/09~D3/31/09” -Recurse -IncludeItems | Select-Object -Expand “Changes” | Where-Object { ($_.ChangeType -band ([Microsoft.TeamFoundation.VersionControl.Client.ChangeType]::Delete -bor [Microsoft.TeamFoundation.VersionControl.Client.ChangeType]::Merge -bor [Microsoft.TeamFoundation.VersionControl.Client.ChangeType]::Branch)) -eq 0 } | Select-TfsItem | Group-Object Path | Select-Object Name | % { $_.Name  } | Sort-Object</p>
<p>I&#8217;m a powershell newbie so there is probably a much better way, but it worked for me, so maybe it&#8217;ll help someone else&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: SSL Passthrough with WCF &#8211;or&#8211; TransportWithMessageCredential over plain HTTP by Credentials over plain HTTP with WCF &#124; Fransson.Net</title>
		<link>http://blog.hackedbrain.com/2006/09/26/how-to-ssl-passthrough-with-wcf-or-transportwithmessagecredential-over-plain-http/#comment-397</link>
		<dc:creator><![CDATA[Credentials over plain HTTP with WCF &#124; Fransson.Net]]></dc:creator>
		<pubDate>Fri, 14 Oct 2011 08:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2006/09/26/5281.aspx#comment-397</guid>
		<description><![CDATA[[...] of our control. Now, the correct approach would probably be to create your own http transport. This blog post is a good [...]]]></description>
		<content:encoded><![CDATA[<p>[...] of our control. Now, the correct approach would probably be to create your own http transport. This blog post is a good [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Full Expression Tree Support Coming in .NET/C# 4.0 by John Zabroski</title>
		<link>http://blog.hackedbrain.com/2009/08/24/full-expression-tree-support-coming-in-netc-4-0/#comment-372</link>
		<dc:creator><![CDATA[John Zabroski]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 15:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2009/08/24/6174.aspx#comment-372</guid>
		<description><![CDATA[Just use F# and code quotations.  What am I missing?]]></description>
		<content:encoded><![CDATA[<p>Just use F# and code quotations.  What am I missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create your own ObjectContext Factory To Avoid performance penalties by NotReallyAValidEmil</title>
		<link>http://blog.hackedbrain.com/2009/04/06/create-your-own-objectcontext-factory-to-avoid-performance-penalties/#comment-362</link>
		<dc:creator><![CDATA[NotReallyAValidEmil]]></dc:creator>
		<pubDate>Mon, 08 Aug 2011 23:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/0001/01/01/6167.aspx#comment-362</guid>
		<description><![CDATA[It would be nice to see an example of how to make the factory.]]></description>
		<content:encoded><![CDATA[<p>It would be nice to see an example of how to make the factory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shipping Apples Vs. Oranges by Home Interior Design Ideas</title>
		<link>http://blog.hackedbrain.com/2005/03/03/shipping-apples-vs-oranges/#comment-100</link>
		<dc:creator><![CDATA[Home Interior Design Ideas]]></dc:creator>
		<pubDate>Fri, 29 Jul 2011 11:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2005/03/03/311.aspx#comment-100</guid>
		<description><![CDATA[I didn&#039;t look up shipping cost, but let&#039;s ignore it for the moment. Apple&#039;s typical profit margin on the iPhone is 60%, well in excess of other iOS devices.]]></description>
		<content:encoded><![CDATA[<p>I didn&#8217;t look up shipping cost, but let&#8217;s ignore it for the moment. Apple&#8217;s typical profit margin on the iPhone is 60%, well in excess of other iOS devices.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shipping Apples Vs. Oranges by Modern Bedroom Sets</title>
		<link>http://blog.hackedbrain.com/2005/03/03/shipping-apples-vs-oranges/#comment-99</link>
		<dc:creator><![CDATA[Modern Bedroom Sets]]></dc:creator>
		<pubDate>Fri, 29 Jul 2011 09:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2005/03/03/311.aspx#comment-99</guid>
		<description><![CDATA[New Macs are shipping without restore media of any kind. ... online instructions (either here or elsewhere) to create a functional install disc of your own.]]></description>
		<content:encoded><![CDATA[<p>New Macs are shipping without restore media of any kind. &#8230; online instructions (either here or elsewhere) to create a functional install disc of your own.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: SSL Passthrough with WCF &#8211;or&#8211; TransportWithMessageCredential over plain HTTP by Larry</title>
		<link>http://blog.hackedbrain.com/2006/09/26/how-to-ssl-passthrough-with-wcf-or-transportwithmessagecredential-over-plain-http/#comment-223</link>
		<dc:creator><![CDATA[Larry]]></dc:creator>
		<pubDate>Tue, 21 Jun 2011 16:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2006/09/26/5281.aspx#comment-223</guid>
		<description><![CDATA[Drew,

I have implemented this and it works.... with a .Net client.  However, I also have users that want to access the service with a java client.  Is there a way I can create another custom binding that will allow java clients to access the service?  Right now the java clients get a &quot;Bad Request&quot; error.

Thanks,
Larry]]></description>
		<content:encoded><![CDATA[<p>Drew,</p>
<p>I have implemented this and it works&#8230;. with a .Net client.  However, I also have users that want to access the service with a java client.  Is there a way I can create another custom binding that will allow java clients to access the service?  Right now the java clients get a &#8220;Bad Request&#8221; error.</p>
<p>Thanks,<br />
Larry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Avalon: Understanding DependencyObject and DependencyProperty by Asdasdasd</title>
		<link>http://blog.hackedbrain.com/2004/12/04/understanding-dependencyobject-and-dependencyproperty/#comment-71</link>
		<dc:creator><![CDATA[Asdasdasd]]></dc:creator>
		<pubDate>Mon, 20 Jun 2011 11:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2004/12/04/UnderstandingDependencyObjectAndDependencyProperty.aspx#comment-71</guid>
		<description><![CDATA[thanks to the author !!]]></description>
		<content:encoded><![CDATA[<p>thanks to the author !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shipping Apples Vs. Oranges by Dating</title>
		<link>http://blog.hackedbrain.com/2005/03/03/shipping-apples-vs-oranges/#comment-98</link>
		<dc:creator><![CDATA[Dating]]></dc:creator>
		<pubDate>Sun, 29 May 2011 09:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hackedbrain.com/SubText-2.1.0.5/archive/2005/03/03/311.aspx#comment-98</guid>
		<description><![CDATA[And I look at the production rate, which I believe was an all-time record for your company in the first quarter, and then allowing for -- there&#039;s some apples-to-oranges things with the Moab harvest, I guess. But it does seem like if you can continue at ...]]></description>
		<content:encoded><![CDATA[<p>And I look at the production rate, which I believe was an all-time record for your company in the first quarter, and then allowing for &#8212; there&#8217;s some apples-to-oranges things with the Moab harvest, I guess. But it does seem like if you can continue at &#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

