User Don - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T07:55:27Zhttp://stackoverflow.com/feeds/user/6845http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/99569#995694Answer by Don for Favorite Visual Studio keyboard shortcutsDon2008-09-19T04:12:03Z2009-03-11T02:25:16Z<p>By far the most useful (after <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>B</kbd>) are:</p>
<ul>
<li><kbd>Ctrl</kbd>+<kbd>K</kbd><em>,</em> <kbd>C</kbd> - to Comment out selection<br /><br /></li>
<li><kbd>Ctrl</kbd>+<kbd>k</kbd><em>,</em> <kbd>U</kbd> - to Uncomment a selection</li>
</ul>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112472#1124720Answer by Don for Did you ever switch from one programming language to another?Don2008-09-21T23:04:56Z2008-09-21T23:04:56Z<p>In the world of development it's <strong>evolve or die</strong>.. ;)</p>
<p>FWIW:
VB COM -> Delphi -> Java -> C# -> Objective C</p>
http://stackoverflow.com/questions/109620/what-are-the-bigger-hurdles-to-overcome-migrating-from-winforms-to-wpf/109629#1096297Answer by Don for What are the bigger hurdles to overcome migrating from Winforms to WPF?Don2008-09-20T22:32:49Z2008-09-20T22:38:12Z<p>I'm not sure I can give you just one hurdle, because it is a complete departure from WinForms. My suggestion is get Adam Nathan's WPF Unleashed, forget everything you know about building UI's with any previous technology (Winforms, MFC, Java) and begin again at square one. </p>
<p>If you try and do it any other way it will cause utter frustration.</p>
<p>ETA: the reason I say to just start from scratch is because sometimes it's easier to learn new concepts if you go in with a clean slate. In the past, I've discovered that I can be my own worst enemy when it comes to learning something new if I try to carry knowledge from technology to technology (e.g. thinking that doing asmx web services for years precludes me from reading the first couple chapters of a WCF book).</p>
http://stackoverflow.com/questions/109230/what-is-the-best-online-book-service-for-software-development-references/109352#1093520Answer by Don for What is the best online book service for software development references?Don2008-09-20T20:54:36Z2008-09-20T20:54:36Z<p>Safari Books Online.. By far..
<a href="http://techbus.safaribooksonline.com:80/" rel="nofollow">http://techbus.safaribooksonline.com:80/</a></p>
http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without/109214#1092149Answer by Don for What Language Feature Can You Just Not Live Without?Don2008-09-20T20:14:11Z2008-09-20T20:14:11Z<p>Delegates in .NET.. </p>
http://stackoverflow.com/questions/99535/what-tools-do-you-use-for-automated-builds-automated-deployments-why/99604#996041Answer by Don for What tools do you use for Automated Builds / Automated Deployments? Why?Don2008-09-19T04:17:50Z2008-09-19T04:17:50Z<p>For automated builds, I think the best tool going right now is JetBrain's Team City. The free version has all the features you'll need for most 5-10 person teams. Set up is easy, configuring new projects is painless (relatively), and most importantly, it's reliable.</p>
<p>For automated migrations, nothing beats PowerShell.</p>
http://stackoverflow.com/questions/99482/what-is-your-favorite-insert-language-here-conference/99544#995440Answer by Don for What is your favorite (insert language here) conference?Don2008-09-19T04:07:40Z2008-09-19T04:07:40Z<p>I've always considered the PDC (Professional Developers Conference) a necessity for .NET developers. It doesn't happen every year, but when they have one, it's always worth attending.</p>
http://stackoverflow.com/questions/89163/how-to-conduct-a-successful-code-review/89425#894250Answer by Don for How to conduct a successful code review?Don2008-09-18T02:17:53Z2008-09-18T02:17:53Z<p>We've had good luck in the past with doing peer reviews at commit time. It seems to work particularly good on new teams, or when an existing team brings on new members. </p>
<p>Basically the way it works is this. Prior to doing a commit, the developer calls someone else from the team over to his workstation. He/she walks the person through the code, showing the unit tests, how the code works, etc. Once the review is done, the reviewer "signs" the change by putting their name as a commit comment.</p>
<p>If there is ever a problem with the build both are held accountable. Most teams, once doing this for a while tend to relax a bit and only do reviewed commits when checking in complex changes.</p>
http://stackoverflow.com/questions/79594/were-manually-mapping-our-internal-data-elements-to-external-vendors-xml-schema/79621#796211Answer by Don for We're manually mapping our internal data elements to external vendors' xml schema. there's gotta be a better way...Don2008-09-17T03:23:04Z2008-09-17T03:23:04Z<p>ya, I think you're heading down the right path with MapForce. If you don't want to write code to preform the actual transformation, MapForce can do that for you also. THis may be better long term b/c it's less code to maintain.</p>
<p>Steer clear of more expensive options (e.g. BizTalk) unless you really need to B2B integration and orchestration.</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/79145#791453Answer by Don for What development book made the most impact on you as a developer?Don2008-09-17T01:59:42Z2008-09-17T01:59:42Z<p>Code by Charles Petzold. I don't have a traditional CS background, so its a great book for helping people like me understand the machine and what goes on under all those layers of abstraction.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78835#7883557Answer by Don for What do you use to keep notes as a developer?Don2008-09-17T01:08:26Z2008-09-17T01:51:51Z<p>FWIW, I'm really digging Evernote right now. The searching works great making it really easy to find code snippets. The tagging is nice also. Honestly, best feature by far is having a Mac, Windows, and Web client that auto syncs. Your notes/snippets are available anywhere..</p>
<p>oh.. and it's free..</p>