User __ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:59:14Zhttp://stackoverflow.com/feeds/user/13578http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84102/what-is-idiomatic-code5What is idiomatic code?__2008-09-17T14:54:15Z2009-10-17T14:35:41Z
<p>I'd be interested in some before-and-after c# examples, some non-idiomatic vs idiomatic examples. Non-c# examples would be fine as well if they get the idea across. Thanks.</p>
http://stackoverflow.com/questions/76499/what-is-your-favorite-use-of-resharper7What is your favorite use of Resharper?__2008-09-16T20:19:31Z2009-10-07T02:24:01Z
<p>I've been trying resharper casually for about a week, without delving into it too deeply. What I've found useful so far is the ability to eliminate redundant Using statements, ToString() calls, and casts. I guess in theory this should reduce the expense of my code-behind and dlls and such. What is Resharper best at, what justifies its cost? Your answers will help whet my appetite for further Resharper delving. Thanks people!</p>
http://stackoverflow.com/questions/194537/how-does-one-write-good-error-messages10How does one write good error messages?__2008-10-11T20:05:09Z2009-09-17T17:17:06Z
<p>While this is more of a written language issue than a coding one, it is something that programmers must do in circumstances where copy is not provided by a client or someone else. Any examples of error messages, good or bad, are welcome to make the point.</p>
<p>I briefly searched and could not find a dupe thread. Ok, have at it. Thanks, all.</p>
http://stackoverflow.com/questions/106472/what-is-the-best-way-to-debug-stored-procedures-and-write-sprocs-that-are-easier13What is the best way to debug stored procedures (and write sprocs that are easier to debug)?__2008-09-19T23:57:28Z2009-09-03T00:03:09Z
<p>What are good methodologies for creating sprocs that reduce the pain of debugging? And what tools are out there for debugging stored procedures?</p>
<p>Perhaps most importantly, what are indications to look out for that errors are happening in a sproc and not in the code? I hope I'm not all over the board too terribly bad here. Votes for answers to any of the above. Thanks.</p>
<p>For what it's worth, I work in a .NET environment, SQL servers.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/76895#76895154Answer by __ for What non-programming books should programmers read?__2008-09-16T20:48:58Z2009-08-21T20:08:44Z<p><a href="http://rads.stackoverflow.com/amzn/click/0789723107" rel="nofollow"><strong>Don't Make Me Think</strong></a> by Steve Krug. An essential book about web usability. As Krug says, "Common sense isn't always obvious."</p>
<p><img src="http://ecx.images-amazon.com/images/I/51W8l2Zy3WL.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p>
<p>(Hint: Amazon.com has good usability)</p>
<p>Update: This is now part of the library at work. I've gotten about five people to read it so far. 100% positive reviews, predictably.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194433#1944334Answer by __ for What is the best comment in source code you have ever encountered?__2008-10-11T18:45:10Z2009-04-30T21:23:41Z<pre><code>Case 1:
...
break;
...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
break;
</code></pre>
http://stackoverflow.com/questions/103765/how-do-i-persist-the-value-of-a-label-through-a-response-redirect0How do I persist the value of a label through a response.redirect?__2008-09-19T17:10:57Z2009-02-24T18:26:25Z
<p>Here's the situation: I have a label's text set, immediately followed by a response.redirect() call as follows (this is just an example, but I believe it describes my situation accurately):</p>
<p>aspx:</p>
<pre><code><asp:Label runat="server" Text="default text" />
</code></pre>
<p>Code-behind (code called on an onclick event):</p>
<pre><code>Label.Text = "foo";
Response.Redirect("Default.aspx");
</code></pre>
<p>When the page renders, the label says "default text". What do I need to do differently? My understanding was that such changes would be done automatically behind the scenes, but apparently, not in this case. Thanks.</p>
<p>For a little extra background, the code-behind snippet is called inside a method that's invoked upon an onclick event. There is more to it, but I only included that which is of interest to this issue.</p>
http://stackoverflow.com/questions/87696/are-unused-using-directives-expensive7Are unused Using directives expensive? [closed]__2008-09-17T21:10:04Z2008-11-10T13:59:53Z
<blockquote>
<p>Just wondering what the cost is of unused <a href="http://msdn.microsoft.com/en-us/library/aa664764(VS.71).aspx" rel="nofollow">Using directives</a>. I'm enjoying using <a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a> to remove them, but I hope to gain a bit of a performance boost as well.</p>
</blockquote>
<p><strong>Closed</strong> as duplicate of <a href="http://stackoverflow.com/questions/136278/why-should-you-remove-unnecessary-c-using-directives">Why should you remove unnecessary C# using directives?</a></p>
http://stackoverflow.com/questions/269456/take-down-website-to-public-but-leave-for-testing-were-not-open/269474#2694740Answer by __ for Take down website to public, but leave for testing... "We're Not Open"__2008-11-06T17:06:56Z2008-11-06T17:06:56Z<p>You should have a separate test site location that is inaccessible to the public. It sounds like that's not your current situation.</p>
<p>My recommendation would simply be to remove all content from the site so it is not prone to URL editing. Then when the deployment happens, if there are issues, just copy back the old content.</p>
<p>I wouldn't disable the site, though. I don't understand why you would do that. You really do need a completely separate location to test that doesn't touch the live site, unless it's a fairly trivial site.</p>
http://stackoverflow.com/questions/260218/what-are-your-favorite-yak-shaving-euphemisms/260227#2602271Answer by __ for What are your favorite "yak shaving" euphemisms?__2008-11-03T22:39:10Z2008-11-03T22:39:10Z<p>Spelling stuff correctly (thanks, Vinko).</p>
http://stackoverflow.com/questions/248460/what-are-good-ways-to-design-or-diagram-state0What are good ways to design or diagram state?__2008-10-29T21:19:41Z2008-10-29T21:36:31Z
<p>The issue that prompted me to ask this is a web form that was not persisting data the way I expected it to. That's vague, but the point is, what do you like to do to model state, flow of data, and so forth?</p>
http://stackoverflow.com/questions/248460/what-are-good-ways-to-design-or-diagram-state/248463#2484630Answer by __ for What are good ways to design or diagram state?__2008-10-29T21:20:21Z2008-10-29T21:20:21Z<p>I'll put my obvious (to me) answer, which is to use the whiteboard. Love the whiteboard.</p>
http://stackoverflow.com/questions/241767/do-you-like-the-idea-of-optional-parameters-in-c/241780#24178012Answer by __ for Do you like the idea of optional parameters in C#__2008-10-28T00:01:00Z2008-10-28T00:01:00Z<p>I reckon it adds flexibility, and those wary of gett'n all confused can simply avoid the new feature. One vote 'for'.</p>
http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computer3Can I use subversion on my home computer?__2008-10-26T03:10:32Z2008-10-26T12:38:01Z
<p>Related to: <a href="http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system">Suggestions please for a home version control system</a> and
<a href="http://stackoverflow.com/questions/108/best-subversion-clients-for-windows-vista-64bit">Best Subversion clients for Windows Vista (64bit)</a>. But different.</p>
<p>This is more of a request to learn how to set up subversion at home. As I just completed the process, I will share my answer below. Sweeet. It's free and it's easy.</p>
<p>I happen to be using Windows Vista 32-bit, business edition at home, and I am assuming Vista home edition would work as well.</p>
http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computer/237460#2374602Answer by __ for Can I use subversion on my home computer?__2008-10-26T03:16:09Z2008-10-26T04:59:47Z<p>My problem is that I use TortoiseSVN at work. I thought that was subversion, but in fact, it's just the client. You still want it, but you need a subversion "server" program.
(Edit: Apparently, TortoiseSVN can be a complete solution, according to some of the other answers)</p>
<p>Don't worry, you can run it on plain ol' XP or Vista just fine. Here is my setup at home:</p>
<ol>
<li>Download VisualSVN <a href="http://www.visualsvn.com/visualsvn/download/" rel="nofollow">here</a></li>
<li>Install it and run it</li>
<li>Create a repository</li>
<li>Install <a href="http://tortoisesvn.net/downloads" rel="nofollow">TortoiseSVN</a> if you haven't done so already</li>
<li>Use TortoiseSVN to upload a repository</li>
</ol>
<p>You're good to go. If you need clarification on any step, or if I missed anything, please let me know in the comments and I'll fix it.</p>
http://stackoverflow.com/questions/237282/what-is-the-optimal-algorithm-design-for-a-water-saving-urinal/237430#2374300Answer by __ for What is the optimal algorithm design for a water-saving urinal?__2008-10-26T02:48:51Z2008-10-26T02:48:51Z<p>At the risk of sounding Ludditish, I think the best solution is a handle. But that isn't the question. I would assume the mechanism is very simple. Someone moves in front of it, a count starts. When the count is fulfilled, the urinal is "primed". When the person moves away, the trigger is pulled, and the sensor turns off for an arbitrary amount of time (I don't think it has or needs any awareness of the act of flushing/tank-refilling). </p>
<p>Am I overthinking this?</p>
http://stackoverflow.com/questions/235965/why-is-it-that-people-write-free-software-such-as-openoffice-spybot-etc/235966#23596611Answer by __ for Why is it that people write free software, such as openoffice, spybot etc?__2008-10-25T05:45:34Z2008-10-25T05:45:34Z<p>There are a variety of reasons, one being that a noteworthy piece of software can presumably help someone get notoriety, jobs, money. And I suppose some do it just for fun. Whatever the reason, bless 'em.</p>
http://stackoverflow.com/questions/235423/visual-studio-2008-syntax-coloring-problem/235464#2354640Answer by __ for Visual Studio 2008 Syntax Coloring Problem__2008-10-24T22:22:59Z2008-10-24T22:22:59Z<p>This may not be your problem, but you can check it at least. Go to Tools >> Options..., pick Text Editor >> VB.NET and verify that the colors and such are how you like them.</p>
http://stackoverflow.com/questions/214640/in-visual-studio-my-design-view-doesnt-load-the-master-page-controls-why0In Visual Studio, my design view doesn't load the master page controls. Why?__2008-10-18T05:38:19Z2008-10-24T22:08:36Z
<p>It's just so much HRESULT E_FAIL, if you know what I'm talking about. And if you use Visual Studio, you know what I'm talking about.</p>
<p>Similar thread, but not a duplicate: <a href="http://stackoverflow.com/questions/196001/is-the-design-view-for-aspx-pages-in-visual-studio-useful">Is the design view for aspx pages in Visual Studio useful?</a></p>
<p>Any insight, including input from Microsoft MVPs (oh, I know you're out there) would be super cool.</p>
http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235032#23503235Answer by __ for Why should unit tests test only one thing?__2008-10-24T19:50:04Z2008-10-24T19:50:04Z<p>Testing only one thing will isolate that one thing and prove whether or not it works. That is the idea with unit testing. Nothing wrong with tests that test more than one thing, but that is generally referred to as integration testing. They both have merits, based on context.</p>
<p>To use an example, if your bedside lamp doesn't turn on, and you replace the bulb and switch the extension cord, you don't know which change fixed the issue. Should have done unit testing, and separated your concerns to isolate the problem.</p>
http://stackoverflow.com/questions/231893/what-does-yield-break-do-in-c/231900#2319004Answer by __ for What does "yield break;" do in C#?__2008-10-23T23:09:48Z2008-10-23T23:12:10Z<p><a href="http://www.alteridem.net/2007/08/22/the-yield-statement-in-c/" rel="nofollow">http://www.alteridem.net/2007/08/22/the-yield-statement-in-c/</a></p>
<p>Key quote: </p>
<blockquote>
<p>Another often overlooked C# statement that was introduced in .NET 2.0 is yield. This keyword is used to return items from a loop within a method and retain the state of the method through multiple calls. That is a bit hard to wrap your head around, so as always, an example will help;</p>
</blockquote>
<pre><code>public static IEnumerable<int> Range( int min, int max )
{
for ( int i = min; i < max; i++ )
{
yield return i;
}
}
</code></pre>
<p>Read the whole thing.</p>
http://stackoverflow.com/questions/230218/why-do-people-have-trouble-learning-recursion/230316#2303160Answer by __ for Why do people have trouble learning recursion?__2008-10-23T16:00:39Z2008-10-23T16:00:39Z<p>The concept of recursion is somewhat mind-bending, and I'm not ashamed to admit that. However, syntactically, it's fairly simple to implement. Is that a fair statement?</p>
<p>So, like regular expressions, you should know what you're doing.</p>
http://stackoverflow.com/questions/220152/best-workstation-furniture-for-programming/220244#2202441Answer by __ for Best workstation furniture for programming?__2008-10-20T22:59:45Z2008-10-20T22:59:45Z<p>I'm also really liking the idea of a <a href="http://www.lifehack.org/articles/lifestyle/the-stand-up-desk.html" rel="nofollow">stand-up desk</a>.</p>
http://stackoverflow.com/questions/220152/best-workstation-furniture-for-programming/220240#2202401Answer by __ for Best workstation furniture for programming?__2008-10-20T22:58:34Z2008-10-20T22:58:34Z<p>Two words: <a href="http://www.steelcase.com/na/walkstation_products.aspx?f=30670" rel="nofollow">The WalkStation</a>. No, I don't have one, drat the luck.</p>
http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/214463#21446327Answer by __ for What surprised you the most about the software industry?__2008-10-18T02:55:30Z2008-10-18T02:55:30Z<p>I would say the actual percentage of my time spent writing code is lower than I would have expected. It's different everywhere I suppose, but I spend a lot of time gathering and disambiguating requirements, running design ideas past fellow developers, and just dealing with overhead in general. When I get to actually sit down and code, it's a treat.</p>
http://stackoverflow.com/questions/213509/is-it-possible-to-pass-a-app-setting-in-the-web-config-to-a-common-c-class/213783#2137830Answer by __ for Is it possible to pass a App setting in the web.config to a Common C# class__2008-10-17T20:43:58Z2008-10-17T20:43:58Z<p>It's possible to pass something from the web.config in the asp code as well, via something like this (using a <code>SqlDataSource</code> as an example):</p>
<pre><code><asp:SqlDataSource ConnectionString="<%$ ConnectionStrings:NameOfConnectionString %>" />
</code></pre>
<p>See here for more detail: <a href="http://weblogs.asp.net/owscott/archive/2005/08/26/using-connection-strings-from-web.config-in-asp.net-v2.0.aspx" rel="nofollow">http://weblogs.asp.net/owscott/archive/2005/08/26/using-connection-strings-from-web.config-in-asp.net-v2.0.aspx</a></p>
<p>I'm all about code-behind, so I wouldn't do it this way, but it's good to know about anyway.</p>
http://stackoverflow.com/questions/76499/what-is-your-favorite-use-of-resharper/206892#2068921Answer by __ for What is your favorite use of Resharper?__2008-10-15T23:27:02Z2008-10-15T23:27:02Z<p>This answer is a tad tangential but hopefully useful. I recently caused some problems by setting a property in a library class as read-only because resharper said I could. The problem is that other people are using the library in different projects, where said property can't be read-only.</p>
<p>Moral: Know the impact of what you are doing in Resharper, don't just go all hobbledy-hoy and higgledy-piggledy doing whatever Resharper suggests. That said, I still love Resharper, and this issue was a user issue, not a Resharper issue.</p>
http://stackoverflow.com/questions/194537/how-does-one-write-good-error-messages/205432#2054320Answer by __ for How does one write good error messages?__2008-10-15T16:33:32Z2008-10-15T23:09:29Z<p>Much appreciated answers so far, looking for more, thanks.</p>
http://stackoverflow.com/questions/205308/how-to-master-regular-expressions/205316#20531613Answer by __ for How to master Regular Expressions?__2008-10-15T16:05:45Z2008-10-15T16:05:45Z<p>Here are some good resources:</p>
<p><a href="http://regexlib.com/" rel="nofollow">http://regexlib.com/</a></p>
<p><a href="http://www.regular-expressions.info/" rel="nofollow">http://www.regular-expressions.info/</a></p>
http://stackoverflow.com/questions/173209/how-do-i-connect-to-an-mdf-microsoft-sql-server-database-file-in-a-simple-web1How do I connect to an .mdf (Microsoft SQL Server Database File) in a simple web project?__2008-10-06T04:32:06Z2008-10-07T19:56:58Z
<p>Specifically, in VS 2008, I want to connect to a data source that you can have by right-clicking on the automatically-generated App_Data folder (an .mdf "database"). Seems easy, and it is once you know how.</p>
<p>I just figured out how to do this. I'll post my answer below, which will include the one thing no tutorial on MSDN included that happens to be essential, which is, what if there is no Data menu?.</p>
http://stackoverflow.com/questions/237282/what-is-the-optimal-algorithm-design-for-a-water-saving-urinal/237430#237430Comment by __ on What is the optimal algorithm design for a water-saving urinal?__2008-11-04T15:58:03Z2008-11-04T15:58:03ZAt my high school in days of yore, the urinals flushed once an hour and there were no handles. Fairly startling if you happened to be using it at the time.http://stackoverflow.com/questions/260218/what-are-your-favorite-yak-shaving-euphemisms/260227#260227Comment by __ on What are your favorite "yak shaving" euphemisms?__2008-11-04T00:28:15Z2008-11-04T00:28:15ZEh. it's all good.http://stackoverflow.com/questions/250779/are-regression-tests-the-entire-test-suite-or-a-sample-of-tests/250802#250802Comment by __ on Are regression tests the entire test suite or a sample of tests?__2008-10-30T16:54:54Z2008-10-30T16:54:54Ztloach and Elie are describing the same thing, and I doubt they work at the same company. This describes a model of a first-run of tests, followed by fixes and such, and a final regression test phase before shipping. Using the word "regression" here is perfectly valid.http://stackoverflow.com/questions/250779/are-regression-tests-the-entire-test-suite-or-a-sample-of-tests/250807#250807Comment by __ on Are regression tests the entire test suite or a sample of tests?__2008-10-30T16:52:21Z2008-10-30T16:52:21ZAnd now we get into a semantics argument. It's silly. Elie is exactly right, those tests are considered regression tests where she works, and where I used to work, same thing. Words mean things, and frequently the same word means more than one thing.http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing/235032#235032Comment by __ on Why should unit tests test only one thing?__2008-10-29T15:10:15Z2008-10-29T15:10:15ZThat is me. Not a recent photo by any means, but it's me.http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106273#106273Comment by __ on Why isn't LISP more widely used?__2008-10-27T23:50:54Z2008-10-27T23:50:54ZI'm upvoting it for the same reason, and just to be a dork.http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industryComment by __ on What surprised you the most about the software industry?__2008-10-27T15:27:09Z2008-10-27T15:27:09ZThis is an excellent question, by the way.http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computer/237492#237492Comment by __ on Can I use subversion on my home computer?__2008-10-26T04:56:39Z2008-10-26T04:56:39ZI have the repository on the same hard drive, but I have thrice-daily backups via Mozy. Should I still use a separate hard drive?http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computer/237463#237463Comment by __ on Can I use subversion on my home computer?__2008-10-26T03:28:14Z2008-10-26T03:28:14ZI wasn't able to make this work, but then again, I didn't follow the guide that's linked below. I took a different path. As it works, I think I'll just stick with it. But this is good to know.http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computer/237462#237462Comment by __ on Can I use subversion on my home computer?__2008-10-26T03:23:54Z2008-10-26T03:23:54ZWould you say it's better to take the latter option?http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computer/237466#237466Comment by __ on Can I use subversion on my home computer?__2008-10-26T03:22:16Z2008-10-26T03:22:16ZTortoiseSVN can be the server as well? This I did not know. So I don't need both VisualSVN and TortoiseSVN?http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computerComment by __ on Can I use subversion on my home computer?__2008-10-26T03:19:10Z2008-10-26T03:19:10ZThis is actually very similar to the questions above, except that here I am including some step-by-step instructions. May my betters be merciful accordingly and not close this question.http://stackoverflow.com/questions/237282/what-is-the-optimal-algorithm-design-for-a-water-saving-urinalComment by __ on What is the optimal algorithm design for a water-saving urinal?__2008-10-26T02:50:56Z2008-10-26T02:50:56Z@Peter: How about calling it the "necessary"? That's discreet, right?http://stackoverflow.com/questions/235965/why-is-it-that-people-write-free-software-such-as-openoffice-spybot-etc/235976#235976Comment by __ on Why is it that people write free software, such as openoffice, spybot etc?__2008-10-26T02:21:22Z2008-10-26T02:21:22ZBTW, this is a great answer.http://stackoverflow.com/questions/235965/why-is-it-that-people-write-free-software-such-as-openoffice-spybot-etc/235976#235976Comment by __ on Why is it that people write free software, such as openoffice, spybot etc?__2008-10-26T02:20:20Z2008-10-26T02:20:20ZI've got to say that the ideological side you describe reeks of the same silly "property is theft" kind of ideas that keep me from living in Seattle. I heart capitalism. That said, I do like free stuff. Let the software hippies do their thing, I guess.