Orion Edwards

19,167
Reputation
865 views

Registered User

Name Orion Edwards
Member for 1 year
Seen Nov 24 at 1:47
Website
Location New Zealand
Age 27
I do .NET, Ruby, Rails, PHP, and Snowboarding :-)
Nov
27
awarded  Guru
Nov
26
awarded  Popular Question
Nov
17
accepted How can you inherit from a sealed class using reflection in .Net?
Nov
13
awarded  Popular Question
Nov
12
revised Outer Joins and Linq
fix code formatting
Nov
12
revised WPF: Bind DisplayMemberPath in a combobox to the Item
Clean up code format
Nov
4
answered Why is Select distinct from function returning duplicates?
Nov
4
answered Asynchronous runtime method invocation
Nov
4
accepted How to get div height to auto-adjust to background size?
Nov
4
accepted Guidance with SQLite-ruby in IronRuby
Nov
4
comment Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread?
Don't make user controls which freeze their GUI thread. WTF!
Nov
4
answered .net application crash, state of unmanaged resources
Nov
3
answered Guidance with SQLite-ruby in IronRuby
Nov
3
answered Extending C# .NET application - build a custom scripting language or not?
Nov
3
answered How do I automatically add dlls to ironruby engine.
Nov
3
answered Cucumber on IronRuby incredibly slow to start?
Nov
3
revised Can I run rubygems in ironruby?
added 267 characters in body
Nov
3
answered How to solve call ambiguity between Generic.IList<T>.this[] and IList.this[]?
Nov
3
comment Is there a built-in method to compare collections in C#?
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
Nov
3
comment Is there a built-in method to compare collections in C#?
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!
Nov
3
awarded  Nice Answer
Nov
2
answered Give me an assignment in C
Oct
30
awarded  Nice Answer
Oct
21
awarded  Notable Question
Oct
14
answered Using the WPF Dispatcher in unit tests
Oct
12
comment ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count
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<string> counter is the same as var counter = (ICollection<string>), and doesn't solve the issue
Oct
12
comment ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count
PS. Didn't know you could do 'new' in interfaces. That's nice :-)
Oct
12
comment ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count
This works perfectly. Thanks!
Oct
12
asked ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count
Oct
11
comment Web Server technology stack market shares?
That's good to know. Thanks!
Oct
11
comment Web Server technology stack market shares?
I've dealt with tomcat on java on windows many times before, and found it catastrophically difficult to get running correctly.
Oct
9
comment Web Server technology stack market shares?
Fair call, basically the answer to that is "it's twice as much work which I'd like to avoid if possible"
Oct
9
comment Web Server technology stack market shares?
client... have updated the q
Oct
9
revised Web Server technology stack market shares?
clarify soap client
Oct
9
asked Web Server technology stack market shares?
Oct
4
comment Create a WPF “control” that is run in an external process
If it won't work, how does System.Addin in the BCL do it? They have demos of WPF usercontrols running out-of-process
Oct
4
comment Create a WPF “control” that is run in an external process
Haven't done anything yet. Will have to remember to update this question when we do
Oct
1
awarded  Notable Question
Sep
30
comment Should developers be limited to certain software for development?
Yep, having been a buildmaster I've seen my fair share of that too. "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!"
Sep
30
asked Can I have an Action<> or Func<> with an out param?
Sep
28
accepted Should developers be limited to certain software for development?
Sep
28
comment Should developers be limited to certain software for development?
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
Sep
28
revised Should developers be limited to certain software for development?
deleted 1 characters in body
Sep
28
comment Should developers be limited to certain software for development?
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
Sep
28
answered Should developers be limited to certain software for development?
Sep
28
answered how to get xpath of text between <br> or <br /> ?
Sep
27
awarded  Popular Question
Sep
26
comment What is the most spectacular way to shoot yourself in the foot with C++?
Nikolai... I think you miss the point...
Sep
24
answered WCF call throws: “The provided URI scheme ‘http’ is invalid; expected ‘net.tcp’.” exception
Sep
24
asked Using System.Reactive in .NET 3.5 (in a shipping product)