User Thomas Danecker - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:51:14Z http://stackoverflow.com/feeds/user/9632 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1726098/good-information-about-type-systems-based-on-contracts-constraints/1810606#1810606 2 Answer by Thomas Danecker for Good information about type systems based on contracts/constraints? Thomas Danecker 2009-11-27T20:55:02Z 2009-11-27T20:55:02Z <p>You can have a look at languages like <a href="http://haskell.org/" rel="nofollow">Haskell</a>, or even <a href="http://wiki.portal.chalmers.se/agda/agda.php?n=Main.HomePage" rel="nofollow">Agda</a>. Also, <a href="http://okmij.org/ftp/" rel="nofollow">Oleg</a> has lots of great resources.</p> http://stackoverflow.com/questions/1596230/linear-towers-of-hanoi/1810591#1810591 0 Answer by Thomas Danecker for linear towers of hanoi Thomas Danecker 2009-11-27T20:50:39Z 2009-11-27T20:50:39Z <p>You can transform the code into continuation-passing-style. Then everything is tail-recursive...</p> http://stackoverflow.com/questions/581110/using-ms-sync-framework-to-synchronize-two-sql-ce-dbs 4 Using MS Sync Framework to synchronize two SQL CE Dbs Thomas Danecker 2009-02-24T09:41:54Z 2009-10-31T20:56:34Z <p>I'm just working into the Microsoft Sync Framework. It looks quite easy to sync a local SQL CE 3.5 Database with a remote SQL Server 2008 using the SqlSyncAdapterBuilder and SqlServerChangeTracking.</p> <p>Unfortunately, syncing two SQL CE 3.5 Databases doesn't look that easy...<br /> The documentation is very sparse, and I don't realy know how to get started here.</p> <p>My concrete scenario looks like the following:</p> <ul> <li>I have one central SQL Server 2008.</li> <li>Multiple clients are connected to this server (some of them only partially). </li> <li>Those (partially connected) clients are using multiple applications (maybe running concurrently) working on the same data base.</li> </ul> <p>Syncing the clients with the central server should be no problem. Syncing the multiple applications on an offline-client is where I've thought of using multiple SQL CE databases (one as a server, and one for every application-instance). I'd really appriciate being able to use the same conflict-resolution mechanisms when syncing the clients with the server and also when syncing multiple applications on the client. Installing a SQL Server 2008 Express on every client is a no-go.</p> <p>Does anyone have some experience with syncing two SQL CE databases?</p> http://stackoverflow.com/questions/1550025/how-to-create-a-language-these-days/1654484#1654484 0 Answer by Thomas Danecker for How to create a language these days? Thomas Danecker 2009-10-31T14:12:33Z 2009-10-31T14:12:33Z <blockquote> <p>Just to clarify, I mean, not how do you DESIGN a language (that I can figure out fairly easily)</p> </blockquote> <p>Just a hint: Look at some quite <em>different</em> languages first, before designing a new languge (i.e. languages with a very different evaluation strategy). <a href="http://haskell.org/" rel="nofollow">Haskell</a> and <a href="http://www.mozart-oz.org/" rel="nofollow">Oz</a> come to mind. Though you should also know Prolog and Scheme. A year ago I also was like "hey, let's design a language that behaves exactly as I want", but fortunatly I looked at those other languages first (or you could also say <em>unfortunatly</em>, because now I don't know how I want a language to behave anymore...).</p> http://stackoverflow.com/questions/1627191/is-there-a-programming-language-that-allows-variable-declaration-at-call-site/1654431#1654431 1 Answer by Thomas Danecker for Is there a programming language that allows variable declaration at call site? Thomas Danecker 2009-10-31T13:49:40Z 2009-10-31T13:55:53Z <p>You might have a look at <a href="http://www.mozart-oz.org/documentation/tutorial/node5.html#control.procedure" rel="nofollow">Oz</a>. In Oz you only have procedures and you assign values to variables instead of returning them.</p> <p>It looks like this:</p> <pre><code>proc {Max X Y Z} if X &gt;= Y then Z = X else Z = Y end end </code></pre> <p>There are functions (that <em>return</em> values) but this is only syntactic sugar.</p> <p>Also, <a href="http://rads.stackoverflow.com/amzn/click/0262220695" rel="nofollow">Concepts, Techniques, and Models of Computer Programming</a> is a great SICP-like book that teaches programming by using Oz and the Mozart Programming System.</p> http://stackoverflow.com/questions/129305/how-to-write-the-content-of-one-stream-into-another-stream-in-net 4 How to write the content of one stream into another stream in .net? Thomas Danecker 2008-09-24T19:25:54Z 2009-10-22T17:31:42Z <p>I often run into the problem that I have one stream full of data and want to write everything of it into another stream.</p> <p>All code-examples out there use a buffer in form of a byte-array.</p> <p>Is there a more elegant way to this?</p> <p>If not, what's the ideal size of the buffer. Which factors make up this value?</p> http://stackoverflow.com/questions/129305/how-to-write-the-content-of-one-stream-into-another-stream-in-net/1608755#1608755 1 Answer by Thomas Danecker for How to write the content of one stream into another stream in .net? Thomas Danecker 2009-10-22T17:31:42Z 2009-10-22T17:31:42Z <p>In .net 4.0 we finally got a Stream.CopyTo method! yay!</p> http://stackoverflow.com/questions/1400414/why-does-generic-method-with-constaint-of-t-class-result-in-boxing/1439493#1439493 1 Answer by Thomas Danecker for Why does generic method with constaint of T: class result in boxing? Thomas Danecker 2009-09-17T15:12:20Z 2009-09-17T15:12:20Z <p>You don't have to worry about any performance-degradations from the <code>box</code> instruction because if its argument is a reference type, the <code>box</code> instruction does nothing. Though it's still strange that the <code>box</code> instruction has even been created (maybe lazyiness/easier design at code generation?).</p> http://stackoverflow.com/questions/1404942/how-to-optimize-the-layers-of-pointer-indirection/1404977#1404977 5 Answer by Thomas Danecker for How to optimize the layers of pointer indirection Thomas Danecker 2009-09-10T12:26:06Z 2009-09-10T12:26:06Z <p>The c compiler certainly knows when the memory is contiguous. You don't have to tell it.</p> http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1321886#1321886 9 Answer by Thomas Danecker for What are multi-threading DOs and DONTs? Thomas Danecker 2009-08-24T11:38:45Z 2009-08-24T11:38:45Z <p>I'd make a very blatant statement:</p> <p><strong>DON'T</strong> use shared memory.</p> <p><strong>DO</strong> use message passing.</p> <p>As a general advice, try to limit the amount of shared state and prefer more event-driven architectures.</p> http://stackoverflow.com/questions/1321727/string-between-function/1321832#1321832 0 Answer by Thomas Danecker for String Between Function? Thomas Danecker 2009-08-24T11:24:50Z 2009-08-24T11:31:26Z <p>You can also use the <a href="http://msdn.microsoft.com/en-us/library/5xkyx09y.aspx" rel="nofollow">String.IndexOf(char value, int startIndex)</a> method which has, as its parameter says, a start index from which the scan is started.</p> <pre><code>int start = 0; do { int i1 = s.IndexOf('=', start); if (i1 &lt; 0) break; int i2 = s.IndexOf('=', i1 + 1); if (i2 &lt; 0) break; yield return s.Substring(i1, i2 - i1); start = i2 + 1; } while (start &lt; s.Length); </code></pre> http://stackoverflow.com/questions/553536/confused-is-oo-inherently-imperative-or-is-is-it-multi-paradigm/1311058#1311058 0 Answer by Thomas Danecker for Confused. Is OO inherently imperative or is is it multi-paradigm? Thomas Danecker 2009-08-21T10:01:13Z 2009-08-21T10:01:13Z <p>A lot of different concepts contribute to the concept of Object Oriented Programming. <a href="http://en.wikipedia.org/wiki/Object-oriented%5Fprogramming" rel="nofollow">Wikipedia</a> lists mosts of them.</p> <p>I would characterize the essence of OOP by the use of <a href="http://en.wikipedia.org/wiki/Object%5F%28computer%5Fscience%29" rel="nofollow">Objects with Behaviours</a>.</p> <p>Wikipedia characterizes <strong>Objects</strong> by the following three properties:</p> <ol> <li><strong>Identity</strong>: the property of an object that distinguishes it from other objects</li> <li><strong>State</strong>: describes the data stored in the object</li> <li><strong>Behavior</strong>: describes the methods in the object's interface by which the object can be used</li> </ol> <p>A lot of Object Oriented Language have a concept of classes, but actually, there are also <a href="http://en.wikipedia.org/wiki/Prototype-based%5Fprogramming" rel="nofollow">Prototype-based languages</a> like JavaScript.</p> <p>Functional languages may also use classes (e.g. Type Classes in Haskell). But just because they have classes doesn't mean that they are object oriented or allow object oriented programming. To stay with the example of Haskell: You don't even have Objects! There is no such concept as "Identity"! All you can do is composing pure functions!</p> <p>Just because someone's using a term named "classes", it doesn't mean they're doing object orientated programming!</p> <p>OOP is about stateful Objects with behaviour. Though the behaviour of objects don't have to modify that object because new objects can be created instead, you'd loose the need of Objects completely. You wouldn't need Identities anymore, because it doesn't matter if the changes to one object are reflected by other references to the same object because there wouldn't be any changes anymore. All you need are Values (without identity) and Modules and/or Classes for data hiding and encapsulation.</p> <p>So <strong>Yes</strong>, imperative programming is inherent to OOP.</p> http://stackoverflow.com/questions/1288294/possible-to-output-to-console-from-within-a-class-library-c/1288324#1288324 2 Answer by Thomas Danecker for Possible to output to console from within a class library C#? Thomas Danecker 2009-08-17T14:39:06Z 2009-08-17T14:39:06Z <p>Sure it is, just use <code>System.Console.Write...</code></p> http://stackoverflow.com/questions/1276485/c-expression-using-and-or-and-not-expression-together-based-on-ast/1276510#1276510 1 Answer by Thomas Danecker for C# Expression using And Or and Not expression together based on AST Thomas Danecker 2009-08-14T07:31:38Z 2009-08-14T07:31:38Z <p>like that?</p> <pre><code>Expression&lt;Func&lt;bool&gt;&gt; featureEnabledExpTree = () =&gt; IsFeatureEnabled("MV", "") &amp;&amp; IsFeatureEnabled("GAS", "G") || !IsFEatureEnabled("GAS", "F"); </code></pre> http://stackoverflow.com/questions/1262057/optimize-finding-all-classes-implementing-iinterfacet-and-those-explicitly-impl/1265532#1265532 2 Answer by Thomas Danecker for Optimize finding all classes implementing IInterface<T> and those explicitly implementing it with a specific type Thomas Danecker 2009-08-12T11:13:09Z 2009-08-13T09:50:45Z <p>Unfortunatly I'm not aware of any other way (I also had to write such code more than once).</p> <p>The one thing you can do is to make the <code>Where</code> in the first method a bit nicer:</p> <pre><code>private List&lt;Type&gt; GetListOfGenericSerializers() { Type interfaceGenricType = typeof(ISerializeDeserialize&lt;&gt;); var serializers = from assembly in AppDomain.CurrentDomain.GetAssemblies() from genericType in assembly.GetTypes() from interfaceType in genericType.GetInterfaces() where genericType.IsGenericTypeDefinition &amp;&amp; interfaceType.IsGeneric &amp;&amp; interfaceType.GetGenericTypeDefinition() == interfaceGenericType select genericType; return serializers.ToList(); } </code></pre> http://stackoverflow.com/questions/1268397/how-to-find-all-the-types-in-an-assembly-that-inherit-from-a-specific-type-c/1268425#1268425 0 Answer by Thomas Danecker for How to find all the types in an Assembly that Inherit from a Specific Type C# Thomas Danecker 2009-08-12T20:06:04Z 2009-08-12T20:06:04Z <p>You have to enumerate all types and check for each if it inherits the one you're looking for.</p> <p>Some code like the one in <a href="http://stackoverflow.com/questions/1262057/optimize-finding-all-classes-implementing-iinterfacet-and-those-explicitly-impl/1265532#1265532">this question</a> may be useful for you.</p> http://stackoverflow.com/questions/1255219/reliability-of-file-locking-on-network-files 1 Reliability of file locking on network files Thomas Danecker 2009-08-10T14:28:21Z 2009-08-11T02:15:29Z <p>I read that file locking on network files <a href="http://www.sqlite.org/faq.html#q5" rel="nofollow">isn't very reliable</a>.</p> <p>I'm using those LockFile/LockFileEx/UnlockFile win32-api functions for range-locks. Does anyone have some experience of using those functions on files living on a network-share?</p> http://stackoverflow.com/questions/1218292/api-model-for-server-push-technologies-comet/1255655#1255655 0 Answer by Thomas Danecker for API Model for Server Push Technologies (COMET) Thomas Danecker 2009-08-10T15:44:46Z 2009-08-10T15:44:46Z <p>There's no general solution that fits all applications. If you want to learn about some general patterns, have a look at <strong>Event-Driven Architectures</strong>.</p> <p>There are some <a href="http://jsug.at/w/images/5/5e/JSUG-Slides%5FEDA-Alexander%5FSchatten.pdf" rel="nofollow">slides</a> online from a presentation I attended once (it's a quite high-level view of the topic).</p> http://stackoverflow.com/questions/1254995/thread-safe-memoization/1255107#1255107 6 Answer by Thomas Danecker for Thread-safe memoization Thomas Danecker 2009-08-10T14:10:59Z 2009-08-10T14:19:12Z <p>If you already have that <code>Lazy&lt;T&gt;</code> type, I assume you're using .net 4.0, so you could also use the <code>ConcurrentDictionary&lt;A,R&gt;</code>:</p> <pre><code>public static Func&lt;A, R&gt; Memoize&lt;A, R&gt;(this Func&lt;A, R&gt; f) { var map = new ConcurrentDictionary&lt;A, Lazy&lt;R&gt;&gt;(); return a =&gt; { Lazy&lt;R&gt; lazy = new Lazy&lt;R&gt;(() =&gt; f(a), LazyExecutionMode.EnsureSingleThreadSafeExecution); if(!map.TryAdd(a, lazy)) { return map[a].Value; } return lazy.Value; }; } </code></pre> http://stackoverflow.com/questions/1253374/explicit-type-recursion-in-f 4 Explicit type recursion in F# Thomas Danecker 2009-08-10T06:30:35Z 2009-08-10T06:48:49Z <p><em>Inspired by <a href="http://stackoverflow.com/questions/1228644/are-infinite-types-aka-recursive-types-not-possible-in-f">this question</a>:</em></p> <p><strong>Is explicit type recursion possible in F#?</strong></p> <pre><code>type 'a Mu = In of 'a Mu 'a let unIn (In x) = x </code></pre> <p>This code unfortunatly gives "Type parameter cannot be used as type constructor.</p> <p><em>Remarks: This construct is used in the paper <a href="http://web.cecs.pdx.edu/~mpj/pubs/springschool.html" rel="nofollow">Functional Programming with Overloading and Higher-Order Polymorphism</a>, for example.</em></p> <p>Example of usage (taken from <a href="http://blog.plover.com/prog/springschool95-2.html" rel="nofollow">here</a>):</p> <pre><code>type ('a, 'b) ListX = | Nil | Cons of 'a * 'b type 'a List = ListX Mu </code></pre> http://stackoverflow.com/questions/1253421/how-to-convert-iqueryable-to-a-list/1253427#1253427 7 Answer by Thomas Danecker for How to convert IQueryable to a List? Thomas Danecker 2009-08-10T06:44:45Z 2009-08-10T06:44:45Z <p>You just need parantheses:</p> <p><code>lists.ToList&lt;ToDoListInfo&gt;();</code></p> <p>Also, you do not have to declare the type parameter, i.e. you could use the following and let the type-system infer the type parameter:</p> <p><code>lists.ToList();</code></p> http://stackoverflow.com/questions/1229590/seemingly-unnecessary-case-in-the-unification-algorithm-in-sicp/1243510#1243510 0 Answer by Thomas Danecker for Seemingly unnecessary case in the unification algorithm in SICP Thomas Danecker 2009-08-07T08:00:53Z 2009-08-07T08:00:53Z <p>Without it, you wouldn't get the <strong>most general</strong> unifier. There'd still be work to be done: unifying x and y.</p> http://stackoverflow.com/questions/1239265/logging-overview-from-multiple-applications/1239505#1239505 0 Answer by Thomas Danecker for Logging overview from multiple applications Thomas Danecker 2009-08-06T15:04:20Z 2009-08-06T15:04:20Z <p>You could log to a central <a href="http://en.wikipedia.org/wiki/Microsoft%5FMessage%5FQueuing" rel="nofollow">Message Queue</a>.</p> http://stackoverflow.com/questions/1238487/convert-c-to-clientside-javascript/1239446#1239446 0 Answer by Thomas Danecker for Convert c# to clientside Javascript Thomas Danecker 2009-08-06T14:54:49Z 2009-08-06T14:54:49Z <p>I heard about a cross-compiler from c# (or was it IL?) to JavaScript but unfortunatly do not remember the name anymore, but a google-search turned up stuff like this: <a href="http://jsc.sourceforge.net/" rel="nofollow">http://jsc.sourceforge.net/</a></p> http://stackoverflow.com/questions/1225857/write-string-to-text-file-and-ensure-always-overwriting/1226018#1226018 0 Answer by Thomas Danecker for write string to text file and ensure always overwriting Thomas Danecker 2009-08-04T07:01:59Z 2009-08-04T07:01:59Z <p>Generally, <code>FileMode.Create</code> is what you're looking for.</p> http://stackoverflow.com/questions/1225945/how-to-release-a-handle-through-c/1225977#1225977 0 Answer by Thomas Danecker for How to release a handle through C#? Thomas Danecker 2009-08-04T06:49:03Z 2009-08-04T06:49:03Z <p>Just use the Dispose or Close method of the class that opened the handle.</p> http://stackoverflow.com/questions/71257/suspend-process-in-c 2 Suspend Process in C# Thomas Danecker 2008-09-16T11:07:34Z 2009-07-02T07:49:46Z <p>How do I suspend a whole process (like the Process Explorer does when I click Suspend) in C#.</p> <p>I'm starting the Process with Process.Start, and on a certain event, I want to suspend the process to be able to do some investigation on a "snapshot" of it.</p> http://stackoverflow.com/questions/265392/why-is-lazy-evaluation-useful/309321#309321 3 Answer by Thomas Danecker for Why is lazy evaluation useful? Thomas Danecker 2008-11-21T16:21:47Z 2009-06-19T18:38:54Z <p>There's a difference between normal order evaluation an lazy evaluation (as in Haskell).</p> <pre><code>square x = x * x </code></pre> <p>Evaluating the following expression...</p> <pre><code>square (square (square 2)) </code></pre> <p>... with eager evaluation:</p> <pre><code>&gt; square (square (2 * 2)) &gt; square (square 4) &gt; square (4 * 4) &gt; square 16 &gt; 16 * 16 &gt; 256 </code></pre> <p>... with normal order evaluation:</p> <pre><code>&gt; (square (square 2)) * (square (square 2)) &gt; ((square 2) * (square 2)) * (square (square 2)) &gt; ((2 * 2) * (square 2)) * (square (square 2)) &gt; (4 * (square 2)) * (square (square 2)) &gt; (4 * (2 * 2)) * (square (square 2)) &gt; (4 * 4) * (square (square 2)) &gt; 16 * (square (square 2)) &gt; ... &gt; 256 </code></pre> <p>... with lazy evaluation:</p> <pre><code>&gt; (square (square 2)) * (square (square 2)) &gt; ((square 2) * (square 2)) * ((square 2) * (square 2)) &gt; ((2 * 2) * (2 * 2)) * ((2 * 2) * (2 * 2)) &gt; (4 * 4) * (4 * 4) &gt; 16 * 16 &gt; 256 </code></pre> <p>That's because lazy evaluation looks at the syntax tree and does tree-transformations...</p> <pre><code>square (square (square 2)) || \/ * / \ \ / square (square 2) || \/ * / \ \ / * / \ \ / square 2 || \/ * / \ \ / * / \ \ / * / \ \ / 2 </code></pre> <p>... whereas normal order evaluation only does textual expansions.</p> <p>That's why we, when using lazy evaluation, get more powerful (evaluation terminates more often then other strategies) while the performance is equivalent to eager evaluation (at least in O-notation).</p> http://stackoverflow.com/questions/1019313/what-kind-of-projects-besides-the-obvious-os-stuff-use-assembly-language/1019345#1019345 0 Answer by Thomas Danecker for What kind of projects (besides the obvious OS stuff) use assembly language? Thomas Danecker 2009-06-19T18:17:12Z 2009-06-19T18:17:12Z <p>I think the most prominent programs where assembler is used are boot-loader.</p> http://stackoverflow.com/questions/915745/thoughts-on-foreach-with-enumerable-range-vs-traditional-for-loop/928611#928611 1 Answer by Thomas Danecker for Thoughts on foreach with Enumerable.Range vs traditional for loop Thomas Danecker 2009-05-30T00:08:13Z 2009-05-30T00:08:13Z <p>I'd like to have the syntax of some other languages like Python, Haskell, etc.</p> <pre><code>// Write the numbers 1 thru 7 foreach (int index in [1..7]) { Console.WriteLine(index); } </code></pre> <p>Fortunatly, we got F# now :)</p> <p>As for C#, I'll have to stick with the Enumerable.Range method.</p> http://stackoverflow.com/questions/107735/stackoverflowexception-in-net/128997#128997 Comment by Thomas Danecker on StackOverflowException in .Net Thomas Danecker 2009-09-22T15:00:03Z 2009-09-22T15:00:03Z 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: <a href="http://msdn.microsoft.com/en-us/library/ms228973.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1433307/speed-of-c-lists/1433331#1433331 Comment by Thomas Danecker on Speed of C# lists Thomas Danecker 2009-09-16T14:58:24Z 2009-09-16T14:58:24Z &quot;Add to end&quot; even has accumulated costs of O(1) http://stackoverflow.com/questions/1404942/how-to-optimize-the-layers-of-pointer-indirection/1405935#1405935 Comment by Thomas Danecker on How to optimize the layers of pointer indirection Thomas Danecker 2009-09-14T15:03:13Z 2009-09-14T15:03:13Z I don't thing that there should be a performance difference when optimization is turned on... http://stackoverflow.com/questions/553536/confused-is-oo-inherently-imperative-or-is-is-it-multi-paradigm/1311058#1311058 Comment by Thomas Danecker on Confused. Is OO inherently imperative or is is it multi-paradigm? Thomas Danecker 2009-08-30T08:42:13Z 2009-08-30T08:42:13Z Alan Kay doesn't consider C++ et al to be in the realm of OOP, because the way the &quot;Behavior&quot;-Part is implemented in them. It's that &quot;sending messages to communicate&quot; part, that's a bit missing in these languages... http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1322035#1322035 Comment by Thomas Danecker on What are multi-threading DOs and DONTs? Thomas Danecker 2009-08-25T09:39:28Z 2009-08-25T09:39:28Z 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). http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1321907#1321907 Comment by Thomas Danecker on What are multi-threading DOs and DONTs? Thomas Danecker 2009-08-25T09:33:46Z 2009-08-25T09:33:46Z 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) http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1321838#1321838 Comment by Thomas Danecker on What are multi-threading DOs and DONTs? Thomas Danecker 2009-08-25T09:29:49Z 2009-08-25T09:29:49Z 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.) http://stackoverflow.com/questions/1321467/which-programming-technique-helps-you-most-to-avoid-or-resolve-bugs-before-they-c/1321899#1321899 Comment by Thomas Danecker on Which programming technique helps you most to avoid or resolve bugs before they come into production Thomas Danecker 2009-08-24T15:08:05Z 2009-08-24T15:08:05Z I'm thinking more in the lines of Haskell ;) http://stackoverflow.com/questions/1276650/fastest-way-to-move-a-part-of-an-array-to-the-right/1276655#1276655 Comment by Thomas Danecker on Fastest way to move a part of an array to the right Thomas Danecker 2009-08-14T09:44:30Z 2009-08-14T09:44:30Z maybe there's a lot of boxing going on? (the arrays using a value-type are slower than those using a reference type...) http://stackoverflow.com/questions/1276485/c-expression-using-and-or-and-not-expression-together-based-on-ast/1276518#1276518 Comment by Thomas Danecker on C# Expression using And Or and Not expression together based on AST Thomas Danecker 2009-08-14T09:38:52Z 2009-08-14T09:38:52Z There are no if-statements. The OrElse/AndAlso are just the normal C# &amp;&amp; and || operators (with their short-circuiting evaluation strategy indicated by the names in the Expression tree). http://stackoverflow.com/questions/1262057/optimize-finding-all-classes-implementing-iinterfacet-and-those-explicitly-impl/1265532#1265532 Comment by Thomas Danecker on Optimize finding all classes implementing IInterface<T> and those explicitly implementing it with a specific type Thomas Danecker 2009-08-13T09:51:43Z 2009-08-13T09:51:43Z Added a better version to my answer. http://stackoverflow.com/questions/1255219/reliability-of-file-locking-on-network-files/1258174#1258174 Comment by Thomas Danecker on Reliability of file locking on network files Thomas Danecker 2009-08-12T08:37:32Z 2009-08-12T08:37:32Z 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 &quot;People who have a lot of experience with Windows tell me that file locking of network files is very buggy and is not dependable.&quot; Are you sure he also means NFS with network files? http://stackoverflow.com/questions/1229590/seemingly-unnecessary-case-in-the-unification-algorithm-in-sicp/1243510#1243510 Comment by Thomas Danecker on Seemingly unnecessary case in the unification algorithm in SICP Thomas Danecker 2009-08-10T14:51:47Z 2009-08-10T14:51:47Z 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. http://stackoverflow.com/questions/1229590/seemingly-unnecessary-case-in-the-unification-algorithm-in-sicp/1243510#1243510 Comment by Thomas Danecker on Seemingly unnecessary case in the unification algorithm in SICP Thomas Danecker 2009-08-10T14:46:02Z 2009-08-10T14:46:02Z 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: <a href="http://www.cs.ualberta.ca/~you/courses/325/Mynotes/Log/unif.html" rel="nofollow">cs.ualberta.ca/~you/courses/&hellip;</a> Actually, I haven't seen an implementation that doesn't try to unify as much as possible... http://stackoverflow.com/questions/1255154/return-a-count-with-linq-to-sql/1255221#1255221 Comment by Thomas Danecker on Return a count with linq-to-sql Thomas Danecker 2009-08-10T14:30:50Z 2009-08-10T14:30:50Z I think the first one doesn't compile because it requires a select, but I'd recommend the second one.