Daniel Brückner

12,661
Reputation
681 views

Registered User

Name Daniel Brückner
Member for 9 months
Seen 7 hours ago
Website
Location DE
Age
9h
accepted How to convert an equation into formulas for individual variables?
1d
awarded  Mortarboard
1d
accepted C# Plugin model with user supplied RegEx
Dec
1
awarded  Nice Answer
Nov
22
revised Interview question: f(f(n)) == -n
added 62 characters in body
Nov
22
awarded  Good Answer
Nov
20
comment C# Round up
seemingly simple things may become.
Nov
20
accepted Fast algorithm for searching for substrings in a string
Nov
20
comment C# Round up
logic and pushed the bug around. Here I made the next mistakes; as Eric already mentioned I did not really analyze the bug and just did the first thing that seemed right. And I still did not use VisualStudio. Okay, I was in a hurry and did not spend more then five minutes on the "fix", but this should not be an excuse. After I Eric repeatedly pointed out the bug, I fired up VisualStudio and found the real problem. The fix using Sign() makes the thing even more unreadable and turns it into code you don't really want to maintain. I learned my lesson and will no longer underestimate how tricky
Nov
20
comment C# Round up
This answer is probably the worst thing I wrote on SO ... and it is now linked by Eric's blog... Well, my intention was not to give a readable solution; I was really locking for a short and fast hack. And to defend my solution again, I got the idea right the first time, but did not think about overflows. It was obviously my mistake to post the code without writing and testing it in VisualStudio. The "fixes" are even worse - I did not realize that it was an overflow problem and thought I made an logical mistake. In consequence the first "fixes" did not change anything; I just inverted the
Nov
20
comment Running time of minimum spanning tree? ( Prim method )
The priority of each vertex is the cost of connecting the vertex with the current spanning tree - this is the minimum weight of all edges connecting the vertex with the current tree or infinity if there is no edge. All this values are initialized with infinity and updated each time a vertex is moved from the queue to the tree.
Nov
20
answered How to manage a dictionary of lazily created objects in a multithreaded environment in .NET?
Nov
19
comment Fast algorithm for searching for substrings in a string
Given the details a FSM is probably your best choice.
Nov
19
revised Fast algorithm for searching for substrings in a string
added 411 characters in body
Nov
19
answered Fast algorithm for searching for substrings in a string
Nov
19
answered How to force multiple commands to execute in same threading timeslice?
Nov
19
answered Running time of minimum spanning tree? ( Prim method )
Nov
19
answered C# Plugin model with user supplied RegEx
Nov
19
revised Process vs Thread
deleted 221 characters in body
Nov
19
revised Process vs Thread
added 304 characters in body; deleted 4 characters in body; added 2 characters in body
Nov
19
revised Process vs Thread
added 431 characters in body
Nov
19
answered Process vs Thread
Nov
18
answered Minesweeper algorithm
Nov
18
comment ObjectContext.Refresh() ???
This just saved me many lines of code walking the object graph myself.
Oct
29
answered Entity Framework - Select specific columns and return strongly typed without losing cast
Oct
28
answered Understanding a factorial function in python
Oct
28
comment Common uses and best practices for application domains in .NET?
It just states faults, not unhandled exceptions. Maybe I should create I question asking for an example...
Oct
28
comment Common uses and best practices for application domains in .NET?
I am not talking about controlled termination of an application domain - but there is no way to prevent process termination if any thread causes an unhandled exception. (It would be great if one could proof me wrong, but I investigated the possibilities of isolating parts of an application against each other quite in depth for a current project in order to improve the reliability of the server in case of failures in subprocesses, hence I really doubt I missed a solution.)
Oct
28
comment Common uses and best practices for application domains in .NET?
I am quite sure loading a buggy plug-in into a separate application domain cannot prevent the plug-in from crashing your application - an unhandled exception will bring the application domain down and in consequence terminate the whole process.
Oct
28
comment Linq one to many insert when many already exists
By the way ... if your way from the question would work, you would always lose all the entities already in the collection when you assign a new collection - certainly not something you want to do in most cases.
Oct
28
revised Linq one to many insert when many already exists
added 645 characters in body; deleted 2 characters in body
Oct
28
comment Linq one to many insert when many already exists
You can of course write an extension method AddRange taking an EntityCollection<T> and an IEnumerable<T> that adds all the items at once.
Oct
28
accepted Linq one to many insert when many already exists
Oct
28
answered Linq one to many insert when many already exists
Oct
28
answered How to encode latitude/longitude for box search?
Oct
27
awarded  Nice Answer
Oct
27
answered Design pattern for class with upwards of 100 properties
Oct
27
comment Good way to concatenate string representations of objects?
I don't get the first point - if it would be an instance method, checking this for null does not make sense, but you have to check the sequence if it is an extension method because it might get called on a null reference.
Oct
27
revised Good way to concatenate string representations of objects?
added 277 characters in body
Oct
27
answered Good way to concatenate string representations of objects?
Oct
26
revised Java-like thread synchronization in C#
added 809 characters in body; added 70 characters in body
Oct
26
answered Java-like thread synchronization in C#
Oct
12
revised Algorithm that searches for related items based on common tags
added 317 characters in body
Oct
12
answered Algorithm that searches for related items based on common tags
Oct
12
comment List of valid resolutions for a given Screen?
You will have to search through the available WMI classes ... I am quite confident that there is a class providing the information you are looking for. Go to msdn.microsoft.com/en-us/library/… and search through the classes.
Oct
12
accepted Bumptop - What’s the relations with physics
Oct
8
comment Why does an unhandled exception not terminate a process while debugging?
The question is why I cannot do this and terminate the process.
Oct
8
comment How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ?
That is why I say "it might be very hard".
Oct
8
revised Why does an unhandled exception not terminate a process while debugging?
edited tags
Oct
8
asked Why does an unhandled exception not terminate a process while debugging?