User flipdoubt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:49:06Zhttp://stackoverflow.com/feeds/user/470http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job82How to help a struggling newbie do a better job?flipdoubt2009-11-30T16:23:01Z2009-12-03T18:05:08Z
<p>I have been the only developer and the de-facto "senior developer" on my company's flagship product for a while (a .NET WinForms app, but that is not related). Just recently, they brought in a "newbie" developer with a fresh computer science degree. No experience with source control, unit testing, software maintenance, etc. </p>
<p>I recently assigned him a small chunk of work and made myself fully-available for assistance, only to find his output lacking in a big way, both in terms of speed and quality. I tried not to be too heavy-handed, so the only upfront guidance I gave him is a wiki article describing the task that I update (but he has not), several code samples on new technologies (such as IPC), and I decomposed the tasks into several FogBugz cases (to which he provided no original estimates, actual time, or commentary until I told him what I would put). He rarely asked questions and, when he did, he seemed to follow my suggestions as though they were requirements, often without understanding them and even when they were wrong.</p>
<p>So ... I fully sympathize with his situation where you don't know what to do and are afraid to ask questions. I know it is my responsibility to do a better job, but no one gave me any guidance so I have no experience with what a better job looks like. Luckily, he is on vacation for a week, so I have some time to think about how to improve the process. Here are some of the items that occur to me, but I am open to suggestions and criticism:</p>
<ol>
<li>Ask what part of the last iteration was most difficult. Ask what part took much more time than he expected.</li>
<li>Do some pair programming. I already suggested this and he seemed open to the idea, but each time we started I tended to take over because he wasn't typing fast enough. Something I have to work on. </li>
<li>Have a code review before checking the work in. (We did not this time because of his vacation.) The code review would highlight the following items.</li>
<li>Require comments on all public members. (None of his code is commented.)</li>
<li>Require him to remove all unused code. (A cursory review shows he did not.)</li>
<li>Require him to commit code to each FogBugz Case as he completes it and/or revise cases where they differ from what he discovers while coding.</li>
<li>Require him to enter original estimates into FogBugz and toggle the "working on" flag to keep him on task.</li>
</ol>
<p>While the code review stuff is specific and technical, I am more concerned with his ability to be a self-starter and to ask-for/get guidance where he needs it. I don't think of the FogBugz requirements (6 and 7) as hard rules, but it seems like he needs to follow them to keep him on track.</p>
<p>Also, I know I need to improve my mentoring/training skills as much as he needs to improve his coding skills. Any suggestions on where to start when the "senior developer" has not participated in a formal code review or made it through a pair programming session without taking over?</p>
<p>My impulse is to update the stuff he already checked in, but I know I should save that for a code review. I wanted him to check the work in so I could begin coding the part that uses what he checks in. So should I use what he checked in even though I don't think it is satisfactory?</p>
http://stackoverflow.com/questions/1807298/configuring-automapper-in-bootstrapper-violates-open-closed-principle/1809263#18092631Answer by flipdoubt for Configuring Automapper in Bootstrapper violates Open-Closed Principle?flipdoubt2009-11-27T15:05:28Z2009-11-27T15:10:28Z<p>Omu, I wrestle with similar questions when it comes to bootstrapping an IoC container in my app's startup routine. For IoC, the guidance I've been given points to the advantage of centralizing your configuration rather than sprinkling it all over your app as you add changes. For configuring AutoMapper, I think the advantage of centralization is much less important. If you can get your AutoMapper container into your IoC container or Service Locator, I agree with Ruben Bartelink's suggestion of configuring the mappings once per assembly or in static constructors or something decentralized. </p>
<p>Basically, I see it as a matter of deciding whether you want to centralize the bootstrapping or decentralize it. If you are that concerned about the Open/Closed Principle on your startup routine, go with decentralizing it. But your adherence to OCP can be dialed down in exchange for the value of all your bootstrapping done in one place. Another option would be to have the bootstrapper scan certain assemblies for registries, assuming AutoMapper has such a concept.</p>
http://stackoverflow.com/questions/1655414/how-do-eventargs-cancel-work-in-the-formclosing-event/1657339#16573393Answer by flipdoubt for How do EventArgs Cancel work in the FormClosing Event?flipdoubt2009-11-01T14:42:56Z2009-11-02T12:21:01Z<p>I think the original poster might be wondering what happens when some subscribers set <code>Cancel = false</code> and some subscribers set <code>Cancel = true</code>. If this is the case, then the question "when does the form process this" takes on more importance.</p>
<p>At first I wondered whether the setter was implemented to OR or AND each value. Using <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to inspect the setter for <code>CancelEventArgs.Cancel</code> shows it simply sets a private field:</p>
<pre><code>public bool Cancel
{
get{ return this.cancel; }
set{ this.cancel = value; }
}
</code></pre>
<p>So I figured peeking into 'Form.OnClosing(CancelEventArgs args)' would show when the value is checked, like the previous answers, but that is not what Reflector shows:</p>
<pre><code>[EditorBrowsable(EditorBrowsableState.Advanced)]
protected virtual void OnClosing(CancelEventArgs e)
{
CancelEventHandler handler = (CancelEventHandler) base.Events[EVENT_CLOSING];
if (handler != null)
{
handler(this, e);
}
}
</code></pre>
<p>So I enabled source debugging and found getting the <code>EVENT_CLOSING</code> delegate from the <code>Events</code> collection drops deep down into the windowing API such that <code>handler</code> in the first line of <code>OnClosing</code> is <code>null</code> when the form sets <code>Cancel = true</code>, meaning the managed code never really tests whether <code>CancelEventArgs.Cancel == true</code>. If you want the ugly guts of what happens inside the EventHandlerList, you get this:</p>
<pre><code>get {
ListEntry e = null;
if (parent == null || parent.CanRaiseEventsInternal)
{
e = Find(key);
}
if (e != null) {
return e.handler;
}
else {
return null;
}
}
</code></pre>
<p>While debugging, <code>parent.CanRaiseEventsInternal</code> is false if the closing was cancelled.</p>
<p>So ... the actual implementation of canceling the closing of a form is more complicated than the previous answers, but their suggestions for how to cancel your own events correctly show how to do it in managed code. Call the CancelEventHandler and then test the value of <code>CancelEventArgs.Cancel</code> after all the subscribers have had a chance to set the value to <code>true</code>. This still does not answer what happens if some subscribers set <code>Cancel = false</code> and some set <code>Cancel = true</code>. Does anyone know? Would something like the following be required?</p>
<pre><code>public bool Cancel
{
get{ return this.cancel; }
set{ this.cancel = this.cancel || value; }
}
</code></pre>
http://stackoverflow.com/questions/1650078/how-to-write-cleaner-code-while-instantiating-an-object-with-enumerations-without/1650169#16501692Answer by flipdoubt for How to write cleaner code while instantiating an object with enumerations without using keyword?flipdoubt2009-10-30T14:35:04Z2009-10-30T17:28:52Z<ol>
<li>Welcome to SO, CrimsonX.</li>
<li>C#'s "using" statement is not analogous to VB's "With". The "using" statement sets the scope of the object before it is disposed, but it does not initialize object properties.</li>
<li>You might consider creating static factory methods that create instances using common options, such as "Schedule.NewScheduleSevenDaysAWeek()" and "Schedule.NewScheduleWeekdaysOnly()".</li>
<li>It looks to me like you are simply trying to save keystrokes. If that is the case, Johanness' suggestion of moving the enums out of the class will help. In general, however, I think you will find C# more verbose than VB. For example, <a href="http://www.danielmoth.com/Blog/2007/02/object-initializers-in-c-30-and-vb9.html" rel="nofollow">C#'s object initializer</a> is intended to be a cleaner way of instantiating objects and setting properties, but it is not shorter. Cleaner != shorter.</li>
</ol>
http://stackoverflow.com/questions/1608757/open-close-connection-to-unc-without-credentials1Open/close connection to UNC without credentialsflipdoubt2009-10-22T17:32:00Z2009-10-25T01:26:34Z
<p>I have a .NET client app that intermittently loses connection to a UNC share where the user is either on a domain or has a local account with the same credentials on the server. Both SO and Google have plenty of examples using LogonUser and WNetAddConnection via P-Invoke, but both require the user's password. All our app needs to do is explicitly open a connection to a UNC, copy a file, and explicitly close the connection without providing credentials -- in other words, using the current credentials. Can anyone point me in the right direction on how to do that in C#?</p>
http://stackoverflow.com/questions/1600221/how-do-mvc-components-fit-together/1600253#16002530Answer by flipdoubt for How do MVC components fit together?flipdoubt2009-10-21T11:31:20Z2009-10-21T11:36:25Z<p>IMHO, option 2 (<strong>the Controller passes the model to the view</strong>) best maintains the proper decoupling and separation of concerns. If the view needs multiple models, the model passed in should be a composite data type that contains each model needed by the view. "Each model needed by the view" is usually different from your entity model in that it is flattened and streamlined for display, often called a ViewModel.</p>
<p>Option 1 (<strong>the Controller retrives data from the Model and passes it to the View</strong>) is quite similar to option 2, but I contend option 2 is preferable because it places less logic in the controller. In MVC, as much logic as possible should be in the model, leaving your controllers and views as simple as possible.</p>
http://stackoverflow.com/questions/582988/can-you-explain-why-directoryinfo-getfiles-produces-this-ioexception1Can you explain why DirectoryInfo.GetFiles produces this IOException?flipdoubt2009-02-24T18:35:39Z2009-10-07T08:59:03Z
<p>I have a WinForms client-server app running on a Novell network that produces the following error when connecting to the lone Windows 2003 Server on the network:</p>
<pre><code>TYPE: System.IO.IOException
MSG: Logon failure: unknown user name or bad password.
SOURCE: mscorlib
SITE: WinIOError
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalGetFileDirectoryNames(String path,
String userPathOriginal, String searchPattern, Boolean includeFiles,
Boolean includeDirs, SearchOption searchOption)
at System.IO.DirectoryInfo.GetFiles(String searchPattern,
SearchOption searchOption)
at System.IO.DirectoryInfo.GetFiles(String searchPattern)
at Ceoimage.Basecamp.DocumentServers.ClientAccessServer.SendQueuedFiles(
Int32 queueId, Int32 userId, IDocQueueFile[] queueFiles)
at Ceoimage.Basecamp.ScanDocuments.DataModule.CommitDocumentToQueue(
QueuedDocumentModelWithCollections doc, IDocQueueFile[] files)
</code></pre>
<p>The customer's network admin manages the Windows Server connection by manually synchronizing the workstation username and password with a local user on the server. The odd thing about the error is that the user can write to the server both before and after the error, all without explicitly logging on.</p>
<p>Can you explain why the error occurs and offer a solution?</p>
http://stackoverflow.com/questions/234994/what-is-the-best-way-to-compare-net-performance-vs-vb-6-performance-at-a-custom1What is the best way to compare .NET performance vs. VB 6 performance at a customer site?flipdoubt2008-10-24T19:38:40Z2009-09-23T15:51:00Z
<p>Two questions:</p>
<ol>
<li>Can someone point me to unbiased data that compares .NET performance to VB 6 performance? I have searched but it is surprisingly difficult to find.</li>
<li>What is the best way to compare .NET performance to VB 6 performance as an app behaves at a customer's site?</li>
</ol>
<p>We have a WindowsForms, client-server app (written for 2.0, upgrading to 3.5 SP 1 soon) about which certain customers complain of "slow performance" as compared to the previous VB 6 version. I know, "slow performance" is very vague and general, but is it true to assume .NET code might be slower than VB 6 code because .NET runs in a VM? I wrote 100% of the code in C#, so it was not ported by some third person or wizard.</p>
<p>Not all customers make this complaint, so we suspect something environmental. Is our only option to measure performance at a customer site? Some of our customers use SQL Server 2005 on Windows Server 2003 on a Novell network. Would they see dramatically different data access performance than a similar machine on a Windows network?</p>
http://stackoverflow.com/questions/1235071/why-wont-installshield-2009-detect-net-3-5-sp-10Why won't InstallShield 2009 detect .NET 3.5 SP 1?flipdoubt2009-08-05T18:52:42Z2009-09-23T10:07:57Z
<p>On Windows Server 2003 Standard Edition, a customer installed .NET 3.5 SP 1. Whenever we run our installer built with InstallShield 2009, the installer complains that the target machine does not have the .NET 3.5 SP 1 dependency. The customer has uninstalled and reinstalled .NET 3.5 SP 1 a couple of times, rebooting each time, but our installer never detects it. The installer, by the way, works fine everywhere else.</p>
<p>To test, we successfully ran one of our apps built with .NET 3.5 SP 1 (it uses LINQ) but does not have an installer. No problems there, so we are confident the correct Framework is installed. We suspect there is something in this machine's registry that just won't satisfy InstallShield 2009's dependency logic. What do we do next?</p>
http://stackoverflow.com/questions/1268525/what-are-the-finalizer-queue-and-controlthreadmethodentry1What are the Finalizer Queue and Control+ThreadMethodEntry?flipdoubt2009-08-12T20:25:42Z2009-08-17T13:01:12Z
<p>I have a WindowsForms app that appears to leak memory, so I used Redgate's ANTS Memory Profiler to look at the objects I suspect and find that they are only held by objects already on the <strong>Finalizer Queue</strong>. Great, exactly what is a the Finalizer Queue? Can you point me to the best definition? Can you share any anecdotal advice?</p>
<p>Also, all the root GC objects on the Finalizer Queue are instances of <strong>System.Windows.Forms.Control+ThreadMethodEntry</strong> objects named "caller". I see that it is involved in multi-thread UI interaction, but I do not know much beyond that. Forgive my apparent laziness and admitted ignorance, but these resources are all buried within a vendor's component. I am talking to the vendor about these issues, but I need some direction to get me up to speed on the conversation. Can you point me to the most useful definition of ThreadMethodEntry too? Any anecdotal advice?</p>
<p>Also, should I even be concerned about these objects on the finalizer queue?</p>
<p><strong>Update:</strong> This <a href="http://www.simple-talk.com/dotnet/.net-framework/understanding-garbage-collection-in-.net/" rel="nofollow">Red Gate article</a> was helpful.</p>
http://stackoverflow.com/questions/1070255/in-c-winforms-how-to-synchronize-a-textbox-and-datagridview-so-changes-in-one/1070318#10703181Answer by flipdoubt for In C# (winforms) how to synchronize a textbox and datagridview so changes in one show up in the otherflipdoubt2009-07-01T17:16:31Z2009-07-01T17:16:31Z<p>I suggest you use a <code>BindingList<T></code> rather than a <code>DataTable</code>, where <code>T</code> is your "business object" that represents each record displayed in the grid. Then your business object should implement <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx" rel="nofollow"><code>INotifyPropertyChanged</code></a> and fire <code>NotifyPropertyChanged</code> whenever the value in the text box changes, either by binding the desired property to <code>TextBox.Text</code> or updating the appropriate property of the selected business object whenever <code>TextBox.TextChanged</code> fires. </p>
http://stackoverflow.com/questions/474498/sql-smo-how-to-get-path-of-database-physical-file-name/1001951#10019510Answer by flipdoubt for Sql SMO: How to get path of database physical file name?flipdoubt2009-06-16T14:44:46Z2009-06-16T14:44:46Z<p>This is how I do it, prepared for multiple file names. Access database.LogFiles to get the same list of log file names:</p>
<pre><code>private static IList<string> _GetAttachedFileNames(Database database)
{
var fileNames = new List<string>();
foreach (FileGroup group in database.FileGroups)
foreach (DataFile file in group.Files)
fileNames.Add(file.FileName);
return fileNames;
}
</code></pre>
http://stackoverflow.com/questions/993422/c-win7-unauthorizedaccessexception/993481#9934811Answer by flipdoubt for c# win7: unauthorizedaccessexceptionflipdoubt2009-06-14T18:55:57Z2009-06-14T18:55:57Z<p>To copy files into Program Files or any privileged location, the process must be run by an elevated administrator. Since you are talking about "copying" files and an "OpenFileDialog", it sounds like you are running a .NET process to do the copying, rather than a Windows Installer. Usually, this should be done by an installer rather than your app. Your app needs to set requireAdministrator in its manifest or elevate just for that particular action. For more info, you should read up on UAC. As a start, I suggest you read <a href="http://www.codeproject.com/KB/vista-security/UAC%5F%5FThe%5FDefinitive%5FGuide.aspx" rel="nofollow">UAC: The Definitive Guide</a> on CodePlex. </p>
http://stackoverflow.com/questions/961719/change-windows-service-user-programmatically/961756#9617560Answer by flipdoubt for Change Windows Service user programmaticallyflipdoubt2009-06-07T11:38:16Z2009-06-07T11:38:16Z<p>Do you notice any patterns amongst those failures? Same machine? Same OS? Same user? Does the user have "<a href="http://technet.microsoft.com/en-us/library/cc739424.aspx" rel="nofollow">logon as service</a>" or "logon interactively" rights? Personally, I am not familiar with this method of specifying the user for a service. I would have thought you would have to restart the service, but I guess not if it works 90% of the time.</p>
http://stackoverflow.com/questions/940529/how-can-i-demand-access-to-a-windows-share-in-a-net-thick-client-app0How can I demand access to a Windows share in a .NET thick-client app?flipdoubt2009-06-02T16:34:15Z2009-06-02T21:17:03Z
<p>We have a thick-client that needs to access resources on a share where a client may not be logged on. The client might be on a Windows domain or it could be a mixed environment without a domain, so the user would have to log on to the server locally. In the past, one work around was to create a shortcut on the user's desktop to the share, which opens Windows Explorer, which opens a password prompt that grants or denies access to the share. How can I get the user to signon to the share without relying on Windows Explorer? What does Windows Explorer do that I can have my app do to demand access to the share?</p>
<p>I have read <a href="http://stackoverflow.com/questions/29346/access-files-from-network-share-in-c-web-app">Access files from network share in c# web app</a>, but I am doing this in a WinForms app and want it to be interactive. I have also read <a href="http://alt.pluralsight.com/wiki/default.aspx/Keith.GuideBook/HowToPromptForAPassword.html" rel="nofollow">How to prompt for a Password</a>, but that code just prompts for strings from the user rather than invoking the UI that demands and grants access to the share. I would rather not have my app know the user's password as much as trigger the OS to demand access for the network resource.</p>
http://stackoverflow.com/questions/916080/how-to-handle-exception-when-directory-getfiles-throws-an-exception-when-it-fin0How to handle exception when Directory.GetFiles() throws an exception when it finds a file name it does not "like"?flipdoubt2009-05-27T14:39:04Z2009-05-28T22:26:14Z
<p>On a Vista machine with the valid path C:\Users\David, calling Directory.GetFiles(@"C:\Users\David") throws the following ArgumentException when run as the David user, who can view the contents of the directory just fine in Windows Explorer:</p>
<pre><code>System.ArgumentException message: Illegal characters in path.
Argument: ""
Stack trace:
at System.IO.Path.CheckInvalidPathChars(String path)
at System.IO.Path.InternalCombine(String path1, String path2)
at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path, String searchPattern, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path)
at Microsoft.Samples.XFileExplorer.ContentView.CreateContentDataTable(String CurrentFolder) in C:\Users\david\Downloads\MEF Preview 5\MEF Preview 5\Samples\XFileExplorer\XFileExplorer\ContentView.xaml.cs:line 108
</code></pre>
<p>The Vista machine happens to have been accessed by a Mac running MacFuse, so the directory contains a file that looks like it is named "._Icon" but must really contain some illegal characters. I believe this is the source of the error. I am left with the problem of what to do when Directory.GetFiles() throws an exception when it runs across a file name it does not like? Are there any alternate ways of listing a files contents that do not through such exception?</p>
<p>As for this particular file, I suspect the file name must contain some characters not displayed by Windows Explorer or the command-prompt:</p>
<pre><code> C:\Users\david>dir ._Icon
Volume in drive C is Bootcamp
Volume Serial Number is XXXX-XXX
Directory of C:\Users\david
File Not Found
</code></pre>
<p>And finally:</p>
<pre><code> C:\Users\david>dir ._Icon*
Volume in drive C is Bootcamp
Volume Serial Number is XXXX-XXX
Directory of C:\Users\david
05/25/2008 07:40 AM 43,296 ._Icon
1 File(s) 43,296 bytes
0 Dir(s) 58,950,623,232 bytes free
</code></pre>
<p>Looking at the file across SMB, it looks like the file is actually named "._Icon?". Each time I try to remove the file from the Mac, the file seems to immediately reappear.</p>
http://stackoverflow.com/questions/359690/how-can-i-force-the-propertygrid-to-show-a-custom-dialog-for-a-specific-property3How can I force the PropertyGrid to show a custom dialog for a specific property?flipdoubt2008-12-11T15:21:04Z2009-05-26T14:10:57Z
<p>I have a class with a string property, having both a getter and a setter, that is often so long that the PropertyGrid truncates the string value. How can I force the PropertyGrid to show an ellipsis and then launch a dialog that contains a multiline textbox for easy editing of the property? I know I probably have to set some kind of attribute on the property, but what attribute and how? Does my dialog have to implement some special designer interface?</p>
<p><strong>Update:</strong>
<a href="http://stackoverflow.com/questions/130032/multi-line-string-in-a-propertygrid">This</a> is probably the answer to my question, but I could not find it by searching. My question is more general, and its answer can be used to build any type of custom editor.</p>
http://stackoverflow.com/questions/839625/where-does-windows-store-acls-and-do-acls-follow-a-file-from-one-machine-to-anoth2Where does Windows store ACLs and do ACLs follow a file from one machine to another?flipdoubt2009-05-08T12:42:20Z2009-05-08T13:15:08Z
<p>Our app uses a component that requires a license file in the directory with our executable, which happens to be a .NET WinForms app though I think it is immaterial to this question. When installed on some XP Pro machines (just three out of several hundred thus far), the component throws a license exception. So I regenerated the license file and sent it to the component vendor (EMC Captiva), where the vendor claims the error is due to the fact that the "Users" group has no read permissions on the file. The user who encounters the error happens to be a local admin, but that is besides the point as I am still curious about the more general question.</p>
<p>So my question is, are ACLs stored in a file such that they follow the file throughout its life, especially when the license file was generated on my dev machine (machine 1), stored in Subversion (machine 2), checked out of source control by TeamCity (machine 3), packaged into an installer by InstallShield (machine 4), and finally deployed to the customer's machine (machine 5) where it was installed by an Administrator? What about after I generate the file on my dev machine (machine 1), upload it to the component vendor via their support site (machine 2), and the support person downloads it to their machine for inspection (machine 3)?</p>
<p>I do not know this for sure (which is why I am asking it here), but I assumed each Windows machine stores ACLs in some central directory/list/table managed by NTFS rather than stored within the file. What happens to the original file's ACL when it is copied from one machine to another, stored in Subversion, packaged into an MSI, etc? Can someone point me to some good references where I can read up on this?</p>
http://stackoverflow.com/questions/789036/why-wont-my-winforms-app-compiled-for-x86-exit-on-an-x64-machine-when-runnin0Why won't my WinForms app compiled for "x86" exit on an "x64" machine when running outside "C:\Program Files (x86)"?flipdoubt2009-04-25T14:32:03Z2009-04-25T17:23:07Z
<p>We have a WinForms app that runs fine on x86, but has many third-party components that make win32 calls. To get the apps to run on x64, I now compile for the x86 platform. Our habit has been to install our thick-client outside the system partition on servers, so we installed in "F:\Program Files (x86)" yesterday on a Win2003 x64 server. When run from that directory, the processes refused to exit. I tried killing them in Task Manager, taskkill, and Process Explorer, but nothing short of rebooting the server would kill those processes. When I uninstalled and reinstalled in C:\Program Files (x86), the processes exit fine.</p>
<p>Does the installation location really matter when running WinForms apps compiled for x86 on an x64 machine?</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29285#2928514Answer by flipdoubt for What is the single most influential book every programmer should read?flipdoubt2008-08-27T01:04:36Z2009-04-25T16:59:13Z<p><a href="http://amazon.com/o/ASIN/0135974445" rel="nofollow">Agile Software Development, Principles, Patterns, and Practices</a> by Robert C. Martin</p>
<p><img src="http://ecx.images-amazon.com/images/I/519J3P8ANML.%5FSL500%5FAA240%5F.jpg" alt="cover image" /></p>
http://stackoverflow.com/questions/760434/how-do-you-come-up-with-your-apps-minimum-hardware-specs9How do you come up with your app's minimum hardware specs?flipdoubt2009-04-17T13:33:20Z2009-04-17T13:43:30Z
<p>We develop an enterprise application for which we need to document the minimum hardware requirements for the following target deployments:</p>
<ol>
<li>Thick-client</li>
<li>Database/application server (where we run several server side processes that need access to the database and a file server, which is often the same machine)</li>
<li>Web server</li>
</ol>
<p>Some of the ideas we have tossed around include basing the requirements on our test environments, basing the requirements on the highest specs of each target's components, and basing specs on currently available hardware.</p>
<p>How do you come up with your hardware specs?</p>
http://stackoverflow.com/questions/753120/how-can-my-c-app-test-whether-the-user-has-read-access-to-a-network-share1How can my C# app test whether the user has "Read" access to a network share?flipdoubt2009-04-15T18:44:14Z2009-04-15T19:20:57Z
<p>I work on a thick-client app that often runs into "issues" accessing network shares. Before doing any IO with the server, my app tests whether the share (usually of the form \\server\share$) exists. This works fine for detecting those scenarios in which the client has lost its connection to the server, but there are still those odd scenarios where the hidden share exists but the user does not have the rights to read from the within the share. Can someone share (no pun intended) the C# code required to test whether the current user can read files on a share? Should I be querying the share's ACL or the files within the share? What if the share is empty? What if the user is a local non-admin in a mixed environment (XP Pro workstation, Windows 2003 server without a domain on a Novell network)? </p>
http://stackoverflow.com/questions/735372/how-can-i-use-spxmlpreparedocument-on-result-of-ntext-query-in-sql-20002How can I use sp_xml_preparedocument on result of NTEXT query in SQL 2000?flipdoubt2009-04-09T18:23:23Z2009-04-09T21:22:12Z
<p>I know NTEXT is going away and that there are larger best-practices issues here (like storing XML in an NTEXT column), but I have a table containing XML from which I need to pluck a attribute value. This should be easy to do using sp_xml_preparedocument but is made more tricky by the fact that you cannot declare a local variable of type NTEXT and I cannot figure out how to use an expression to specify the XML text passed to the function. I can do it like this in SQL 2005 because of the XML or VARCHAR(MAX) datatypes, but what can I do for SQL 2000?</p>
<pre><code>DECLARE @XmlHandle int
DECLARE @ProfileXml xml
SELECT @ProfileXml = ProfileXml FROM ImportProfile WHERE ProfileId = 1
EXEC sp_xml_preparedocument @XmlHandle output, @ProfileXml
-- Pluck the Folder TemplateId out of the FldTemplateId XML attribute.
SELECT FolderTemplateId
FROM OPENXML( @XmlHandle, '/ImportProfile', 1)
WITH(
FolderTemplateId int '@FldTemplateId' )
EXEC sp_xml_removedocument @XmlHandle
</code></pre>
<p>The only thing I can come up with for SQL 2000 is to use varchar(8000). Is there really no way to use an expression like the following?</p>
<pre><code>EXEC sp_xml_preparedocument @XmlHandle output, (SELECT ProfileXml FROM ImportProfile WHERE ProfileId = 1)
</code></pre>
http://stackoverflow.com/questions/715652/why-does-nant-driven-msbuild-compile-to-different-directory-on-different-machines0Why does Nant driven MsBuild compile to different directory on different machines?flipdoubt2009-04-03T20:41:20Z2009-04-05T10:25:41Z
<p>I wrote a Nant script that executes MSBUILD.exe to compile a project on my dev machine. On my dev machine, the projects builds its output to bin\x86\Release and my Nant script zips up the contents of that directory. I then commit everything to SVN and let TeamCity run the Nant script that executes MSBUILD.exe to compile the project and zip the output, but the output is created in bin\Release and the zip file is empty because it looks in bin\x86\Release. Why does this happen?</p>
<p>When I make changes to the configuration and platform in VS.NET 2008, I do not see the project file light up as being changed. Are these settings stored in the project file, solution file, or user configuration file and therefore not carried over to the build server?</p>
http://stackoverflow.com/questions/712530/where-can-i-find-a-nice-net-tab-control-for-free/713678#7136781Answer by flipdoubt for Where can I find a nice .NET Tab Control for free?flipdoubt2009-04-03T12:13:33Z2009-04-03T12:13:33Z<p>My first suggestion would be to talk to Phil at ComponentFactory. I find him to be a very reasonable fellow. Maybe he can give you a special deal or make a design suggestion on how to customize the existing tab control.</p>
<p>But your's is more of a design/subjective question that, I think, would benefit from a screenshot to better communicate the design challenge you need to "integrate better". Saying "the default one doesn't quite fit" is pretty vague.</p>
<p>After that, people will have a better starting point for making suggestions. In the mean time, I would look at <a href="http://windowsclient.net/downloads/folders/controlgallery/default.aspx" rel="nofollow">the WindowsClient.NET control gallery</a>.</p>
http://stackoverflow.com/questions/676003/sqlcommand-executescalar-why-it-throws-a-system-nullreferenceexception/676030#6760301Answer by flipdoubt for SQLCommand.ExecuteScalar() - why it throws a System.NullReferenceException?flipdoubt2009-03-24T03:00:16Z2009-03-24T03:00:16Z<p>Is it possible that the scalar is null if the supplied credentials are not found in the database?</p>
http://stackoverflow.com/questions/578752/why-does-text-from-assembly-getmanifestresourcestream-start-with-three-junk-cha2Why does text from Assembly.GetManifestResourceStream() start with three junk characters?flipdoubt2009-02-23T18:36:02Z2009-03-22T18:28:53Z
<p>I have a SQL file added to my VS.NET 2008 project as an embedded resource. Whenever I use the following code to read the file's content, the string returned always starts with three junk characters and then the text I expect. I assume this has something to do with the Encoding.Default I am using, but that is just a guess. Why does this text keep showing up? Should I just trim off the first three characters or is there a more informed approach?</p>
<pre><code>public string GetUpdateRestoreSchemaScript()
{
var type = GetType();
var a = Assembly.GetAssembly(type);
var script = "UpdateRestoreSchema.sql";
var resourceName = String.Concat(type.Namespace, ".", script);
using(Stream stream = a.GetManifestResourceStream(resourceName))
{
byte[] buffer = new byte[stream.Length];
stream.Read(buffer, 0, buffer.Length);
// UPDATE: Should be Encoding.UTF8
return Encoding.Default.GetString(buffer);
}
}
</code></pre>
<p><strong>Update:</strong>
I now know that my code works as expected if I simply change the last line to return a UTF-8 encoded string. It will always be true for this embedded file, but will it always be true? Is there a way to test any buffer to determine its encoding?</p>
http://stackoverflow.com/questions/643211/how-to-diagnose-argumentoutofrangeexception-on-sqldbtype0How to diagnose ArgumentOutOfRangeException on SqlDbType?flipdoubt2009-03-13T15:22:51Z2009-03-14T11:57:42Z
<p>We have some customers using our .NET 2.0 thick-client app that experience strange, intermittent errors reading data from a SQL 2000 SP4 Server, where the actions succeeded just moments earlier. We have some customers using SQL 2000 (and many using 2005) where these errors do not occur.</p>
<p>One thing I notice is that the app in our testing environments references System.Data 2.0.50727.<strong>3053</strong>; whereas the app references 2.0.50727.<strong>1433</strong> on the customer's systems. What is the difference between these two revisions and could it be related to the errors described below?</p>
<p>Here is an example of the error's stack trace where the enumeration value is 8, but I have plenty more instances where the "out of bounds" enumeration value is 4 or 14 with the same exact stack trace. Are the enumeration values findable sometimes but not at other times? What about when the same portion of the app runs without errors?</p>
<pre><code>TYPE: System.ArgumentOutOfRangeException
MSG: The SqlDbType enumeration value, 8, is invalid.
Parameter name: SqlDbType
SOURCE: System.Data
SITE: GetSqlDataType
at System.Data.SqlClient.MetaType.GetSqlDataType(Int32 tdsType, UInt32 userType, Int32 length)
at System.Data.SqlClient.TdsParser.CommonProcessMetaData(TdsParserStateObject stateObj, _SqlMetaData col)
at System.Data.SqlClient.TdsParser.ProcessMetaData(Int32 cColumns, TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
at System.Data.SqlClient.SqlDataReader.NextResult()
at Ceoimage.Basecamp.Data.Document._GetDocumentModelWithCollections(IDataReader rdr)
</code></pre>
<p><strong>Update:</strong> I just downloaded System.Data from one of the clients' workstations. They had two versions in the GAC, one in the GAC directory and one in the GAC_32 directory. In GAC, the version number is 1.14322.2365. In GAC_32, the version number is 2.0.50727.1433 as described above. In all three versions, however, the SqlDbType enumerable maps the same int values to the same types for those in the error messages:</p>
<pre><code>DateTime = 4
Int = 8
UniqueIdentifier = 14
</code></pre>
<p>I am afraid the version might be a red herring: if the problem has to do with framework versions, shouldn't the problem happen 100% of the time rather than being transient? </p>
http://stackoverflow.com/questions/194616/how-to-tell-if-net-app-was-compiled-in-debug-or-release-mode/638241#6382411Answer by flipdoubt for How to tell if .net app was compiled in DEBUG or RELEASE mode?flipdoubt2009-03-12T11:34:11Z2009-03-12T11:34:11Z<p>How about using Jeff Key's <a href="http://www.sliver.com/dotnet/IsDebug/" rel="nofollow">IsDebug</a> utility? It is a little dated, but since you have Reflector you can decompile it and recompile it in any version of the framework. I did.</p>
http://stackoverflow.com/questions/638053/how-to-increment-visual-studio-build-number-using-c/638100#6381002Answer by flipdoubt for How to Increment Visual Studio build number using C++?flipdoubt2009-03-12T10:53:37Z2009-03-12T11:20:23Z<p>The <a href="http://www.codeproject.com/KB/macros/versioningcontrolledbuild.aspx" rel="nofollow">Versioning Controlled Build</a> add-in seems like it would do the job.</p>
<p><strong>Update:</strong> Your question specifically mentions using Visual Studio to increment the version, but there is nothing automated about that. Have you considered using Nant and a CI server? That way, it is easy to inject the SVN revision number into AssemblyInfo.cs equivalent for C++. Automatically, on the build server.</p>
http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1821915#1821915Comment by flipdoubt on How to help a struggling newbie do a better job?flipdoubt2009-11-30T21:39:51Z2009-11-30T21:39:51ZI would probably have to remove "underperforming" from the title, eh?http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1821164#1821164Comment by flipdoubt on How to help a struggling newbie do a better job?flipdoubt2009-11-30T17:33:28Z2009-11-30T17:33:28ZI like the motivated part, but quizzes are not really my style. Did you ask any specific questions to learn what best motivates your co-worker?http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1821140#1821140Comment by flipdoubt on How to help a struggling newbie do a better job?flipdoubt2009-11-30T17:30:03Z2009-11-30T17:30:03ZCode review is item 3.http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-jobComment by flipdoubt on How to help a struggling newbie do a better job?flipdoubt2009-11-30T16:49:43Z2009-11-30T16:49:43ZJust so people don't think I'm focusing on speed or keeping tabs on him, I have repeatedly told him the estimates and actuals are for his use and not mine. I use estimates to let me know when I need to ask for help (on SO) or take a break or think different. I am not at all interested in micro-managing, but I'm afraid I went too far in the opposite direction because I had no mentor (other than the web) when I started.http://stackoverflow.com/questions/1721811/using-static-data-access-methods-with-the-ado-net-entity-framework/1721835#1721835Comment by flipdoubt on Using static data access methods with the ADO.NET Entity Frameworkflipdoubt2009-11-12T12:38:22Z2009-11-12T12:38:22ZI agree that it is thread safe because it only uses local variables, but that is probably the only reason the static code analysis suggests it should be a static method, as static data access is usually not a great idea. Any code that uses this static method to insert a user has a static dependency that is difficult to mock during unit tests, meaning unit testing code that calls this static method means the test has to go against a real database.
Perhaps the original poster change the title to ask about thread safety.http://stackoverflow.com/questions/1354764/cannot-put-breakpoint-in-an-asp-net-mvc-view-when-running-in-iis7/1358307#1358307Comment by flipdoubt on Cannot put breakpoint in an ASP.NET MVC view when running in IIS7flipdoubt2009-11-04T13:02:04Z2009-11-04T13:02:04ZAn elevated admin?http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials/684040#684040Comment by flipdoubt on Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentialsflipdoubt2009-10-28T11:55:35Z2009-10-28T11:55:35ZPassing null for the user name/password allows me to connect, but how can I prove that I have disconnected? Is there something on the server I can look at? On Server 2003, I can watch the sessions, but the list of current sessions updates just as fast when my app does not use these APIs.http://stackoverflow.com/questions/1608757/open-close-connection-to-unc-without-credentials/1619691#1619691Comment by flipdoubt on Open/close connection to UNC without credentialsflipdoubt2009-10-27T13:30:18Z2009-10-27T13:30:18ZThanks for the answer, Chris. I found that part of the docs and actually tried that before you posted. It appears to work, as no error occurs when passing null, but I'm having a hard time proving that the connection is closed after calling WNetCancelConnection2. Is there something I should look for on the server?http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials/684040#684040Comment by flipdoubt on Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentialsflipdoubt2009-10-23T19:27:16Z2009-10-23T19:27:16ZHi Brian. The docs you link to say you can pass NULL for the user name and password to use the current credentials. I will do some testing to see if this works.http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials/684040#684040Comment by flipdoubt on Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentialsflipdoubt2009-10-23T12:44:32Z2009-10-23T12:44:32ZIs there any way to use functions like these to explicitly open/close connections to a network machine using the current credentials, i.e., without providing the username and password? I am specifically interested in closing a connection after accessing a file share.http://stackoverflow.com/questions/890977/best-way-to-access-a-unc-path-in-c/891064#891064Comment by flipdoubt on Best way to access a UNC path in C#flipdoubt2009-10-22T15:41:12Z2009-10-22T15:41:12ZI'm wrestling with a similar problem accessing files stored on UNCs, where the user can connect one minute, can't the next, but can the next-next minute. I suspect connections are not being closed after our app accesses the server, but we just use File.Copy and File.Exist from System.IO. How do we explicitly manage the "connect/read/disconnect" sequence?http://stackoverflow.com/questions/1600221/how-do-mvc-components-fit-together/1600304#1600304Comment by flipdoubt on How do MVC components fit together?flipdoubt2009-10-21T12:17:11Z2009-10-21T12:17:11ZOn the last clause of your first paragraph, "the model is also responsible for giving that data meaning and updating the view", it sounds like you are advocating for option 3, where the model gets a reference to the view, if the model is to update the view. I am curious as to how the model would update the view. Seems like this might lead to code smells.http://stackoverflow.com/questions/66009/how-would-you-implement-a-breadcrumb-helper-in-asp-net-mvc/67644#67644Comment by flipdoubt on How would you implement a breadcrumb helper in asp.net mvc?flipdoubt2009-09-25T21:11:38Z2009-09-25T21:11:38ZIs the implementation of IBreadcrumbManager somewhere we can look at? Where does _breakcrumbLinkText come from?http://stackoverflow.com/questions/1383315/how-to-get-number-of-rows-using-sqldatareader-in-c/1383321#1383321Comment by flipdoubt on how to get number of rows using SqlDataReader in C# flipdoubt2009-09-05T13:29:43Z2009-09-05T13:29:43ZHenk is right: there is no member of the DataReader that allows you to get the number of rows because it is a forward only reader. You are better off first doing getting the count and then executing the query, perhaps in a multi-result query so you only hit the database once.http://stackoverflow.com/questions/1235071/why-wont-installshield-2009-detect-net-3-5-sp-1/1331435#1331435Comment by flipdoubt on Why won't InstallShield 2009 detect .NET 3.5 SP 1?flipdoubt2009-08-26T11:20:02Z2009-08-26T11:20:02ZWhat is the more "generic" key?