<?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 Thoughts, Code, Other</title>
	<atom:link href="http://www.niksmit.com/wp/index.php" rel="self" type="application/rss+xml" />
	<link>http://www.niksmit.com/wp</link>
	<description>Technical blog of Nik Smit</description>
	<pubDate>Sun, 05 Sep 2010 08:56:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on The Death of Sub-Identities by Guillaume</title>
		<link>http://www.niksmit.com/wp/?p=27&#038;cpage=1#comment-6177</link>
		<dc:creator>Guillaume</dc:creator>
		<pubDate>Wed, 13 May 2009 09:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=27#comment-6177</guid>
		<description>Thanks for mentioning us Nicholas! What do you hold in store for Retaggr??</description>
		<content:encoded><![CDATA[<p>Thanks for mentioning us Nicholas! What do you hold in store for Retaggr??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic data bliss on the way? by dynamic html</title>
		<link>http://www.niksmit.com/wp/?p=5&#038;cpage=1#comment-5983</link>
		<dc:creator>dynamic html</dc:creator>
		<pubDate>Fri, 01 May 2009 09:16:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/wp/?p=5#comment-5983</guid>
		<description>&lt;strong&gt;dynamic html...&lt;/strong&gt;

The latest standards and proposals aim at leading to the various browsers' ability to deliver a wide variety of media and accessibility...</description>
		<content:encoded><![CDATA[<p><strong>dynamic html&#8230;</strong></p>
<p>The latest standards and proposals aim at leading to the various browsers&#8217; ability to deliver a wide variety of media and accessibility&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IIS Redirect with Query String by vinh</title>
		<link>http://www.niksmit.com/wp/?p=8&#038;cpage=1#comment-4101</link>
		<dc:creator>vinh</dc:creator>
		<pubDate>Thu, 15 Jan 2009 16:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/wp/?p=8#comment-4101</guid>
		<description>thanks a lot.</description>
		<content:encoded><![CDATA[<p>thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some quick tips to speed up Visual Studio and help you develop faster by admin</title>
		<link>http://www.niksmit.com/wp/?p=14&#038;cpage=1#comment-2046</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 07 Nov 2008 16:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=14#comment-2046</guid>
		<description>Thanks Paul!</description>
		<content:encoded><![CDATA[<p>Thanks Paul!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some quick tips to speed up Visual Studio and help you develop faster by Paul</title>
		<link>http://www.niksmit.com/wp/?p=14&#038;cpage=1#comment-2033</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 29 Oct 2008 18:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=14#comment-2033</guid>
		<description>Oops, the second line is unused. This one can be deleted:
System.Diagnostics.Process.Start(�tasklist�, �/FI ��Username eq bsi\Paul�" /FI ��imagename eq w3wp.exe�" /fo ��csv�" /nh�)</description>
		<content:encoded><![CDATA[<p>Oops, the second line is unused. This one can be deleted:<br />
System.Diagnostics.Process.Start(�tasklist�, �/FI ��Username eq bsi\Paul�&#8221; /FI ��imagename eq w3wp.exe�&#8221; /fo ��csv�&#8221; /nh�)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some quick tips to speed up Visual Studio and help you develop faster by Paul</title>
		<link>http://www.niksmit.com/wp/?p=14&#038;cpage=1#comment-2032</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 29 Oct 2008 17:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=14#comment-2032</guid>
		<description>Hi, I took your attachment code and tweaked it for my needs. It will look for a w3wp process with a matching user name. I don't know if it's possible that more than one would exist. I've only seen one per user. Feel free to do whatever you like with it:

Sub AttachToWebServer()
        System.Diagnostics.Process.Start("tasklist", "/FI ""Username eq bsi\Paul"" /FI ""imagename eq w3wp.exe""  /fo ""csv"" /nh")
        Dim pid As Integer = Run("tasklist", "/FI ""Username eq bsi\Paul"" /FI ""imagename eq w3wp.exe""  /fo ""csv"" /nh").Split(",")(1).Replace("""", "")
        ''Dim process As EnvDTE.Process
        For Each DebugProcess As EnvDTE.Process In DTE.Debugger.LocalProcesses
            If DebugProcess.ProcessID = pid Then
                DebugProcess.Attach()
                Return
            End If
        Next
        MsgBox("Could not find web server")
    End Sub
    Private Function Run(ByVal path As String, ByVal args As String) As String
        Try
            Dim p As New System.Diagnostics.ProcessStartInfo(path, args)
            p.RedirectStandardOutput = True
            p.UseShellExecute = False
            p.CreateNoWindow = True
            p.RedirectStandardError = True
            p.RedirectStandardInput = True
            p.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden

            Return System.Diagnostics.Process.Start(p).StandardOutput.ReadToEnd()
        Catch ex As Exception
            Throw New Exception("RunX: File: " &amp; path &amp; " - Exception: " &amp; ex.Message)
        End Try
    End Function</description>
		<content:encoded><![CDATA[<p>Hi, I took your attachment code and tweaked it for my needs. It will look for a w3wp process with a matching user name. I don&#8217;t know if it&#8217;s possible that more than one would exist. I&#8217;ve only seen one per user. Feel free to do whatever you like with it:</p>
<p>Sub AttachToWebServer()<br />
        System.Diagnostics.Process.Start(&#8221;tasklist&#8221;, &#8220;/FI &#8220;&#8221;Username eq bsi\Paul&#8221;" /FI &#8220;&#8221;imagename eq w3wp.exe&#8221;"  /fo &#8220;&#8221;csv&#8221;" /nh&#8221;)<br />
        Dim pid As Integer = Run(&#8221;tasklist&#8221;, &#8220;/FI &#8220;&#8221;Username eq bsi\Paul&#8221;" /FI &#8220;&#8221;imagename eq w3wp.exe&#8221;"  /fo &#8220;&#8221;csv&#8221;" /nh&#8221;).Split(&#8221;,&#8221;)(1).Replace(&#8221;"&#8221;", &#8220;&#8221;)<br />
        &#8221;Dim process As EnvDTE.Process<br />
        For Each DebugProcess As EnvDTE.Process In DTE.Debugger.LocalProcesses<br />
            If DebugProcess.ProcessID = pid Then<br />
                DebugProcess.Attach()<br />
                Return<br />
            End If<br />
        Next<br />
        MsgBox(&#8221;Could not find web server&#8221;)<br />
    End Sub<br />
    Private Function Run(ByVal path As String, ByVal args As String) As String<br />
        Try<br />
            Dim p As New System.Diagnostics.ProcessStartInfo(path, args)<br />
            p.RedirectStandardOutput = True<br />
            p.UseShellExecute = False<br />
            p.CreateNoWindow = True<br />
            p.RedirectStandardError = True<br />
            p.RedirectStandardInput = True<br />
            p.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden</p>
<p>            Return System.Diagnostics.Process.Start(p).StandardOutput.ReadToEnd()<br />
        Catch ex As Exception<br />
            Throw New Exception(&#8221;RunX: File: &#8221; &amp; path &amp; &#8221; - Exception: &#8221; &amp; ex.Message)<br />
        End Try<br />
    End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get normal 404 (Page not found) error pages using ASP.Net MVC by Matt</title>
		<link>http://www.niksmit.com/wp/?p=17&#038;cpage=1#comment-2013</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 20 Oct 2008 03:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=17#comment-2013</guid>
		<description>Nice work - thanks</description>
		<content:encoded><![CDATA[<p>Nice work - thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get normal 404 (Page not found) error pages using ASP.Net MVC by Richard Dingwall &#187; Strategies for resource-based 404 errors in ASP.NET MVC</title>
		<link>http://www.niksmit.com/wp/?p=17&#038;cpage=1#comment-1748</link>
		<dc:creator>Richard Dingwall &#187; Strategies for resource-based 404 errors in ASP.NET MVC</dc:creator>
		<pubDate>Sun, 17 Aug 2008 10:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=17#comment-1748</guid>
		<description>[...] For invalid controllers and controller actions, you can implement your own IControllerFactory with inbuilt error handling. Nicholas Smit describes one here. [...]</description>
		<content:encoded><![CDATA[<p>[...] For invalid controllers and controller actions, you can implement your own IControllerFactory with inbuilt error handling. Nicholas Smit describes one here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A universal icon for language switching by Mike</title>
		<link>http://www.niksmit.com/wp/?p=18&#038;cpage=1#comment-817</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 12 Jun 2008 00:34:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=18#comment-817</guid>
		<description>Didn't know that - nice idea. Pity they don't make use of their own icon on http://languageicons.omcomc.com.</description>
		<content:encoded><![CDATA[<p>Didn&#8217;t know that - nice idea. Pity they don&#8217;t make use of their own icon on <a href="http://languageicons.omcomc.com" rel="nofollow">http://languageicons.omcomc.com</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some quick tips to speed up Visual Studio and help you develop faster by Darksider</title>
		<link>http://www.niksmit.com/wp/?p=14&#038;cpage=1#comment-755</link>
		<dc:creator>Darksider</dc:creator>
		<pubDate>Mon, 09 Jun 2008 12:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.niksmit.com/?p=14#comment-755</guid>
		<description>Stop your Visual Studio from continuing a build if a project is broken i.e. Don't compile the 40 other projects if the first one is broken.
&lt;a href="http://www.darkside.co.za/archive/2008/01/23/visual-studio-ide-events-tips-and-tricks.aspx" rel="nofollow"&gt;Darkside Article</description>
		<content:encoded><![CDATA[<p>Stop your Visual Studio from continuing a build if a project is broken i.e. Don&#8217;t compile the 40 other projects if the first one is broken.<br />
<a href="http://www.darkside.co.za/archive/2008/01/23/visual-studio-ide-events-tips-and-tricks.aspx" rel="nofollow">Darkside Article</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
