<?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 Kristof&#039;s blog</title>
	<atom:link href="http://kristofmattei.be/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kristofmattei.be</link>
	<description>A blog on my experiences in programming, work, and life!</description>
	<lastBuildDate>Mon, 21 May 2012 04:23:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Clear all event logs on Windows using PowerShell by Kristof Mattei</title>
		<link>http://kristofmattei.be/2011/06/14/clear-all-event-logs-on-windows-using-powershell/comment-page-1/#comment-29635</link>
		<dc:creator>Kristof Mattei</dc:creator>
		<pubDate>Mon, 21 May 2012 04:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=932#comment-29635</guid>
		<description>Hi Chris Padilla, 

The issue is that wevutil needs Administrative permissions to clear the logs.

Can you run PowerShell as Administrator?</description>
		<content:encoded><![CDATA[<p>Hi Chris Padilla, </p>
<p>The issue is that wevutil needs Administrative permissions to clear the logs.</p>
<p>Can you run PowerShell as Administrator?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Clear all event logs on Windows using PowerShell by Chris Padilla</title>
		<link>http://kristofmattei.be/2011/06/14/clear-all-event-logs-on-windows-using-powershell/comment-page-1/#comment-29423</link>
		<dc:creator>Chris Padilla</dc:creator>
		<pubDate>Fri, 18 May 2012 15:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=932#comment-29423</guid>
		<description>In PowerShell, if I just run:
wevtutil el

... I get output.  But if I run:
wevtutil el &#124; ForEach-Object { Write-Host &quot;Clearing $_&quot;; wevutil cl &quot;$_&quot; }

...I get 
Clearing DirectShowPluginControl
The term &#039;wevutil&#039; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if
 a path was included, verify that the path is correct and try again.
At line:1 char:65
+ wevtutil el &#124; ForEach-Object { Write-Host &quot;Clearing $_&quot;; wevutil &lt;&lt;&lt;&lt;  cl &quot;$_&quot; }
    + CategoryInfo          : ObjectNotFound: (wevutil:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

etc.etc.etc.etc....</description>
		<content:encoded><![CDATA[<p>In PowerShell, if I just run:<br />
wevtutil el</p>
<p>&#8230; I get output.  But if I run:<br />
wevtutil el | ForEach-Object { Write-Host &#8220;Clearing $_&#8221;; wevutil cl &#8220;$_&#8221; }</p>
<p>&#8230;I get<br />
Clearing DirectShowPluginControl<br />
The term &#8216;wevutil&#8217; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if<br />
 a path was included, verify that the path is correct and try again.<br />
At line:1 char:65<br />
+ wevtutil el | ForEach-Object { Write-Host &#8220;Clearing $_&#8221;; wevutil &lt;&lt;&lt;&lt;  cl &quot;$_&quot; }<br />
    + CategoryInfo          : ObjectNotFound: (wevutil:String) [], CommandNotFoundException<br />
    + FullyQualifiedErrorId : CommandNotFoundException</p>
<p>etc.etc.etc.etc&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VB.NET Casting vs C# casting by Rex Smith</title>
		<link>http://kristofmattei.be/2010/06/09/vb-net-casting-vs-c-casting/comment-page-1/#comment-24546</link>
		<dc:creator>Rex Smith</dc:creator>
		<pubDate>Wed, 18 Apr 2012 17:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=927#comment-24546</guid>
		<description>Kristof,

Nice article.  Thanks for contrasting casting in the two languages so succinctly.  Thanks for cutting to the chase on the &quot;as&quot; operator (C# returns null if &quot;as&quot; is unsuccessful) thus helping me to choose the equivalent in VB.NET, which is TryCast().  Since I write in 3 languages including Visual RPG for .NET (which has an &quot;*as&quot; operator), this article is worthy of a bookmark for future reference.

Rex</description>
		<content:encoded><![CDATA[<p>Kristof,</p>
<p>Nice article.  Thanks for contrasting casting in the two languages so succinctly.  Thanks for cutting to the chase on the &#8220;as&#8221; operator (C# returns null if &#8220;as&#8221; is unsuccessful) thus helping me to choose the equivalent in VB.NET, which is TryCast().  Since I write in 3 languages including Visual RPG for .NET (which has an &#8220;*as&#8221; operator), this article is worthy of a bookmark for future reference.</p>
<p>Rex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java: casting Object to int by Thomas</title>
		<link>http://kristofmattei.be/2008/11/23/java-casting-object-to-int/comment-page-1/#comment-23026</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 09 Apr 2012 19:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=389#comment-23026</guid>
		<description>Ty for this, helped me a lot!</description>
		<content:encoded><![CDATA[<p>Ty for this, helped me a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Code security problem with header(“Location: …”); by Dalton</title>
		<link>http://kristofmattei.be/2009/04/14/php-code-security-problem-with-header%e2%80%9clocation-%e2%80%a6%e2%80%9d/comment-page-1/#comment-21695</link>
		<dc:creator>Dalton</dc:creator>
		<pubDate>Fri, 30 Mar 2012 15:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=629#comment-21695</guid>
		<description>Thank you so much! This is exactly what I needed! =)</description>
		<content:encoded><![CDATA[<p>Thank you so much! This is exactly what I needed! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Kristof by Vincent</title>
		<link>http://kristofmattei.be/about-kristof/comment-page-1/#comment-21495</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Wed, 28 Mar 2012 20:47:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-21495</guid>
		<description>Success dermee :)</description>
		<content:encoded><![CDATA[<p>Success dermee <img src='http://kristofmattei.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get your facts right. by Phil Factor</title>
		<link>http://kristofmattei.be/2012/03/12/get-your-facts-right/comment-page-1/#comment-20245</link>
		<dc:creator>Phil Factor</dc:creator>
		<pubDate>Tue, 13 Mar 2012 12:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=1149#comment-20245</guid>
		<description>At the top of the article, you&#039;ll see that Andy was doing a &#039;tongue-in-cheek&#039; rant. What this means is that it was a take-off of what many VB programmers think about C#. It was a spoof, a joke,  a light-hearted article that he wrote after converting all his training materials from VB into C#.   I&#039;m sorry that it made you cross. It was not intended that way.</description>
		<content:encoded><![CDATA[<p>At the top of the article, you&#8217;ll see that Andy was doing a &#8216;tongue-in-cheek&#8217; rant. What this means is that it was a take-off of what many VB programmers think about C#. It was a spoof, a joke,  a light-hearted article that he wrote after converting all his training materials from VB into C#.   I&#8217;m sorry that it made you cross. It was not intended that way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get your facts right. by Georges</title>
		<link>http://kristofmattei.be/2012/03/12/get-your-facts-right/comment-page-1/#comment-20182</link>
		<dc:creator>Georges</dc:creator>
		<pubDate>Mon, 12 Mar 2012 21:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=1149#comment-20182</guid>
		<description>I could not agree more, I was also quite disappointed reading the original article. Glad you took the time to build a decent answer.</description>
		<content:encoded><![CDATA[<p>I could not agree more, I was also quite disappointed reading the original article. Glad you took the time to build a decent answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows Azure SDK: connecting to non SQLExpress Instance by Guru</title>
		<link>http://kristofmattei.be/2010/01/28/windows-azure-sdk-connecting-to-non-sqlexpress-instance/comment-page-1/#comment-18549</link>
		<dc:creator>Guru</dc:creator>
		<pubDate>Mon, 20 Feb 2012 15:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2010/01/28/windows-azure-sdk-connecting-to-non-sqlexpress-instance/#comment-18549</guid>
		<description>Thanks good post.  Just add The path to this unility is changed.
C:\Program Files\Windows Azure Emulator\emulator\devstore\.
http://msdn.microsoft.com/en-us/library/windowsazure/gg433005.aspx</description>
		<content:encoded><![CDATA[<p>Thanks good post.  Just add The path to this unility is changed.<br />
C:\Program Files\Windows Azure Emulator\emulator\devstore\.<br />
<a href="http://msdn.microsoft.com/en-us/library/windowsazure/gg433005.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/windowsazure/gg433005.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on .NET natural sort, a possible solution. by Henkie</title>
		<link>http://kristofmattei.be/2011/03/19/net-natural-sort-a-possible-solution/comment-page-1/#comment-18449</link>
		<dc:creator>Henkie</dc:creator>
		<pubDate>Sat, 18 Feb 2012 22:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2011/03/19/net-natural-sort-a-possible-solution/#comment-18449</guid>
		<description>U can do it all in 1 line

(new List(){&quot;99&quot;, &quot;200&quot;, &quot;10&quot;, &quot;5&quot;}.OrderBy(x =&gt; x.Length).ThenBy(x =&gt; x)).Dump();</description>
		<content:encoded><![CDATA[<p>U can do it all in 1 line</p>
<p>(new List(){&#8220;99&#8243;, &#8220;200&#8243;, &#8220;10&#8243;, &#8220;5&#8243;}.OrderBy(x =&gt; x.Length).ThenBy(x =&gt; x)).Dump();</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.816 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-23 09:50:50 -->
<!-- Compression = gzip -->
