Thomas Danecker

1,318
Reputation
105 views

Registered User

Name Thomas Danecker
Member for 1 year
Seen yesterday
Website
Location Austria
Age 22

CS Student at the Vienna University of Technology

All original source snippets I post on stackoverflow are dedicated to public domain. Do with them as you see fit.

Nov
11
awarded  Popular Question
Oct
31
answered How to create a language these days?
Oct
31
revised Is there a programming language that allows variable declaration at call site?
added 261 characters in body
Oct
31
answered Is there a programming language that allows variable declaration at call site?
Oct
22
answered How to write the content of one stream into another stream in .net?
Oct
7
accepted Obtain parameter values from StackFrame in .NET?
Sep
29
awarded  Popular Question
Sep
22
comment StackOverflowException in .Net
Uh, oh, you asked the question one year ago and I didn't notice... sorry for that. Just for the general community interested in an answer: Console.WriteLine is a very heavy-weight method (it even prints on the screen!) Just see the following link on things you're allowed to use in CERs: msdn.microsoft.com/en-us/library/…
Sep
18
accepted Why does generic method with constaint of T: class result in boxing?
Sep
17
answered Why does generic method with constaint of T: class result in boxing?
Sep
16
comment Speed of C# lists
"Add to end" even has accumulated costs of O(1)
Sep
16
awarded  Yearling
Sep
14
comment How to optimize the layers of pointer indirection
I don't thing that there should be a performance difference when optimization is turned on...
Sep
10
answered How to optimize the layers of pointer indirection
Aug
30
comment Confused. Is OO inherently imperative or is is it multi-paradigm?
Alan Kay doesn't consider C++ et al to be in the realm of OOP, because the way the "Behavior"-Part is implemented in them. It's that "sending messages to communicate" part, that's a bit missing in these languages...
Aug
25
comment What are multi-threading DOs and DONTs?
The last one should also be a DON'T like the first one. Interlocked operations do not scale that well either (because of various, very bad caching effects and other cpu-synchronization requirements). I'd still prefer locks over interlocked operations, but they may be a last resort when profiling shows a problem with the locks and you can't do something else (like less sharing).
Aug
25
comment What are multi-threading DOs and DONTs?
Or use a framework like .net's Task Parallel Library, create a lot of little tasks and let the runtime system decide which to execute in parallel. (No shared state is even more important in this scenario)
Aug
25
comment What are multi-threading DOs and DONTs?
And those that understand how difficult multi-threading is and therefore are using something else to achieve concurrency :) (Communicating Sequencial Processes, Dataflow Variables, languages like Erlang, Mozart Oz, etc.)
Aug
24
answered What are multi-threading DOs and DONTs?
Aug
24
revised String Between Function?
added 285 characters in body
Aug
24
answered String Between Function?
Aug
21
answered Confused. Is OO inherently imperative or is is it multi-paradigm?
Aug
18
accepted Optimize finding all classes implementing IInterface<T> and those explicitly implementing it with a specific type
Aug
17
answered Possible to output to console from within a class library C#?
Aug
14
comment Fastest way to move a part of an array to the right
maybe there's a lot of boxing going on? (the arrays using a value-type are slower than those using a reference type...)
Aug
14
comment C# Expression using And Or and Not expression together based on AST
There are no if-statements. The OrElse/AndAlso are just the normal C# && and || operators (with their short-circuiting evaluation strategy indicated by the names in the Expression tree).
Aug
14
answered C# Expression using And Or and Not expression together based on AST
Aug
13
comment Optimize finding all classes implementing IInterface<T> and those explicitly implementing it with a specific type
Added a better version to my answer.
Aug
13
revised Optimize finding all classes implementing IInterface<T> and those explicitly implementing it with a specific type
added 679 characters in body; deleted 2 characters in body
Aug
12
answered How to find all the types in an Assembly that Inherit from a Specific Type C#
Aug
12
answered Optimize finding all classes implementing IInterface<T> and those explicitly implementing it with a specific type
Aug
12
comment Reliability of file locking on network files
Actually, he says that NFS might not work because most of the fcntl implementations (on linux!) are broken for this network file system. But he also mentions that "People who have a lot of experience with Windows tell me that file locking of network files is very buggy and is not dependable." Are you sure he also means NFS with network files?
Aug
11
accepted Thread-safe memoization
Aug
10
answered API Model for Server Push Technologies (COMET)
Aug
10
comment Seemingly unnecessary case in the unification algorithm in SICP
Is it even called unification if you're stopping in the middle of it? I remember by Prof. in Logic Programming deducted some points if you didn't unify everything that's possible.
Aug
10
comment Seemingly unnecessary case in the unification algorithm in SICP
Yeah, you're right, it has nothing to do with the 'most general' unifier. I confused the variables with the values at the definition here: cs.ualberta.ca/~you/courses/… Actually, I haven't seen an implementation that doesn't try to unify as much as possible...
Aug
10
comment Return a count with linq-to-sql
I think the first one doesn't compile because it requires a select, but I'd recommend the second one.
Aug
10
asked Reliability of file locking on network files
Aug
10
revised Thread-safe memoization
added 410 characters in body
Aug
10
answered Thread-safe memoization
Aug
10
accepted How to convert IQueryable to a List?
Aug
10
awarded  Organizer
Aug
10
revised How to convert IQueryable to a List?
edited tags
Aug
10
answered How to convert IQueryable to a List?
Aug
10
revised Explicit type recursion in F#
added 212 characters in body; edited tags
Aug
10
comment Are Infinite Types (aka Recursive Types) not possible in F#?
I'd also be interested if the more general version works: stackoverflow.com/questions/1253374/…
Aug
10
asked Explicit type recursion in F#
Aug
7
answered Seemingly unnecessary case in the unification algorithm in SICP
Aug
6
answered Logging overview from multiple applications
Aug
6
answered Convert c# to clientside Javascript