mquander

11,705
Reputation
733 views

Registered User

Name mquander
Member for 10 months
Seen 18 hours ago
Website
Location Michigan
Age 22
Nothing much.
Nov
26
awarded  Nice Answer
Nov
24
accepted Strange .Where() behaviour. Somebody has an explanation?
Nov
24
comment Strange .Where() behaviour. Somebody has an explanation?
Citing transactions as an IEnumerable suggests that it's not SQL.
Nov
24
comment Strange .Where() behaviour. Somebody has an explanation?
I don't see how this would be connected to his issue. Perhaps his problem is a simple misunderstanding of lazy evaluation, but it doesn't seem related to the closure-reference gotcha you cite.
Nov
24
answered Strange .Where() behaviour. Somebody has an explanation?
Nov
23
answered A simple Lisp question
Nov
23
answered Have you ever had a requirement for a non-Gregorian calendar date, in a database application?
Nov
23
comment Programmatically check if a number is a palindrome
Oh, I understand, if you meant that it's not very performant. I just misinterpreted "overkill."
Nov
23
comment Programmatically check if a number is a palindrome
Overkill? If that's overkill, what's underkill?
Nov
22
comment How much should I “stretch the truth” on my resume?
I agree, this seems pretty boneheaded. What makes you think that your interviewer won't know Ruby or SQL and ask you about it?
Nov
20
comment Solitaire game design
I suggest politely that you will have a clearer understanding of a design that you work out yourself rather than one which is spoon-fed to you.
Nov
19
answered Yield Return with Null
Nov
19
comment Convert comma separated string of ints to int array
This does not do the same thing. His version handles non-integers gracefully by skipping them.
Nov
19
answered Convert comma separated string of ints to int array
Nov
19
comment Ternary operator associativity in C# - can I rely on it?
I disagree that it is a good approach. It's not idiomatic and someone who has not encountered it needs to examine it closely to see what's going on. A series of if/then clauses is clearer.
Nov
18
comment C# Improved algorithm
IEnumerable<T> has a Contains extension method defined in C# 3.0+.
Nov
18
answered C# Improved algorithm
Nov
17
answered What’s the best way to return the status of multiple conditions?
Nov
17
comment Is using an arraylist of chars faster for performing multiple string concatenation?
Wouldn't a List<T> more or less cover the resizing pro bono? I was under the impression it was just a vector under the hood.
Nov
17
comment C# - how to determine whether a Type is a number
NumericTypes.Contains(whatever)?
Nov
13
comment Do good tests enable sloppy coding?
I can't say I understand what you think the problem is. It sounds like what you described is pluses all around. You feel empowered to change your crappy code, and the tests remind you if you screw it up too badly.
Nov
13
comment What are the (dis)advantages of writing unit tests in a different language to the code?
This works pretty transparently with C# and F# in VS2010; the debugger moves between the source just as you'd expect. I can't speak for other languages.
Nov
12
comment Prime Factorization
I have to say, I don't understand how this is non-programming related. The question boils down to "what real-world algorithmic problems would be affected if P = NP" which seems like a perfectly reasonable question.
Nov
11
comment Does Google’s go-language address the problems with languages addressed in Paul’s Graham’s post ‘Why Arc isn’t Especially Object Oriented’?
What problems? That post talks about problems with overusing bulky object-oriented designs, not problems with languages.
Nov
10
comment Why doesn’t C# switch statement allow using typeof/GetType() ?
In the absence of more elaborate pattern matching, it makes sense not to switch on arbitrary types (including the type System.Type.) I think it's a stretch to claim that the designers are "play[ing] it safe because there are stupid people in the world."
Nov
10
accepted Find “’” and other interesting characters.
Nov
9
accepted Implementation of Red-Black Tree in C#
Nov
9
answered Implementation of Red-Black Tree in C#
Nov
9
answered Find “’” and other interesting characters.
Nov
7
comment Rhino Mocks constraints and Dictionary parameters
I know nothing about Rhino Mocks, but couldn't you just replace the body of the predicate in the above "UPDATE" and change it to something like dictionary => dictionary.All(pair => someDict[pair.Key] == pair.Value) ?
Nov
7
comment Appending to a serialized collection
This question is a mish-mash. What is an "XML-serialized array?" Just an XML file with a root element and then a lot of child elements and no other hierarchy? The question depends completely on the structure of the data, and there are very few details about it available.
Nov
7
comment Self taught or school taught, what makes a better programmer and why?
Question is poorly considered; obviously a good programmer has both formal and informal education.
Nov
6
comment How to populate IEnumerable in Lambda expression?
There's a long way between "can" and "should." There is no LINQ statement that would be either clearer, faster, or more flexible than that foreach.
Nov
4
accepted What algorithm would you use to solve a very large tic-tac-toe game?
Oct
31
comment Programmer or IT: How did you decide.
I'd point out that you probably only have that choice if you're a programmer, not a tech support guy.
Oct
30
answered What really is ‘good enough’ for a late project?
Oct
30
comment Resources for Game Artificial Intelligence
I removed my downvote now that you have added a real answer with links.
Oct
30
comment Linq: How to query items from a collection until the sum reaches a certain value
It would be more efficient to do the exact same thing except instead of .Where(), to use .TakeWhile(), and check whether the sum at the start is greater than 500, not at the end (else you'll take one too few elements.) Then the iteration would cease when the 500 barrier is broken.
Oct
30
answered Optimal LINQ query to get a random sub collection
Oct
26
answered How do I get values from SelectedItem in ComboBox with Linq and C# 3.5
Oct
21
comment How to fix casting error ?
All it means is that an order has a collection of "sub-orders", which might or might not be empty -- imagine that instead you had class TreeNode which implemented IEnumerable<TreeNode> for its children. Of course, in this context, it's probably just a mistake, but there's nothing paradoxical about it.
Oct
20
comment How do I write a generic extension method to convert a List to a HashSet using HashSet.AddRange()?
Reference: msdn.microsoft.com/en-us/library/…
Oct
20
comment How do I write a generic extension method to convert a List to a HashSet using HashSet.AddRange()?
There's an IEnumerable<T> extension method called Union that you can use to take the union of any two sequences, but if you've got a HashSet<T> already, it has a separate method, UnionWith, that will be more efficient, since it extends your existing set instead of allocating an entirely new one.
Oct
19
answered Flatten List in LINQ
Oct
19
comment How do I write a generic extension method to convert a List to a HashSet using HashSet.AddRange()?
That's in the .NET framework in the System.Linq namespace as an extension method on IEnumerable<T>.
Oct
19
answered How do I write a generic extension method to convert a List to a HashSet using HashSet.AddRange()?
Oct
15
accepted How would you approach this design?
Oct
9
comment What algorithm would you use to solve a very large tic-tac-toe game?
A pretty simple heuristic for tic-tac-toe position evaluation could be: look at all the consecutive sequences of your marks on the board; for each one, if it's blocked at both ends, add 0; if it's blocked at 1 end, add the length; if it's not blocked, then add 2 times the length. Higher total is higher winning chances. Adapt as necessary.
Oct
9
comment What algorithm would you use to solve a very large tic-tac-toe game?
I agree regarding the tie, see my answer.
Oct
9
comment What algorithm would you use to solve a very large tic-tac-toe game?
It seems clear that the poster was not proposing that you need 3 in a row to win on a 30x30 board.