User Gishu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:10:20Z http://stackoverflow.com/feeds/user/1695 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby 0 Why can't I call javac using the Backquotes/Backticks approach in Ruby? Gishu 2009-11-24T12:45:40Z 2009-12-09T13:25:37Z <p>I am trying to compile a java source file via a Ruby Script. However I am a bit puzzled by the following behavior</p> <pre><code>compile_results = `javac #{source_file}` </code></pre> <p>this fails to run with a 'No such file...' error. I popped up irb</p> <pre><code>irb(main):001:0&gt; `javac -help` Errno::ENOENT: No such file or directory - javac -help from (irb):1:in ``' from (irb):1 irb(main):002:0&gt; `csc` =&gt; "Microsoft (R) Visual C# 2005 Compiler version 8.00.50727.3053\nfor Microsoft (R) Windows (R) 2005 Framework version 2.0.50727\nCopyright (C) Microsoft Corpo ration 2001-2005. All rights reserved.\n\nfatal error CS2008: No inputs specifie d\n" </code></pre> <p>However both javac and csc are on the PATH. e.g. if i run javac manually from the shell that I run the ruby script from, I am able to get to the java compiler. The source file exists.</p> <p>I tried both ruby 1.8.7 and 1.9.1 (Windows). Does anyone see something that I am missing ?</p> <p><strong>Update:</strong> I dont think it has to do with command line args. Rather it can't get to javac for some weird reason. I put the line <code>javac %1</code> in a batch file and call the batch file in the usual way. This worked... but still am not sure of what the whole issue was with javac.</p> http://stackoverflow.com/questions/1867623/homework-lisp-items-that-appear-more-than-once-in-a-list/1867681#1867681 2 Answer by Gishu for Homework: Lisp items that appear more than once in a list Gishu 2009-12-08T15:25:35Z 2009-12-08T15:25:35Z <p>The problem seems to be that you're not checking if the element exists in the output list before appending to it.</p> http://stackoverflow.com/questions/126955/favorite-agile-related-books/1864727#1864727 0 Answer by Gishu for Favorite agile related books? Gishu 2009-12-08T05:05:20Z 2009-12-08T05:05:20Z <p>Just managed to sneak some time off to read <a href="http://domaindrivendesign.org/books#DDD" rel="nofollow">Domain Driven Design by Eric Evans</a>.</p> <p>The book was like a mini-revelation. All the things I wanted to tell some struggling teams but didn't have the right words. e.g. teams getting stuck in writing next-gen infrastructure code but not attacking the domain problems that the customer is actually trying to solve.</p> <p>Especially the Strategic Design part. Be warned though this is the "hard" agile. But no pain.. no gain. Fits with XP without compromising on design like most teams do.. Details the constant-design fine print that is mostly unwritten/unpublished . Have a couple of chapters to go but "Must Read/Highly Recommended". </p> http://stackoverflow.com/questions/57020/which-net-collection-for-adding-multiple-objects-at-once-and-getting-notified 9 Which .Net collection for adding multiple objects at once and getting notified ? Gishu 2008-09-11T16:15:52Z 2009-11-25T20:58:30Z <p>Was considering the <code>System.Collections.ObjectModel ObservableCollection&lt;T&gt;</code> class. This one is strange because </p> <ul> <li>it has an Add Method which takes <strong>one</strong> item only. No AddRange or equivalent. </li> <li>the Notification event arguments has a NewItems property, which is a <strong>IList</strong> (of objects.. not T)</li> </ul> <p>My need here is to add a batch of objects to a collection and the listener also gets the batch as part of the notification. Am I missing something with ObservableCollection ? Is there another class that meets my spec?</p> <p><em>Update: Don't want to roll my own as far as feasible. I'd have to build in add/remove/change etc.. a whole lot of stuff.</em></p> <p><hr></p> <p>Related Q:<br> <a href="http://stackoverflow.com/questions/670577/observablecollection-doesnt-support-addrange-method-so-i-get-notified-for-each/670579#670579">http://stackoverflow.com/questions/670577/observablecollection-doesnt-support-addrange-method-so-i-get-notified-for-each</a></p> http://stackoverflow.com/questions/249580/how-do-i-add-fitnesse-pages-to-version-control 5 How do I add fitnesse pages to version-control? Gishu 2008-10-30T08:33:28Z 2009-11-19T18:44:43Z <p>What is the recommended practice? Should I add the my sub-folder under the fitnesse folder to version control? </p> <p><em>Context: working on a single developer rails pet project. I've my rails project under version-control (Subversion) however my fitnesse wiki pages lie under the fitnesse program folder.</em></p> <p>Fitnesse seems to have its own version-control... (I see numbered zips along with each of my wiki pages) Is it reliable? Where does it store the revisions?</p> http://stackoverflow.com/questions/1738151/wpf-treeview-and-nested-templates/1738335#1738335 0 Answer by Gishu for WPF: TreeView and nested templates Gishu 2009-11-15T18:20:30Z 2009-11-15T18:20:30Z <p>I suspect it's got something to do with the nested Hier-data-templ in ProjectTemplate.</p> <p>Just copied your source into a blank project and toyed a bit.. Here's what worked for me.</p> <pre><code>&lt;Window.Resources&gt; &lt;HierarchicalDataTemplate x:Key="ProjectItemTemplate" ItemsSource="{Binding Pages}"&gt; &lt;TextBlock Text="{Binding Title}" TextWrapping="Wrap" TextTrimming="CharacterEllipsis" Foreground="Red"/&gt; &lt;/HierarchicalDataTemplate&gt; &lt;HierarchicalDataTemplate x:Key="ProjectTemplate" ItemsSource="{Binding Pages}" ItemTemplate="{StaticResource ProjectItemTemplate}"&gt; &lt;StackPanel&gt; &lt;TextBlock Text="{Binding Title}" TextWrapping="Wrap" TextTrimming="CharacterEllipsis"/&gt; &lt;/StackPanel&gt; &lt;/HierarchicalDataTemplate&gt; &lt;/Window.Resources&gt; &lt;Grid&gt; &lt;TreeView x:Name="trePages" ItemsSource="{Binding Projects}" ItemTemplate="{StaticResource ProjectTemplate}" /&gt; &lt;/Grid&gt; </code></pre> http://stackoverflow.com/questions/1678182/using-nunit-to-test-constructor/1678400#1678400 1 Answer by Gishu for Using Nunit to test constructor Gishu 2009-11-05T04:43:51Z 2009-11-05T04:43:51Z <p>Let me turn the question back on to you.. How do you know if the constructor executed as intended ? </p> <p>Normally constructors are trivial.. but here it seems that you have some third party lib interfacing code that you need some confidence with.</p> <p>If you only want to test that there are no exceptions raised from within the constructor... then Extract a logger interface. Now in your test pass in a mock logger (a fake can also suffice), which should help you to sense if an exception was logged.</p> <pre><code>[TestMethod()] public void IngredientDAONHibernateConstructorTest() { _errorLogged = false; ILogger logger = this; // make test fixture implement the logger interface ; self-shunt IngredientDAONHibernate target = new IngredientDAONHibernate(logger); Assert.IsNotNull(target); Assert.IsFalse(_errorLogged, String.Format("ERROR! Constructor has thrown {0}", _loggedException) ); } bool _errorLogged; Exception _loggedException; public void Error(string message, Exception e) { _errorLogged = true; _loggedException = e; } </code></pre> http://stackoverflow.com/questions/1671294/c-lock-winform-controls/1671350#1671350 1 Answer by Gishu for C# Lock WinForm Controls Gishu 2009-11-04T02:14:08Z 2009-11-04T02:24:08Z <blockquote> <p>Locking controls prevents them from being dragged to a new size or location on the design surface. However, you can still change the size or location of controls by means of the Properties window or in code.</p> </blockquote> <p><a href="http://msdn.microsoft.com/en-us/library/80xxxf69.aspx" rel="nofollow">MSDN</a></p> <p>I guess it's a visible-to-designer-only property. I think you'd have to implement your own freeze mechanism - a little flag to toggle between Design and Use modes. </p> <p><strong>Update:</strong> It seems that custom designer classes can add properties to controls based on whether they are in Design Mode or not.<br /> More details available here if you intend to take the VS architectural hammer path. In any case, worth 10 mins of reading time.<br /> <a href="http://msdn.microsoft.com/en-us/magazine/cc164048.aspx" rel="nofollow">Custom Design-time Control Features in Visual Studio .NET - Dino Esposito</a></p> http://stackoverflow.com/questions/1623678/c-program-selected-event-how-in-code/1623696#1623696 1 Answer by Gishu for C# program selected Event how in code Gishu 2009-10-26T08:43:06Z 2009-10-26T08:43:06Z <p>Do you mean how to wire up the event ? This should do it (assuming the function signature is compatible with the event handler signature ).</p> <pre><code>itemBox.Selected += ListBoxItem_Selected; </code></pre> http://stackoverflow.com/questions/1623598/moq-a-proxy-for-unit-testing/1623689#1623689 3 Answer by Gishu for Moq a proxy for unit testing Gishu 2009-10-26T08:41:08Z 2009-10-26T08:41:08Z <p>Search for the term "Dependency Injection" before proceeding.</p> <p>You have a dependency on <code>SharedServicesClientProxy.Instance</code>, which is a Singleton. This will cause problems with test isolation, since you will reuse the same instance across tests and be prone to state-leftover issues.</p> <p>I'd advise to inject dependencies like this (and OT- you shouldn't be testing private methods... test via the public interface. There it is out of my system..:)</p> <pre><code>public class AnonClass { ISharedServices _sharedServices; AnonClass(ISharedServices sharedServicesObj) { _sharedServices = sharedServicesObj; } public string GenerateCallId() { return "EX" + _sharedServices.GenerateId().ToString(); } } </code></pre> <p>Rewire your current code to create the target class like this</p> <pre><code>var class = new AnonClass(SharedServicesClientProxy.Instance); </code></pre> <p>In your test, pass in the mock object instead of the object returned by the Singleton </p> http://stackoverflow.com/questions/1581927/first-order-array-difference-in-ruby/1581991#1581991 0 Answer by Gishu for First order array difference in Ruby Gishu 2009-10-17T11:16:57Z 2009-10-17T11:16:57Z <p>Another way to do it.</p> <pre><code>module Enumerable def diff result = [] each_with_index{ |x, i| return result if (i == (self.length-1)) result &lt;&lt; self[i+1] - x } end end </code></pre> http://stackoverflow.com/questions/1535212/which-unit-test-framework-should-i-start-with-for-c-in-visual-studio-2008-win/1535381#1535381 1 Answer by Gishu for Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app) Gishu 2009-10-08T02:58:25Z 2009-10-08T02:58:25Z <p>You didn't mention if you were going to be test-driving code..</p> <ul> <li>Go with NUnit if you're not familiar with any of the xUnit frameworks. Smallest learning curve. It has been around for longer. Charlie Poole is active on NUnit (open source) and has a good history of good updates. </li> <li>VS2008 has MSTest integrated inside it. It's not the same as NUnit. I've never had reason to switch from NUnit. I'd argue that NUnit definitely has the biggest user-base. </li> <li>NUnit has something bundled for Mocks but I'd definitely point you to <a href="http://code.google.com/p/moq/downloads/list" rel="nofollow">Moq</a>. <a href="http://ayende.com/projects/rhino-mocks/downloads.aspx" rel="nofollow">Rhino Mocks</a> has been the top dog for a while now but Moq has an easier learning curve (from online docs) although it may not always handle edge scenarios... yet IMHO</li> <li>Asserting exceptions is supported in both.</li> </ul> <p>I'd recommend getting a thin book <a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">'Pragmatic Unit Testing in C# with NUnit'</a> and going through it atleast once.</p> <p>On the NUnit v MSTest line, I'm not fit to comment. 0 flying-time with MSTest. </p> <ul> <li>Although I hear that VS2010 will offer trinkets like automated code-coverage reports.. <strong>only</strong> if you've MSTest tests. But that's the kind of argument I keep hearing in MSTests favor.. more on the lines of IDE Support and integration. There are great add-ins like Resharper and TestDriven that can patch that in but at a price.</li> <li>Also IMHO, Microsoft's unit testing tooling has a subtle way of leading you down the dark path. so be careful. See my comment to Dale on this thread.</li> </ul> http://stackoverflow.com/questions/333682/tdd-anti-patterns-catalogue 64 TDD Anti-patterns catalogue Gishu 2008-12-02T11:24:33Z 2009-10-06T16:10:10Z <p><strong><a href="http://en.wikipedia.org/wiki/Anti-pattern" rel="nofollow">anti-pattern</a></strong> : there must be at least two key elements present to formally distinguish an actual anti-pattern from a simple bad habit, bad practice, or bad idea:</p> <ul> <li>Some repeated pattern of action, process or structure that initially appears to be beneficial, but ultimately produces more bad consequences than beneficial results, and</li> <li>A refactored solution that is clearly documented, proven in actual practice and repeatable.</li> </ul> <p>Vote for the TDD anti-pattern that you have seen "in the wild" one time too many.<br /> <a href="http://blog.james-carr.org/2006/11/03/tdd-anti-patterns/" rel="nofollow">The blog post by James Carr</a> and <a href="http://tech.groups.yahoo.com/group/testdrivendevelopment/message/20745" rel="nofollow">Related discussion on testdrivendevelopment yahoogroup</a></p> <p>If you've found an 'unnamed' one.. post 'em too. <strong>One post per anti-pattern please</strong> to make the votes count for something.</p> <p><em>My vested interest is to find the top-n subset so that I can discuss 'em in a lunchbox meet in the near future.</em></p> http://stackoverflow.com/questions/1496342/how-to-avoid-setup-code-duplication-with-record-replay-mode-of-rhino-mocks 2 How to avoid setup code duplication with record-replay mode of Rhino Mocks? Gishu 2009-09-30T06:07:27Z 2009-10-01T14:12:48Z <p>This is a test suite that is green using Rhino Mocks. </p> <pre><code>[SetUp] public void BeforeEachTest() { _mocksRepo = new MockRepository(); _mockBank = _mocksRepo.StrictMock&lt;IBank&gt;(); //_mockPrinter = _mocksRepo.StrictMock&lt;IPrinter&gt;(); _mockPrinter = _mocksRepo.DynamicMock&lt;IPrinter&gt;(); _mockLogger = _mocksRepo.StrictMock&lt;ILog&gt;(); _testSubject = new CrashTestDummy(DUMMY_NAME, _mockPrinter, _mockLogger); } [TearDown] public void AfterEachTest() { _mocksRepo.ReplayAll(); // 2nd call to ReplayAll does nothing. Safeguard check _mocksRepo.VerifyAll(); } [Test] public void Test_ConstrainingArguments() { _mockPrinter.Print(null); LastCall.Constraints(Text.StartsWith("The current date is : ")); _mocksRepo.ReplayAll(); _testSubject.PrintDate(); } </code></pre> <p>Now to make a test green in another fixture, I had to make a slight change to the ctor - subscribe to an event in the printer interface. This resulted in all tests in the above test fixture going red.</p> <pre><code>public CrashTestDummy(string name, IPrinter namePrinter, ILog logger) { _printer = namePrinter; _name = name; _logger = logger; _printer.Torpedoed += KaboomLogger; // CHANGE } </code></pre> <p>The NUnit errors tab shows</p> <pre><code>LearnRhinoMocks.Rhino101.Test_ConstrainingArguments: TearDown : System.Reflection.TargetInvocationException : Exception has been thrown by the target of an invocation. ----&gt; Rhino.Mocks.Exceptions.ExpectationViolationException : IPrinter.add_Torpedoed(System.EventHandler`1[LearnRhinoMocks.MyEventArgs]); Expected #1, Actual #0. </code></pre> <p>The way to fix this is to move the line where the test subject is created from <code>Setup()</code> below the <code>ReplayAll()</code> line in the test. Rhino mocks thinks that you have setup an event subscribe as an expectation otherwise. However this fix means (some) duplication in each test. Each test usually adds some expectations before calling ReplayAll. </p> <p>I know that this is a specific scenario which involves event subscription in the test subject ctor. </p> <ul> <li>However this is a normal scenario e.g. in a ModelViewPresenter pattern, I'm curious to know if there is a recommended way to do this?</li> <li>Also I didnt like the way multiple tests in a test fixture failed due to change driven by an external test ? Am I in test-design smell country?</li> </ul> http://stackoverflow.com/questions/1475425/unit-testing-with-fakes-or-mocks/1475463#1475463 2 Answer by Gishu for Unit Testing with fakes or mocks? Gishu 2009-09-25T04:39:27Z 2009-09-25T04:39:27Z <p>Once again... another person falls into a Mock Anti-pattern. You're "testing a Mock" or Fake object - which isn't of any use at all. Mocks need to be use to abstract away the dependencies or collaborators of your test subject.. not the test subject itself.</p> <p>First I'd say search and read Martin Fowler's paper "Mocks aren't stubs". If you'd like to return values or setup expectations for specific arguments, go for a mocking framework over Roll-your-own fakes. Fakes are generally used to stub out collaborators... where you don't care for the collaborator.. e.g. stub out network or file IO.<br /> Next read <a href="http://stackoverflow.com/questions/1436757/">this similar SO question</a> and the answers to it..</p> http://stackoverflow.com/questions/1475140/programmer-aptitude-assessment/1475154#1475154 0 Answer by Gishu for Programmer aptitude assessment Gishu 2009-09-25T02:35:03Z 2009-09-25T02:35:03Z <p>Assuming it's a test containing relevant questions...</p> <p>Give it a go... maybe it'll open the doors to learning something you didn't know or knew but have forgotten. In any case, 30 or 60 min well spent - it'll shine the spotlight on areas you need to focus on.</p> http://stackoverflow.com/questions/1475116/how-do-you-effectively-unit-test-the-parameters-of-dynamic-languages/1475141#1475141 1 Answer by Gishu for How do you effectively unit test the parameters of dynamic languages? Gishu 2009-09-25T02:30:43Z 2009-09-25T02:30:43Z <p>The short answer is just 'more unit tests all the way up'. </p> <p>the only thing that matters is that the new type also has the methods required. So if <code>ClassA</code> has Method1() which takes a param <code>obj</code> and invokes <code>obj#M1()</code> and <code>obj#M2()</code> - the only constraint on obj is that it responds to these messages. If you change the implementation to invoke a method <code>Foo()</code> which did not exist previously`, the tests exercising Class A fail.</p> <p>Next if <code>ClassB</code> calls <code>A#Method1()</code> as part of its functionality, its tests will fail if Class B is passing an obj, which does have the required methods. If the required behavior of B isn't achieved, its tests should fail and that should direct towards changes needed in B.</p> http://stackoverflow.com/questions/1465018/switch-programming-language/1465034#1465034 1 Answer by Gishu for Switch Programming Language Gishu 2009-09-23T09:52:40Z 2009-09-23T09:52:40Z <p>Do you mean you want to switch the key-mappings ?<br /> <code>Main menu &gt; Tools &gt; Options &gt; Environment &gt; Keyboard</code><br /> Use the dropdown that says Apply keyboard mapping scheme.. to switch from C++ to C#</p> http://stackoverflow.com/questions/1415142/how-do-i-build-ironruby-on-visual-c-2008-express-edition 0 How do I build IronRuby on Visual C# 2008 Express Edition? Gishu 2009-09-12T13:41:59Z 2009-09-23T08:34:48Z <p>From the docs it should be possible. I built it on VS 2008 myself - so the source (Sep 8 Master) is okay.</p> <p>I'm trying to build it now with VS Express Edition on this machine. Installed 4.0 Framework Beta 1. Open the Ruby.sln file ; the IDE won't open any of the .csproj files in the solution</p> <pre><code>Unable to read project file '&lt;something&gt;.csproj Path to Framework\v4.0..\Microsoft.Common.Targets(2893,9): The attribute "Keep Duplicate Outputs" in element &lt;Target&gt; is unrecognized. </code></pre> <p>I tried to remove the offending attribute from the above file. The csproj files then load but result in build errors of the form</p> <pre><code>Error 54 The "Microsoft.Build.Tasks.Message" task could not be loaded from the assembly Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. Could not load file or assembly 'Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Confirm that the &lt;UsingTask&gt; declaration is correct, and that the assembly and all its dependencies are available. IronRuby.Tests </code></pre> http://stackoverflow.com/questions/1463880/is-the-5-why-analysis-a-better-better-approach-to-find-root-cause-of-a-problem/1464269#1464269 1 Answer by Gishu for Is the 5 Why analysis a better better approach to find root cause of a problem? Gishu 2009-09-23T06:30:28Z 2009-09-23T06:30:28Z <p>It's a good way to reflect and drill down a problem area and make sure that you're not fixing symptoms.</p> <p>Every meeting or group discussion needs a facilitator, who ensures that the group doesn't derail and drive the train into the sea. Its the job of the facilitator to step in when subjective opinions are being voiced... you need to be objective in this case.</p> http://stackoverflow.com/questions/1463747/wpf-paper-like-control/1463765#1463765 1 Answer by Gishu for WPF Paper-like control Gishu 2009-09-23T03:07:47Z 2009-09-23T03:07:47Z <p>I think you should take a look at the <strong>ScrollViewer</strong> WPF control. Here's an <a href="http://msdn.microsoft.com/en-us/library/ms750665.aspx" rel="nofollow">overview at MSDN</a>. This should provide a scrollable view of a larger contained control like a Canvas for example.</p> <p>Here's <a href="http://www.codeproject.com/Articles/37349/Creating-A-Scrollable-Control-Surface-In-WPF.aspx?display=Print" rel="nofollow">another link</a> which seems to address your need.</p> http://stackoverflow.com/questions/1450354/unit-testing-how-much-more-time-does-it-really-add/1450407#1450407 5 Answer by Gishu for Unit Testing - how much more time does it really add? Gishu 2009-09-20T06:00:21Z 2009-09-23T02:53:09Z <blockquote> <p>writing (coding) unit tests for your application effectively doubles the development time required for projects. </p> </blockquote> <p>Writing tests is definitely slower than writing no tests at all if you just count the time typing out code. However if you factor in time for breaking existing functionality-debugging-fixing without the safety net of tests, the benefits will generally outweigh the costs for anything other than trivial projects. Tests aid you with Design (TDD) + Defense (Regression) + Documentation (Specs). </p> <blockquote> <p>Is this true, particularly for beginners?</p> </blockquote> <p>It depends. To paraphrase Beck (I think), if you're a dunce, tools/meth won't help you, if you're a coding-God, you probably don't need them. However for most of us in the middle, it helps. As you move towards the right on that spectrum, things become second nature to you, you being to 'see' whats coming and time-taken begins to reduce (although not to 0). To avoid making rookie mistakes, find someone who's already been there (get help from a mailing list or hire a good coach for a while) </p> <blockquote> <p>Also some follow-up questions (brownie points): If you were doing a client project that you hand off when finished, is it worth the time and effort to do unit testing?</p> </blockquote> <p>Even if the next team chucked the test suite, I'd still do it to keep my productivity up and reduce time spent creating and chasing bugs. </p> http://stackoverflow.com/questions/1460170/what-are-wpf-preview-events/1460266#1460266 1 Answer by Gishu for What are WPF Preview Events? Gishu 2009-09-22T13:57:24Z 2009-09-22T13:57:24Z <p>From Programming WPF - Chris Sells and Ian Griffith</p> <blockquote> <p>With the exception of direct events, WPF defines most routed events in pairs - one tunnelling and the other bubbling. The tunnelling event name always begins with 'Preview' and is raised first. This gives parents the chance to see the event before it reaches the child. This is followed by the bubbling counterpart. In most cases, you will handle only the bubbling one. The Preview would be usually used to</p> <ul> <li>block the event (<code>e.Handled = true</code>)</li> <li>cause the parent to do something in advance to normal event handling.</li> </ul> </blockquote> <p>e.g. if UI Tree = Button contains Grid contains Canvas contains Ellipse<br /> Clicking on the ellipse would result in (MouseDownButton is eaten up by Button and Click is raised instead.)</p> <pre><code>PreviewMouseDownButton PreviewMouseDownGrid PreviewMouseDownCanvas PreviewMouseDownEllipse MouseDownEllipse MouseDownCanvas MouseDownGrid </code></pre> http://stackoverflow.com/questions/540338/how-do-i-configure-an-extreme-feedback-device-to-notify-ci-build-status 1 How do I configure an extreme feedback device to notify CI build status? Gishu 2009-02-12T07:04:02Z 2009-09-22T13:42:48Z <p>Trying to save the next guy/gal some trouble in finding out what is needed to setup lava lamps or traffic lights or what have you (the term I believe is <a href="http://www.developertesting.com/archives/month200404/20040401-eXtremeFeedbackForSoftwareDevelopment.html" rel="nofollow">eXtreme Feedback Devices</a>) as a BIG VISIBLE INDICATOR of your continuous integration build status.</p> <p>Ensure your post includes... (and please don't mess this question up with <a href="http://stackoverflow.com/questions/303614/whats-your-favorite-extreme-feedback-device/303901#303901">imaginative</a> <a href="http://stackoverflow.com/questions/303614/whats-your-favorite-extreme-feedback-device/303728#303728">responses</a>.. although it may be insanely funny at the point of conception)</p> <ul> <li>the XFD</li> <li>what 'helper' hardware is needed</li> <li>software that you managed to hook it up with</li> <li>detailed instructions on how to set it up</li> </ul> http://stackoverflow.com/questions/1447474/philisophical-questions-about-test-driven-development/1450441#1450441 1 Answer by Gishu for Philisophical Questions about Test-Driven Development Gishu 2009-09-20T06:28:46Z 2009-09-20T06:28:46Z <p>My 2 cents...</p> <ol> <li>if your tests break because you switched the type of XML parser - it indicates that the tests are <strong>fragile</strong>. The tests should specify the <strong>what and not the how</strong>. Which implies that in this case, the tests somehow know that you're using a SAX parsing engine (an implementation detail); which they should not. Fix that problem and you should be better with large changes.</li> <li>When you're abstracting away GUIs or Mocks from tests via an interface, you're ensuring that your test subject which uses the mocks (as doubles for actual collaborators) works as intended. You get to isolate bugs in your code from bugs in your collaborators. Mocks help you keep your test-suite fast. You also need tests that verify that your real collaborator also conforms to the interface AND tests that your real collaborators are 'wired-up' correctly.. </li> </ol> http://stackoverflow.com/questions/1436757/moq-specifying-return-values-as-part-of-expectations/1436834#1436834 2 Answer by Gishu for Moq: Specifying return values as part of expectations Gishu 2009-09-17T05:28:50Z 2009-09-17T05:28:50Z <ol> <li>You need a test subject that interacts with mock objects (unless you're writing a learner test for Moq.) I wrote up a simple one below</li> <li>You setup expectations on the mock object, specifying the exact arguments (strict - if you wish to ofcourse, else use <code>Is.Any&lt;string&gt;</code> to accept any string) and specify return values if any</li> <li>Your test subject (as part of the Act step of the test) will call onto your mock </li> <li>You assert the test subject behaved as required. The return value from the mock methods will be used by the test subject - verify it via the test subject's public interface.</li> <li>You also verify that all expectations that you specified were met - all methods that you expected to be called were in fact called.</li> </ol> <p>.</p> <pre><code>[TestFixture] public class Can_test_a_customer { [Test] public void Can_do_something() { //arrange var customerMock = new Moq.Mock&lt;ICustomer&gt;(); customerMock.Setup(c =&gt; c.DoSomething( Moq.It.Is&lt;string&gt;(name =&gt; name == "Jo"), Moq.It.Is&lt;string&gt;(surname =&gt; surname == "Blog"), Moq.It.Is&lt;int&gt;(age =&gt; age == 1))) .Returns("OK"); //act var result = TestSubject.QueryCustomer(customerMock.Object); //assert Assert.AreEqual("OK", result, "Should have got an 'OK' from the customer"); customerMock.VerifyAll(); } } class TestSubject { public static string QueryCustomer(ICustomer customer) { return customer.DoSomething("Jo", "Blog", 1); } } </code></pre> http://stackoverflow.com/questions/1428602/rhino-mocks-how-to-match-array-arguments-in-an-expectation 0 Rhino Mocks : How to match array arguments in an expectation? Gishu 2009-09-15T17:41:44Z 2009-09-16T18:22:11Z <p>Again at the Rhino Mocks Noob Wall </p> <pre><code>mockUI.Expect( x =&gt; x.Update( new Frame[] {Frame.MakeIncompleteFrame(1, 5)} ) ); </code></pre> <p>This is the exact argument that I need to match. Via trace statements, I have verified that is the actual output as well i.e. the code behaves as intended but the test disagrees. RhinoMocks responds with </p> <pre><code>TestBowlingScorer.TestGamePresenter.TestStart: Rhino.Mocks.Exceptions.ExpectationViolationException : IScoreObserver.Update([Frame# 1, Score = 0 Rolls [ 5, PENDING, ]]); Expected #1, Actual #0. </code></pre> <p>A Frame object contains few properties but doesn't override Equals() yet (overridden ToString() seen above). Update receives an array of Frames; How do I setup this expectation? I see an Is.Matching constraint.. not sure how to use it or rather am concerned with the verbose nature of it.</p> <p>I have a helper NUnit style custom Assert </p> <pre><code>public static void AssertFramesAreEqual(Frame[] expectedFrames, Frame[] actualFrames) { // loop over both collections // compare attributes } </code></pre> http://stackoverflow.com/questions/1428602/rhino-mocks-how-to-match-array-arguments-in-an-expectation/1432711#1432711 1 Answer by Gishu for Rhino Mocks : How to match array arguments in an expectation? Gishu 2009-09-16T12:41:30Z 2009-09-16T12:41:30Z <p>Verified works.. don't know if this is THE RhinoMocks way </p> <pre><code>var expectedFrames = new Frame[] { Frame.MakeIncompleteFrame(1, 5) }; mockUI.Expect( x =&gt; x.Update(null) ) .IgnoreArguments() .Constraints( Is.Matching&lt;Frame[]&gt;( frames =&gt; HelperPredicates.CheckFramesMatch(expectedFrames, frames) ) ); </code></pre> <p>The helper predicate is just a function that returns a boolean value - True on an exact match else false.</p> <pre><code> public static bool CheckFramesMatch(Frame[] expectedFrames, Frame[] actualFrames) { // return false if array lengths differ // loop over corresponding elements // return false if any attribute differs // return true } </code></pre> http://stackoverflow.com/questions/1432524/c-where-does-control-begininvoke-run/1432576#1432576 0 Answer by Gishu for C#: Where does Control.BeginInvoke run? Gishu 2009-09-16T12:09:48Z 2009-09-16T12:09:48Z <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.begininvoke.aspx" rel="nofollow">Control.BeginInvoke</a> is generally used to <strong>update the UI/Control on the thread that created the UI</strong>. UI elements have a design constraint that they can only be updated from the creating thread.</p> <p>Hence to update the UI from a different (worker / threadpool) thread, you have to switch to the right thread. Control.BeginInvoke does that for you - asynchronously (in that you dont block till the delegate is executed). Invoke does the same thing except that you block till the delegate has been executed.</p> <p><a href="http://weblogs.asp.net/justin%5Frogers/pages/126345.aspx" rel="nofollow">1st google result - WinForms UI Thread Invokes: An In-Depth Review of Invoke/BeginInvoke/InvokeRequred</a></p> http://stackoverflow.com/questions/1427509/refactoring-a-method-which-is-calling-others-methods-that-throws-exception/1427622#1427622 0 Answer by Gishu for Refactoring a method which is calling others methods that throws Exception Gishu 2009-09-15T14:42:17Z 2009-09-15T14:42:17Z <p>Seems like Java doesn't have delegates out of the box like C#- however Google showed me that there are <a href="http://onjava.com/pub/a/onjava/2003/05/21/delegates.html?page=2" rel="nofollow">ways to roll your own</a>. So the following may be something to try..</p> <pre><code>public static PrintProperty(JavaDelegateWithAName del, StringBuilder collector) { try { collector.append( del.Name+ " = " ); collector.append( del.Target.Invoke() ); } catch(NotCalculatedException nce) { collector.append("NotCalculated"); } } </code></pre> <p>... main</p> <pre><code>foreach(JavaDelegateWithAName entry in collectionOfNamedJavaDelegates) SomeUtilityClass.PrintProperty(entry, sb); </code></pre> http://stackoverflow.com/questions/1867623/homework-lisp-items-that-appear-more-than-once-in-a-list/1867681#1867681 Comment by Gishu on Homework: Lisp items that appear more than once in a list Gishu 2009-12-08T15:31:25Z 2009-12-08T15:31:25Z how about removing all instances of A from the &quot;rest of lista&quot; once you've selected A as a duplicate ? http://stackoverflow.com/questions/1864899/best-design-patterns-book-for-a-beginer Comment by Gishu on Best design patterns book for a beginer? Gishu 2009-12-08T06:06:04Z 2009-12-08T06:06:04Z Get the Head first book.. you'd be done with design patterns by tomorow :) http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54428#54428 Comment by Gishu on What is the single most influential book every programmer should read? Gishu 2009-12-07T05:44:28Z 2009-12-07T05:44:28Z +1 The object revolution has yet to begin... This and Domain Driven Design by Evans are probably the books you need to get through if you haven't already. These 2 reinforce that design exists in the true 'agile' teams : also tunes you into macro-refactoring opportunities which are seldom published but produce the most bang for invested unit of time. http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby/1790008#1790008 Comment by Gishu on Why can't I call javac using the Backquotes/Backticks approach in Ruby? Gishu 2009-11-25T12:33:30Z 2009-11-25T12:33:30Z Yes the delegating batch file was what I came up with too.. just before I went to sleep :) And it did work too.. but still not sure of the root cause of this problem. http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby/1790635#1790635 Comment by Gishu on Why can't I call javac using the Backquotes/Backticks approach in Ruby? Gishu 2009-11-25T12:31:55Z 2009-11-25T12:31:55Z didn't work. Same error. http://stackoverflow.com/questions/814432/xpath-visualization/814446#814446 Comment by Gishu on Xpath visualization Gishu 2009-11-23T11:42:02Z 2009-11-23T11:42:02Z I got the latest version 2.3.3.1_P. Tried to open a 5 MB xml file on it. It just hung and was unresponsive. Tried twice... then uninstalled. http://stackoverflow.com/questions/814432/xpath-visualization/814531#814531 Comment by Gishu on Xpath visualization Gishu 2009-11-23T11:40:43Z 2009-11-23T11:40:43Z Tried cooktop 2.500. It went down with a simple attribute based xpath. ERROR: Required white space was missing. (Verified query with Visual XPath. ) http://stackoverflow.com/questions/1738151/wpf-treeview-and-nested-templates/1738335#1738335 Comment by Gishu on WPF: TreeView and nested templates Gishu 2009-11-16T05:10:57Z 2009-11-16T05:10:57Z The TreeView is an &quot;ItemsContol&quot; derivation. It can only display lists... which means for your case.. you'd have to stick your single project object into a list before pointing the TreeView at it. Give it a try. http://stackoverflow.com/questions/1738151/wpf-treeview-and-nested-templates Comment by Gishu on WPF: TreeView and nested templates Gishu 2009-11-16T05:10:09Z 2009-11-16T05:10:09Z See reply to your comment below... http://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string/1557734#1557734 Comment by Gishu on Ruby: character to ascii from a string Gishu 2009-11-12T10:12:02Z 2009-11-12T10:12:02Z Did this change in Ruby 1.9 ? http://stackoverflow.com/questions/333682/tdd-anti-patterns-catalogue/1526583#1526583 Comment by Gishu on TDD Anti-patterns catalogue Gishu 2009-11-11T05:03:51Z 2009-11-11T05:03:51Z :) - also known as Process Compliance Backdoor. http://stackoverflow.com/questions/434762/why-does-the-x-designer-cs-part-of-the-linqtosql-dbml-triad-disappear-after-an-ed/515890#515890 Comment by Gishu on Why does the x.designer.cs part of the LinqToSql dbml triad disappear after an edit in the visual editor? Gishu 2009-10-27T11:11:43Z 2009-10-27T11:11:43Z This is weird. I search for something and hit a question that I myself had posted on SO :) http://stackoverflow.com/questions/1628729/yet-another-unit-testing-code-coverage-question-is-my-approach-sane Comment by Gishu on Yet another unit testing / code coverage question. Is my approach sane? Gishu 2009-10-27T05:33:02Z 2009-10-27T05:33:02Z Pretty much on the right track. @4 - you could use some interfaces to decouple your dependencies. http://stackoverflow.com/questions/1598731/how-do-i-test-for-typeofdynamic Comment by Gishu on How do I test for typeof(dynamic)? Gishu 2009-10-21T04:57:58Z 2009-10-21T04:57:58Z Need for this ? http://stackoverflow.com/questions/1581927/first-order-array-difference-in-ruby/1581935#1581935 Comment by Gishu on First order array difference in Ruby Gishu 2009-10-17T11:15:54Z 2009-10-17T11:15:54Z Nice addon. each_cons.