User Darren Kopp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T01:33:39Z http://stackoverflow.com/feeds/user/77 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/832017/what-tools-do-web-developers-use-with-php-ruby-on-rails-python-etc 5 What tools do web developers use with PHP, Ruby on Rails, Python, etc? Darren Kopp 2009-05-06T22:04:34Z 2009-11-08T20:35:06Z <p>A good friend just sent me the following email</p> <blockquote> <p>My father is putting together a proposal for a local college to start a center of innovation and technology. As part of that, he’s proposing they teach web design and web development. My question is in your opinion what are the “industry standard” tools for both web design and web development. I think I have a good handle on the web design (html, flash, photoshop, dreamweaver), but I want your take and need some guidance on web development (.net, ajax, visual C++, rubyonrails). Thoughts?</p> </blockquote> <p>I was able to instruct him on what tools are predominant on the Microsoft Stack (Visual Studio + Expression Studio), but I'm not exactly sure what people writing in ruby on rails, or python, or PHP, etc., are using.</p> <p>I'm asking this here because:</p> <ol> <li>Who better to ask than developers</li> <li>Those looking to get started in these languages might find these tools very useful.</li> </ol> <p>So those of you who use these stacks, what type of tools do you use for your development?</p> <h2>Summary</h2> <blockquote> <h3>Database</h3> <ul> <li><a href="http://mysql.com/" rel="nofollow">MySql</a></li> <li><a href="http://www.postgresql.org/" rel="nofollow">PostgreSQL</a></li> </ul> <h3>Source Control</h3> <ul> <li><a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a></li> <li><a href="http://git-scm.com/" rel="nofollow">Git</a></li> <li><a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a></li> <li><a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a></li> </ul> <h3>Editors</h3> <ul> <li><a href="http://macromates.com/" rel="nofollow">TextMate</a> (Mac)</li> <li><a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> (Windows)</li> <li>emacs or <a href="http://www.vim.org/" rel="nofollow">vim</a> (Cross-platform)</li> </ul> <h3>IDEs</h3> <ul> <li><a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a></li> <li><a href="http://www.aptana.com/" rel="nofollow">Aptana</a></li> <li><a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> - <a href="http://www.eclipse.org/" rel="nofollow">Eclipse PDT</a></li> </ul> <h3>Frameworks</h3> <ul> <li><a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a> (PHP)</li> <li><a href="http://codeigniter.com/" rel="nofollow">Code Igniter</a> (PHP)</li> <li><a href="http://cakephp.org/" rel="nofollow">CakePHP</a> (PHP)</li> <li><a href="http://www.djangoproject.com/" rel="nofollow">Django</a> (Python)</li> <li><a href="http://www.turbogears.com/" rel="nofollow">TurboGears</a> (Python)</li> <li><a href="http://rubyonrails.org/" rel="nofollow">Rails</a> (Ruby)</li> </ul> <h3>Debugging</h3> <ul> <li><a href="http://www.xdebug.org/" rel="nofollow">Xdebug</a> + <a href="http://code.google.com/p/webgrind/" rel="nofollow">WebGrind</a> (PHP)</li> <li><a href="http://getfirebug.com/" rel="nofollow">Firebug</a> (Cross-platform, in-browser)</li> </ul> </blockquote> http://stackoverflow.com/questions/1632904/c-control-names/1632959#1632959 1 Answer by Darren Kopp for c# control names Darren Kopp 2009-10-27T18:59:54Z 2009-10-27T18:59:54Z <p>Doesn't work quite like that in .net. They need to be uniquely named because that's how they correlate the radio button back to viewstate. I would ask why you need them to be the same name? If it's because you want the user to only be able to select 1 item out of x, then you want to use the GroupName property.</p> http://stackoverflow.com/questions/1632865/project-load-wrong-web-config-file/1632931#1632931 0 Answer by Darren Kopp for Project load wrong web.config file Darren Kopp 2009-10-27T18:55:14Z 2009-10-27T18:55:14Z <p>Make sure that project1 is an application whose base folder is the project1 directory and that project2 is an application whose base folder is the project2 directory. sounds like project1 is an application pointing to c:\project.</p> http://stackoverflow.com/questions/52360/how-can-you-determine-what-versions-of-net-are-running-on-a-system/52373#52373 0 Answer by Darren Kopp for How can you determine what version(s) of .NET are running on a system? Darren Kopp 2008-09-09T17:14:15Z 2009-10-16T16:27:37Z <p><a href="http://www.hanselman.com/smallestdotnet/" rel="nofollow">Get the smallest .NET Framework download possible</a> that will tell you based on the headers you are sending. It only works on Internet Explorer or if you have the Firefox extension installed. More info in <a href="http://www.hanselman.com/blog/SmallestDotNetOnTheSizeOfTheNETFramework.aspx" rel="nofollow">Hanselman's blog post</a>.</p> http://stackoverflow.com/questions/1567934/wcf-sending-data-to-server-outside-of-contract/1568000#1568000 0 Answer by Darren Kopp for WCF - Sending data to server outside of contract Darren Kopp 2009-10-14T18:02:30Z 2009-10-14T18:02:30Z <p>It sounds like you are wanting something like headers like with SOAP webservices. I'm not a WCF expert, but this <a href="http://geekswithblogs.net/JanS/archive/2008/03/17/automate-passing-valuable-information-in-wcf-headers.aspx" rel="nofollow">looks like the WCF equivalent</a>.</p> http://stackoverflow.com/questions/1567870/cant-expose-constants-from-singleton-or-property/1567907#1567907 0 Answer by Darren Kopp for Can't expose Constants from Singleton or Property Darren Kopp 2009-10-14T17:48:09Z 2009-10-14T17:48:09Z <p>you just can't use the this qualifier, as it is redundant. valid would be return someDiscount or return MySingletonClass.someDiscount.</p> <p>think of const just like static.</p> http://stackoverflow.com/questions/1499074/add-indexing-to-custom-list/1499107#1499107 4 Answer by Darren Kopp for add indexing to custom list Darren Kopp 2009-09-30T16:02:31Z 2009-09-30T16:02:31Z <p>you need to make a property like this:</p> <pre><code>public int this[int index] { get { // code to return value } } </code></pre> http://stackoverflow.com/questions/754850/serialization-problem-in-c-with-a-derived-class/754891#754891 2 Answer by Darren Kopp for Serialization Problem in C# with a derived class Darren Kopp 2009-04-16T05:53:40Z 2009-09-18T22:16:38Z <p>put [Serializable] at the top of the class. Serializable isn't necessarily inherited either AFAIK. meaning even if the base class has [Serializable], you still need it on the decendant class.</p> http://stackoverflow.com/questions/1106974/how-can-i-convert-to-a-specific-type-in-a-generic-version-of-tryparse/1107480#1107480 0 Answer by Darren Kopp for How can I convert to a specific type in a generic version of TryParse()? Darren Kopp 2009-07-10T03:03:38Z 2009-07-10T03:03:38Z <p>Why not just use reflection and use the built in TryParse methods? Pretty much one for every native type with the exception of Guid.</p> <pre><code>public static Parser&lt;T&gt; GetParser&lt;T&gt;(T defaultResult) where T : struct { // create parsing method Parser&lt;T&gt; parser = (string value, out T result) =&gt; { // look for TryParse(string value,out T result) var parseMethod = typeof(T).GetMethods() .Where(p =&gt; p.Name == "TryParse") .Where(p =&gt; p.GetParameters().Length == 2) .Single(); // make parameters, leaving second element uninitialized means out/ref parameter object[] parameters = new object[2]; parameters[0] = value; // run parse method bool success = (bool)parseMethod.Invoke(null, parameters); // if successful, set result to output if (!success) { result = (T)parameters[1]; } else { result = defaultResult; } return success; }; return parser; } </code></pre> http://stackoverflow.com/questions/859186/why-is-c-statically-typed/859199#859199 1 Answer by Darren Kopp for Why is C# statically typed? Darren Kopp 2009-05-13T17:07:40Z 2009-05-13T17:07:40Z <p>c# is a strongly-typed language, like c++ or java. Therefore it needs to know the type of the variable. you can fudge it a bit in c# 3.0 via the var keyword. That lets the compiler infer the type.</p> http://stackoverflow.com/questions/831334/asp-net-save-html-sent-to-browser/831375#831375 2 Answer by Darren Kopp for ASP.NET Save HTML Sent to Browser Darren Kopp 2009-05-06T19:43:25Z 2009-05-06T19:43:25Z <p>You could attach to the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.presendrequestcontent.aspx" rel="nofollow">PreSendRequestContent</a>. This event is raised right before the content is sent and gives you a chance to modify it, or in your case, save it.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms998536.aspx" rel="nofollow">P&amp;P article on interception pattern</a></p> http://stackoverflow.com/questions/830510/issue-with-wpf-focus/830536#830536 0 Answer by Darren Kopp for Issue with WPF Focus Darren Kopp 2009-05-06T16:39:44Z 2009-05-06T16:39:44Z <p>I'm guessing what is happening is it determines the control to tab to before the LostFocus event fires, thereby skipping the State combo box since it is disabled. Here's the information for <a href="http://msdn.microsoft.com/en-us/library/aa969768.aspx" rel="nofollow">how focus works in WPF</a>. What you will want to do is in your handler, determine if it should be going to the State combo box next, and programatically focus that element via the <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.focusmanager.aspx" rel="nofollow">FocusManager</a> class.</p> http://stackoverflow.com/questions/830372/a-young-programmer-in-quest-for-the-passion-for-programming-want-it-back/830432#830432 0 Answer by Darren Kopp for A young programmer in quest for the passion for programming (want it back) :) Darren Kopp 2009-05-06T16:19:46Z 2009-05-06T16:19:46Z <p>I can relate. I'm 23 and I'm currently the senior developer at a start up that creates web based payroll software, and at times it's extremely boring, and is becoming more so. In my experience working here, over several projects, i've found that boredom is a cycle. At times i will be extremely intrigued with what I'm doing, and at times I want to bludgeon my self with my mouse.</p> <p>But i don't think there is any way around this. I don't know if there is ANY software project that you will always be enamored with. I wouldn't freak out if right now you don't feel impassioned towards the code you are currently working on because there may not be something there that will excite you, but it doesn't mean that the same project will never have parts to it that won't excite you.</p> http://stackoverflow.com/questions/829725/what-source-control-should-we-use/829759#829759 1 Answer by Darren Kopp for What source control should we use Darren Kopp 2009-05-06T14:06:07Z 2009-05-06T15:00:05Z <p><strike>Team Foundation Server is quite easy to use and is easy to get started with coming from a source safe background (shares common terminology for commands). However with part of the development being in India, they may be more knowledgeable about Subversion.</strike></p> <p>If you use Subversion, i would look at <a href="http://visualsvn.com/" rel="nofollow">VisualSVN</a>. It's fantastic, simple to use, and quick to set up (TFS is a bit complicated to set up). VisualSVN offers an IDE plug-in ($50) and a server counterpart that bootstraps Subversion for windows machines (Free)</p> http://stackoverflow.com/questions/827454/what-is-the-operator-for/827463#827463 5 Answer by Darren Kopp for What is the "??" operator for? Darren Kopp 2009-05-05T23:56:51Z 2009-05-06T00:03:54Z <p>it's the coalesce operator. it will return another value if the first value is null</p> <pre><code>string value1 = null; string value2 = "other"; string value3 = value1 ?? value2; // assigns "other" to value 3 </code></pre> http://stackoverflow.com/questions/825321/linq-retreive-values-from-a-table-that-of-which-fieldsof-a-cetain-column-are-no/825352#825352 3 Answer by Darren Kopp for LINQ retreive values from a table that of which fields(of a cetain column) are not equal of another table Darren Kopp 2009-05-05T15:13:07Z 2009-05-05T15:13:07Z <pre><code>var results = from t1 in db.table1 from t2 in db.table2 where t1.foo != t2.foo select t1 </code></pre> http://stackoverflow.com/questions/810129/how-does-whiles-t-work/810145#810145 0 Answer by Darren Kopp for How does "while(*s++ = *t++)" work? Darren Kopp 2009-05-01T04:09:31Z 2009-05-01T04:09:31Z <p>it copies a string because arrays are always passed by reference, and string is just a char array. Basically what is happening is (if i remember the term correctly) pointer arithmetic. Here's <a href="http://en.wikipedia.org/wiki/Pointer%5F%28computing%29#C%5Farrays" rel="nofollow">a bit more information from wikipedia on c arrays</a>.</p> <p>You are storing the value that was dereferenced from t in s and then moving to the next index via the ++.</p> http://stackoverflow.com/questions/810045/how-to-use-linq-to-filter-property-of-child-collection-using-any/810059#810059 5 Answer by Darren Kopp for How to use LINQ to filter property of child collection using (.Any()) Darren Kopp 2009-05-01T03:26:34Z 2009-05-01T03:26:34Z <p>the where statement returns a collection. you want to use the Any() method</p> <pre><code>var customers = from c in Customers where c.Orders.Any(o =&gt; o.Status = 1) select c </code></pre> http://stackoverflow.com/questions/803331/c-how-to-get-the-assigned-value-from-an-action/803417#803417 0 Answer by Darren Kopp for C#: How to get the assigned value from an action? Darren Kopp 2009-04-29T17:26:16Z 2009-04-29T17:26:16Z <p>You could accomplish this by moving from Action to Expression>. Then you can look at what's happening in the method like so</p> <pre><code>public static void PFA(Expression&lt;Action&lt;frmain&gt;&gt; expression) { // this will give you form.RichTextBox1 var targetFormProperty = (MemberAccessExpression)expression.Body; // this only works for your example given. this gives you RichTextBox1.Text var textProperty = (MemberAccessExpression)targetFormProperty.Expression; // this is how you would run your action like normal var action = expression.Compile(); action(); // invoke action (you would want to wrap this in the invoke check) } </code></pre> <p>This gives you the info you need to figure out the property, but not how to append the \n. I'll leave this up to you to find out. I think this is overkill here, but who knows, maybe this could help you or someone else, or even inspire a nice solution.</p> <p>A nice solution i could possibly think of where you could reuse this functionality is like a rule engine where you might compare what the property being accessed is and run an action right after it, etc.</p> http://stackoverflow.com/questions/787811/how-do-i-create-a-custom-dialog-in-wix-for-user-input/787830#787830 3 Answer by Darren Kopp for How do I create a custom dialog in WiX for user input? Darren Kopp 2009-04-24T22:41:28Z 2009-04-24T22:41:28Z <p>Have fun with UI! This <a href="http://www.tramontana.co.hu/wix/lesson8.php" rel="nofollow">tutorial should give you a good start</a> into the UI aspect. A high level overview of what will be happening is:</p> <ol> <li>Create a property</li> <li>Have the UI control set this property</li> <li>The name attribute on the service will reference the property, ie [ServiceNameProperty].</li> </ol> http://stackoverflow.com/questions/787659/most-efficient-internal-database-for-a-media-player/787682#787682 1 Answer by Darren Kopp for Most efficient internal database for a media player Darren Kopp 2009-04-24T21:42:50Z 2009-04-24T21:42:50Z <p>There is also SQL Server Compact. Linq to Sql works with this as well.</p> http://stackoverflow.com/questions/787620/i-consume-a-web-service-on-server1-how-can-i-change-to-server2-if-server1-fails/787668#787668 3 Answer by Darren Kopp for I consume a web service on server1 how can i change to server2 if server1 fails (using C#) Darren Kopp 2009-04-24T21:38:54Z 2009-04-24T21:38:54Z <p>I would do something like this</p> <pre><code>public R CallWebservice&lt;T,R&gt;(T service, IEnumerable&lt;string&gt; urls, Func&lt;T,R&gt; serviceCall) where T : SoapHttpClientProtocol, IDisposable { foreach (var url in urls) { try { service.Url = url; return serviceCall(service); } catch (Exception ex) { // Log Error continue; } finally { service.Dispose(); } } // throw exception here which means that all url's failed } </code></pre> <p>and you could call it doing something like this</p> <pre><code>Employee[] employees = CallWebService( new DownloadService(), new string[] { "http://site1/service.asmx","http://site2/service.asmx" }, service =&gt; service.DownloadEmployees() ); </code></pre> <p>this would loop through each URL specified and call the webservice. if it fails, then it just attempts to do the next URL until it executes successfully.</p> http://stackoverflow.com/questions/786638/how-can-i-get-gzip-compression-in-iis7-working/786644#786644 1 Answer by Darren Kopp for How can I get gzip compression in IIS7 working? Darren Kopp 2009-04-24T16:35:38Z 2009-04-24T16:48:32Z <p>turn on static compression. dynamic compression is for dynamic pages like asp, php, aspx, etc.</p> <p>Here's a link to the <a href="http://www.iis.net/ConfigReference/system.webServer/httpCompression" rel="nofollow">IIS config reference for compression</a>: </p> http://stackoverflow.com/questions/786672/execute-an-operation-every-x-seconds-for-y-minutes-in-c/786689#786689 2 Answer by Darren Kopp for Execute an operation every x seconds for y minutes in c# Darren Kopp 2009-04-24T16:46:07Z 2009-04-24T16:46:07Z <p>just use a DateTime variable to track when it should end and set that right before you start. The on your Elapsed event handler, check if the signal time is less than the end time. If it isn't, stop the timer.</p> http://stackoverflow.com/questions/783760/passing-a-particular-webcontrol-type-as-a-parameter-in-vb-net/783803#783803 0 Answer by Darren Kopp for Passing a particular WebControl type as a parameter in VB.net Darren Kopp 2009-04-23T22:28:53Z 2009-04-23T22:28:53Z <p>you should be able to do this easily using recursion. here's an example to get you started or possibly solve your problem.</p> <p>not exactly that great on VB syntax anymore, but i'm sure you could run this through a converter (like converter.telerik.com)</p> <h2>C# code</h2> <pre><code>public T FindParentControl&lt;T&gt;( ref WebControl child, int currentLevel, int maxLevels) where T : WebControl { if (child.Parent == null || currentLevel &gt; maxLevels) return null; if (child.Parent is T) return child.Parent as T; else return FindParentControl&lt;T&gt;( child.Parent, currentLevel + 1, maxLevels); } </code></pre> <h2>VB.NET Code (by converter.telerik.com)</h2> <pre><code>Public Function FindParentControl(Of T As WebControl)( ByRef child As WebControl, currentLevel As Integer, maxLevels As Integer) As T If child.Parent = Nothing OrElse currentLevel &gt; maxLevels Then Return Nothing End If If TypeOf child.Parent Is T Then Return TryCast(child.Parent, T) Else Return FindParentControl(Of T)(child.Parent, currentLevel + 1, maxLevels) End If End Function </code></pre> http://stackoverflow.com/questions/783631/will-vb-net-be-phased-out/783647#783647 7 Answer by Darren Kopp for Will VB.NET be phased out? Darren Kopp 2009-04-23T21:41:47Z 2009-04-23T21:41:47Z <p>it'll be phased out right after COM is i'm sure.</p> http://stackoverflow.com/questions/783064/should-a-web-sites-business-layer-access-the-session-state/783079#783079 0 Answer by Darren Kopp for Should a web site's business layer access the session state? Darren Kopp 2009-04-23T19:02:17Z 2009-04-23T19:02:17Z <p>make a class that is an indirection, in which case on the web it may return values from HttpContext.Current.Session, and in other areas would resolve that from somewhere else. IE have an interface ISessionStore and have concrete classes WebSessionStore and WindowsFormsSessionStore, etc.</p> <p>this will make your code easier to test and also gives you expansion paths when say, you now want x business logic to run in a windows service where it can run x piece of code every y minutes.</p> http://stackoverflow.com/questions/779444/p-invoke-c-function-that-returns-pointer-to-a-struct/779480#779480 1 Answer by Darren Kopp for p/invoke C function that returns pointer to a struct Darren Kopp 2009-04-22T22:13:35Z 2009-04-22T22:13:35Z <p>I am not an expert here at all, but I happened to be looking at a piece of code (that i don't understand completely mind you) that is doing this same thing.</p> <p>Here is what they are doing</p> <pre><code>[DllImport("")] private static extern short MethodName([In,Out] ref StructureName variable); </code></pre> <p>and then on the structure they have the following attribute</p> <pre><code>[StructLayout(LayoutKind.Sequential, Size = #)] public struct StructureName {} </code></pre> <p>I think the part you are looking for is the [In,Out] part, and since it's being passed via ref, you should be getting the same data back.</p> <p>marked as community wiki so people can fix this if wrong.</p> http://stackoverflow.com/questions/779091/what-does-object-reference-not-set-to-an-instance-of-an-object-mean/779120#779120 1 Answer by Darren Kopp for What does "Object reference not set to an instance of an object" mean? Darren Kopp 2009-04-22T20:37:43Z 2009-04-22T21:38:13Z <p>dkpatt is right, but also, that is the message associated with a <a href="http://msdn.microsoft.com/en-us/library/system.nullreferenceexception.aspx" rel="nofollow">NullReferenceException</a></p> <p>for a more detailed explanation, see <a href="http://stackoverflow.com/questions/779091/what-does-object-reference-not-set-to-an-instance-of-an-object-mean/779184#779184">@Iain's response as to common sources of the NullReferenceException</a></p> http://stackoverflow.com/questions/779072/yellow-error-screen-appended-to-response/779093#779093 0 Answer by Darren Kopp for Yellow error screen appended to response Darren Kopp 2009-04-22T20:33:03Z 2009-04-22T20:33:03Z <p>Any response.Flush calls in your code? That's the only thing i could think of, but no, never seen that happen.</p> http://stackoverflow.com/questions/1683425/palm-webos-common-reasons-why-sound-would-play-on-one-device-but-not-the-anothe Comment by Darren Kopp on Palm WebOS: common reasons why sound would play on one device, but not the another? Darren Kopp 2009-11-06T01:56:32Z 2009-11-06T01:56:32Z same version of the OS? http://stackoverflow.com/questions/1668989/profile-memory-usage-of-session-state-asp-net/1669031#1669031 Comment by Darren Kopp on Profile Memory Usage of Session State ASP.Net Darren Kopp 2009-11-03T18:29:07Z 2009-11-03T18:29:07Z deleting for updated information that session state is in proc. http://stackoverflow.com/questions/1650105/nhibernate-fluent-sql-query-question/1650413#1650413 Comment by Darren Kopp on nHibernate/Fluent - SQL Query Question Darren Kopp 2009-10-30T15:17:06Z 2009-10-30T15:17:06Z he wants the count to be part of the query for the entity, not to eager load the list of styles just to get the count. http://stackoverflow.com/questions/1598052/visual-svn-and-visual-studio-2010-beta-2-wont-play-nice/1598908#1598908 Comment by Darren Kopp on Visual SVN and Visual Studio 2010 Beta 2 won't play nice Darren Kopp 2009-10-21T20:12:12Z 2009-10-21T20:12:12Z workaround worked for me as well. http://stackoverflow.com/questions/1573589/can-making-a-method-static-improve-performance-and-under-what-circumstances Comment by Darren Kopp on Can making a method static improve performance, and under what circumstances? Darren Kopp 2009-10-15T17:03:29Z 2009-10-15T17:03:29Z Yes, there is a performance gain, but you aren't likely to see it until you are calling the method in a loop for hundreds of thousands of times. Premature optimization. http://stackoverflow.com/questions/1567961/programmatically-navigate-a-linq-to-sql-result/1567994#1567994 Comment by Darren Kopp on programmatically navigate a linq to sql result Darren Kopp 2009-10-14T18:04:55Z 2009-10-14T18:04:55Z yes. var is the only way to do this as you are projecting out an anonymous type. http://stackoverflow.com/questions/1504778/type-arguments-cannot-be-inferred-from-usage Comment by Darren Kopp on Type arguments cannot be inferred from usage Darren Kopp 2009-10-01T16:00:47Z 2009-10-01T16:00:47Z what does qb.BuildWhereClause return? Expression&lt;Func&lt;T,bool&gt;&gt;? http://stackoverflow.com/questions/1455206/simple-quick-way-to-get-user-input-in-wpf Comment by Darren Kopp on Simple, quick way to get user input in WPF? Darren Kopp 2009-09-21T15:46:48Z 2009-09-21T15:46:48Z tried using the &lt;TextBox /&gt; control? http://stackoverflow.com/questions/1106974/how-can-i-convert-to-a-specific-type-in-a-generic-version-of-tryparse/1107480#1107480 Comment by Darren Kopp on How can I convert to a specific type in a generic version of TryParse()? Darren Kopp 2009-07-11T17:15:08Z 2009-07-11T17:15:08Z if you test it, you can do over 100,000 parses in 11 seconds. i compared against .net 4 using a native expression tree which took 14 seconds (though might not reflect perf when .net 4 is released) http://stackoverflow.com/questions/932610/how-to-track-that-a-user-visited-the-site-each-day-for-x-days/932615#932615 Comment by Darren Kopp on How to track that a user visited the site each day for X days? Darren Kopp 2009-05-31T18:57:56Z 2009-05-31T18:57:56Z you forgot that requires a cookie. http://stackoverflow.com/questions/26733/getting-all-types-that-implement-an-interface-with-c-3-5/26750#26750 Comment by Darren Kopp on Getting all types that implement an interface with C# 3.5 Darren Kopp 2009-05-27T15:08:32Z 2009-05-27T15:08:32Z no. i noticed that a little while back too but didn't bother to edit it. http://stackoverflow.com/questions/858597/why-wont-my-windows-service-write-to-my-log-file/858613#858613 Comment by Darren Kopp on Why won't my windows service write to my log file? Darren Kopp 2009-05-13T15:27:02Z 2009-05-13T15:27:02Z or just give local service permission to write to that directory in the installer. http://stackoverflow.com/questions/848256/how-efficient-is-javascript/848303#848303 Comment by Darren Kopp on How efficient is javascript? Darren Kopp 2009-05-11T14:27:08Z 2009-05-11T14:27:08Z lol, um, isn't that how EVERYTHING is? if a c++ program has an unlimited loop, the OS will ask you if you want to kill the program. http://stackoverflow.com/questions/832017/what-tools-do-web-developers-use-with-php-ruby-on-rails-python-etc Comment by Darren Kopp on What tools do web developers use with PHP, Ruby on Rails, Python, etc? Darren Kopp 2009-05-07T01:13:03Z 2009-05-07T01:13:03Z @gaoshan88 - i guess i should put *nix (unix, linux, mac) @S.Lott - It's more &quot;if you were at a php, or ruby, or python shop, what might you expect to be using to develop day to day.&quot; It's to give him an idea of what they should cover. http://stackoverflow.com/questions/832305/when-not-to-use-asp-net-mvc/832310#832310 Comment by Darren Kopp on When NOT to use ASP.NET MVC? Darren Kopp 2009-05-06T23:50:13Z 2009-05-06T23:50:13Z do you mean IF you are stuck? way that's phrased seems like mvc only works on iis6 and .net 2.0.