User Rick - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:41:48Z http://stackoverflow.com/feeds/user/7261 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1755597/c-do-i-need-to-dispose-a-backgroundworker-created-at-runtime 4 C#: Do I need to dispose a BackgroundWorker created at runtime? Rick 2009-11-18T12:18:13Z 2009-11-28T04:53:53Z <p>I typically have code like this on a form:</p> <pre><code> private void PerformLongRunningOperation() { BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += delegate { // perform long running operation here }; worker.RunWorkerAsync(); } </code></pre> <p>This means that I don't dispose the BackgroundWorker, whereas if I had added it by the form designer then I think it would get disposed.</p> <p>Will this cause any problems? Is it more correct to declare a module-level _saveWorker, and then call Dispose on it from the form's dispose?</p> http://stackoverflow.com/questions/1762292/is-it-possible-to-assert-a-method-has-been-called-in-vs2005-unit-testing/1762514#1762514 1 Answer by Rick for Is it possible to Assert a method has been called in VS2005 Unit Testing? Rick 2009-11-19T10:58:18Z 2009-11-19T16:09:41Z <p>Another perspective - you <strong>might</strong> be unit testing at too low a level which can cause your tests to be brittle.</p> <p>Typically, it is better to test the business requirement rather than implementation details. e.g. you run a conversion with "1234" as the input, and the conversion should reverse the input, so you expect "4321" as the output.</p> <p>Don't test that you expect "1234" to be converted by a specific sequence of steps. In the future you might change the implementation details, then the test will fail even if the business requirements are still being met.</p> <p>Of course your test in the question <strong>could</strong> be an actual business requirement in which case it would be correct.</p> <p>The other case when you would want to do this is if invoking the conversion in the real MyClass is not suitable for a unit test, i.e. requires a lot of setup, or is time intensive. Then you will need to mock or stub it out.</p> <p><hr></p> <p>Reply to question edit:</p> <p>Based on your scenario, I would still be inclined to test by checking the output rather than checking for whether specific methods were called.</p> <p>You could have tests with different XML inputs to ensure that the different conversion methods have to be called in order to pass the tests.</p> <p>And I wouldn't rely on tests to check whether there was duplicate code, but rather would refactor away duplicate code when I came across it, and just rely on the unit tests to ensure that the code still performs the same function after refactoring.</p> http://stackoverflow.com/questions/1526598/why-does-the-last-mdi-child-form-that-was-closed-not-get-garbage-collected 3 Why does the last MDI child form that was closed not get garbage collected? Rick 2009-10-06T16:14:09Z 2009-10-12T23:20:23Z <p>We've had problems with memory leaks in our application. I've managed to replicate one of the problems with the following simple example:</p> <p><strong>Replication setup</strong></p> <p>1) Create the following helper class which will be used to track object creation/destruction.</p> <pre><code>public class TestObject { public static int Count { get; set; } public TestObject() { Count++; } ~TestObject() { Count--; } } </code></pre> <p>2) Create an MDI form with three buttons, the first button will create a new MDI child as follows:</p> <pre><code> private void ctlOpenMDI_Click(object sender, EventArgs e) { Form newForm = new Form(); newForm.MdiParent = this; newForm.Tag = new TestObject(); newForm.Show(); } </code></pre> <p>The second button will be used do the same, but with a non-MDI child form:</p> <pre><code> private void ctlOpenNonMDIForm_Click(object sender, EventArgs e) { Form newForm = new Form(); newForm.Tag = new TestObject(); newForm.Show(); } </code></pre> <p>The third button will be used to garbage collect and then display how many TestObject instances are live:</p> <pre><code> private void ctlCount_Click(object sender, EventArgs e) { GC.Collect(); GC.WaitForPendingFinalizers(); MessageBox.Show("Count: " + TestObject.Count); } </code></pre> <p><strong>Replication steps</strong></p> <p>1) Click Open MDI form button, then close the MDI form, then click the count button. It will return Count: 1. The MDI child form and the object it references was not garbage collected - something must still have a reference to it.</p> <p>Also:</p> <p>Click open MDI form three times, close all 3 forms, then click the count button. It will return Count: 1. It seems as though the last closed MDI child form is not garbage collected.</p> <p>Counter-cases:</p> <p>1) Click Open non-MDI form, close it. Then click the count button. It will return Count: 0, the form and object have been garbage collected.</p> <p><strong>Workaround</strong></p> <p>I can workaround this problem by doing this:</p> <pre><code> Form form = new Form(); form.MdiParent = this; form.Show(); form.Close(); </code></pre> <p>Before the garbage collection. This makes this dummy form the last closed MDI child form so that the other ones can be garbage collected - but why should I have to do this? What is going on?</p> <p>Also it's a bit ugly as you will get a flicker of the form opening and closing, and it seems pretty hacky too.</p> http://stackoverflow.com/questions/1367715/in-the-tortoisesvn-log-what-regexp-can-i-use-to-search-for-entries-not-by-a-pa 0 In the TortoiseSVN log, what regexp can I use to search for entries *not* by a particular author? Rick 2009-09-02T13:34:11Z 2009-09-04T22:28:10Z <p>I'm looking at the log messages for a particular branch in TortoiseSVN. We have an automated build process which has commits regularly to the branch using the author "builder".</p> <p>In the TortoiseSVN search box, you can filter by authors and you can use regular expressions... what search expression can I use to show all the log messages not committed by author "builder"? Is it possible?</p> http://stackoverflow.com/questions/1027095/is-this-a-bug-in-datatable-api-changes-are-stored-executed-in-the-wrong-sequen 0 Is this a bug in DataTable API? Changes are stored/executed in the "wrong sequence" Rick 2009-06-22T13:01:23Z 2009-06-23T08:47:17Z <p>Edit: any comments whether you think this is a .NET bug or not would be appreciated.</p> <p>I have a bug which I've managed to simplify to the following scenario:</p> <p>I have a DataTable where the primary keys must be kept consecutive, e.g. if you insert a row between other rows, you must first increment the ID of the succeeding rows to make space, and then insert the row.</p> <p>And if you delete a row, you must decrement the ID of any succeeding rows to fill the gap left by the row in the table.</p> <p><strong>Test case that works correctly</strong></p> <p>Start with 3 rows in the table, with IDs 1, 2 and 3.</p> <p>Then delete ID=2, and set ID=2 where ID=3 (to fill the gap); this works correctly. The dataTable.GetChanges() contains the deleted row, and then the modified row; when you run dataAdapter.Update(table) it executes fine.</p> <p><strong>Test case that does not work</strong></p> <p>However, if you start with 2 rows (IDs 1 and 2), then set ID=3 where ID=2, and insert ID=2, then commit (or accept) changes. This should be now be the same state as the first test.</p> <p>Then you do the same steps as before, i.e. delete ID=2 and set ID=2 where ID=3, but now the dataTable.GetChanges() are in the wrong order. The first row is a modified row, and the second row is the deleted row. Then if you try dataAdapter.Update(table) it will give a primary key violation - it tried to modify a row to an already existing row before it deletes.</p> <p><strong>Workaround</strong></p> <p>I can think of a workaround to the problem, i.e. force it so that deleted rows are committed first, and then modified rows, and then added rows. But why is this happening? Is there another solution?</p> <p>I think I have seen a similar "problem" before with dictionaries, that if you add some items, delete then, re-insert them, then they will not be in the same sequence that you added them (when you enumerate the dictionary).</p> <p><strong>Here are two NUnit tests which show the problem:</strong></p> <pre><code>[Test] public void GetChanges_Working() { // Setup ID table with three rows, ID=1, ID=2, ID=3 DataTable idTable = new DataTable(); idTable.Columns.Add("ID", typeof(int)); idTable.PrimaryKey = new DataColumn[] { idTable.Columns["ID"] }; idTable.Rows.Add(1); idTable.Rows.Add(2); idTable.Rows.Add(3); idTable.AcceptChanges(); // Delete ID=2, and move old ID=3 to ID=2 idTable.Select("ID = 2")[0].Delete(); idTable.Select("ID = 3")[0]["ID"] = 2; // Debug GetChanges foreach (DataRow row in idTable.GetChanges().Rows) { if (row.RowState == DataRowState.Deleted) Console.WriteLine("Deleted: {0}", row["ID", DataRowVersion.Original]); else Console.WriteLine("Modified: {0} = {1}", row["ID", DataRowVersion.Original], row["ID", DataRowVersion.Current]); } // Check GetChanges Assert.AreEqual(DataRowState.Deleted, idTable.GetChanges().Rows[0].RowState, "1st row in GetChanges should be deleted row"); Assert.AreEqual(DataRowState.Modified, idTable.GetChanges().Rows[1].RowState, "2nd row in GetChanges should be modified row"); } </code></pre> <p>Output:</p> <pre><code>Deleted: 2 Modified: 3 = 2 1 passed, 0 failed, 0 skipped, took 4.27 seconds (NUnit 2.4). </code></pre> <p>Next test:</p> <pre><code>[Test] public void GetChanges_NotWorking() { // Setup ID table with two rows, ID=1, ID=2 DataTable idTable = new DataTable(); idTable.Columns.Add("ID", typeof(int)); idTable.PrimaryKey = new DataColumn[] { idTable.Columns["ID"] }; idTable.Rows.Add(1); idTable.Rows.Add(2); idTable.AcceptChanges(); // Move old ID=2 to ID=3, and add ID=2 idTable.Select("ID = 2")[0]["ID"] = 3; idTable.Rows.Add(2); idTable.AcceptChanges(); // Delete ID=2, and move old ID=3 to ID=2 idTable.Select("ID = 2")[0].Delete(); idTable.Select("ID = 3")[0]["ID"] = 2; // Debug GetChanges foreach (DataRow row in idTable.GetChanges().Rows) { if (row.RowState == DataRowState.Deleted) Console.WriteLine("Deleted: {0}", row["ID", DataRowVersion.Original]); else Console.WriteLine("Modified: {0} = {1}", row["ID", DataRowVersion.Original], row["ID", DataRowVersion.Current]); } // Check GetChanges Assert.AreEqual(DataRowState.Deleted, idTable.GetChanges().Rows[0].RowState, "1st row in GetChanges should be deleted row"); Assert.AreEqual(DataRowState.Modified, idTable.GetChanges().Rows[1].RowState, "2nd row in GetChanges should be modified row"); } </code></pre> <p>Output:</p> <pre><code>Modified: 3 = 2 Deleted: 2 TestCase 'GetChanges_NotWorking' failed: 1st row in GetChanges should be deleted row Expected: Deleted But was: Modified </code></pre> http://stackoverflow.com/questions/708897/in-visual-studio-2005-2008-why-doesnt-the-open-xxxxx-cs-shortcut-work-with-f 0 In Visual Studio 2005/2008, why doesn't the ">open xxxxx.cs" shortcut work with forms? Rick 2009-04-02T09:01:46Z 2009-04-02T15:46:42Z <p>In Visual Studio, there is a handy IDE shortcut for directly jumping to a file, i.e.</p> <p>CTRL-/ (to select the Find combo-box) Then type in ">open myclass.cs"</p> <p>This is much quicker than navigating through the Solution explorer to open the specified class.</p> <p>However, if you try and open the code part of a form (not the designer part) in this way then Visual Studio simply returns "The operation could not be completed".</p> <p>...which means that I have to go through the Solution explorer to open them.</p> <p>Is there any way to get this shortcut to work for forms, or is there some other shortcut?</p> <p>Update: the problem seems to be with intellisense...</p> <p>If I type ">open form1.cs" then this works...</p> <p>But if I type ">open form" and then use the up and down keys to select from the intellisense, so that the combo reads ">open "Form1.cs (OpenShortcutTest)"" then that operation will fail.</p> http://stackoverflow.com/questions/546276/is-this-unit-test-excessive/546298#546298 2 Answer by Rick for Is this unit test excessive? Rick 2009-02-13T15:08:51Z 2009-02-13T15:08:51Z <p>It would be better if you could test at a higher level, i.e. the business logic that requires you to create the Mapper.Map() function.</p> http://stackoverflow.com/questions/511277/what-would-you-include-in-a-10-min-grok-talk-on-unit-testing/511321#511321 2 Answer by Rick for What would you include in a 10 min Grok talk on Unit Testing Rick 2009-02-04T13:22:25Z 2009-02-04T13:22:25Z <p>You could mention that it will be a difficult learning curve, and it will feel like productivity is being impacted, but the benefits are worth it:</p> <p>e.g. effectively the creation of an automated regression test suite, which in turn allows you to make bigger additions or modifications to existing without worrying that you are breaking some existing functionality.</p> <p>Creation of production code will be slower, but this should be offset by the higher quality of the code, i.e. fewer bugs, which in the long run means overall higher productivity.</p> http://stackoverflow.com/questions/443298/whats-the-difference-between-research-programmer-and-software-development-eng/443422#443422 2 Answer by Rick for What's the difference between 'research programmer' and 'software development engineer'? Rick 2009-01-14T15:46:45Z 2009-01-14T15:46:45Z <p>In my experience, I would've thought that being a research programmer is more interesting than being a software development engineer.</p> <p>Very generally speaking, as a research programmer your tasks will be a lot more open-ended. Perhaps you would be given a very vague task and you would need to use a lot more of your own initiative in order to investigate and find a solution.</p> <p>Whereas as a software development engineer your tasks will hopefully be better specified and will be of narrower scope.</p> <p>Probably it would be best if you can get a job where you do both types of programming, as it can both types can be rewarding in different ways.</p> http://stackoverflow.com/questions/439474/how-can-i-best-write-unit-test-cases-for-a-parser/442522#442522 0 Answer by Rick for How can I best write unit test cases for a Parser? Rick 2009-01-14T10:18:22Z 2009-01-14T10:18:22Z <p>As I understand it, you would first write a test for your specific example, i.e. where the input to your parser is:</p> <pre><code>set lcl_var = 2 </code></pre> <p>and the output is:</p> <pre><code>0x10000010 // load immdshort 2 0x01000002 // strlocal lclvar </code></pre> <p>When you have implemented the production code to pass that test, and refactored it, then if you are not satisified it could handle any local variable, write another test with a different local variable and see if it passes or not. e.g. new test with input:</p> <pre><code>set lcl_var2 = 2 </code></pre> <p>And write your new test to expect the different output that you want. Keep doing this until you are satisfied that your production code is robust enough.</p> http://stackoverflow.com/questions/209229/visual-studio-6-0-2003-2008-compatibility-with-windows-vista-64-bit-x64/424515#424515 0 Answer by Rick for Visual Studio (6.0, 2003 & 2008) compatibility with Windows Vista 64-bit (x64) Rick 2009-01-08T14:54:30Z 2009-01-08T14:54:30Z <p>Visual Studio 6 will not install if you try and install all the components. It gets a DCOM installation error and then fails.</p> <p>When I installed just the parts that I was interested in (VC++, VB6, some of the data access) then it installed OK. Make sure you turn the UAC off for simplicity.</p> <p>Afterwards, Visual Studio 6 Service Pack 6 can be installed... I think VS 6 Service Pack 5 cannot be installed (due to MDAC errors), but I guess that's not necessary if VS6 SP6 installs fine.</p> http://stackoverflow.com/questions/370972/which-common-features-of-desktop-applications-do-most-web-applications-miss/371070#371070 12 Answer by Rick for Which common features of desktop applications do most web applications miss? Rick 2008-12-16T11:49:40Z 2008-12-16T11:49:40Z <p>Right-click application-specific pop-up menus is the thing I've noticed most.</p> <p>Usually right-clicking on a browser application will bring up the browser pop-up menu rather than an application-specific menu.</p> http://stackoverflow.com/questions/370399/whats-the-best-way-to-write-a-windows-client-app-other-than-net/371024#371024 1 Answer by Rick for What's the best way to write a Windows client app other than .NET? Rick 2008-12-16T11:16:06Z 2008-12-16T11:16:06Z <p>Even easier than writing .NET, and with a much smaller footprint than the .NET runtime - is to write the application in Visual Basic 6.</p> <p>Of course, the reason why no-one has mentioned it is that it's a dying language now. But just thought I would mention it as no-one else had.</p> http://stackoverflow.com/questions/349293/is-there-a-ide-compiler-pc-benchmark-i-can-use-to-compare-my-pcs-performance 1 Is there a IDE/compiler PC benchmark I can use to compare my PCs performance? Rick 2008-12-08T11:56:37Z 2008-12-08T12:59:35Z <p>I'm looking for a benchmark (and results on other PCs) which would give me an idea of the development performance gain I could get by upgrading my PC, also the benchmark could be used to justify the upgrade to my boss.</p> <p>I use Visual Studio 2008 for my development, so I'd like to get an idea of by what factor the build times would be improved, and also it would be good if the benchmark could incorporate IDE performance (i.e. when editing, using intellisense, opening code files etc) into its result.</p> <p>I currently have an AMD 3800x2, with 2GB RAM on Vista 32. For example, I'd like to know what kind of performance gain I'd see in Visual Studio 2008 with a Q6600, 4GB RAM on Vista 64. And also with other processors, and other RAM sizes... also see whether hard disk performance is a big factor.</p> <p>EDIT: I mentioned Vista 64 because I'm aware that Vista 32 can only use 3GB RAM maximum. So I'd presume that wanting to use more RAM would require Vista 64, but perhaps it could still be slower overall there is a large overhead in using the 32 bit VS 2008 on 64 bit OS.</p> http://stackoverflow.com/questions/325952/basic-vb-net-regex-matches-question/325967#325967 1 Answer by Rick for Basic vb.net RegEx Matches question Rick 2008-11-28T15:00:48Z 2008-11-28T15:08:34Z <p>Change your RegEx pattern to <code>\{\w*\}</code> then it will match as you expect.</p> <p>You can test it with an <a href="http://www.dotnetcoders.com/web/Learning/Regex/RegexTester.aspx" rel="nofollow">online .net RegEx tester</a>.</p> http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268392#268392 0 Answer by Rick for When writing code do you wrap text or not? Rick 2008-11-06T11:47:00Z 2008-11-06T11:47:00Z <p>I would use Visual Studio's auto-wrapping but it seems to cause terrible pauses when editing code, very disruptive; so I have to manually scroll occassionally.</p> <p>We don't manually split the lines at a fixed length, e.g. 80 characters because we have many developers, some who use widescreen displays, so that would be a waste of the horizontal bandwidth.</p> http://stackoverflow.com/questions/254009/in-c-add-quotes-around-string-in-a-comma-delimited-list-of-strings/254029#254029 1 Answer by Rick for In C#: Add Quotes around string in a comma delimited list of strings Rick 2008-10-31T16:03:17Z 2008-10-31T16:03:17Z <pre><code>string list = "Fred,Sam,Mike,Sarah"; string[] splitList = list.Split(','); for (int i = 0; i &lt; splitList.Length; i++) splitList[i] = String.Format("'{0}'", splitList[i]); string newList = String.Join(",", splitList); </code></pre> http://stackoverflow.com/questions/249906/as-a-net-developer-what-exams-other-than-the-microsoft-ones-are-worthwhile/249924#249924 0 Answer by Rick for As a .NET developer, what exams other than the Microsoft ones are worthwhile? Rick 2008-10-30T11:53:59Z 2008-10-30T11:53:59Z <p>In terms of <em>qualifications</em> on a CV for a .NET developer, then I think most companies would look out for a university degree or MS cert. I'm not aware of any others that have much meaning or impact.</p> <p>In terms of actual benefit for your developing abilities, then as Galwegian says experience will probably be much more valuable than qualifications.</p> <p>Although developing abilities and career don't always go hand in hand. I think there is a sizeable percentage of companies that will look out for buzzwords in a CV, such as MS cert.</p> http://stackoverflow.com/questions/249787/sharing-files-in-svn/249808#249808 1 Answer by Rick for Sharing Files in SVN Rick 2008-10-30T11:00:57Z 2008-10-30T11:00:57Z <p>We had the same problem. The simple answer is that you can't share files in SVN - in the end we had to restructure our directories and use batch files.</p> <p>e.g. for source code files that were shared, we moved them to an Include folder, and have all the projects reference that folder.</p> <p>For binary files that need to be copied to more than one location we store them just once in SVN, and then use batch files to copy them across to the target locations on each developers machine (or also on the build machine).</p> http://stackoverflow.com/questions/246364/how-to-unit-test-idisposable/246375#246375 5 Answer by Rick for How to unit test IDisposable? Rick 2008-10-29T10:45:54Z 2008-10-29T10:45:54Z <p>No, the GC.Collect() call is asynchronous, you would also need to call this:</p> <pre><code>System.GC.WaitForPendingFinalizers(); </code></pre> http://stackoverflow.com/questions/229762/what-single-software-development-tool-do-you-think-holds-the-most-value/229769#229769 1 Answer by Rick for What single software development tool do you think holds the most value? Rick 2008-10-23T13:46:41Z 2008-10-23T13:46:41Z <p><a href="http://www.testdriven.net/" rel="nofollow">TestDriven.NET</a></p> <p>This lets you easily run (and debug) single NUnit tests from the IDE.</p> http://stackoverflow.com/questions/226530/what-is-the-best-tool-for-build-automation-for-a-one-man-software-shop/226534#226534 9 Answer by Rick for What is the best tool for build automation for a one-man software shop? Rick 2008-10-22T16:17:41Z 2008-10-22T16:22:56Z <p><a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome+to+CruiseControl.NET" rel="nofollow">CruiseControl.Net</a> and <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a> are the standard tools (and open source too), so there will be a lot of community support available.</p> <p>It will be quite a lot of work to set it all up, but it will be very powerful and have lots of room for growth too.</p> http://stackoverflow.com/questions/222182/in-memory-search-index-for-application-takes-up-too-much-memory-any-suggestions 4 In-memory search index for application takes up too much memory - any suggestions? Rick 2008-10-21T14:53:38Z 2008-10-22T05:50:25Z <p>In our desktop application, we have implemented a simple search engine using an <a href="http://en.wikipedia.org/wiki/Inverted_index" rel="nofollow">inverted index</a>.</p> <p>Unfortunately, some of our users' datasets can get very large, e.g. taking up ~1GB of memory before the inverted index has been created. The inverted index itself takes up a lot of memory, almost as much as the data being indexed (another 1GB of RAM).</p> <p>Obviously this creates problems with out of memory errors, as the 32 bit Windows limit of 2GB memory per application is hit, or users with lesser spec computers struggle to cope with the memory demand.</p> <p>Our inverted index is stored as a:</p> <pre><code>Dictionary&lt;string, List&lt;ApplicationObject&gt;&gt; </code></pre> <p>And this is created during the data load when each object is processed such that the applicationObject's key string and description words are stored in the inverted index.</p> <p>So, my question is: is it possible to store the search index more efficiently space-wise? Perhaps a different structure or strategy needs to be used? Alternatively is it possible to create a kind of CompressedDictionary? As it is storing lots of strings I would expect it to be highly compressible.</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/208281#208281 1 Answer by Rick for How best to deal with gigantic source code files in Visual Studio Rick 2008-10-16T12:10:30Z 2008-10-16T12:10:30Z <p>Is the problem when you open the file for editing in Visual Studio? I've noticed that VS editor can be quite slow and inefficient on large files. Also, you could try turning off certain options, e.g. word-wrapping kills my machine for some reason.</p> <p>Otherwise you could use something else like Textpad with syntax highlighting installed to edit the problematic large source file... not as nice, for sure.</p> http://stackoverflow.com/questions/207822/as-a-programmer-what-specific-problems-have-you-faced-with-windows-vista/207880#207880 2 Answer by Rick for As a Programmer, what specific problems have you faced with Windows Vista? Rick 2008-10-16T09:11:07Z 2008-10-16T09:11:07Z <p>The UAC (user access control) means that a lot of actions are restricted by default, e.g. writing to certain parts of the registry, write access to certain folders e.g. Program Files.</p> <p>So our programs needed to be modified to cope with this.</p> http://stackoverflow.com/questions/76526/i-need-this-baby-in-a-month-send-me-nine-women/205147#205147 2 Answer by Rick for I need this baby in a month - send me nine women! Rick 2008-10-15T15:23:04Z 2008-10-15T15:23:04Z <p>Reading the question makes me want to answer perversely:</p> <p>When you add programmers to a team of zero people, then almost certainly the development would speed up.</p> <p>And I guess the team could be zero if they have quit in disgust, fired for extreme incompetance, passed away (naturally or otherwise), or any other multitude of options.</p> http://stackoverflow.com/questions/204369/seeking-clarifications-about-structuring-code-to-reduce-cyclomatic-complexity 9 Seeking clarifications about structuring code to reduce cyclomatic complexity Rick 2008-10-15T11:18:52Z 2008-10-15T14:22:31Z <p>Recently our company has started measuring the cyclomatic complexity (CC) of the functions in our code on a weekly basis, and reporting which functions have improved or worsened. So we have started paying a lot more attention to the CC of functions.</p> <p>I've read that CC could be informally calculated as 1 + the number of decision points in a function (e.g. if statement, for loop, select etc), or also the number of paths through a function...</p> <p>I understand that the easiest way of reducing CC is to use the Extract Method refactoring repeatedly...</p> <p>There are somethings I am unsure about, e.g. what is the CC of the following code fragments?</p> <p>1)</p> <pre><code>for (int i = 0; i &lt; 3; i++) Console.WriteLine("Hello"); </code></pre> <p>And</p> <pre><code>Console.WriteLine("Hello"); Console.WriteLine("Hello"); Console.WriteLine("Hello"); </code></pre> <p>They both do the same thing, but does the first version have a higher CC because of the for statement?</p> <p>2)</p> <pre><code>if (condition1) if (condition2) if (condition 3) Console.WriteLine("wibble"); </code></pre> <p>And</p> <pre><code>if (condition1 &amp;&amp; condition2 &amp;&amp; condition3) Console.WriteLine("wibble"); </code></pre> <p>Assuming the language does short-circuit evaluation, such as C#, then these two code fragments have the same effect... but is the CC of the first fragment higher because it has 3 decision points/if statements?</p> <p>3)</p> <pre><code>if (condition1) { Console.WriteLine("one"); if (condition2) Console.WriteLine("one and two"); } </code></pre> <p>And</p> <pre><code>if (condition3) Console.WriteLine("fizz"); if (condition4) Console.WriteLine("buzz"); </code></pre> <p>These two code fragments do different things, but do they have the same CC? Or does the nested if statement in the first fragment have a higher CC? i.e. nested if statements are mentally more complex to understand, but is that reflected in the CC?</p> http://stackoverflow.com/questions/120504/optimising-a-select-query-that-runs-slow-on-oracle-which-runs-quickly-on-sql-serv 7 Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server Rick 2008-09-23T11:50:55Z 2008-10-12T17:56:08Z <p>I'm trying to run the following SQL statement in Oracle, and it takes ages to run:</p> <pre><code>SELECT orderID FROM tasks WHERE orderID NOT IN (SELECT DISTINCT orderID FROM tasks WHERE engineer1 IS NOT NULL AND engineer2 IS NOT NULL) </code></pre> <p>If I run just the sub-part that is in the IN clause, that runs very quickly in Oracle, i.e.</p> <pre><code>SELECT DISTINCT orderID FROM tasks WHERE engineer1 IS NOT NULL AND engineer2 IS NOT NULL </code></pre> <p>Why does the whole statement take such a long time in Oracle? In SQL Server the whole statement runs quickly.</p> <p>Alternatively is there a simpler/different/better SQL statement I should use?</p> <p>Some more details about the problem:</p> <ul> <li>Each order is made of many tasks</li> <li>Each order will be allocated (one or more of its task will have engineer1 and engineer2 set) or the order can be unallocated (all its task have null values for the engineer fields)</li> <li>I am trying to find all the orderIDs that are unallocated.</li> </ul> <p>Just in case it makes any difference, there are ~120k rows in the table, and 3 tasks per order, so ~40k different orders.</p> <p>Responses to answers:</p> <ul> <li>I would prefer a SQL statement that works in both SQL Server and Oracle.</li> <li>The tasks only has an index on the orderID and taskID.</li> <li>I tried the NOT EXISTS version of the statement but it ran for over 3 minutes before I cancelled it. Perhaps need a JOIN version of the statement?</li> <li>There is an "orders" table as well with the orderID column. But I was trying to simplify the question by not including it in the original SQL statement.</li> </ul> <p>I guess that in the original SQL statement the sub-query is run every time for each row in the first part of the SQL statement - even though it is static and should only need to be run once?</p> <p>Executing</p> <pre><code>ANALYZE TABLE tasks COMPUTE STATISTICS; </code></pre> <p>made my original SQL statement execute much faster. </p> <p>Although I'm still curious why I have to do this, and if/when I would need to run it again?</p> <blockquote> <p>The statistics give Oracle's cost-based optimzer information that it needs to determine the efficiency of different execution plans: for example, the number of rowsin a table, the average width of rows, highest and lowest values per column, number of distinct values per column, clustering factor of indexes etc.</p> <p>In a small database you can just setup a job to gather statistics every night and leave it alone. In fact, this is the default under 10g. For larger implementations you usually have to weigh the stability of the execution plans against the way that the data changes, which is a tricky balance.</p> <p>Oracle also has a feature called "dynamic sampling" that is used to sample tables to determine relevant statistics at execution time. It's much more often used with data warehouses where the overhead of the sampling it outweighed by the potential performance increase for a long-running query.</p> </blockquote> http://stackoverflow.com/questions/158122/windows-forms-a-modal-form-that-gets-opened-closed-by-the-application-rather-tha/158286#158286 1 Answer by Rick for Windows Forms: A modal form that gets opened/closed by the application rather than the user? Rick 2008-10-01T15:43:09Z 2008-10-01T15:43:09Z <p>I'm not sure about the correctness of your overall approach, but to specifically answer your question try changing the MySustainedDialog Hide() function to as follows:</p> <pre><code> public new void Hide() { if (this.InvokeRequired) { this.BeginInvoke((MethodInvoker)delegate { this.Hide(); }); return; } this.Close(); } </code></pre> http://stackoverflow.com/questions/156893/write-a-program-in-30-minutes-for-a-c-programmer-candidate-interview-question/156997#156997 5 Answer by Rick for Write a program in 30 minutes (for a C# programmer candidate interview question). Rick 2008-10-01T10:23:19Z 2008-10-01T10:34:01Z <p>What I've found good is to register at <a href="http://www.topcoder.com/" rel="nofollow">Topcoder</a> and then try doing some of the easy questions from the sample rooms. If you can do it yourself easily, then try giving it as a programming exercise during the interview.</p> <p>Surprisingly, this weeded out a lot of our candidates. And if you talk to them about it afterwards, you can get an idea whether it was because of nerves, or that they just are clueless when it comes to programming.</p> <p>Here is an example of an actual problem:</p> <blockquote> <p><strong>Problem Statement</strong> </p> <p>You are climbing a staircase. The staircase consists of some number of flights of stairs separated by landings. A flight is a continuous series of stairs from one landing to another. You are a reasonably tall athletic person, so you can climb a certain number of stairs in one stride. However, after each flight, there is a landing which you cannot skip because you need to turn around for the next flight (which continues in the opposite direction). </p> <p>You will be given the number of stairs in each flight in a Integer() flights. Element 0 of flights represents the number of stairs in the first flight, element 1 is the number of stairs in the second flight, etc. You will also be given an Integer stairsPerStride, which is how many continuous stairs you climb in each stride. If it takes two strides to turn around at a landing, return the number of strides to get to the top of the staircase. You do not need to turn at the top of the staircase. </p> <p>Definition Class: StairClimb<br /> Method: stridesTaken<br /> Parameters: Integer(), Integer<br /> Returns: Integer<br /> Method signature: Public Function stridesTaken(flights() As Integer, stairsPerStride As Integer) As Integer (be sure your method is public) </p> <p>Constraints flights has between 1 and 50 elements, inclusive.<br /> Each element of flights is between 5 and 30, inclusive. stairsPerStride is between 2 and 5, inclusive. </p> <p><strong>Examples</strong> </p> <p>{15}<br /> 2 </p> <p>Returns: 8<br /> A simple staircase with 15 steps. In 7 strides, you've climbed 14 steps. However, you still have one step left, so you must use an additional stride to get to the top. </p> <p>{15,15}<br /> 2 </p> <p>Returns: 18<br /> This time, there are two flights with a landing in between. 8 strides to get to the first landing, 2 strides to turn around, and 8 more strides to get to the top makes 8+2+8=18 strides. </p> <p>{5,11,9,13,8,30,14}<br /> 3 </p> <p>Returns: 44</p> </blockquote> http://stackoverflow.com/questions/1755597/c-do-i-need-to-dispose-a-backgroundworker-created-at-runtime/1798576#1798576 Comment by Rick on C#: Do I need to dispose a BackgroundWorker created at runtime? Rick 2009-11-26T11:39:55Z 2009-11-26T11:39:55Z Does this work? Won't it Dispose of the worker too early? http://stackoverflow.com/questions/1755185/how-to-add-comments-to-a-jpeg-file-using-c/1764913#1764913 Comment by Rick on How to Add 'Comments' to a JPEG File Using C# Rick 2009-11-19T17:13:30Z 2009-11-19T17:13:30Z You should vote up and/or accept their answers if you found them helpful. Cheers! http://stackoverflow.com/questions/1741027/how-do-i-write-an-if-statement-for-my-guessing-game-in-c Comment by Rick on How do I write an if statement for my guessing game in C# Rick 2009-11-16T11:35:54Z 2009-11-16T11:35:54Z Seems to me that your game should feedback whether the guess was too high or too low? http://stackoverflow.com/questions/1723780/warm-up-net-application Comment by Rick on Warm-up .NET application Rick 2009-11-12T17:17:13Z 2009-11-12T17:17:13Z What are the specs of these notebooks? http://stackoverflow.com/questions/1526598/why-does-the-last-mdi-child-form-that-was-closed-not-get-garbage-collected/1557466#1557466 Comment by Rick on Why does the last MDI child form that was closed not get garbage collected? Rick 2009-10-19T11:36:31Z 2009-10-19T11:36:31Z Excellent answer! Searching for that property &quot;FormerlyActiveMdiChild&quot; does seem to show that it is a recently introduced Microsoft bug. Thank you. http://stackoverflow.com/questions/1502903/how-to-refactor-this-method-c-window Comment by Rick on How to refactor this method C# Window Rick 2009-10-01T09:39:05Z 2009-10-01T09:39:05Z &lt;pedantic_mode&gt; Refactoring generally means rewriting the code to improve the design/maintainability without changing what the code actually does. Since you want the performance to improve I think you mean &quot;re-write&quot; rather than &quot;refactor&quot;. &lt;/pedantic_mode&gt; http://stackoverflow.com/questions/1367715/in-the-tortoisesvn-log-what-regexp-can-i-use-to-search-for-entries-not-by-a-pa/1367763#1367763 Comment by Rick on In the TortoiseSVN log, what regexp can I use to search for entries *not* by a particular author? Rick 2009-09-02T13:55:59Z 2009-09-02T13:55:59Z Excellent, you're a genius! http://stackoverflow.com/questions/325952/basic-vb-net-regex-matches-question/325967#325967 Comment by Rick on Basic vb.net RegEx Matches question Rick 2009-08-04T11:19:41Z 2009-08-04T11:19:41Z Ok, here's another one: <a href="http://derekslager.com/blog/posts/2007/09/a-better-dotnet-regular-expression-tester.ashx" rel="nofollow">derekslager.com/blog/posts/&hellip;</a> http://stackoverflow.com/questions/1027095/is-this-a-bug-in-datatable-api-changes-are-stored-executed-in-the-wrong-sequen/1028001#1028001 Comment by Rick on Is this a bug in DataTable API? Changes are stored/executed in the "wrong sequence" Rick 2009-06-23T11:13:25Z 2009-06-23T11:13:25Z Ok thanks, I'll wait to see if anyone else answers, but otherwise I'll accept your answer. http://stackoverflow.com/questions/1027095/is-this-a-bug-in-datatable-api-changes-are-stored-executed-in-the-wrong-sequen/1028001#1028001 Comment by Rick on Is this a bug in DataTable API? Changes are stored/executed in the "wrong sequence" Rick 2009-06-23T09:09:54Z 2009-06-23T09:09:54Z I see your point that primary keys should not be used in this way; but it still seems like the DataTable is acting odd to me - i.e. it should work if I use it this way. Related, why isn't the default behaviour of DataAdapter.Update to process in deleted, modified then inserted order. (BTW that is the order I had meant to type in my workaround - I have corrected it in the original text now). http://stackoverflow.com/questions/708897/in-visual-studio-2005-2008-why-doesnt-the-open-xxxxx-cs-shortcut-work-with-f/709568#709568 Comment by Rick on In Visual Studio 2005/2008, why doesn't the ">open xxxxx.cs" shortcut work with forms? Rick 2009-04-03T09:01:30Z 2009-04-03T09:01:30Z Have accepted your answer as it helped me realise the problem was with the intellisense. http://stackoverflow.com/questions/708897/in-visual-studio-2005-2008-why-doesnt-the-open-xxxxx-cs-shortcut-work-with-f/709568#709568 Comment by Rick on In Visual Studio 2005/2008, why doesn't the ">open xxxxx.cs" shortcut work with forms? Rick 2009-04-02T14:21:00Z 2009-04-02T14:21:00Z (in the 1st comment I meant that &quot;our&quot; solution is very large... i.e. 50+ projects, and the forms are often nested inside folders... so to navigate through the GUI to a form will involve multiple clicks and scrolls). http://stackoverflow.com/questions/708897/in-visual-studio-2005-2008-why-doesnt-the-open-xxxxx-cs-shortcut-work-with-f/709568#709568 Comment by Rick on In Visual Studio 2005/2008, why doesn't the ">open xxxxx.cs" shortcut work with forms? Rick 2009-04-02T14:19:46Z 2009-04-02T14:19:46Z form2.cs, form2.Designer.cs and form2.resx? i.e. it was automatically generated by Visual Studio 2005/2008 and uses partial classes? I think that is something to do with the problem. http://stackoverflow.com/questions/708897/in-visual-studio-2005-2008-why-doesnt-the-open-xxxxx-cs-shortcut-work-with-f/709568#709568 Comment by Rick on In Visual Studio 2005/2008, why doesn't the ">open xxxxx.cs" shortcut work with forms? Rick 2009-04-02T14:18:54Z 2009-04-02T14:18:54Z To use F7 you first have to highlight the file in the Solution Explorer, which is a lot slower than using the &quot;&gt;open&quot; shortcut - for us at least where are solution is very large with multiple projects. Not sure why &quot;&gt;open&quot; on forms works for you. Are your forms made of 3 parts? e.g. ... http://stackoverflow.com/questions/546276/is-this-unit-test-excessive/546311#546311 Comment by Rick on Is this unit test excessive? Rick 2009-02-13T15:31:39Z 2009-02-13T15:31:39Z Wow, you'd really create 100 separate unit tests to test that function? Seems a bit OTT to me.