2
votes
What real life bad habits has programming given you?
I do binary search on everything, it works quite well though :)
…
-1
votes
What is the cleanest way to write this if..then logic?
The first one. You don't need any else if you are returning a value inside the if statement. So:
if (!String.IsNullOrEmpty(returnUrl))
return Redirect(returnUrl);
return Redirec …
0
votes
What helps to you improve your ability to find a bug?
I'm part of the QA team @ work, and knowing anything about the product and how it is developed, helps a lot in finding bugs, also when I make new QA tools I pass it to our dev team …
