Lasse V. Karlsen

34,671
reputation
2286 views

Registered User

name Lasse V. Karlsen
member for 1 year
seen 34 mins ago
website
location Porsgrunn, Telemark, Norway
age 38

I am a developer / systems architect for a local niche software company, developing software for managing people and their jobs/duties/tasks for hospitals and similar institutions as well as county administrations.

All original source snippets I post directly on stackoverflow are licensed under the Public Domain license. Do with them as you see fit. Links to source code elsewhere, including my own, might have its own license.

Email / MSN: lasse@vkarlsen.no

Class library at: http://www.vkarlsen.no/lvk

I'm also on Google Wave at: lassevk@googlewave.com, feel free to wave at me if you have questions about any posts I have here.

28m
comment “\r\n” appears as small square boxes in word document, C#
Post some code?
1h
comment Making Threads work in parallel in c#
But if you use one connection, how will the server know which data belongs together?
2h
answered Making Threads work in parallel in c#
3h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
Oh, I have good experience with fluent interfaces :) I even have a side-project going to try to auto-generate a fluent interface from a language file, with partial methods where code should be injected. You should see the fluent interface I built for my IoC container, there's way too many classes for it :P
4h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
This was really promising. I have a similar case somewhere else where I've already used this approach, but not to solve the double type inference problem, it just lent itself to that approach. Basically, in that other place, I have a syntax like: obj.Produce().Sums(), I could easily incorporate the same here. This might even let me work with IRange-interfaces not explicitly defined by me! I'm definitely going to look into this later tonight!
11h
comment C# Priority Queue
I have a generic heap here: vkarlsen.serveftp.com:81/websvn/…, username and password both 'guest' (without the quotes). The heap still falls prey to the "problem" you mention of requiring IComparable, but you can use the ItemWithPriority class that Mark has posted.
11h
comment C# Priority Queue
Would a Heap work?
12h
comment Why is this C# Code Contract malformed?
To be honest, I haven't looked at code contracts for C# 4.0 yet, I'm still swamped with work in C# 3.0 and .NET 3.5. But, if the point of calling it a "contract" is that it is just that, then remember that criteria that stipulates when a contract is valid is written in the contract, not outside of it. You don't have a contract that says when that other contract is valid. So to me, this sounds like must be like this, you must write a contract that specifies when everything is peachy, and that contract must not be dependent on outside criteria.
12h
comment Why is this C# Code Contract malformed?
How about: Contract.Ensures(result == null || result >= 0); ?
12h
answered Use Attributes To Check Whether to Access a Method
12h
answered Text difference algorithm
12h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
One thing I was hoping to allow, since this is a class library after all, would be that I would provide the basic interfaces for "ranges", ie. from-to type, for any comparable type, and that new implementations could be built that the framework could handle. But the type inference problems seems to prohibit that model currently, so I'll have to come back to that portion of it when I remodel my C# 4.0 version next year.
12h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
You can find my final code here: vkarlsen.serveftp.com:81/websvn/… (username and password are both 'guest' without the quotes.) The methods in questions are defined in RangeExtensions.cs, and the interfaces are in IRange.cs and IRange.WithData.cs.
12h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
The way I solved it was, if you look at that code at the bottom of my post, which has a "Slice1" method where inference works, for one of the two interfaces, and "Slice2", which can handle both interfaces, but inference doesn't work. The way I handle it was to write two Slice1-type methods, one for each interface, and make the Slice2-type method private, and contain the actual implementation. The two Slice1-type methods thus just forwards the call to the private one, with explicit type specifications. This also had the upshot of allowing me to do null-checks on call, instead of on enumeration.
13h
comment C# Priority Queue
Easily fixed, just negate the priority values, if SortedList is good enough.
13h
comment C# Priority Queue
Problem with SortedList is that it doesn't allow duplicate priorities, so it forces you to ensure unique priorities.
16h
answered What is a good example to show to a non-programmer to explain what programming “looks like”?
16h
comment What is a good example to show to a non-programmer to explain what programming “looks like”?
What, you're telling me you guys are not programming by looking at just green matrix-style numbers all day? Man, no wonder C# was so hard to grok.
16h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
I have currently solved it with two extension methods, and one internally. There is no problem if I explicitly state the types in the calls, it's just the type inference that is problematic, and with two extension methods, both interfaces have their own entrypoint, and then those two methods explicitly state the types when calling a common private method.
16h
comment Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
Sorry, I need the T, because the T is used to specify the Start/End properties for the Range objects, which is used by the Slice method. Basically, the Slice method needs the contents of the IRange<T> interface, which is basically just T Start { get; } and T End { get; }.
18h
revised Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
added sample of two extension methods
18h
revised Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
final fix for code formatting
18h
asked Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
21h
comment how do i solve this error:”invalidCastException was unhandled by user code”
Good, then you've solved the question you have asked. Now you have a new problem.
1d
comment Strategy for handling parameter validation in class library
Yes, it really is that big for this core method. The checks are "array against null", "type against null", "index against array.length" and "array element type (comes as Array object for historical reasons) against type".
1d
comment Wrapping existing objects to intercept method/property calls in .NET
I'm sorry, but the point I was trying to make in my previous comment is that I do not understand your question, hence "this kind of feature" is meaningless to me. What specifically is it that you want to do? Note, if you want your proxy interceptor to be called for all method calls on the underlying object, when a fitting method is called on the proxy object, it is entirely possible to do that, with the limitation that the proxy object can only handle virtual methods (or through an interface.)
1d
asked Strategy for handling parameter validation in class library
2d
comment Real examples of SQL injection issues for SQL Server using only a Replace as prevention?
You'd be surprised how many thinks its perfectly legal to write: "..." + Request.QueryString["id"] + " AND ..."
2d
comment Accessing TEAMCITY from a remote machine
If you want a second pair of eyes looking at your problem, let me know, I can connect through CrossLoop (VNC-type application) and try to help you. But the firewall answer is the first I'd check as well, so not sure I could do/suggest anything.
2d
comment List of multicore embedded CPUs
Why is this question an interesting one? Knowing that might give people a better way to properly answer it. It's like asking "What car types come in white?" when the real question is "If I want a car that is cool in the summer, what car types comes in colors that would give me that function?"
2d
comment How to reduce calculation of average to sub-sets in a general way?
Or perhaps not, won't multiplying with 2, and 3, get me back into the range of "not supporter by the data type?"
2d
comment Lua as a general-purpose scripting language?
Please write question titles that are aligned with your question contents. If the intuitive answer to your question title is "Yes", but the intuitive answer to your question text is "Well, nobody ever implemented a good standalone script execution runner for LUA", then the question title is not really good. It's like having a title of "Are cows gods?" and then a question body like "When I drink milk, I feel like puking, why is that?".
2d
comment Create a sum of 1000, 2000, etc. from set of numers
Getting a result is just a special-case of getting the best result. You're still in NP-complete land, unfortunately.
2d
comment How to reduce calculation of average to sub-sets in a general way?
Davide, that's a good point, one that I raised myself, but more of a concern. I did not object to the answers because of underflow, but just because I just did not understand how, given the premises that the total sum would overflow the data type, any sub-division would correctly work. But, as I said, it's sunday morning, 1 o'clock, and all that ;)
2d
comment How to reduce calculation of average to sub-sets in a general way?
+1 for thinking outside the box, but not +2 (oh how I wish I could award some answers +2 instead of just +1) because you're sidestepping my whole question, and since my question is on the premises that "this is what I want to do, damned if there are other ways to do it", then unfortunately it's not the right answer.
2d
comment How to reduce calculation of average to sub-sets in a general way?
... hmm, no it won't. I think I'm getting it now.
2d
revised How to reduce calculation of average to sub-sets in a general way?
added 1744 characters in body
2d
comment How to reduce calculation of average to sub-sets in a general way?
But won't that just get me back to my original problem? The original problem, as stated by the original question, is that the "Double" data type cannot hold the total sum to be averaged. When I multiply, in your code, won't that collide with the same limitations?
2d
comment How to reduce calculation of average to sub-sets in a general way?
Note that your multiplication/division solution, for the case of the original question, will get into the same trouble eventually. At some point, the data type used to hold the value isn't going to have enough fidelity/range to hold the correct value.
2d
revised How to reduce calculation of average to sub-sets in a general way?
added 869 characters in body
2d
revised How to reduce calculation of average to sub-sets in a general way?
added 59 characters in body; added 61 characters in body
2d
answered Want to use IF THEN in SQL
2d
asked How to reduce calculation of average to sub-sets in a general way?
2d
answered Can I detect whether I’ve been given a new object as a parameter?
2d
revised Modifying a type after it has been created with TypeBuilder.CreateType
reformatted bulleted list
2d
answered Is it good practice to NULL a pointer after deleting it?
2d
answered Looking for ideas on storage of data on local disk
2d
awarded  Nice Answer
2d
revised Is there a way to get VS2008 to stop warning me about unreachable code?
added 238 characters in body
2d
revised Is there a way to get VS2008 to stop warning me about unreachable code?
grammatical fixes