User David Mohundro - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:58:44Z http://stackoverflow.com/feeds/user/4570 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57154/problems-with-migrating-cardspace-cards-between-computers 3 Problems with migrating Cardspace cards between computers David Mohundro 2008-09-11T17:36:33Z 2009-04-19T11:48:29Z <p>Here's the scenario. I'm using myopenid for, among other things, StackOverflow. When I initially set up my openid account with myopenid, I decided to try out Cardspace because they had support.</p> <p>I later wanted to access Stackoverflow from another machine so I chose to back up my card. I gave it a password and a filename and successfully created a backup file. I was also to able successfully import it to my laptop.</p> <p>Here is where the problem comes in - I am unable to use the card that I backed up from my laptop. The original card still works great on my desktop. Additional information is that my desktop is running Windows XP SP3 (x86) while my laptop is running Windows Vista (x64).</p> <p>Any ideas? Am I doing something wrong? I'm seriously considering dropping Cardspace on myopenid and moving to a password solution with them instead.</p> <p>Thanks!</p> http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57486#57486 1 Answer by David Mohundro for Converting vb.net to c# tips David Mohundro 2008-09-11T20:04:44Z 2009-02-24T19:36:11Z <p>Have you tried any code converters? <a href="http://converter.telerik.com/" rel="nofollow">Telerik has one</a>.</p> http://stackoverflow.com/questions/291413/how-to-declare-an-array-inline-in-vb-net/291423#291423 1 Answer by David Mohundro for How to declare an array inline in VB.NET David Mohundro 2008-11-14T21:05:55Z 2008-11-14T21:05:55Z <pre><code>Dim strings As String() = New String() {"abc", "def", "ghi"} </code></pre> http://stackoverflow.com/questions/1584/linux-shell-equivalent-on-iis/44389#44389 5 Answer by David Mohundro for Linux shell equivalent on IIS David Mohundro 2008-09-04T18:22:38Z 2008-11-03T18:15:19Z <p>Depending on what version of IIS you're considering, I would second lbrandy's recommendation to check out <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">PowerShell</a>. Microsoft is working on a PowerShell provider for IIS (specifically version 7). There is a decent post about this at <a href="http://blogs.iis.net/thomad/archive/2008/04/14/iis-7-0-powershell-provider-tech-preview-1.aspx" rel="nofollow">http://blogs.iis.net/thomad/archive/2008/04/14/iis-7-0-powershell-provider-tech-preview-1.aspx</a>. The upcoming version of PowerShell will also <a href="http://www.microsoft.com/technet/scriptcenter/topics/winpsh/remote.mspx" rel="nofollow">add remoting capabilities</a> so that you can remotely manage machines. PowerShell is quite different from *NIX shells, though, so that is something to consider.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/250001/define-poco/250006#250006 10 Answer by David Mohundro for Define 'poco'? David Mohundro 2008-10-30T12:31:20Z 2008-10-30T12:55:23Z <p>"Plain Old C# Object"</p> <p>Just a normal class, no attributes describing infrastructure concerns or other responsibilities that your domain objects shouldn't have.</p> <p>EDIT - as other answers have stated, it is technically "Plain Old CLR Object" but I, like David Arno comments, prefer "Plain Old Class Object" to avoid ties to specific languages or technologies.</p> http://stackoverflow.com/questions/235113/programmatically-creating-a-iis6-website-app-pool-in-nant/235143#235143 2 Answer by David Mohundro for Programmatically Creating a IIS6 Website/App Pool in Nant David Mohundro 2008-10-24T20:26:11Z 2008-10-24T20:26:11Z <p>Have you looked at <a href="http://nantcontrib.sourceforge.net/" rel="nofollow">NantContrib</a>? It might provide some better IIS support without having to write your own task (or shelling out).</p> <p>It has some IIS specific tasks like <a href="http://nantcontrib.sourceforge.net/release/latest/help/tasks/iisapppool.html" rel="nofollow">iisapppool</a> and <a href="http://nantcontrib.sourceforge.net/release/latest/help/tasks/mkiisdir.html" rel="nofollow">mkiisdir</a>.</p> http://stackoverflow.com/questions/234312/what-have-you-done-to-customize-your-ide/234373#234373 1 Answer by David Mohundro for What have you done to customize your IDE? David Mohundro 2008-10-24T16:56:44Z 2008-10-24T16:56:44Z <p>I've using a combination of <a href="http://www.viemu.com/" rel="nofollow">ViEmu</a> and <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> with a <a href="http://www.winterdom.com/weblog/2007/10/13/RagnarokAVS2005ColorScheme.aspx" rel="nofollow">dark theme</a>.</p> <p>Oh, and I also hide most of the toolbars and turn off the animations to try to speed things up.</p> http://stackoverflow.com/questions/226596/powershell-array-initialization/226649#226649 5 Answer by David Mohundro for PowerShell array initialization David Mohundro 2008-10-22T16:46:49Z 2008-10-22T16:46:49Z <p>Yet another alternative:</p> <pre><code>for ($i = 0; $i -lt 5; $i++) { $arr += @($false) } </code></pre> <p>This one works if $arr isn't defined yet.</p> <p>Some good posts on PowerShell and arrays:</p> <p><a href="http://www.leedesmond.com/weblog/?p=183" rel="nofollow">http://www.leedesmond.com/weblog/?p=183</a><br /> <a href="http://get-powershell.com/2008/02/07/powershell-function-new-array/" rel="nofollow">http://get-powershell.com/2008/02/07/powershell-function-new-array/</a></p> http://stackoverflow.com/questions/222472/asp-net-tab-in-iis-missing/222487#222487 2 Answer by David Mohundro for ASP.Net tab in IIS missing. David Mohundro 2008-10-21T16:17:55Z 2008-10-21T16:17:55Z <p>Did you try uninstalling and then reinstalling ASP.NET?</p> <p>i.e.</p> <p>aspnet_regiis -u</p> <p>Then</p> <p>aspnet_regiis -i</p> <p>The uninstall and then reinstall have worked for me before.</p> http://stackoverflow.com/questions/221732/datetime-null-value/221741#221741 3 Answer by David Mohundro for DateTime "null" value David Mohundro 2008-10-21T12:56:11Z 2008-10-21T12:56:11Z <p>I'd consider using a <a href="http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx" rel="nofollow">nullable types</a>.</p> <p>DateTime? myDate instead of DateTime myDate;</p> http://stackoverflow.com/questions/219817/curious-pop-up-behavior-when-using-webbrowser-class/221677#221677 2 Answer by David Mohundro for Curious pop-up behavior when using WebBrowser class David Mohundro 2008-10-21T12:39:56Z 2008-10-21T12:39:56Z <p>Are you looking to actively block popups or handle them in your application? If you're wanting to customize the blocking, then you'll have to implement the <a href="http://msdn.microsoft.com/en-us/library/aa768283(VS.85).aspx" rel="nofollow">DWebBrowserEvents2 interface</a>, specifically the <a href="http://msdn.microsoft.com/en-us/library/aa768288(VS.85).aspx" rel="nofollow">NewWindow3 method</a>. NewWindow3 method has specific functionality for blocking window popups (i.e. setting the Cancel parameter to true). These methods will also let you show your own window if you wish, though you'll have to provide your own Form to host yet another WebBrowser.</p> <p>If you'd like to see some real C# source code providing advanced functionality with the WebBrowser control, I'd have to say that <a href="http://www.codeproject.com/KB/cpp/ExtendedWebBrowser.aspx" rel="nofollow">this article on CodeProject</a> provided almost everything I know about the WebBrowser control. Be sure to download the source!</p> <p>@Kramii is correct that you can also use the NewWindow2 event to prevent the popup. NewWindow3 provides additional parameters for if you're looking to inspect the URL or other data about the navigate to actually sometimes block and sometimes handle the popup yourself.</p> http://stackoverflow.com/questions/218322/c-custom-event-handlers/218333#218333 8 Answer by David Mohundro for C# custom event handlers David Mohundro 2008-10-20T12:57:41Z 2008-10-20T12:57:41Z <p>You should check out the <a href="http://msdn.microsoft.com/en-us/library/ms132680.aspx" rel="nofollow">System.ComponentModel.BindingList</a>, specifically the <a href="http://msdn.microsoft.com/en-us/library/ms132742.aspx" rel="nofollow">ListChanged event</a>.</p> http://stackoverflow.com/questions/201450/visual-studio-debugger-tips-tricks-for-net/204499#204499 4 Answer by David Mohundro for Visual Studio debugger tips & tricks for .NET David Mohundro 2008-10-15T12:18:45Z 2008-10-15T12:18:45Z <p>Tools -> Attach To Process - easy to forget, but with it I can debug script in web pages, managed code loaded up in another process (think an add-in model), or even unmanaged code. Be careful with letting it automatically pick the type of debugging you're interested in.</p> <p>Tracepoints (and other breakpoint features... right click on the breakpoint and have fun)! - <a href="http://blogs.msdn.com/saraford/archive/2008/06/13/did-you-know-you-can-use-tracepoints-to-log-printf-or-console-writeline-info-without-editing-your-code-237.aspx" rel="nofollow">http://blogs.msdn.com/saraford/archive/2008/06/13/did-you-know-you-can-use-tracepoints-to-log-printf-or-console-writeline-info-without-editing-your-code-237.aspx</a></p> <p>The immediate window is awesome.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bt727f1t.aspx" rel="nofollow">Remote Debugging</a> is very useful if you deploy apps (and can get to the machine where the problem can be reproduced).</p> <p>There are tons more. Try getting into WinDbg and SoS!</p> http://stackoverflow.com/questions/201004/why-cant-i-connect-to-a-wcf-service-with-net-tcp-but-i-can-with-http/201061#201061 2 Answer by David Mohundro for Why can't I connect to a WCF service with net.tcp but i can with http? David Mohundro 2008-10-14T13:01:07Z 2008-10-14T14:17:22Z <p>Check out <a href="http://bloggingabout.net/blogs/marc/archive/2007/10/23/wcf-hosting-non-http-protocols-in-iis-7-0.aspx" rel="nofollow">this post</a> on enabling non-HTTP bindings in IIS 7.0. By default, you have to explicitly enable net.tcp in IIS 7.0.</p> <p>Hope this helps.</p> <p>UPDATE:</p> <p>Saw your comment - unfortunately, net.tcp is not supported in IIS 6.0. Check out <a href="http://msdn.microsoft.com/en-us/library/ms730158.aspx" rel="nofollow">this link</a> which details the supported WCF bindings for various hosts (including self-hosting, WAS, and IIS). Looks like only HTTP bindings work in IIS 6.0.</p> http://stackoverflow.com/questions/192498/color-picker-utility/192519#192519 1 Answer by David Mohundro for color picker utility David Mohundro 2008-10-10T18:17:25Z 2008-10-10T18:17:25Z <p>I like <a href="http://colorcop.net/" rel="nofollow">ColorCop</a> fairly well.</p> http://stackoverflow.com/questions/174403/vb-webbrowser-documenttext-isnt-changing/174483#174483 2 Answer by David Mohundro for VB WebBrowser.DocumentText Isn't Changing! David Mohundro 2008-10-06T14:25:36Z 2008-10-06T14:25:36Z <p>Try the following:</p> <pre><code>browser.Navigate("about:blank") HtmlDocument doc = this.webBrowser1.Document doc.Write(String.Empty) browser.DocumentText = _emailHTML </code></pre> <p>I've found that the WebBrowser control usually needs to be initialized to about:blank anyway. The same needs to be done between navigates to different types of content (like text/xml to text/html) because the renderer is different (mshtml for text/html, something else for text/xml).</p> <p>(via <a href="http://geekswithblogs.net/paulwhitblog/archive/2005/12/12/62961.aspx" rel="nofollow">http://geekswithblogs.net/paulwhitblog/archive/2005/12/12/62961.aspx</a>)</p> http://stackoverflow.com/questions/164809/what-are-the-most-relevant-oss-projects-for-net/164871#164871 34 Answer by David Mohundro for What are the most relevant OSS projects for .NET? David Mohundro 2008-10-02T22:17:45Z 2008-10-02T22:17:45Z <p>The most relevant ones to me are the ones I use the most and are the most valuable to me I suppose.</p> <p>Unit Testing Frameworks:</p> <ul> <li><a href="http://www.nunit.org/" rel="nofollow">NUnit</a></li> <li><a href="http://www.mbunit.com/" rel="nofollow">MbUnit</a></li> </ul> <p>Mocking Frameworks:</p> <ul> <li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino.Mocks</a> <ul> <li>You could argue Oren Eini is a one man show, but he does take contributions :)</li> </ul></li> <li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a></li> </ul> <p>IoC Frameworks:</p> <ul> <li><a href="http://www.castleproject.org/container/index.html" rel="nofollow">Castle Windsor</a></li> <li><a href="http://structuremap.sourceforge.net/" rel="nofollow">StructureMap</a></li> </ul> <p>Blog Engines:</p> <ul> <li><a href="http://www.dasblog.info/" rel="nofollow">dasBlog</a></li> <li><a href="http://subtextproject.com/" rel="nofollow">SubText</a></li> <li><a href="http://www.dotnetblogengine.net/" rel="nofollow">BlogEngine.NET</a></li> </ul> <p>Other:</p> <ul> <li><a href="http://code.google.com/p/wittytwitter/" rel="nofollow">Witty</a> (Twitter client) </li> </ul> http://stackoverflow.com/questions/45908/tips-and-tricks-for-working-with-microsoft-visual-studio-solutions-and-project/46300#46300 4 Answer by David Mohundro for Tips and tricks for working with Microsoft Visual Studio solutions and project David Mohundro 2008-09-05T16:55:55Z 2008-10-02T13:24:57Z <p>I'm a huge fan of using msbuild to build my solutions with the /m option so that it builds using multiple cores. It can drastically decrease your build time.</p> <p>Scott Hanselman posted on how to add it to your tools list at <a href="http://www.hanselman.com/blog/HackParallelMSBuildsFromWithinTheVisualStudioIDE.aspx" rel="nofollow">http://www.hanselman.com/blog/HackParallelMSBuildsFromWithinTheVisualStudioIDE.aspx</a>.</p> <p>I usually just run 'msbuild /m' from the command prompt or PowerShell, though.</p> <p>Another tip that is sometimes useful is taking advantage of the pre- and post-build events to add additional logic before or after a build. To see these, go to the Properties for a Project, click on the Compile tab, and then choose "Build Events..."</p> http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162209#162209 11 Answer by David Mohundro for Visual Studio 2008 - Add Reference David Mohundro 2008-10-02T13:16:52Z 2008-10-02T13:16:52Z <p>The pdb is there for debugging and symbols. If you get an exception thrown from it, you'll be able to get stacktraces, etc. You're in control of choosing whether or not the PDB is built. The xml file is there for XML comments and intellisense. Visual Studio will parse that and display the XML comments that were added when you call methods in those DLLs.</p> <p>I don't know about the refresh file.</p> http://stackoverflow.com/questions/87381/resharper-and-viemu-keybindings-and-visual-assist/157460#157460 1 Answer by David Mohundro for Resharper and ViEmu Keybindings ( and Visual Assist ) David Mohundro 2008-10-01T12:59:55Z 2008-10-01T12:59:55Z <p>I use both as well, but I'm using the IntelliJ keybindings instead, so I can't speak specifically to the Visual Studio bindings. <a href="http://blog.jpboodhoo.com/VSViEmuReSharperModdedWithAutoHotkey.aspx" rel="nofollow">J.P. Boodhoo has some changes that he has made via AutoHotKey</a> to provide additional Vim-like functionality to Visual Studio + ReSharper + ViEmu.</p> <p>I have removed a few of the scanned keys, though, because I want to keep some of the ReSharper functionality over the ViEmu functionality, though the way I use these tools change over time as I learn more shortcuts from either ViEmu or ReSharper.</p> http://stackoverflow.com/questions/132403/which-language-should-i-pick-up-vb-net-or-c/133015#133015 3 Answer by David Mohundro for Which language should I pick up: VB.Net or C# David Mohundro 2008-09-25T12:30:53Z 2008-09-25T12:30:53Z <p>If possible, both :)</p> <p>If just one, then I'd go with C# myself. If you use the feature that Visual Studio 2008 added to be able to download the source for reference, you'll notice that it is written in C#. There isn't anything that you won't be able to do in C# that you can't do in VB.NET.</p> <p>That being said...</p> <p>As of <em>today</em>, there are features in C# that take more work to do in VB.NET. They do not have parity on one to one features.</p> <p>For example, C#'s support for lambdas and anonymous delegates is currently far better than VB.NET's.</p> <p>As of today, the two below statements are impossible to do in VB.NET:</p> <pre><code>List&lt;string&gt; vals = new List&lt;string&gt;(); vals.ForEach(val =&gt; { val = val.ToUpper(); Console.WriteLine(val); }); </code></pre> <p>Or simply:</p> <pre><code>vals.ForEach(val =&gt; Console.WriteLine(val)); </code></pre> <p>The reason for this is that the first lambda has multiple statements which isn't supported in VB.NET yet. The second is not possible in VB.NET yet because all lambdas must return a value. Also, VB.NET doesn't yet support iterators via a yield statement.</p> <p>Now, that being said, VB.NET has the XML Literals support that C# doesn't have either. Let me tell you, if you work with XML, the XML Literals support might make me sway back to VB.NET over C# :)</p> <p>Consider also that Paul Vick has posted articles (see <a href="http://www.panopticoncentral.net/archive/2008/07/29/24100.aspx" rel="nofollow">here</a> or <a href="http://www.panopticoncentral.net/archive/2008/08/08/24155.aspx" rel="nofollow">here</a>) that make it look like VB.NET will be adding features to bring VB.NET back to feature parity with C#.</p> <p>And... if you don't care about any of these functional features... well, flip a coin then :)</p> http://stackoverflow.com/questions/128818/why-is-try-finally-good-try-catch-bad/128851#128851 0 Answer by David Mohundro for Why is try {...} finally {...} good; try {...} catch{} bad? David Mohundro 2008-09-24T18:14:48Z 2008-09-24T18:14:48Z <p>The problem with try/catch blocks that catch all exceptions is that your program is now in an indeterminate state if an unknown exception occurs. This goes completely against the fail fast rule - you don't want your program to continue if an exception occurs. The above try/catch would even catch OutOfMemoryExceptions, but that is definitely a state that your program will not run in.</p> <p>Try/finally blocks allow you to execute clean up code while still failing fast. For most circumstances, you only want to catch all exceptions at the global level, so that you can log them, and then exit out.</p> http://stackoverflow.com/questions/122033/how-do-i-write-this-in-ruby-python-or-can-you-translate-my-linq-to-ruby-python/122121#122121 1 Answer by David Mohundro for How do I write this in Ruby/Python? Or, can you translate my LINQ to Ruby/Python? David Mohundro 2008-09-23T16:28:02Z 2008-09-23T16:28:02Z <p>Here's another Ruby solution:</p> <pre><code>a = (1..5).collect { rand(100) } a &amp; a </code></pre> <p>I think, with your LINQ statement, the Distinct will remove duplicates after 5 have already been taken, so you aren't guaranteed to get 5 back. Someone can correct me if I'm wrong, though.</p> http://stackoverflow.com/questions/120636/best-practice-regarding-number-of-threads-in-gui-applications/120711#120711 1 Answer by David Mohundro for Best practice regarding number of threads in GUI applications David Mohundro 2008-09-23T12:36:41Z 2008-09-23T12:36:41Z <p>As the prior comments said, GUI Frameworks (at least on Windows) are single threaded, thus the single thread. Another recommendation (that is difficult to code in practice) is to limit the number of the threads to the number of available cores on the machine. Your CPU can only do one operation at a time with one core. If there are two threads, a context switch has to happen at some point. If you've got too many threads, the computer can sometimes spend more time swapping between threads than letting threads work.</p> <p>As Moore's Law changes with more cores, this will change and hopefully programming frameworks will evolve to help us use threads more effectively, depending on the number of cores available to the program, such as the <a href="http://msdn.microsoft.com/en-us/magazine/cc163340.aspx" rel="nofollow">TPL</a>.</p> http://stackoverflow.com/questions/117651/how-can-i-create-my-custom-shell-context-handlers-for-windows/117703#117703 1 Answer by David Mohundro for How can I create my custom Shell Context Handlers for Windows? David Mohundro 2008-09-22T21:16:42Z 2008-09-22T21:16:42Z <p>As the prior comments mention, it isn't the best idea to write shell extensions in managed languages, but I thought I'd share an Open Source project that is doing just that :)</p> <p><a href="http://code.google.com/p/shellglue/" rel="nofollow">ShellGlue</a> is a managed shell extension that is actually quite helpful. The source also might be helpful to you if you're interested in pursuing writing a shell extension in C/C++.</p> http://stackoverflow.com/questions/116576/debugging-websites-in-internet-explorer/116598#116598 13 Answer by David Mohundro for Debugging Websites in Internet Explorer David Mohundro 2008-09-22T18:25:05Z 2008-09-22T18:25:05Z <p>There is the <a href="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en" rel="nofollow">Internet Explorer Web Developer Toolbar</a>. It isn't as good as Firebug IMHO, but it works.</p> <p>IE8 will ship with one built-in, too.</p> http://stackoverflow.com/questions/107464/is-javascript-object-oriented/116401#116401 4 Answer by David Mohundro for Is JavaScript object-oriented? David Mohundro 2008-09-22T17:55:58Z 2008-09-22T17:55:58Z <p>Yes and no.</p> <p>JavaScript is, as Douglas Crockford puts it, "<a href="http://javascript.crockford.com/javascript.html" rel="nofollow">the world's most misunderstood programming language</a>." He has some <a href="http://www.crockford.com/javascript/" rel="nofollow">great articles on JavaScript</a> that I'd strongly recommend reading on what exactly JavaScript is. It has more in common with LISP that C++.</p> http://stackoverflow.com/questions/115643/is-powershell-a-strongly-typed-language/115676#115676 2 Answer by David Mohundro for Is PowerShell a strongly typed language? David Mohundro 2008-09-22T15:48:42Z 2008-09-22T16:33:14Z <p>It can be if you need it to be.</p> <p>Like so:</p> <pre><code>[1] » [int]$x = 5 [2] » $x 5 [3] » $x = 'haha' Cannot convert value "haha" to type "System.Int32". Error: "Input string was not in a correct format." At line:1 char:3 + $x &lt;&lt;&lt;&lt; = 'haha' [4] » </code></pre> <p>Use the [type] notation to indicate if you care about variables being strongly typed.</p> <p><strong>EDIT</strong>:</p> <p>As <a href="http://stackoverflow.com/questions/115643/is-powershell-a-strongly-typed-language#115715">edg</a> pointed out, this doesn't prevent PowerShell from interpreting "5" as an integer, when executing (5 + "5"). I dug a little more, and according to Bruce Payette in <a href="http://rads.stackoverflow.com/amzn/click/1932394907" rel="nofollow">Windows PowerShell in Action</a>, PowerShell is actually a "type-promiscuous language." So, I guess, my answer is "sort of."</p> http://stackoverflow.com/questions/102956/c-vb-net-conversion/102969#102969 4 Answer by David Mohundro for C# VB.NET Conversion David Mohundro 2008-09-19T15:36:04Z 2008-09-19T15:36:04Z <p>Check out <a href="http://converter.telerik.com/" rel="nofollow">Code Converter</a> by Telerik.</p> http://stackoverflow.com/questions/94382/vim-with-powershell/101743#101743 1 Answer by David Mohundro for Vim with Powershell David Mohundro 2008-09-19T13:19:10Z 2008-09-19T13:19:10Z <p>Interesting question - here is something else to add to the confusion. Without making any changes to my .vimrc file, if I then run the following commands in gvim:</p> <pre><code>:set shell=powershell.exe :set shellcmdflag=-noprofile :echo system("dir -name") </code></pre> <p>It behaves as expected! </p> <p>If I make the same changes to my .vimrc file, though (the shell and shellcmdflag options), running :echo system("dir -name") returns the nonsense characters!</p> http://stackoverflow.com/questions/1158933/cant-find-overloaded-execute-method-for-schemaexport/1159134#1159134 Comment by David Mohundro on Can't find overloaded Execute method for SchemaExport David Mohundro 2009-09-02T18:12:23Z 2009-09-02T18:12:23Z Check out <a href="http://nhibernate.svn.sourceforge.net/viewvc/nhibernate/trunk/nhibernate/releasenotes.txt?view=markup&amp;pathrev=4185" rel="nofollow">nhibernate.svn.sourceforge.net/viewvc/nhibernate/&hellip;</a> and <a href="http://nhibernate.svn.sourceforge.net/viewvc/nhibernate/trunk/nhibernate/src/NHibernate/Tool/hbm2ddl/SchemaExport.cs?r1=4185&amp;r2=4184&amp;pathrev=4185" rel="nofollow">nhibernate.svn.sourceforge.net/viewvc/nhibernate/&hellip;</a> - the fourth boolean parameter (format) was removed. http://stackoverflow.com/questions/305284/getting-sqlcmd-output-into-a-gridview Comment by David Mohundro on Getting sqlcmd output into a GridView David Mohundro 2008-11-20T13:40:39Z 2008-11-20T13:40:39Z Are you actually talking about calling Process.Start on sqlcmd.exe? Why not just use ADO.NET (i.e. System.Data.*)? http://stackoverflow.com/questions/282830/looking-for-vb-net-open-source-projects-to-learn-from/284805#284805 Comment by David Mohundro on Looking for VB.NET open source projects to learn from David Mohundro 2008-11-13T13:22:36Z 2008-11-13T13:22:36Z Nope, NUnit was written in C# - you can browse their repository at <a href="http://nunit.cvs.sourceforge.net/nunit/" rel="nofollow">nunit.cvs.sourceforge.net/nunit</a>. http://stackoverflow.com/questions/250001/define-poco/250006#250006 Comment by David Mohundro on Define 'poco'? David Mohundro 2008-10-30T12:51:27Z 2008-10-30T12:51:27Z Agreed - not a fan of the C# name, but that was what I first heard when I was wondering about the question :) Class then fits POJO, POVBO POC#O, POC++O, PORO, etc. http://stackoverflow.com/questions/222030/how-do-i-create-7-zip-archives-with-net/222047#222047 Comment by David Mohundro on How do I create 7-Zip archives with .NET? David Mohundro 2008-10-22T13:16:30Z 2008-10-22T13:16:30Z We actually ship the 7z command line utility with our binaries and shell out to it. Works really well for us. http://stackoverflow.com/questions/221732/datetime-null-value/221743#221743 Comment by David Mohundro on DateTime "null" value David Mohundro 2008-10-21T12:58:25Z 2008-10-21T12:58:25Z It came in .NET 2.0 right? The ? syntax was added to VB.NET in 3.5, but it has been in C# since 2.0 I believe. http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219056#219056 Comment by David Mohundro on .NET 2.0 or 3.5? David Mohundro 2008-10-20T16:37:45Z 2008-10-20T16:37:45Z <a href="http://weblogs.asp.net/fmarguerie/archive/2007/09/05/linq-support-on-net-2-0.aspx" rel="nofollow">weblogs.asp.net/fmarguerie/archive/&hellip;</a> for reference, though I'd be wary of doing this myself :) http://stackoverflow.com/questions/218859/will-ms-visual-studio-2008-show-help-on-my-own-functions-if-i-use-javadoc-style-c/218876#218876 Comment by David Mohundro on Will MS Visual Studio 2008 show help on my own functions if I use Javadoc style comments for them? David Mohundro 2008-10-20T15:49:57Z 2008-10-20T15:49:57Z Agreed - the XML comments are the way to go and give shippable documentation along with your components (via the XML files that get built). http://stackoverflow.com/questions/201004/why-cant-i-connect-to-a-wcf-service-with-net-tcp-but-i-can-with-http/201061#201061 Comment by David Mohundro on Why can't I connect to a WCF service with net.tcp but i can with http? David Mohundro 2008-10-14T14:18:16Z 2008-10-14T14:18:16Z Revised my answer... looks like IIS6 doesn't support anything but HTTP. I'm in the same boat here at work - we're stuck on Win2003 for now :( http://stackoverflow.com/questions/173996/whats-the-next-piece-of-open-source-software-that-microsoft-should-embrace/174020#174020 Comment by David Mohundro on What's the next piece of open source software that Microsoft should embrace? David Mohundro 2008-10-06T12:17:38Z 2008-10-06T12:17:38Z Ummm... don't think already &quot;embrace&quot; IronPython, considering it is from Microsoft? Now Boo, yeah, definitely. http://stackoverflow.com/questions/164809/what-are-the-most-relevant-oss-projects-for-net/164853#164853 Comment by David Mohundro on What are the most relevant OSS projects for .NET? David Mohundro 2008-10-03T12:20:31Z 2008-10-03T12:20:31Z The question is &quot;most relevant OSS projects for .NET&quot; - doesn't necessarily mean written in .NET. Those were my thoughts at first, but jQuery is very relevant to .NET, particularly with it being shipped with ASP.NET MVC soon. http://stackoverflow.com/questions/45908/tips-and-tricks-for-working-with-microsoft-visual-studio-solutions-and-project/46300#46300 Comment by David Mohundro on Tips and tricks for working with Microsoft Visual Studio solutions and project David Mohundro 2008-10-02T13:25:12Z 2008-10-02T13:25:12Z Hah! Thanks Kyralessa! Fixed. http://stackoverflow.com/questions/115643/is-powershell-a-strongly-typed-language/115676#115676 Comment by David Mohundro on Is PowerShell a strongly typed language? David Mohundro 2008-10-02T13:23:36Z 2008-10-02T13:23:36Z Sort of both, thus the &quot;promiscuous&quot; part. :) http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162220#162220 Comment by David Mohundro on Visual Studio 2008 - Add Reference David Mohundro 2008-10-02T13:22:07Z 2008-10-02T13:22:07Z Very cool, didn't know about that. Thanks! http://stackoverflow.com/questions/153983/are-there-any-better-command-prompts-for-windows/154021#154021 Comment by David Mohundro on Are there any better command prompts for Windows? David Mohundro 2008-09-30T17:07:22Z 2008-09-30T17:07:22Z The problem with cygwin on Windows is that it is still hosted by cmd.exe, thus the resizing problems that Luke mentions are still there.