tanascius

3,984
Reputation
316 views

Registered User

Name tanascius
Member for 11 months
Seen 6 hours ago
Website
Location
Age 30
2d
answered With Git, how can I commit some changes in the working copy to a different branch?
2d
comment How to implement automatic properties in VS 2005 for a delegate callback
Yes, it does quite exactly the same.
2d
accepted How to implement automatic properties in VS 2005 for a delegate callback
2d
answered How to implement automatic properties in VS 2005 for a delegate callback
Dec
2
comment Programmer Puzzle: Encoding a chess board state throughout a game.
Isn't the initial state of a chess game well-defined? Why does it have to be encoded? I think it should be enough to encode the diffs between each turnn (=moves), only.
Nov
30
revised Do you trust code that works the first time?
removed doubt tag
Nov
28
revised How to implement this oscillation function
added 403 characters in body
Nov
28
revised How to implement this oscillation function
added 374 characters in body; deleted 6 characters in body; added 7 characters in body
Nov
28
answered How to implement this oscillation function
Nov
25
comment C: Initialize module variable
That is a right solution. Can you explain what happens when I add = 0 to the definition, maybe?
Nov
25
revised C: Initialize module variable
deleted 3 characters in body
Nov
25
comment C: Initialize module variable
No, they are only defined in the .c files - no headers, to external is involved. I checked my headers, already. Thanks for the suggestion, that was my first idea, too.
Nov
25
asked C: Initialize module variable
Nov
25
revised c# waiting for event within a function
improved formatting
Nov
25
answered Which Radio button in the group is checked?
Nov
25
comment Change DateTime in debugger
If date is not readonly ... but he is asking for changing the value of a DateTime ... your solution is to change the reference. The answer should be - you can't, because it is immutable, isn't it?
Nov
25
revised Multiple Output paths for a C# Project file
added 97 characters in body
Nov
25
answered Multiple Output paths for a C# Project file
Nov
23
revised Bit fields in C#
hidden url
Nov
20
comment Multi value Dictionary
What is the advantage over a normal KeyValuePair? Is there some kind of overhead when using a KeyValuePair?
Nov
19
revised Referencing the child of a commit in Git
Added some infos about the reflog
Nov
19
answered Referencing the child of a commit in Git
Nov
19
comment ArrayIndexOutOfBoundsException
Later he uses args[1], too ...
Nov
19
comment ByteArray In C# Is Unable To Show All Contents In TextBox
How do you parse? Maybe you don't read the full file? Some more infos please ...
Nov
19
answered What is the “??” operator for?
Nov
18
revised How do I find all expression “variable = variable;” in the Visual Studio 2008?
added 70 characters in body
Nov
18
comment How do I find all expression “variable = variable;” in the Visual Studio 2008?
+1 - the :i is even better than my :a, but my :b is better than your :Zs ^^
Nov
18
comment How do I find all expression “variable = variable;” in the Visual Studio 2008?
See my updated answer - btw. you can use $ to identify the end of a line, too ...
Nov
18
accepted How do I find all expression “variable = variable;” in the Visual Studio 2008?
Nov
18
revised How do I find all expression “variable = variable;” in the Visual Studio 2008?
added 60 characters in body; added 60 characters in body
Nov
18
answered How do I find all expression “variable = variable;” in the Visual Studio 2008?
Nov
17
comment What is the right way to compare two filenames to see if they are the same file?
Yep, your solution certainly works, but a pure .net is preferred ... well, at least I`d prefer it ... :)
Nov
17
comment What is the right way to compare two filenames to see if they are the same file?
this question is tagged c#
Nov
11
comment Testing things that should be the same both ways
+1 ... 'It Depends.'
Nov
11
answered How does a random number generator work?
Oct
27
answered Find “edges” in 32 bits word bitpattern
Oct
23
comment Help me delete the last three chars of any string please!
that answer is wrong, too - it is the right problem, but he will get everything but the last character ...
Oct
23
revised Are these examples C# closures?
deleted 2 characters in body
Oct
21
revised RegEx : Extract Number out of Source Code
improved formatting
Oct
21
answered can i use resharper 4.5 with visual studio 2010 beta
Oct
14
answered .Net Hash Codes no longer persistent???
Oct
12
awarded  Civic Duty
Oct
8
comment Simple Pseudo-Random Algorithm
Well, I tested for inputs 1 to 10mio ... you never get the same output twice ... so it might work indeed. But it is still dependant on the implementation and could change in the future.
Oct
8
comment Simple Pseudo-Random Algorithm
But his first requirement is "Each input number should match to exactly one output number and vice versa" - the vice versa will not work with your solution.
Oct
7
accepted Visual studio - TabControl.TabPages.Insert not working
Oct
7
answered Visual studio - TabControl.TabPages.Insert not working
Oct
5
comment Difference between DebuggerDisplayAttribute and DebuggerDisplay
@Eric: That is an important point I am missing in the existing answers: This is working for every attribute, even for custom ones.
Sep
25
accepted Quadratic probing: (f(k) + a*j + b*j^2) % M, How to choose a and b?
Sep
22
comment Help needed: Finding a string pattern using regular expressions
Well, I don't know, maybe I'd like to see some code or something he tried? It is not against Ed or his question ... but more about the regex questions in general ... they are always like: I have this, give me code that produces that ... maybe I should just remove regex from my favorite tags.
Sep
22
comment Help needed: Finding a string pattern using regular expressions
I know, this is no homework - but this regex questions are very similar ... did you give it any try? Did you have a look at the 100th of regex questions here on SO? Do you have any informations so far about regex? When you get an answer, will you have to ask the next time again or learn anything?