User dkpatt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T04:46:45Zhttp://stackoverflow.com/feeds/user/90941http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/830458/how-can-i-verify-that-my-web-site-responds-with-correct-http-status-codes/830468#8304682Answer by dkpatt for How can I verify that my web site responds with correct HTTP status codes?dkpatt2009-05-06T16:25:51Z2009-05-06T16:25:51Z<p>I'd recommend you use the HTTP tool <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a>.</p>
<p>It'll show you the HTTP status code for every request.</p>
http://stackoverflow.com/questions/750022/high-profile-asp-net-websites/750573#7505734Answer by dkpatt for High Profile ASP.NET websitesdkpatt2009-04-15T06:56:15Z2009-05-06T03:48:42Z<p>One of the most profitable online stores...</p>
<p><a href="http://www.costco.com" rel="nofollow">Costco</a></p>
<p>I don't know if you consider all of these to be high-profile sites but here are a few more.</p>
<p><a href="http://www.monster.com" rel="nofollow">Monster</a><br/>
<a href="http://www.sharebuilder.com" rel="nofollow">ShareBuilder</a><br/>
<a href="http://www.becu.org" rel="nofollow">BECU</a><br/>
<a href="http://www.johnlscott.com" rel="nofollow">John L Scott</a><br/>
<a href="http://www.remax.com" rel="nofollow">REMAX</a><br/>
<a href="http://www.htc.com" rel="nofollow">HTC</a><br/>
<a href="http://www.zecco.com" rel="nofollow">Zecco</a><br/></p>
http://stackoverflow.com/questions/778872/dont-publish-particular-folder-in-asp-net/779176#7791760Answer by dkpatt for Don't publish particular folder in ASP.NETdkpatt2009-04-22T20:50:49Z2009-04-22T20:50:49Z<p>There are probably much better ways to solve this problem but when we publish a build for our dev servers, we'll run a batch file when the build is complete to remove the un-needed folders and web.configs (so we don't override the ones that are already deployed).</p>
http://stackoverflow.com/questions/779091/what-does-object-reference-not-set-to-an-instance-of-an-object-mean/779103#7791035Answer by dkpatt for What does "Object reference not set to an instance of an object" mean?dkpatt2009-04-22T20:34:26Z2009-04-22T20:34:26Z<p>Not to be blunt but it means exactly what it says. One of your object references is NULL. You'll see this when you try and access the property or method of a NULL'd object.</p>
http://stackoverflow.com/questions/757324/whats-the-easiest-to-remember-publicly-pingable-ip-address/757349#7573491Answer by dkpatt for What's the easiest to remember publicly pingable IP address?dkpatt2009-04-16T18:05:10Z2009-04-16T18:05:10Z<p>I use 4.2.2.2</p>
http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions/757278#7572782Answer by dkpatt for Do you say No to C# Regions?dkpatt2009-04-16T17:48:02Z2009-04-16T17:48:02Z<p>I use them to hide huge sets of properties that tend to be in the way while looking through code. I know... OCD... but it drives me nuts otherwise.</p>
http://stackoverflow.com/questions/757193/inline-sql-vs-stored-procedures0Inline SQL vs Stored Procedures [closed]dkpatt2009-04-16T17:29:17Z2009-04-16T17:37:43Z
<p>I know this is an age old debate but I'm curious as to what others do.</p>
<p>I tend to use stored procedures for complex reports, user verification and other queries that aren't your typical SELECT, INSERT, UPDATE, and DELETE statements. It's my understanding that SPs are faster because they save the execution stack but is there a tangable difference for your basic statements? What other benefits can be reaped for using SPs for your everyday basic SELECT, INSERT, UPDATE, and DELETE statements as it is quite tedius to create SPS for each basic query.</p>
<p><strong>DUPLICATE</strong></p>
<blockquote>
<ul>
<li><a href="http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code">http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code</a></li>
<li><a href="http://stackoverflow.com/questions/462978/when-should-you-use-stored-procedures">http://stackoverflow.com/questions/462978/when-should-you-use-stored-procedures</a></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/753966/should-you-restrict-developers-internet-access/754590#7545901Answer by dkpatt for Should you restrict developers internet access?dkpatt2009-04-16T03:00:35Z2009-04-16T03:00:35Z<p>If one can't be trusted to do their work, they shouldn't of been hired and if the are, they should be fired.</p>
<p>All developers work differently and when you're stuck on a problem it's sometimes best to take a break for a few minutes. That make be going for a 10 minute walk or checking the news or your facebook page.</p>
<p>Also, in our office a huge amount of communication is over IM. Infact, it use to be required we were signed in on MSN and Skype. It's much quicker then email and usually quicker then walking over to someone else's office.</p>
http://stackoverflow.com/questions/754539/code-quality/754566#7545662Answer by dkpatt for Code Qualitydkpatt2009-04-16T02:51:00Z2009-04-16T02:51:00Z<p>Well said by Chris. </p>
<p>We had a similar problem in our office. The CEO and other big wigs didn't know how to measure dev quality and they implemented their own rediculous measurements. Totaling a developers bug count is definitely not the measurement to go by. I don't know if there is a perfect answer but I would hope that my work is measured by whether or not I meet my deadlines and consumer feedback (are they happy with the product).</p>
http://stackoverflow.com/questions/752456/asynchronous-logging-to-a-database-net/752980#7529800Answer by dkpatt for Asynchronous Logging To A Database .Net dkpatt2009-04-15T18:06:38Z2009-04-15T18:06:38Z<p>I would highly recommend looking into <a href="http://www.nlog-project.org/" rel="nofollow">NLOG</a>. It's very flexible and logs asynchronously. You can configure it to log to a specific file or DB. However, you'll need to build your own log viewer. </p>
<p>We use NLOG religiously and couldn't be happier with it.</p>
http://stackoverflow.com/questions/750204/accessing-similar-named-properties-in-a-loop/750417#7504171Answer by dkpatt for Accessing similar named properties in a loopdkpatt2009-04-15T05:26:12Z2009-04-15T05:26:12Z<p>What's your reasoning for doing so? Is it to speed up development? You can use reflection as many have already suggested but it'd be much more effecient to simply reference the properties directly now instead of taking the performance penalty at runtime.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041Comment by dkpatt on Hidden Features of C#?dkpatt2009-05-07T19:09:29Z2009-05-07T19:09:29ZRight along the same lines of the "as" keyword... the "is" keyword is just as useful.http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401Comment by dkpatt on Hidden Features of C#?dkpatt2009-05-07T19:07:27Z2009-05-07T19:07:27ZI was thrilled when I stumbled upon Path.Combine(). It makes life so much easier!http://stackoverflow.com/questions/830458/how-can-i-verify-that-my-web-site-responds-with-correct-http-status-codes/830468#830468Comment by dkpatt on How can I verify that my web site responds with correct HTTP status codes?dkpatt2009-05-06T19:48:00Z2009-05-06T19:48:00ZI hope it helps. Another decent HTTP tool is IEWatch, but it's not free. I find Fiddler is suffice.http://stackoverflow.com/questions/779091/what-does-object-reference-not-set-to-an-instance-of-an-object-mean/779103#779103Comment by dkpatt on What does "Object reference not set to an instance of an object" mean?dkpatt2009-04-22T20:45:55Z2009-04-22T20:45:55ZJhonny - hahaha I guess you're right