User Orion Edwards - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:49:53Z http://stackoverflow.com/feeds/user/234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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 23 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/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1751#1751 37 Answer by Orion Edwards for What is the single most influential book every programmer should read? Orion Edwards 2008-08-05T00:41:27Z 2009-09-30T19:03:34Z <p><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> !!!!!</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/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-09-24T21:24:34Z <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/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/656542/trim-a-string-in-c 3 Trim a string in C Orion Edwards 2009-03-18T00:26:45Z 2009-09-16T06:05:39Z <p>Briefly: </p> <p>I'm after the equivalent of .NET's <code>String.Trim</code> in C using the win32 and standard C api (compiling with MSVC2008 so I have access to all the C++ stuff if needed, but I am just trying to trim a <code>char*</code>). </p> <p>Given that there is <code>strchr</code>, <code>strtok</code>, and all manner of other string functions, surely there should be a trim function, or one that can be repurposed...</p> <p>Thanks</p> http://stackoverflow.com/questions/1414000/save-file-to-desktop-in-vista-windows-7-in-net-2-0/1421035#1421035 1 Answer by Orion Edwards for Save File to Desktop in Vista/Windows 7 in .NET 2.0 Orion Edwards 2009-09-14T11:38:24Z 2009-09-14T11:38:24Z <p>The problem is in this code</p> <pre><code>FileStream fs = new FileStream(Environment.GetFolderPath (Environment.SpecialFolder.DesktopDirectory), FileMode.Create); </code></pre> <p>Let's rewrite it into the steps that actually will occur</p> <pre><code>var desktopFolder = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory); var fs = new FileStream(desktopFolder, FileMode.Create); </code></pre> <p>What you're trying to do here is not create a file on the desktop, you are trying to <em>create the desktop folder itself</em>. The desktop folder obviously already exists, so you get an error.</p> <p>What you need to do is create a file <em>inside</em> the desktop folder. You can use <code>Path.Combine</code> to do this, like this:</p> <pre><code>var desktopFolder = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory); var fullFileName = Path.Combine(desktopFolder, "Test.txt"); var fs = new FileStream(fullFileName, FileMode.Create); </code></pre> <p>You may also want to change the FileMode to <code>OpenOrCreate</code>, or handle your exceptions - if for example the code runs twice, and the file will already exist on the second try, so you won't be able to create it a second time</p> http://stackoverflow.com/questions/27044/how-can-i-set-lang-to-ascii 1 How can I set LANG to ascii? Orion Edwards 2008-08-25T22:28:08Z 2009-09-14T01:23:25Z <p>I'm accessing an ubuntu machine using PuTTY, and using gcc.</p> <p>The default <code>LANG</code> environment variable on this machine is set to <code>en_NZ.UTF-8</code>, which causes GCC to think PuTTY is capable of displaying UTF-8 text, which it doesn't seem to be. Maybe it's my font, I don't know - it does this:</p> <pre><code>foo.c:1: error: expected â=â, â,â, â;â, âasmâ or â__attribute__â at end of input </code></pre> <p>If I set it with <code>export LANG=en_NZ</code>, then this causes GCC to behave correctly, I get:</p> <pre><code>foo.c:1: error: expected '=', ',', ';', 'asm' or '__attribute__' at end of input </code></pre> <p>but this then causes everything else to go wrong. For example</p> <pre><code>man foo man: can't set the locale; make sure $LC_* and $LANG are correct </code></pre> <p>I've trawled google and I can't for the life of me find out what I have to put in there for it to just use ascii. <code>en_NZ.ASCII</code> doesn't work, nor do any of the other things I can find.</p> <p>Thanks</p> http://stackoverflow.com/questions/322470/can-i-invoke-an-instance-method-on-a-ruby-module-without-including-it 2 Can I invoke an instance method on a Ruby module without including it? Orion Edwards 2008-11-26T23:03:37Z 2009-09-11T14:03:09Z <h3>Background:</h3> <p>I have a module which declares a number of instance methods</p> <pre><code>module UsefulThings def get_file; ... def delete_file; ... def format_text(x); ... end </code></pre> <p>And I want to call some of these methods from within a class. How you normally do this in ruby is like this:</p> <pre><code>class UsefulWorker include UsefulThings def do_work format_text("abc") ... end end </code></pre> <h3>Problem</h3> <p><code>include UsefulThings</code> brings in <em>all</em> of the methods from <code>UsefulThings</code>. In this case I only want <code>format_text</code> and explicitly do not want <code>get_file</code> and <code>delete_file</code>.</p> <p>I can see several possible solutions to this: </p> <ol> <li>Somehow invoke the method directly on the module without including it anywhere <ul> <li>I don't know how/if this can be done. (Hence this question)</li> </ul></li> <li>Somehow include <code>Usefulthings</code> and only bring in some of it's methods <ul> <li>I also don't know how/if this can be done</li> </ul></li> <li>Create a proxy class, include <code>UsefulThings</code> in that, then delegate <code>format_text</code> to that proxy instance <ul> <li>This would work, but anonymous proxy classes are a hack. Yuck.</li> </ul></li> <li>Split up the module into 2 or more smaller modules <ul> <li>This would also work, and is probably the best solution I can think of, but I'd prefer to avoid it as I'd end up with a proliferation of dozens and dozens of modules - managing this would be burdensome</li> </ul></li> </ol> <p>Why are there lots of unrelated functions in a single module? It's <code>ApplicationHelper</code> from a rails app, which our team has de-facto decided on as the dumping ground for anything not specific enough to belong anywhere else. Mostly standalone utility methods that get used everywhere. I could break it up into seperate helpers, but there'd be 30 of them, all with 1 method each... this seems unproductive</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1395621/socket-beginreceive-performance-on-mono/1407462#1407462 1 Answer by Orion Edwards for Socket.BeginReceive Performance on Mono Orion Edwards 2009-09-10T20:13:36Z 2009-09-10T20:13:36Z <p>I can't speak specifically about the performance of that one function on mono, but in general mono performs very well these days. 4-500 connections is as you say, not very many, so I doubt you'd have any issues.</p> <p>In saying that, it shouldn't be very hard to set a test for this kind of thing up. I think that's probably the only way you'll get a conclusive answer for your situation.</p> 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 http://stackoverflow.com/questions/1485354/should-developers-be-limited-to-certain-software-for-development/1485378#1485378 Comment by Orion Edwards on Should developers be limited to certain software for development? Orion Edwards 2009-09-30T00:54:03Z 2009-09-30T00:54:03Z Yep, having been a buildmaster I've seen my fair share of that too. &quot;Just install cygwin, this custom build of perl, and put these ANT scripts in the system32 folder, install tomcat 6 with the IBM java compiler, and you're good to go!&quot; http://stackoverflow.com/questions/1485354/should-developers-be-limited-to-certain-software-for-development/1485378#1485378 Comment by Orion Edwards on Should developers be limited to certain software for development? Orion Edwards 2009-09-28T19:28:12Z 2009-09-28T19:28:12Z Ira: I agree about the restrictions on the build machine, but I believe the original question was not about the build machine, but about software to be used by developers. There is a TON of stuff which you may not want on the build machine (texteditors, graphics applications, etc) but that you should still allow your devs to use on their own machines http://stackoverflow.com/questions/1485354/should-developers-be-limited-to-certain-software-for-development/1485378#1485378 Comment by Orion Edwards on Should developers be limited to certain software for development? Orion Edwards 2009-09-28T04:14:12Z 2009-09-28T04:14:12Z The build process shouldn't be done on developer machines! Yes you definitely need to have discipline around shared resources (such as build machines), but that doesn't mean you need to limit what tools the developers can use on their own machines