Lasse V. Karlsen

less info
111,296 reputation
26249419
bio website blog.vkarlsen.no
location Porsgrunn, Norway
age 42
visits member for 4 years, 10 months
seen 1 hour ago
stats profile views 15,990

All original source snippets I post directly on stackoverflow are licensed under the Stack Overflow community license. Links to source code elsewhere, including my own, might have its own license.

my codeplex projects: DiffLib, Mercurial.Net, Opt.Net, md2html.


11h
comment Shorten Python code
If the code works, the proper place to ask how to improve it is on codereview.stackexchange.com
11h
comment Adding chars before and after each word in a string
Before and after each word? What about this string: "A, Something here, C", would you want this: "'A', 'Something' 'here', 'C'" ?
11h
comment Generic type constraint on generic type
No, you cannot do that, and yes, you need to specify the second generic parameter in your Proxy declaration: Proxy<TClient, TChannel>.
11h
comment How to get all the folders of the project regardless of its location (different machines)?
But presumably the code that you've posted runs inside that folder, right? So it should be able to find out where it is, and then move back up the folder hierarchy. The problem however is that "..\..\..." is in relation to the current working directory which might be different from the directory containing the currently executing code.
11h
comment How to get all the folders of the project regardless of its location (different machines)?
What do you mean by "does not work"?
12h
comment List of comparisons of Merge-Sort recursive alghoritm
How far did you get? Did you know how a merge-sort algorithm works, if so can you outline the steps you managed?
12h
comment How to get all the folders of the project regardless of its location (different machines)?
What do you mean by "does not work"?
12h
comment Find a random number generator using a given random number generating function
No, it doesn't. The code as it stands now produces numbers from 1 to 6 (and not 7-9), and 2-5 occurs twice as often as 1 and 6. I have a LINQPad program here you can try that shows you: dropbox.com/s/p7m9sb4jqto9f15/SO17190340.linq
12h
comment Find a random number generator using a given random number generating function
This isn't random either, numbers 2 and 4 occurs twice as many times as the rest, and 9 none at all.
12h
comment Find a random number generator using a given random number generating function
This question has been answered already: stackoverflow.com/questions/137783/…
17h
comment Difference between * and .* in regular expressions (using python)
Have you looked up the documentation for regular expressions in Python?
1d
comment Unable to delete a file from repository in Mercurial
If you didn't commit, then the file is still in the repository, just not in your working folder, so no wonder it didn't disappear in other clones. You need to ask mercurial to forget the file, or use the delete command of mercurial to delete it, then commit, then push, then pull in other clones and update. Only then will the file disappear.
1d
comment “this” in function parameter
Youtube link broken, new link: youtube.com/watch?v=NPW_IC6C2C8 (still at @1:00)
1d
comment Unable to delete a file from repository in Mercurial
Did you commit and push after deleting the file? Is the file tracked by the repository in the first place?
2d
comment Alternative for switch that only calls methods based on cases values
Then please post some actual code that demonstrates the actual problem that you have. Solving a different problem is no use to anyone.
2d
comment Alternative for switch that only calls methods based on cases values
It would if you didn't try to wrap it in a lambda expression. His (now edited) syntax does in fact work, adding () => in front of it won't. I asked him if he had tried his own code, let me ask you the same. Did you try it?
2d
comment Alternative for switch that only calls methods based on cases values
@Cornelis: The error you're getting is because DoMethod1 is not defined as a method that returns an int, hence why I asked how the methods are declared.
2d
comment Alternative for switch that only calls methods based on cases values
What I meant by my first comment was that your syntax would only work if DoMethod1 was not actually a method, but instead a local variable, field, or property. If it's a method, you need the parenthesis.
2d
comment Alternative for switch that only calls methods based on cases values
But if it is a method, () => DoMethod1 won't work as you're not calling the method but attempting to return the method group, which is illegal.
2d
comment Alternative for switch that only calls methods based on cases values
You're assuming that DoMethod1 isn't actually a method here, aren't you? Judging by the names I would say that's wrong.