User Robert S. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T16:36:12Zhttp://stackoverflow.com/feeds/user/7565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908603/what-is-the-accepted-pattern-for-wpf-commanding-in-mvvm2What is the accepted pattern for WPF commanding in MVVM?Robert S.2009-12-15T16:23:26Z2009-12-15T16:31:21Z
<p>I'm working on a WPF app and I understand the command pattern pretty well, but I've found that there are several different implementations of the command pattern for MVVM. There's Josh Smith's implementation in his WPF sample app, the <code>DelegateCommand</code> from Prism, and the <code>CommandBindings</code> implementation.</p>
<p>My question is, what is the generally accepted best practice for using commands with MVVM? My application uses Prism so <code>DelegateCommand</code> is available to us.</p>
<p>The devs on my team are arguing about which approach is "best." Some don't like the numerous .cs files generated for each command, others prefer that everything be wired up via <code>CommandBindings</code>. I'm at a loss. Can anyone shed some light?</p>
http://stackoverflow.com/questions/1828906/will-my-object-always-be-there2Will my object always "be there"?Robert S.2009-12-01T21:02:25Z2009-12-01T23:05:58Z
<p>If I have an object stored in memory, and I walk away from my application for an hour, will the object still be there when I get back?</p>
<p>In other words, will the .NET garbage collector throw my object away because it hasn't been used for awhile?</p>
http://stackoverflow.com/questions/1816234/should-i-learn-xml-before-wcf/1816247#18162476Answer by Robert S. for Should I learn XML before WCF?Robert S.2009-11-29T18:10:35Z2009-11-29T18:10:35Z<p>I would suggest learning the bits of XML that you need to know while you learn WCF. For example, a colleague of mine didn't know anything about XML until he needed to know how to use XQuery for a SQL query that returned XML. That project taught him what he needed to know, so he was able to spend more time learning about XQuery with SQL Server instead of the ins and outs of DTD and XSLT.</p>
http://stackoverflow.com/questions/198825/best-way-to-get-rid-of-hungarian-notation2Best way to get rid of hungarian notation?Robert S.2008-10-13T19:59:10Z2009-11-25T15:55:09Z
<p>Let's say you've inherited a C# codebase that uses one class with 200 static methods to provide core functionality (such as database lookups). Of the many nightmares in that class, there's copious use of Hungarian notation (the bad kind).</p>
<p>Would you refactor the variable names to remove the Hungarian notation, or would you leave them alone?</p>
<p>If you chose to change all the variables to remove Hungarian notation, what would be your method?</p>
http://stackoverflow.com/questions/1786848/persisting-data-as-xml-in-a-sql-server-database0Persisting data as XML in a SQL Server database?Robert S.2009-11-23T23:42:51Z2009-11-24T06:21:34Z
<p>I am working on a WPF application for a vertical market. In a discussion today about how to build the data structure to support the selection of a dozen checkboxes and radio buttons, I thought about the possibility of serializing an object to XML and storing that in SQL Server, then deserializing it when the data needs to be displayed.</p>
<p>My question is about storing XML in SQL Server 2008. My colleagues think this approach is a bad idea and put forward the possibility of using a generic list table that stores data in name-value pairs.</p>
<p>What are the pros and cons of storing XML data in SQL Server 2008? Am I out of my mind on this, or am I on to something?</p>
http://stackoverflow.com/questions/184652/what-is-the-best-way-to-handle-change-management4What is the best way to handle change management?Robert S.2008-10-08T20:12:38Z2009-11-08T11:56:14Z
<p>My organization's main project went live on Monday. That was my third day here. Now that I've been here almost a week, I'm tasked with creating a change management plan for the maintenance of the application and preparation for phase 2, which will commence "someday." We're a Microsoft shop but open-minded.</p>
<p>I'm looking for some suggestions on CM techniques and <em>especially tools</em> that will help with this. I'm familiar with ITIL and I've been considering how its concept of CM could apply to this project, but admittedly this one is a lot smaller than I'm used to (< 100 users versus thousands). I'm not exactly sure how, or if, ITIL can be pared down to such a small project. Or maybe I'm thinking too small.</p>
<p>How does your organization manage change at the system level? Does it work for you? How could it be improved?</p>
<p>To further clarify, can anyone recommend a CM process and tool, perhaps from the open source or agile worlds?</p>
http://stackoverflow.com/questions/398037/asp-net-web-site-or-web-application72ASP.NET: Web Site or Web Application?Robert S.2008-12-29T16:24:13Z2009-11-06T04:08:09Z
<p>When I start a new ASP.NET project in Visual Studio 2008, I can either create a new ASP.NET Web Site or an ASP.NET Web Application.</p>
<p>What's the difference between these two project types? Why would I choose one over the other?</p>
<p>If I'm using Visual Studio 2005 instead of Visual Studio 2008, is the answer different?</p>
http://stackoverflow.com/questions/192479/whats-the-coolest-hack-youve-seen-or-done15What's the coolest hack you've seen or done?Robert S.2008-10-10T18:02:54Z2009-10-27T19:12:08Z
<p>As programmers, we've all put together a really cool program or pieced together some hardware in an interesting way to solve a problem. Today I was thinking about those hacks and how some of them are deprecated by modern technology (for example, you no longer need to hack your Tivo to add a network port). In the software world, we take things like drag-and-drop on a web page for granted now, but not too long ago that was a pretty exciting hack as well.</p>
<p>One of the neatest hardware hacks I've seen was done by a former coworker at a telecom company years ago. He had a small portable television in his office and he would watch it all day long while working. To get away with it, he wired a switch to the on/off that was activated via his foot under his desk.</p>
<p>What's the coolest hardware or software hack you've personally seen or done? What hack are you working on right now?</p>
http://stackoverflow.com/questions/1609957/how-can-a-net-program-update-itself/1609973#16099733Answer by Robert S. for How can a .net program update itself?Robert S.2009-10-22T21:10:48Z2009-10-22T21:10:48Z<p>You could use <a href="http://wix.sourceforge.net/" rel="nofollow">WIX</a> or <a href="http://en.wikipedia.org/wiki/ClickOnce" rel="nofollow">ClickOnce</a>. They handle it for you.</p>
http://stackoverflow.com/questions/777641/why-are-all-caps-constant-considered-bad-coding-style/777679#7776792Answer by Robert S. for Why are all-caps constant considered bad coding style?Robert S.2009-04-22T15:04:02Z2009-10-20T17:54:23Z<p>Some people consider ALL CAPS to be "old school". Consider the difference between:</p>
<p><code>const string ErrorMessage = "Some error message.";</code></p>
<p>and</p>
<p><code>const string ERROR_MESSAGE = "Some error message.";</code></p>
<p>Both are completely usable, but the ALL CAPS version is less used by newer developers, such as the ones that started out with .NET.</p>
<p>I consider it a bad coding style if your team is using a different style. Other than that, I don't really care. At least when I see ALL CAPS in some shared code, I can guess that it's a constant.</p>
http://stackoverflow.com/questions/1551948/how-do-i-set-the-theme-for-child-controls-with-infragistics0How do I set the theme for child controls with Infragistics?Robert S.2009-10-11T22:23:24Z2009-10-11T22:44:21Z
<p>I'm using the Infragistics WPF controls in a new project, and I'd like to take advantage of their themes support. I'm able to change the theme of my window (and toolbars) via the OnThemeChanged event, but I can't figure out how to change the theme of child controls (such as the XamDockManager), as they're added at runtime.</p>
<p>I'm new to WPF and Infragistics controls so any clarification is appreciated.</p>
http://stackoverflow.com/questions/1551948/how-do-i-set-the-theme-for-child-controls-with-infragistics/1551995#15519950Answer by Robert S. for How do I set the theme for child controls with Infragistics?Robert S.2009-10-11T22:44:21Z2009-10-11T22:44:21Z<p>I discovered the answer.</p>
<p>You need to set the control's <code>Theme</code> property to <code>Theme.CurrentTheme</code>. This will cause the controls to automatically pick up the new theme via their internal <code>OnThemeChanged</code> events.</p>
<p>This is the code I used, simplified a bit for this answer:</p>
<p><code><igDock:ContentPane xmlns:igTheme="clr-namespace:Infragistics.Windows.Themes;assembly=Infragistics3.Wpf.v9.1"></code></p>
<p><code>// other stuff </code>
...</p>
<p><code><igDock:XamDockManager "Theme="igTheme:ThemeManager.CurrentTheme" /></code>
<code></igDock:ContentPane></code></p>
http://stackoverflow.com/questions/1405551/how-do-i-implement-web-part-functionality-in-wpf1How do I implement web part functionality in WPF?Robert S.2009-09-10T14:17:12Z2009-09-11T03:45:35Z
<p>I'm working on a WPF application that works with several different types of data, and I'd like to implement the UI in a manner similar to SharePoint's implementation of web parts, or perhaps something like Google's gadgets.</p>
<p>Is there a pattern or set of controls I can purchase that will help me implement this? Any pointers/suggestions/websites are appreciated.</p>
http://stackoverflow.com/questions/353605/oxite-what-are-you-going-to-do-with-it4Oxite: What are you going to do with it?Robert S.2008-12-09T17:41:12Z2009-08-12T21:18:38Z
<p>Microsoft released the source for <a href="http://www.codeplex.com/oxite/Release/ProjectReleases.aspx?ReleaseId=20210" rel="nofollow">Oxite</a>, their blogging engine that's intended to help .NET developers learn ASP.NET MVC. They also released the source for the <a href="http://visitmix.com/" rel="nofollow">Mix</a> site, which was built with Oxite.</p>
<p>Microsoft says that developers can build applications with Oxite, since it has a lot of built-in features like trackbacks, pingbacks, and RSS support.</p>
<p>Are you going to use Oxite to learn ASP.NET MVC? Do you think you could do anything useful with it?</p>
http://stackoverflow.com/questions/1261867/why-is-it-convention-to-suffix-event-handlers-with-handler-why-not-prefix-them/1261885#12618852Answer by Robert S. for Why is it convention to suffix event handlers with 'handler'? Why not prefix them with 'handle'?Robert S.2009-08-11T17:38:24Z2009-08-11T17:38:24Z<p>Who knows for sure, but I would guess that since they're called <em>event handlers</em>, following that pattern makes sense.</p>
<p>As in, <code>eventHandler</code>.</p>
http://stackoverflow.com/questions/1249797/sharepoint-deployment-from-one-server-to-another/1249813#12498131Answer by Robert S. for SharePoint Deployment from one server to anotherRobert S.2009-08-08T20:29:07Z2009-08-09T03:24:32Z<p>You can use <code>stsadm</code> to copy the content database from one server to another. This task can definitely be automated with nant (that's what we do).</p>
<p>Using <code>stsadm -o backup</code>, you can create a backup of your content and config databases. Then you restore them with <code>stsadm -o restore</code>. For example:</p>
<p><code>stsadm -o backup -url <a href="http://yoururl" rel="nofollow">http://yoururl</a> -filename prodsite.dat -overwrite</code></p>
<p><code>stsadm -o restore -url <a href="http://newurl" rel="nofollow">http://newurl</a> -filename prodsite.dat -overwrite</code></p>
<p>I <em>highly</em> recommend <a href="http://rads.stackoverflow.com/amzn/click/1584506016" rel="nofollow">SharePoint 2007 Administration</a>. It can be very easy to hose a SharePoint installation if you don't know what you're doing.</p>
http://stackoverflow.com/questions/1229848/exception-management-in-stored-procedures1Exception management in stored procedures?Robert S.2009-08-04T20:47:21Z2009-08-05T20:06:21Z
<p>I inherited an application with a <em>lot</em> of stored procedures, and many of them have exception handling code that inserts a row in an error table and sends a DBMail. We have ELMAH on the ASP.NET side, so I'm wondering if exception management in the stored procs is necessary. But before I rip it out, I want to ensure that I'm not making a grave mistake because of ignorance about a best practice.</p>
<p>Only one application uses the stored procedures.</p>
<p>When would one prefer using exception management in a SQL Server 2005 stored procedure over handling the exception on the ASP.NET side?</p>
http://stackoverflow.com/questions/109215/what-bad-habits-did-you-learn-from-your-first-language/1235190#12351906Answer by Robert S. for What bad habits did you learn from your first language?Robert S.2009-08-05T19:17:18Z2009-08-05T19:17:18Z<p>My first real programming language was Visual Basic 3.0. Sometimes, when I'm creating controls on an ASP.NET page, I default to Hungarian notation for the controls, e.g., <code>btnSubmit</code> or <code>txtUserName</code>.</p>
http://stackoverflow.com/questions/1223117/what-should-go-on-a-resume-for-a-software-developer-still-in-college-looking-for/1223131#12231313Answer by Robert S. for What should go on a resume for a software developer still in college looking for a job after graduation?Robert S.2009-08-03T15:56:17Z2009-08-03T15:56:17Z<p>Check out <a href="http://www.coderscv.com/resume/Ben-Northrop.htm" rel="nofollow">this guy's resume</A> (linked here on SO in the past). It covers the important points on a programmer's resume.</p>
<p>Leave out "interests and hobbies" and any experience that is irrelevant to the job you're looking for.</p>
http://stackoverflow.com/questions/1203035/would-a-stint-in-the-navy-after-graduation-be-career-suicide/1203131#12031310Answer by Robert S. for Would a stint in the navy after graduation be career suicide?Robert S.2009-07-29T21:22:57Z2009-07-29T21:22:57Z<p>When I'm looking at candidates for software development positions, I definitely place value on the ones with military service, especially those who were NCOs or officers, and even moreso if the candidate attended a service academy.</p>
<p>Of course, I work in government, so there ya go.</p>
http://stackoverflow.com/questions/1202231/what-books-should-a-serious-c-programmer-read/1202244#12022444Answer by Robert S. for What books should a serious C++ programmer read?Robert S.2009-07-29T18:43:37Z2009-07-29T18:43:37Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321334876" rel="nofollow">Effective C++</a></p>
http://stackoverflow.com/questions/1196717/implementing-rewrite-for-http-site-nick-http-site-profile-aspxnicknick/1196841#11968410Answer by Robert S. for implementing rewrite for http://site/NICK => http://site/profile.aspx?nick=NICKRobert S.2009-07-28T21:26:46Z2009-07-28T21:26:46Z<p>Scott Guthrie has a <a href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" rel="nofollow">great post</a> about this. If you're running IIS7, it's super easy with the <a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" rel="nofollow">URL Rewrite module</a>.</p>
http://stackoverflow.com/questions/1191639/what-is-the-status-of-coldfusion-today/1196823#11968230Answer by Robert S. for What is the status of ColdFusion today?Robert S.2009-07-28T21:24:06Z2009-07-28T21:24:06Z<p>My impression is that people who already use ColdFusion are still using it, and people who have never used it aren't investing in it. Kind of like Delphi. And COBOL.</p>
http://stackoverflow.com/questions/1196515/where-is-it-possible-to-download-trial-of-microsoft-team-foundation-server-2005/1196522#11965222Answer by Robert S. for Where is it possible to download trial of Microsoft Team Foundation Server 2005?Robert S.2009-07-28T20:25:55Z2009-07-28T20:25:55Z<p>The Visual Studio 2005 TFS trial is available to MSDN Subscribers. I don't believe it is generally available anymore, now that Visual Studio 2008 TFS is out.</p>
http://stackoverflow.com/questions/1194403/what-names-do-you-find-yourself-prepending-appending-to-classes-regularly/1194466#11944660Answer by Robert S. for What names do you find yourself prepending/appending to classes regularly?Robert S.2009-07-28T14:26:36Z2009-07-28T14:26:36Z<p><code>Controller</code> and <code>View</code>.</p>
http://stackoverflow.com/questions/1184879/setting-up-a-sandbox-dev-environment-for-sharepoint/1184979#11849797Answer by Robert S. for Setting up a sandbox dev environment for SharepointRobert S.2009-07-26T16:42:08Z2009-07-26T16:42:08Z<p>This article has everything you need. It covers essential post-installation tasks such as server configuration.</p>
<p><a href="http://www.pptspaces.com/sharepointreporterblog/Lists/Posts/Post.aspx?ID=28" rel="nofollow">How to Create a MOSS 2007 VPC Image: The Whole 9 Yards</a></p>
http://stackoverflow.com/questions/1180121/what-kind-of-applications-should-a-one-man-software-company-create/1180134#11801349Answer by Robert S. for What kind of applications should a one-man software company create?Robert S.2009-07-24T21:05:43Z2009-07-24T21:12:24Z<p>Well, for starters, they could make awesome applications for Mac OS X like <a href="http://www.literatureandlatte.com/scrivener.html" rel="nofollow">Scrivener</a> or <a href="http://www.red-sweater.com/marsedit/" rel="nofollow">MarsEdit</a>, as well as <a href="http://macromates.com/" rel="nofollow">TextMate</a>. If they're inclined toward ASP.NET, they could create <a href="http://www.plentyoffish.com" rel="nofollow">PlentyOfFish</a>. A Windows developer might create <a href="http://en.wikipedia.org/wiki/Homesite" rel="nofollow">HomeSite</a>.</p>
<p>All of those applications were written by individuals. In each case, the developer makes (or made) a living off those apps.</p>
http://stackoverflow.com/questions/1173692/what-is-the-best-api-framework-platform-you-ever-worked-with/1174182#11741824Answer by Robert S. for What is the best API/framework/platform you ever worked with?Robert S.2009-07-23T20:09:32Z2009-07-23T20:09:32Z<p>I'm a big fan of the Cocoa framework for Mac OS X and, of course, Ruby on Rails.</p>
<p>Cocoa is easy to use, supports MVC out of the box, and abstracts Mac OS X while still maintaining the "closeness" to the operating system.</p>
<p>Rails is, well, it's Rails. It does what Rails does best.</p>
http://stackoverflow.com/questions/1167677/how-do-i-show-a-modal-dialog-while-the-databind-occurs1How do I show a modal dialog while the databind occurs?Robert S.2009-07-22T19:33:58Z2009-07-22T20:01:40Z
<p>I have a form with gridview that is bound to a complex stored procedure (financial data). This query takes about 3 minutes to run and load the gridview. The users get impatient and click "Search" repeatedly, which just makes things worse.</p>
<p>As an interim solution, I'd like to show a progress bar, and I found a solution using the ASP.NET AJAX ModalPopupExtender.</p>
<p>This is the code I have for adding the extender to the page:</p>
<pre><code><ajaxToolkit:ModalPopupExtender ID="mdlPopup" runat="server" TargetControlID="Button1"
PopupControlID="pnlPopup" BackgroundCssClass="modalBackground" />
<asp:Panel ID="pnlPopup" runat="server" CssClass="updateProgress" style="display: none">
<div align="center" style="margin-top: 13px;">
<img src="../images/progress.gif" alt="Progress" />
<span class="updateProgressMessage">Loading ...</span>
</div>
</asp:Panel>
</code></pre>
<p>This is the very simple code for the button's click event:</p>
<pre><code>protected void Button1_Click(object sender, EventArgs e)
{
gvInvoice.DataBind();
}
</code></pre>
<p>The problem is, when I click the Search button, the modal dialog pops up but the Databind() method never gets called. I tried using <code>mdlPopup.Show()</code> but that doesn't show the dialog and instead just runs the <code>Databind()</code>.</p>
<p>What am I missing? How do I ensure that the modal dialog appears, the databind runs, and the modal dialog subsequently disappears?</p>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238294#238294173Answer by Robert S. for Worst UI You've Ever UsedRobert S.2008-10-26T17:20:01Z2009-07-11T13:05:14Z<p>I'll second the vote for Lotus Notes, specifically 6.0. I had to use it at a customer site for a month. I can't erase it from my memory. Here are a few reasons why it's so awful:</p>
<ul>
<li>Pressing the Esc key on the main
window exits the application. </li>
<li>The button to send a new email says "New Memo."</li>
<li>There are very, very few keyboard shortcuts. Ctrl-N does not open a new email (er, <em>memo</em>). It does nothing.</li>
<li>Right-clicking a message does nothing. No context menu at all.</li>
<li>Need to set an out of office message? That's cool, but it's only going to send at 2 AM!</li>
<li>In just about every other email client, sender's addresses are the person's name (John Smith) or email address (john@smith.com). In Notes, it's John Smith/Detroit Office/Company Name. And you can't get an Internet email address out of that.</li>
<li>Forget about HTML emails.</li>
<li>Typing
in your password alternates some
strange glyphs with several X's for
each character</li>
<li>To select multiple
emails, you have to place a
checkmark next to each mail, but
there's no column guide for that. Just empty space. </li>
<li>The error messages
were clearly written by non-English
speaking engineers.</li>
<li>Attaching a file
requires navigating menus and dialog
boxes, instead of just dragging the
file to the message.</li>
<li>Everything
opens in a new tab. EVERYTHING.</li>
<li>It's ugly. Just plain ugly. The welcome screen is a hodgepodge of several different user functions with no guidance on what any of them do.</li>
</ul>
<p><img src="http://reviews.cnet.com/sc/20715214-2-300-SS1.gif" alt="alt text" /></p>
<p>So, yeah. I hate Notes.</p>
http://stackoverflow.com/questions/1901729/looking-for-developer-programmer-news-siteComment by Robert S. on looking for developer/programmer news siteRobert S.2009-12-14T15:59:48Z2009-12-14T15:59:48ZCheck out Reddit and Slashdot. Both have software development news.http://stackoverflow.com/questions/1868631/check-if-domain-is-available-for-purchase-c/1868646#1868646Comment by Robert S. on Check if domain is available for purchase - C#Robert S.2009-12-09T01:03:51Z2009-12-09T01:03:51ZYour answer was really more of a comment.http://stackoverflow.com/questions/1816234/should-i-learn-xml-before-wcf/1816247#1816247Comment by Robert S. on Should I learn XML before WCF?Robert S.2009-11-30T03:31:30Z2009-11-30T03:31:30ZYep, you summed it up perfectly.http://stackoverflow.com/questions/1816228/serious-answers-please-how-often-do-people-commit-suicide-and-not-want-to-be-foComment by Robert S. on Serious answers please - how often do people commit suicide and not want to be found?Robert S.2009-11-29T18:05:46Z2009-11-29T18:05:46ZI like the "debugging" tag.http://stackoverflow.com/questions/1786848/persisting-data-as-xml-in-a-sql-server-database/1786872#1786872Comment by Robert S. on Persisting data as XML in a SQL Server database?Robert S.2009-11-24T19:10:54Z2009-11-24T19:10:54ZXML is not a storage medium. Persisting the XML is storing it, ostensibly. XML is a way to describe data.http://stackoverflow.com/questions/1786848/persisting-data-as-xml-in-a-sql-server-database/1786880#1786880Comment by Robert S. on Persisting data as XML in a SQL Server database?Robert S.2009-11-24T19:09:46Z2009-11-24T19:09:46ZYou're making too many assumptions, but thanks for your answer anyway.http://stackoverflow.com/questions/1786848/persisting-data-as-xml-in-a-sql-server-database/1787189#1787189Comment by Robert S. on Persisting data as XML in a SQL Server database?Robert S.2009-11-24T15:38:24Z2009-11-24T15:38:24ZThanks for the well-thought out answer. The performance gains could be the driving factor for going with this solution.http://stackoverflow.com/questions/1786848/persisting-data-as-xml-in-a-sql-server-database/1786880#1786880Comment by Robert S. on Persisting data as XML in a SQL Server database?Robert S.2009-11-24T15:36:46Z2009-11-24T15:36:46ZSaving XML locally is not an option. This is a distributed system. Also, the table would not be single-column with XML in it; the XML would be one column in a table that stores data entered into a form.http://stackoverflow.com/questions/1223117/what-should-go-on-a-resume-for-a-software-developer-still-in-college-looking-for/1223131#1223131Comment by Robert S. on What should go on a resume for a software developer still in college looking for a job after graduation?Robert S.2009-10-23T04:03:39Z2009-10-23T04:03:39ZWorks fine for me.http://stackoverflow.com/questions/483573/what-to-do-with-a-bad-job-reference/1551323#1551323Comment by Robert S. on What to do with a bad job reference? Robert S.2009-10-14T22:56:54Z2009-10-14T22:56:54ZShe probably found this question through Google.http://stackoverflow.com/questions/483573/what-to-do-with-a-bad-job-reference/1551323#1551323Comment by Robert S. on What to do with a bad job reference? Robert S.2009-10-11T18:15:40Z2009-10-11T18:15:40ZWeird, a nursing-related answer.http://stackoverflow.com/questions/1405551/how-do-i-implement-web-part-functionality-in-wpf/1408872#1408872Comment by Robert S. on How do I implement web part functionality in WPF?Robert S.2009-09-11T13:28:51Z2009-09-11T13:28:51ZExcellent! Thanks!http://stackoverflow.com/questions/1334934/arguments-against-zip-files-as-source-control/1335062#1335062Comment by Robert S. on Arguments against zip files as source controlRobert S.2009-08-26T15:26:42Z2009-08-26T15:26:42Z@JohnFX: One thing about playing Devil's advocate is that you're always on the losing side.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238305#238305Comment by Robert S. on Worst UI You've Ever UsedRobert S.2009-08-23T15:51:38Z2009-08-23T15:51:38Z@Sylverdrag: Let us know what UIs you've designed so we can make sure we don't buy those products.http://stackoverflow.com/questions/1289297/sharepoint-developer-pre-screening-testComment by Robert S. on Sharepoint developer pre-screening testRobert S.2009-08-17T17:56:36Z2009-08-17T17:56:36ZThere's already a question that covers this. It's at <a href="http://stackoverflow.com/questions/205893/sharepoint-interview-questions" rel="nofollow" title="sharepoint interview questions">stackoverflow.com/questions/205893/…</a>.