User Orion Edwards - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:01:57Z http://stackoverflow.com/feeds/user/234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1857908/c-how-do-i-check-if-a-datagrid-is-empty/1857912#1857912 2 Answer by Orion Edwards for C#: How do I check if a DataGrid is empty? Orion Edwards 2009-12-07T05:05:41Z 2009-12-07T05:05:41Z <p>To check if something is empty you can check if the Items property is empty.</p> <pre><code>grdMass.Items.Count == 0 </code></pre> http://stackoverflow.com/questions/1857733/tdd-as-a-defect-reduction-strategy/1857878#1857878 0 Answer by Orion Edwards for TDD as a defect-reduction strategy Orion Edwards 2009-12-07T04:51:50Z 2009-12-07T04:57:38Z <p><a href="http://research.microsoft.com/en-us/projects/esm/nagappan%5Ftdd.pdf" rel="nofollow">Here's a study (warning: link to PDF file)</a> done by microsoft on some of their internal teams.</p> <p>A quote from it:</p> <blockquote> <p>The results of the case studies indicate that the pre-release defect density of the four products decreased between 40% and 90% relative to similar projects that did not use the TDD practice. Subjectively, the teams experienced a 15–35% increase in initial development time after adopting TDD</p> </blockquote> <p>That's the only actual empirical study done on TDD/Unit testing that I'm aware of, but there are plenty of people (including myself) that will anecdotally tell you that TDD (and unit testing in general) will definitely provide an increase in the quality of your code.</p> <p>From my own experience, there is definitely a reduction in the number of defects, but the numbers feel like they would be far less than even the 40% from the Microsoft study; This is (again, based solely on what I've seen) primarily because most corporate developers have little to no experience with Unit Testing (let alone TDD), and will invariably do a bad job of it while they are learning. Actually learning how to do TDD well requires at least a solid year of experience, and I've never worked in (or even <em>seen</em>) a team which actually had a full complement of developers with that experience.</p> http://stackoverflow.com/questions/1835063/type-inference-over-ienumerablet/1854011#1854011 1 Answer by Orion Edwards for Type inference over IEnumerable<T> Orion Edwards 2009-12-06T00:20:30Z 2009-12-06T00:20:30Z <p>It doesn't call the "specialized" one because the compiler choses which method to call when the program (which in this case, is the <code>Go</code> function) is <strong>compiled</strong>, <em>not</em> when it's run.</p> <p>When the compiler is compiling the <code>Go</code> function, the only information it has is that there is some object of type <code>T</code>. It doesn't have any idea that you may at some later point in time supply it with an object of type <code>MyBase</code>. The only option it has is to choose the <code>Foo&lt;T&gt;</code> overload, and so it bakes that in to the compiled program.</p> <p>If you want an application to choose overloads at run-time, and pick the best overload by looking at the object while the application is running, that's called "dynamic dispatch", and is only used by dynamic languages such as Ruby, Python, PHP, etc. </p> <p>C#3 is fully static and doesn't support this. You'd have to write an if-statement in your code to check the type if you wanted it to work this way. C#4 on the other hand, has some dynamic support. If you were writing this code in C# 4, you could declare the 'Go' function as follows:</p> <pre><code> public void Go&lt;T&gt; (IEnumerable&lt;dynamic&gt; items) </code></pre> <p>Then it would use dynamic dispatch at run-time to choose which overload is called, and would call the overload specialized to take <code>MyBase</code></p> http://stackoverflow.com/questions/1309315/how-can-i-get-a-controls-datacontext-from-an-external-application-using-ui-autom 1 How can I get a control's DataContext from an external application using UI Automation (and/or White) Orion Edwards 2009-08-20T23:02:34Z 2009-12-04T18:36:13Z <p>I'm using <a href="http://white.codeplex.com/" rel="nofollow">White</a> to drive the UI of a WPF app, and it's worked well so far.</p> <p>I'm at the point however, where I need to poke into the internal state of the app under test to check some conditions.</p> <p>Specifically, I have a DataGrid (from the <a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117" rel="nofollow">WPFToolkit</a>), which is databound to a <code>List&lt;MyBusinessObject&gt;</code>. Each row therefore has a <code>DataContext</code> of a <code>MyBusinessObject</code></p> <p>I can get the grid using white by finding it with it's automation ID.</p> <p>I can then do this:</p> <pre><code>var row = Grid.Rows[0] row.AutomationElement.Current.Name </code></pre> <p>which returns the string <code>"MyCompany.Namespace.MyBusinessObject"</code>, so I'm <em>almost</em> there, but I can't actually get the actual business object itself.</p> <p>I've looked into WPF UIAutomation AutomationPeers (from an <code>AutomationPeer</code>, you can get the <code>Owner</code> property, which is the actual business object), but it seems that you need to be in-process to use these, as they all have constructors which require you to supply the WPF control.</p> <p>Is there any way I can construct an AutomationPeer from an external process, or otherwise drill down into the actual <code>DataContext</code> of a WPF control? </p> http://stackoverflow.com/questions/624436/can-i-change-the-configuration-of-the-enterprise-library-logging-block-at-runtime 1 Can I change the configuration of the Enterprise Library Logging block at runtime? Orion Edwards 2009-03-08T22:23:34Z 2009-11-23T11:09:34Z <p>Without getting into the discussion of the merits or otherwise of the EntLib logging block, is there any way that I can change it's configuration at runtime?</p> <p>For example, I have the block configured to log General events to a flat file, and Critical events to the event log.<br /> Is there any way to change it to log General events to the console, etc, without restarting my application?</p> <p><strong>Clarification:</strong> I am writing a long-running server application. I would like to be able to temporarily increase the verbosity/output of various logging groups for diagnostic/troubleshooting purposes without restarting the application. Restarting is not an option as it would mean "site down" in production.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1751#1751 43 Answer by Orion Edwards for What is the single most influential book every programmer should read? Orion Edwards 2008-08-05T00:41:27Z 2009-11-19T16:49:16Z <p><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> !!!!!</p> <p><img src="http://mislav.uniqpath.com/poignant-guide/images/the.foxes-4e.png" alt="Chunky bacon." title=""></p> http://stackoverflow.com/questions/1474098/using-system-reactive-in-net-3-5-in-a-shipping-product 4 Using System.Reactive in .NET 3.5 (in a shipping product) Orion Edwards 2009-09-24T20:55:48Z 2009-11-19T03:48:23Z <p>I've downloaded the Silverlight 3 toolkit and <a href="http://evain.net/blog/articles/2009/07/30/rebasing-system-reactive-to-the-net-clr" rel="nofollow">rebased System.Reactive.dll</a> to work on the .NET 3.5 CLR, and am really enjoying using it.</p> <p>What I'd like to know is, can I ship it?</p> <ul> <li>The <a href="http://silverlight.codeplex.com/" rel="nofollow">codeplex site for the SL toolkit</a> states that the license for the toolkit is MS-PL</li> <li>I've poked around with it in reflector and found no additional license information</li> </ul> <p>I'm thinking that I <em>may</em> be able to ship it under the MS-PL license, but at the same time it feels like I shouldn't, because I had to rebase the dll, and because I've still yet to see any official word from Microsoft about releasing the reactive framework.</p> <p>The alternative is either to just do without <code>IObservable</code>'s until .NET 4.0, or write my own ripoff version of System.Reactive - I'd probably end up going with writing a ripoff version, even though this would waste some time.</p> <p>Has anyone else thought about this issue, and is anyone else using/shipping the dll?</p> http://stackoverflow.com/questions/29244/html-select-tag-with-black-background-dropdown-triangle-is-invisible-in-firefox 2 HTML Select Tag with black background - dropdown triangle is invisible in Firefox 3 Orion Edwards 2008-08-27T00:23:02Z 2009-11-07T10:19:18Z <p>I have the following HTML (note the CSS making the background black and text white)</p> <pre><code>&lt;html&gt; &lt;select id="opts" style="background-color: black; color: white;"&gt; &lt;option&gt;first&lt;/option&gt; &lt;option&gt;second&lt;/option&gt; &lt;/select&gt; &lt;/html&gt; </code></pre> <p>Safari is smart enough to make the small triangle that appears to the right of the text the same color as the foreground text.</p> <p>Other browsers basically ignore the CSS, so they're fine too.</p> <p>Firefox 3 however applies the background color but leaves the triangle black, so you can't see it, like this</p> <p><img src="http://farm4.static.flickr.com/3248/2800878559_40a573cf1d.jpg?v=0" alt="example" title="" /></p> <p>I can't find out how to fix this - can anyone help? Is there a <code>-moz-select-triangle-color</code> or something obscure like that?</p> <p>Thanks</p> http://stackoverflow.com/questions/1676298/why-is-select-distinct-from-function-returning-duplicates/1676336#1676336 0 Answer by Orion Edwards for Why is Select distinct from function returning duplicates? Orion Edwards 2009-11-04T20:17:20Z 2009-11-04T20:17:20Z <p>I'd guess by the fact that you're casting rank to an integer that it is actually a float? If so, then my next guess would be that it comes down to typical floating point comparison issues.</p> <p>Regarding your temp table, what you're doing is selecting all the duplicate data, putting it into the temp table verbatim, then just dumping it out, duplicates and all. This might have more success</p> <pre><code>create table #temp ([rank] int) insert into #temp select [rank] from freetexttable(dbo.vw_PPN, allKeywords, N'foo', 100000 ) where [key] = 3781054 select distinct [rank] from #temp drop table #temp </code></pre> http://stackoverflow.com/questions/1676084/asynchronous-runtime-method-invocation/1676157#1676157 0 Answer by Orion Edwards for Asynchronous runtime method invocation Orion Edwards 2009-11-04T19:47:24Z 2009-11-04T19:47:24Z <p>This is similar to the other answers, but you can create a new <code>Func</code> and assign the <code>methodInf.Invoke</code> method to it. Here's an example</p> <pre><code>class Other { public void Stuff() { Console.WriteLine("stuff"); } } static void Main(string[] args) { var constructor = typeof(Other).GetConstructor(new Type[0]); var obj = constructor.Invoke(null); var method = typeof(Other).GetMethods().First(); Func&lt;object, object[], object&gt; delegate = method.Invoke; delegate.BeginInvoke(obj, null, null, null); Console.ReadLine(); } </code></pre> <p>What it's doing is creating a new variable of type <code>Func&lt;object, object[], object&gt;</code>, which matches the signature of <code>MethodInfo.Invoke</code>. It then gets a reference to the actual invoke method on your object, and sticks that reference in the variable.</p> <p>Because <code>Func&lt;&gt;</code> is a delegate type, you can then use <code>BeginInvoke</code></p> http://stackoverflow.com/questions/1670861/net-application-crash-state-of-unmanaged-resources/1670971#1670971 1 Answer by Orion Edwards for .net application crash, state of unmanaged resources Orion Edwards 2009-11-04T00:07:08Z 2009-11-04T00:07:08Z <p>The same thing that happens when a native (C/C++/etc) app crashes.</p> <p>For the most part, the Operating System will clean up immediately. It will close file handles, mutexes, network connections, and any other stuff that the OS was responsible for.</p> <p>For other resources not provided by the OS (for example a connection to SQL server), it's up to whichever piece of software is responsible for that resource. As Rex M mentions, SQL server will sit there until the connection times out, and then it will release it, but other third party software may act differently. </p> <p>This can cause problems if you're getting some unmanaged resource from a crappy piece of third party software, as it may not be smart enough to use timeouts or a similar mechanism, and the unmanaged resource might simply never ever get released. </p> <p>It can also cause problems if your third party software has long timeouts. For example, if the SQL server connection timeout is 20 minutes, and you crash 20 times in 2 minutes, then you've got 20 "used up" connections sitting there until the timeout happens. You can run yourself out of connections by doing this kind of thing.</p> http://stackoverflow.com/questions/1432900/guidance-with-sqlite-ruby-in-ironruby/1670682#1670682 0 Answer by Orion Edwards for Guidance with SQLite-ruby in IronRuby Orion Edwards 2009-11-03T22:55:00Z 2009-11-03T22:55:00Z <p>There's an sqlite3-ironruby gem which was recently released, and <a href="http://gemcutter.org/gems/sqlite3-ironruby" rel="nofollow">it's on gemcutter</a></p> <p>The source is <a href="http://github.com/jwthompson2/sqlite3-ironruby" rel="nofollow">here on gitub</a></p> http://stackoverflow.com/questions/1324904/extending-c-net-application-build-a-custom-scripting-language-or-not/1670651#1670651 0 Answer by Orion Edwards for Extending C# .NET application - build a custom scripting language or not? Orion Edwards 2009-11-03T22:46:00Z 2009-11-03T22:46:00Z <p>IronRuby is the most powerful for creating domain-specific languages, because it's syntax is much more flexible and forgiving than python's (your users are going to screw the whitespace up and get annoyed by the mandatory () to call methods).</p> <p>You could write your sample script in IronRuby and it would look like this:</p> <pre><code>TURN_POWER_ON TUNE_FREQUENCY frequency WAIT 5 if GET_FREQUENCY == frequency REPORT_PASS "Successfully tuned to " + frequency else REPORT_FAIL "Failed to tune to " + frequency end TURN_POWER_OFF </code></pre> <p>Here's a sample of a DSL our Testers are currently using to write automated tests against our UI</p> <pre><code>window = find_window_on_desktop "OurApplication" logon_button = window.find "Logon" logon_button.click list = window.find "ItemList" list.should have(0).rows add_button = window.find "Add new item" add_button.click list.should have(1).rows </code></pre> <p>However, as things stand right now IronPython is much more mature and has much better performance than IronRuby, so you may prefer to use that.</p> <p>I'd strongly recommend going with either IronPython or IronRuby over creating your own custom language... You'll save an unimaginable amount of effort (and bugs)</p> http://stackoverflow.com/questions/1592858/how-do-i-automatically-add-dlls-to-ironruby-engine/1670601#1670601 0 Answer by Orion Edwards for How do I automatically add dlls to ironruby engine. Orion Edwards 2009-11-03T22:36:38Z 2009-11-03T22:36:38Z <p><a href="http://blog.orionedwards.com/2008/09/embedded-ironruby-interactive-console.html" rel="nofollow">I did this in September 2008</a> using <code>ScriptRuntime.LoadAssembly</code>. Here's my original code</p> <pre><code>// this part may have changed, there's probably a different // way to get the ScriptRuntime from the RubyEngine or somesuch var runtime = new ScriptRuntime( Ruby.CreateRuntimeSetup() ); // give ruby access to all our assemblies foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies()) { runtime.LoadAssembly(assembly); } </code></pre> http://stackoverflow.com/questions/1562733/cucumber-on-ironruby-incredibly-slow-to-start/1670566#1670566 0 Answer by Orion Edwards for Cucumber on IronRuby incredibly slow to start? Orion Edwards 2009-11-03T22:31:19Z 2009-11-03T22:31:19Z <p>It helps a lot if you ngen the IronRuby assemblies.</p> <p>Whenever I install a new version of IronRuby, I always run this in a command prompt:</p> <pre> cd [the ironruby bin dir] for %i in (*.dll) do C:\Windows\Microsoft.NET\Framework\v2.0.50727\ngen.exe %i C:\Windows\Microsoft.NET\Framework\v2.0.50727\ngen.exe ir.exe </pre> http://stackoverflow.com/questions/44973/can-i-run-rubygems-in-ironruby/44986#44986 0 Answer by Orion Edwards for Can I run rubygems in ironruby? Orion Edwards 2008-09-04T23:45:04Z 2009-11-03T22:29:02Z <p>You've been able to run rubygems under IronRuby for quite a while now. Simply download and install the latest <a href="http://www.codeplex.com/Wikipage?ProjectName=ironruby" rel="nofollow">IronRuby from codeplex</a>, and run <code>igem</code> on the command line</p> <p><hr /></p> <blockquote> <p><strong>Original Answer:</strong></p> <p>I'm on that mailing list - to save you the digging, someone asked this a few weeks ago, and <a href="http://rubyforge.org/pipermail/ironruby-core/2008-August/002688.html" rel="nofollow">this was the answer</a></p> <p>The answer (at this point) is no, you can't, but it doesn't seem like it'll be too far away.</p> <p>PS: listen to curt. He's on the core team for ironruby. &lt;3</p> </blockquote> http://stackoverflow.com/questions/57054/how-to-solve-call-ambiguity-between-generic-ilistt-this-and-ilist-this/1669935#1669935 0 Answer by Orion Edwards for How to solve call ambiguity between Generic.IList<T>.this[] and IList.this[]? Orion Edwards 2009-11-03T20:25:24Z 2009-11-03T20:25:24Z <p>This is a dupe of <a href="http://stackoverflow.com/questions/1552456/icollection-vs-icollectiont-ambiguity-between-icollectiont-count-and-icollec">my question here</a></p> <p>To summarise, if you do this, it solves the problem:</p> <pre><code>public Interface IMySpecialCollection : IList&lt;MyObject&gt;, IList { new MyObject this[int index]; ... } </code></pre> http://stackoverflow.com/questions/19047/tortoisesvn-side-by-side-configuration-is-incorrect 3 TortoiseSVN side-by-side configuration is incorrect Orion Edwards 2008-08-20T23:02:18Z 2009-11-02T22:40:17Z <p>After upgrading to the latest version of TortoiseSVN (1.5.2.13595), it's context menu is no longer available.</p> <p>When attempting to run it manually, I get this error:</p> <pre><code>The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail </code></pre> <p>The application log shows this</p> <pre><code>Activation context generation failed for "C:\Program Files\TortoiseSVN\bin\TortoiseSVN.dll". Dependent Assembly Microsoft.VC90.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="9.0.30411.0" could not be found. Please use sxstrace.exe for detailed diagnosis. </code></pre> http://stackoverflow.com/questions/1663792/give-me-an-assignment-in-c/1663904#1663904 27 Answer by Orion Edwards for Give me an assignment in C Orion Edwards 2009-11-02T21:40:50Z 2009-11-02T21:40:50Z <pre><code>int a; a = 1; // an assignment </code></pre> http://stackoverflow.com/questions/1106881/using-the-wpf-dispatcher-in-unit-tests/1569340#1569340 0 Answer by Orion Edwards for Using the WPF Dispatcher in unit tests Orion Edwards 2009-10-14T22:21:18Z 2009-10-14T22:21:18Z <p>We've solved this issue by simply mocking out the dispatcher behind an interface, and pulling in the interface from our IOC container. Here's the interface:</p> <pre><code>public interface IDispatcher { void Dispatch( Delegate method, params object[] args ); } </code></pre> <p>Here's the concrete implementation registered in the IOC container for the real app</p> <pre><code>[Export(typeof(IDispatcher))] public class ApplicationDispatcher : IDispatcher { public void Dispatch( Delegate method, params object[] args ) { UnderlyingDispatcher.BeginInvoke(method, args); } // ----- Dispatcher UnderlyingDispatcher { get { if( App.Current == null ) throw new InvalidOperationException("You must call this method from within a running WPF application!"); if( App.Current.Dispatcher == null ) throw new InvalidOperationException("You must call this method from within a running WPF application with an active dispatcher!"); return App.Current.Dispatcher; } } } </code></pre> <p>And here's a mock one that we supply to the code during unit tests:</p> <pre><code>public class MockDispatcher : IDispatcher { public void Dispatch(Delegate method, params object[] args) { method.DynamicInvoke(args); } } </code></pre> <p>We also have a variant of the <code>MockDispatcher</code> which executes delegates in a background thread, but it's not neccessary most of the time</p> http://stackoverflow.com/questions/1552456/icollection-vs-icollectiont-ambiguity-between-icollectiont-count-and-icollec 3 ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count Orion Edwards 2009-10-12T02:42:48Z 2009-10-12T03:11:53Z <p>Note: This is similar, but not quite the same as <a href="http://stackoverflow.com/questions/1544480/icollection-icollectiont-ambiguity-problem">this other question</a></p> <p>I've implemented an <code>IBusinessCollection</code> interface. It dervies from both <code>ICollection&lt;T&gt;</code>, and the old-busted non-generic <code>ICollection</code>. I'd prefer to just dump the old busted <code>ICollection</code>, but I'm using WPF databinding with a CollectionView which wants me to implement the old-busted non-generic <code>IList</code> :-(</p> <p>Anyway, the interfaces look like this:</p> <pre><code>public interface IBusinessCollection&lt;T&gt; : ICollection&lt;T&gt;, ICollection { } public interface ICollection&lt;T&gt; { int Count { get; } } public interface ICollection { int Count { get; } } </code></pre> <p>Due to using Dependency Injection, I'm passing around objects of type <code>IBusinessCollection&lt;T&gt;</code> using their interfaces, <em>not</em> by concrete types, so I have something like this:</p> <pre><code>internal class AnonymousCollection : IBusinessCollection&lt;string&gt; { public int Count { get { return 5; } } } public class Factory { public static IBusinessCollection&lt;string&gt; Get() { return new AnonymousCollection(); } } </code></pre> <p>When I try and call this code, I get an error, as follows:</p> <pre><code>var counter = Factory.Get(); counter.Count; // Won't compile // Ambiguity between 'ICollection&lt;string&gt;.Count' and 'ICollection.Count' </code></pre> <p>There are 3 ways to make this compile, but all of them are ugly.</p> <ol> <li><p>Cast the class to it's concrete implementation (which I may not know)</p></li> <li><p>Cast the class explicitly to <code>ICollection</code></p></li> <li><p>Cast the class explicitly to <code>ICollection&lt;T&gt;</code></p></li> </ol> <p>Is there a fourth option which doesn't require me to cast things at all? I can make whatever changes I need to <code>IBusinessCollection&lt;T&gt;</code></p> http://stackoverflow.com/questions/1542263/web-server-technology-stack-market-shares 0 Web Server technology stack market shares? Orion Edwards 2009-10-09T07:12:57Z 2009-10-10T13:31:23Z <p>I'm investigating for a piece of front-end web technology which customers will install onto their own web servers. The server-side technology stack needs to support acting as a SOAP client, but not much else. My primary goal is ease of deployment.</p> <ul> <li><p>Ideally the customers wouldn't have to install any software, they could just drop in some files and go (hence I want to know about web server market share)</p></li> <li><p>If they did have to install any software, I'd like it to be as easy and painless as possible</p></li> </ul> <p>At the moment it's a close race between ASP.NET and PHP. These are my experiences and thoughts thus far:</p> <ul> <li><p>PHP is available and likely installed on most linux or BSD web servers along with Apache, but not many IIS servers. It can be installed on pretty much anything, but it's not as easy to install on windows as ASP.NET. <a href="http://php.iis.net/" rel="nofollow">It looks like this is improving, however the improvements seem to be aimed at IIS7, not 6 or 5</a></p></li> <li><p>IIS6 seems to be the most widely used version of IIS right now</p></li> <li><p>People that run *nix web servers seem to be clued up enough to install/enable PHP if they need to... not so much for windows admins</p></li> <li><p>ASP.NET is available and likely installed on many windows web servers, and if it's not installed it's not hard to add.</p></li> <li><p>ASP.NET is pretty much not available for non-windows servers - although personally I think mono is great, I just couldn't sell it as a production solution (today) to most of the *nix server admins I've met</p></li> <li><p>Ruby/Python/Java all require lots of manual hacking to get running so I've more or less ruled them out.</p></li> <li><p>It looks like PHP has a greater market share overall, but there seem to be lots more windows/IIS servers within the corporate market (which is what this software is aimed at)</p></li> </ul> <p>If anyone can point me in the direction of any statistics, or share their experiences regarding common web server setups, it would be much appreciated.</p> http://stackoverflow.com/questions/1495636/can-i-have-an-action-or-func-with-an-out-param 1 Can I have an Action<> or Func<> with an out param? Orion Edwards 2009-09-30T00:47:24Z 2009-09-30T10:16:08Z <p>I have a method with an <code>out</code> parameter, and I'd like to point an <code>Action</code> or <code>Func</code> (or other kind of delegate) at it.</p> <p>This works fine:</p> <pre><code>static void Func(int a, int b) { } Action&lt;int,int&gt; action = Func; </code></pre> <p>However this doesn't</p> <pre><code>static void OutFunc(out int a, out int b) { a = b = 0; } Action&lt;out int, out int&gt; action = OutFunc; // loads of compile errors </code></pre> <p>This is probably a duplicate, but searching for 'out parameter' isn't particularly fruitful.</p> http://stackoverflow.com/questions/1485354/should-developers-be-limited-to-certain-software-for-development/1485384#1485384 6 Answer by Orion Edwards for Should developers be limited to certain software for development? Orion Edwards 2009-09-28T04:12:01Z 2009-09-28T19:24:42Z <p>No, developers should not be limited in the software they use, because it prevents them from successfully doing their jobs. Think about how much you are paying your team of developers, - do you really want all that money to go spiraling down the drain because you've artificially prevented them from solving problems?</p> <blockquote> <p>1) Company locks down the pc and treats the developer as competent as a secretary</p> </blockquote> <p>What happens when the developer needs to do something with administrative permissions? EG: Register a COM object, restart IIS, or install the product they're building? You've just shut them down.</p> <blockquote> <p>2) Create a white-list of approved software...</p> </blockquote> <p>This is also impractical due to the sheer amount of software. As a .NET developer I regularly (at least once per week) use upwards of 50 distinct applications, and am constantly evaluating newer upgrades/alternatives for many of these applications. If everything must go through a whitelist, your "approval" staff are going to be utterly swamped by just one or 2 developers, let alone a team of them.</p> <p>If you take either of these actions, you'll achieve the following:</p> <ol> <li><p>You'll burn giant piles of time and money as the developers sit on their thumbs waiting for your approval team, or doing things the long slow tedious way because they weren't allowed to install a helpful tool</p></li> <li><p>You'll make yourself the enemy of the development department (not good if you want your devs to actually do what you ask them to do)</p></li> <li><p>You'll depress team morale substantially. Nobody enjoys feeling like they're locked in a cage, and every time they think "This would be finished 5 hours ago if only I could install grep", they'll be unhappy.</p></li> </ol> <p>A more acceptable answer is to create a blacklist for "problem" software (and websites) such as Pidgin, MSN messenger, etc if you have problems with developers slacking off. Some developers will also rail against this, but many will be OK with it, provided you are sensible in what you blacklist and don't go overboard.</p> http://stackoverflow.com/questions/1485356/how-to-get-xpath-of-text-between-br-or-br/1485374#1485374 1 Answer by Orion Edwards for how to get xpath of text between <br> or <br /> ? Orion Edwards 2009-09-28T04:02:18Z 2009-09-28T04:02:18Z <p>There are several issues here:</p> <ol> <li><p>XPath works on XML - you have HTML which is not XML (basically, the tags don't match so an XML parser will throw an exception when you give it that text)</p></li> <li><p>XPath normally also works by finding the attributes inside tags. Seeing as your <code>&lt;br&gt;</code> tags don't actually contain the text, they're just in-between it, this will also prove difficult</p></li> </ol> <p>Because of this, what you probably want to do is use XPath (or similar) to get the contents of the div, and then split the string based on <code>&lt;br&gt;</code> occurrences.</p> <p>As you've tagged this question with ruby, I'd suggest looking into hpricot, as it's a really nice and fast HTML (and XML) parsing library, which should be much more useful than mucking around with XPath</p> http://stackoverflow.com/questions/354657/rails-activesupport-time-parsing 1 Rails ActiveSupport Time Parsing? Orion Edwards 2008-12-09T23:52:56Z 2009-09-26T01:07:05Z <p><a href="http://api.rubyonrails.com/classes/ActiveSupport/CoreExtensions/Time/Conversions.html" rel="nofollow">Rails' ActiveSupport module extends the builtin ruby Time class with a number of methods.</a></p> <p>Notably, there is the <code>to_formatted_s</code> method, which lets you write <code>Time.now.to_formatted_s(:db)</code> to get a string in Database format, rather than having to write ugly <code>strftime</code> format-strings everywhere.</p> <p>My question is, is there a way to go backwards? </p> <p>Something like <code>Time.parse_formatted_s(:db)</code> which would parse a string in Database format, returning a new Time object. This seems like something that rails should be providing, but if it is, I can't find it.</p> <p>Am I just not able to find it, or do I need to write it myself?</p> <p>Thanks</p> http://stackoverflow.com/questions/1474134/wcf-call-throws-the-provided-uri-scheme-http-is-invalid-expected-net-tcp/1474152#1474152 0 Answer by Orion Edwards for WCF call throws: "The provided URI scheme 'http' is invalid; expected 'net.tcp'." exception Orion Edwards 2009-09-24T21:05:46Z 2009-09-24T21:05:46Z <p>Possibly this</p> <pre><code>&lt;serviceMetadata httpGetEnabled="true" /&gt; </code></pre> <p>You're asking it to enable HTTP on a TCP service, which seems like it might cause some problems.</p> http://stackoverflow.com/questions/1297195/who-writes-the-automated-ui-tests-developers-or-testers 3 Who writes the automated UI tests? Developers or Testers? Orion Edwards 2009-08-18T23:53:50Z 2009-09-24T01:52:27Z <p>We're in the initial stages of a large project, and have decided that some form of automated UI testing is likely going to be useful for us, but have not yet sorted out exactly how this is going to work...</p> <p>The primary goal is to automate a basic install and run-through of the app, so if a developer causes a major breakage <em>(eg: app won't install, network won't connect, window won't display, etc)</em> the testers don't have to waste their time <em>(and get annoyed by)</em> installing and configuring a broken build</p> <p>A secondary goal is to help testers when dealing with repetitive tasks.</p> <p>My question is: Who should create these kinds of tests? The implicit assumption in our team has been that the testers will do it, but everything I've read on the net always seems to imply that the developers will create them, as a kind of 'extended unit test'.</p> <p>Some thoughts:</p> <ul> <li><p>The developers seem to be in a much better position to do this, given that they know control ID's, classes, etc, and have a much better picture of how the app is working</p></li> <li><p>The testers have the advantage of NOT knowing how the app is working, and hence can produce tests which may be much more useful</p></li> <li><p>I've written some initial scripts using <a href="http://ironruby.codeplex.com" rel="nofollow">IronRuby</a> and <a href="http://white.codeplex.com" rel="nofollow">White</a>. This has worked really well, and is powerful enough to do literally anything, but then you need to be able to write code to write the UI tests</p></li> <li><p>All of the automated UI test tools we've tried (TestComplete, etc) seem to be incredibly complex and fragile, and while the testers can use them, it takes them about 100 times longer and they're constantly running into "accidental complexity" caused by the UI test tools.</p></li> <li><p>Our testers can't code, and while they're plenty smart, all I got were funny looks when I suggested that testers could potentially write simple ruby scripts (even though said scripts are about 100x easier to read and write than the mangled mess of buttons and datagrids that seems to be the standard for automated UI test tools).</p></li> </ul> <p>I'd really appreciate any feedback from others who have tried UI automation in a team of both developers and testers. Who did what, and did it work well? Thanks in advance!</p> <p><strong>Edit:</strong> The application in question is a C# WPF "rich client" application which connects to a server using WCF</p> http://stackoverflow.com/questions/832871/wcf-concurrent-requests-piling-up-on-the-server-when-using-wshttpbinding 4 WCF Concurrent requests piling up on the server when using WSHttpBinding Orion Edwards 2009-05-07T04:21:15Z 2009-09-21T20:56:06Z <p>I have a WCF client/server app which is communicating over HTTP using the WSHttpBinding.</p> <p><strong>Server Setup</strong>: self-hosting, using the standard WCF <code>ServiceHost</code>. My actual service class is attributed as:</p> <pre><code>[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, InstanceContextMode = InstanceContextMode.PerSession, UseSynchronizationContext = false)] </code></pre> <p><strong>Client Setup</strong>: using a visual-studio generated client proxy using <em>synchronous</em> service calls (<code>proxy.call_server_method</code> blocks until such time as the server has responded in full.)</p> <p><strong>Scenario</strong>: I have one particular method call which takes 20 seconds to execute on the server. The client calls this method in a seperate thread, so it is not being held up, and the <code>ConcurrencyMode.Multiple</code> means WCF should execute it in a seperate thread on the server as well.</p> <p>This theory is supported by the fact that when I configure my app to use <code>NetTcpBinding</code>, everything works fine.</p> <p><strong>Problem</strong>:<br /> If I configure the app to use <code>WSHttpBinding</code>, then this long method call causes the http requests to 'back up'. I have verified this behaviour both from inspecting my logs, and by debugging the HTTP requests using fiddler.</p> <p>Example:</p> <ul> <li>Client initiates 20-second long request on a background thread</li> <li>Client initiates request B and C on foreground thread</li> <li>Requests B and C get sent to the server, which doesn't process them until it is done with the 20-second long request</li> </ul> <p>But sometimes:</p> <ul> <li>Requests B and C <em>do not get sent</em> (they don't even appear in fiddler) until the 20-second request comes back (this is rare). <ul> <li>Note: setting <code>&lt;add address="*" maxconnection="100"/&gt;</code> in the client's app.config made this (appear to) stop happening.</li> </ul></li> <li>Request B gets sent and recieves a response immediately, while request C is held back until the 20-second one completes (this is rare)</li> </ul> <p>Here's a timeline from fiddler demonstrating the problem: (click for bigger version)</p> <p><a href="http://farm4.static.flickr.com/3311/3510636841_2a27435eec_o.png" rel="nofollow"><img src="http://farm4.static.flickr.com/3311/3510636841_18f9b2b0a1.jpg" /></a></p> <p>As you can see, the requests are all getting backed up at the server. Once the 20-second request completes, the responses all come flooding through, but note that there are some requests which <em>aren't</em> getting held up...</p> <p>So, <strong>Questions</strong>:</p> <ul> <li>What the heck is going on here? Why does it work fine using <code>NetTcpBinding</code> and not work using <code>WSHttpBinding</code>?</li> <li>Why the inconsistent behaviour?</li> <li>What can I do to fix it?</li> </ul> <p>Notes:</p> <ul> <li>It's not locking on the server. I've set breakpoints and used <code>!syncblk</code> and it consistently reports no locks are being held.</li> <li>It's not my threading (NetTcpBinding shouldn't work otherwise)</li> <li>I have <code>&lt;serviceThrottling maxConcurrentCalls="1000" maxConcurrentInstances="1000" maxConcurrentSessions="1000" /&gt;</code> set in the server's app.config</li> <li>The 20-second call is just waiting on a timer, it's not thrashing the CPU or disk or network</li> <li>I'd prefer a solution that didn't involve re-architecting the application to use asynchronous calls... it's a big bunch of legacy code and I really don't want to be messing with stuff I don't understand.</li> </ul> http://stackoverflow.com/questions/832871/wcf-concurrent-requests-piling-up-on-the-server-when-using-wshttpbinding/1456805#1456805 0 Answer by Orion Edwards for WCF Concurrent requests piling up on the server when using WSHttpBinding Orion Edwards 2009-09-21T20:56:06Z 2009-09-21T20:56:06Z <p><em>[Self-answer to show other users what our eventual solution was]</em></p> <p>In the end, I never managed to solve this.<br /> Our final solution was to switch our app away from <code>WSHttpBinding</code> and onto <code>NetTcpBinding</code> in production - we had been planning on doing this eventually anyway for performance reasons.</p> <p>This is rather unfortunate though, as it leaves a black mark on <code>WSHttpBinding</code> which may or may not be warranted. If anyone does ever come up with a solution which does not involve ditching <code>WSHttpBinding</code>, I'd love to know about it</p> http://stackoverflow.com/questions/1869527/create-class-from-database/1869542#1869542 Comment by Orion Edwards on Create class from database Orion Edwards 2009-12-08T20:16:15Z 2009-12-08T20:16:15Z Some do, some go the other way, and some can go both ways http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/204568#204568 Comment by Orion Edwards on What c# mocking framework to use? Orion Edwards 2009-12-07T05:09:13Z 2009-12-07T05:09:13Z Just because something doesn't cost a ton of money doesn't mean it's not professional or serious! FAIL http://stackoverflow.com/questions/1853896/is-it-possible-to-override-a-non-virtual-method/1853908#1853908 Comment by Orion Edwards on Is it possible to override a non-virtual method? Orion Edwards 2009-12-06T00:08:30Z 2009-12-06T00:08:30Z Although &quot;execution time polymorphic dispatch&quot; is technically the correct way to say it, I imagine this probably goes over the heads of almost everybody! http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by Comment by Orion Edwards on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? Orion Edwards 2009-11-04T00:10:56Z 2009-11-04T00:10:56Z Don't make user controls which freeze their GUI thread. WTF! http://stackoverflow.com/questions/43500/is-there-a-built-in-method-to-compare-collections-in-c/43506#43506 Comment by Orion Edwards on Is there a built-in method to compare collections in C#? Orion Edwards 2009-11-03T20:23:01Z 2009-11-03T20:23:01Z This is not reliable because SequenceEqual expects the values to come out of the dictionary in a reliable order - The dictionary makes no such guarantees about order, and dictionary.Keys could well come out as [2, 1] instead of [1, 2] and your test would fail http://stackoverflow.com/questions/43500/is-there-a-built-in-method-to-compare-collections-in-c/43505#43505 Comment by Orion Edwards on Is there a built-in method to compare collections in C#? Orion Edwards 2009-11-03T20:21:42Z 2009-11-03T20:21:42Z The problem is that SequenceEqual expects the elements to be in the same order. The Dictionary class does not guarantee the order of keys or values when enumerating, so if you're going to use SequenceEqual, you have to sort the .Keys and .Values first! http://stackoverflow.com/questions/1552456/icollection-vs-icollectiont-ambiguity-between-icollectiont-count-and-icollec/1552496#1552496 Comment by Orion Edwards on ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count Orion Edwards 2009-10-12T03:56:11Z 2009-10-12T03:56:11Z I don't want to cast it or have to explicitly state the type. I just want to use var and have clean code. As far as that goes, ICollection&lt;string&gt; counter is the same as var counter = (ICollection&lt;string&gt;), and doesn't solve the issue http://stackoverflow.com/questions/1552456/icollection-vs-icollectiont-ambiguity-between-icollectiont-count-and-icollec/1552507#1552507 Comment by Orion Edwards on ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count Orion Edwards 2009-10-12T03:53:49Z 2009-10-12T03:53:49Z PS. Didn't know you could do 'new' in interfaces. That's nice :-) http://stackoverflow.com/questions/1552456/icollection-vs-icollectiont-ambiguity-between-icollectiont-count-and-icollec/1552507#1552507 Comment by Orion Edwards on ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count Orion Edwards 2009-10-12T03:52:39Z 2009-10-12T03:52:39Z This works perfectly. Thanks! http://stackoverflow.com/questions/1542263/web-server-technology-stack-market-shares/1547959#1547959 Comment by Orion Edwards on Web Server technology stack market shares? Orion Edwards 2009-10-11T19:33:38Z 2009-10-11T19:33:38Z That's good to know. Thanks! http://stackoverflow.com/questions/1542263/web-server-technology-stack-market-shares/1546278#1546278 Comment by Orion Edwards on Web Server technology stack market shares? Orion Edwards 2009-10-11T19:33:02Z 2009-10-11T19:33:02Z I've dealt with tomcat on java on windows many times before, and found it catastrophically difficult to get running correctly. http://stackoverflow.com/questions/1542263/web-server-technology-stack-market-shares/1542989#1542989 Comment by Orion Edwards on Web Server technology stack market shares? Orion Edwards 2009-10-09T21:48:18Z 2009-10-09T21:48:18Z Fair call, basically the answer to that is &quot;it's twice as much work which I'd like to avoid if possible&quot; http://stackoverflow.com/questions/1542263/web-server-technology-stack-market-shares Comment by Orion Edwards on Web Server technology stack market shares? Orion Edwards 2009-10-09T21:47:26Z 2009-10-09T21:47:26Z client... have updated the q http://stackoverflow.com/questions/1121934/create-a-wpf-control-that-is-run-in-an-external-process/1122040#1122040 Comment by Orion Edwards on Create a WPF "control" that is run in an external process Orion Edwards 2009-10-04T19:43:24Z 2009-10-04T19:43:24Z If it won't work, how does System.Addin in the BCL do it? They have demos of WPF usercontrols running out-of-process http://stackoverflow.com/questions/1121934/create-a-wpf-control-that-is-run-in-an-external-process Comment by Orion Edwards on Create a WPF "control" that is run in an external process Orion Edwards 2009-10-04T19:42:23Z 2009-10-04T19:42:23Z Haven't done anything yet. Will have to remember to update this question when we do