User Erik - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:28:43Z http://stackoverflow.com/feeds/user/16942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb6/1797839#1797839 4 Answer by Erik for how do you parse a string in vb6? Erik 2009-11-25T15:47:44Z 2009-11-25T16:46:34Z <p>You can use the 'Mid' function to get at the individual characters:</p> <pre><code>Dim i As Integer For i = 1 To Len(mystring) Print Mid$(mystring, i, 1) Next </code></pre> <p>Note this is untested.</p> http://stackoverflow.com/questions/1790776/fast-random-generator/1790833#1790833 15 Answer by Erik for Fast Random Generator Erik 2009-11-24T15:34:24Z 2009-11-24T15:34:24Z <p>System.Random is fast enough for just about any typical use. If you're having performance issues with code that contains System.Random calls, make sure you profile your code <em>before</em> trying to build a new Random. Chances are your performance issues are not in the framework, but rather in your own code.</p> <p>If you're calling into Random in a loop, make sure you're not creating a new Random instance with each iteration, but instead are re-using a common Random instance. Doing this will improve performance because you aren't creating new objects for the GC to clean up, and will also improve the quality of the random numbers being generated.</p> http://stackoverflow.com/questions/1675023/can-i-auto-generate-my-get-set-methods-in-c/1675586#1675586 0 Answer by Erik for Can I auto-generate my get/set methods in c#? Erik 2009-11-04T17:59:46Z 2009-11-04T17:59:46Z <p>When I'm in this situation I rely on the record / playback support in Visual Studio. Sometimes it requires some creative copy/paste techniques but in your situatation it should be pretty self explanatory once you get the hang of it.</p> http://stackoverflow.com/questions/1598221/referencing-32-assemblies-on-a-64-bit-windows-dev-box/1598312#1598312 0 Answer by Erik for referencing 32 assemblies on a 64 bit windows dev box Erik 2009-10-21T01:38:31Z 2009-10-21T01:38:31Z <p>What I typically do when I reference external assemblies is to first copy them into a common folder that is also checked in to your version control system. This way all devs have the same DLLs they need to compile with.</p> http://stackoverflow.com/questions/1597195/reward-for-editing-a-wiki-page/1597206#1597206 11 Answer by Erik for Reward for editing a wiki page Erik 2009-10-20T20:47:07Z 2009-10-20T20:47:07Z <p>I would steer clear of automated points awards and go with a system by which other users reward the author/editors via a voting system, similar to this site. Awarding points by how much of the document was changed only awards people for making massive edits, not for improving articles.</p> http://stackoverflow.com/questions/1596502/internals-of-equals-in-net/1596567#1596567 1 Answer by Erik for Internals of "equals" in .NET Erik 2009-10-20T18:43:06Z 2009-10-20T18:43:06Z <p>The Object.Equals method accepts an object of type 'object' as its parameter. Your Equals method accepts an object of type 'Professor' as its parameter. Both of these methods can co-exist because it is legal to differ two identically-named methods by their parameter list; this is call method overloading.</p> http://stackoverflow.com/questions/179492/f-and-ocaml 7 F# and OCaml Erik 2008-10-07T17:21:40Z 2009-10-09T21:27:28Z <p>I hear that F# is derived from OCaml. How true is this statement? That is to say, are the resources available for learning OCaml useful to someone who wants to learn F#? What are the major differences between the two languages (aside from the fact that F# is .NET)?</p> http://stackoverflow.com/questions/1526520/good-book-about-threading-in-net/1526542#1526542 2 Answer by Erik for Good book about threading in .Net Erik 2009-10-06T16:01:12Z 2009-10-06T16:01:12Z <p><a href="http://www.albahari.com/threading/" rel="nofollow">This one</a> helped me quite a bit - and the digital version is free.</p> http://stackoverflow.com/questions/213427/translate-c-code-into-ast 4 Translate C# code into AST? Erik 2008-10-17T19:00:16Z 2009-10-04T06:47:40Z <p>Is it currently possible to translate C# code into an Abstract Syntax Tree?</p> <p>Edit: some clarification; I don't necessarily expect the compiler to generate the AST for me - a parser would be fine, although I'd like to use something "official." Lambda expressions are unfortunately not going to be sufficient given they don't allow me to use statement bodies, which is what I'm looking for.</p> http://stackoverflow.com/questions/1476886/how-to-implement-cqs-with-in-memory-changes/1515521#1515521 1 Answer by Erik for How to implement CQS with in memory changes? Erik 2009-10-04T03:30:16Z 2009-10-04T03:30:16Z <p>If you really want to use CQS for this, I would say that both the Query repo and the Write repo both have a reference to the same backing store. Usually this reference is via an external database - but in your case it could be a List&lt;T&gt; or similar.</p> http://stackoverflow.com/questions/1514454/tokenizer-for-c/1514496#1514496 0 Answer by Erik for Tokenizer for C#? Erik 2009-10-03T18:35:27Z 2009-10-03T18:35:27Z <p>The <a href="http://www.codeplex.com/irony" rel="nofollow">Irony parser generator</a> is another good one - lets you build your grammars in C# itself. I believe there's a C# parser that comes with it. Here's the <a href="http://www.codeproject.com/KB/recipes/Irony.aspx" rel="nofollow">CodeProject article</a> for it as well.</p> http://stackoverflow.com/questions/1497997/c-reliable-way-to-convert-a-file-to-a-byte/1498017#1498017 19 Answer by Erik for C#, reliable way to convert a file to a byte[] Erik 2009-09-30T13:11:46Z 2009-09-30T13:11:46Z <pre><code>byte[] bytes = System.IO.File.ReadAllBytes(filename); </code></pre> <p>That should do the trick. ReadAllBytes opens the file, reads its contents into a new byte array, then closes it. Here's the <a href="http://msdn.microsoft.com/en-us/library/system.io.file.readallbytes.aspx" rel="nofollow">MSDN page</a> for that method.</p> http://stackoverflow.com/questions/274022/how-do-i-pronounce-as-used-in-lambda-expressions-in-net/274025#274025 34 Answer by Erik for How do I pronounce "=>" as used in lambda expressions in .Net Erik 2008-11-07T23:46:21Z 2009-09-22T19:53:17Z <p>I usually say 'such that' when reading that operator.</p> <p>In your example, p => p.Age > 16 reads as "P, such that p.Age is greater than 16."</p> <p>In fact, I asked this very question on the official linq pre-release forums, and <a href="http://forums.microsoft.com/forums/ShowPost.aspx?PostID=283825&amp;SiteID=1" rel="nofollow">Anders Hejlsberg responded</a> by saying</p> <blockquote> <p>I usually read the => operator as "becomes" or "for which". For example,<br /> Func f = x => x * 2;<br /> Func test = c => c.City == "London";<br /> reads as "x becomes x * 2" and "c for which c.City equals London"</p> </blockquote> <p>As far as 'goes to' - that's never made sense to me. 'p' isn't going anywhere.</p> <p>In the case of reading code to someone, say, over the phone, then as long as they're a fellow C# programmer, I'd just use the word 'lambda' - that is, "p lambda p dot age greater-than sixteen."</p> <p>In comments onebyone mentioned 'maps to' in the case of transformations - so taking Anders' example:</p> <pre><code>x =&gt; x * 2; </code></pre> <p>would read</p> <blockquote> <p>x maps to x times 2.</p> </blockquote> <p>That does seem much closer to the actual intention of the code than 'becomes' for this case.</p> <p>*Edit - added link to the original thread on the pre-release forums - thanks gmail!</p> http://stackoverflow.com/questions/306945/how-do-i-flush-the-print-buffer-in-tsql 6 How do I flush the PRINT buffer in TSQL? Erik 2008-11-20T21:42:34Z 2009-09-16T21:27:34Z <p>I have a very long-running stored procedure in SQL Server 2005 that I'm trying to debug, and I'm using the 'print' command to do it. The problem is, I'm only getting the messages back from SQL Server at the very end of my sproc - I'd like to be able to flush the message buffer and see these messages immediately during the sproc's runtime, rather than at the very end.</p> http://stackoverflow.com/questions/1365518/marshal-net-type-across-network/1365525#1365525 1 Answer by Erik for Marshal .NET Type across network Erik 2009-09-02T01:59:01Z 2009-09-02T02:11:28Z <p>Check out <a href="http://msdn.microsoft.com/en-us/library/7ay27kt9%28VS.71%29.aspx" rel="nofollow">Serialization</a> and either <a href="http://msdn.microsoft.com/en-us/library/kwdt6w2k%28VS.71%29.aspx" rel="nofollow">Remoting</a> or <a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.aspx" rel="nofollow">Sockets</a> for transport.</p> <p><strong>Serialization</strong> is the process of converting a properly marked object into a binary or XML (or other formats for which there exists a formatter) format.</p> <p>Remoting and Sockets serve similar purposes, but where Sockets are very low-level data transport primitives, Remoting as a system is rather high-level - the tradeoff is between complete control (Sockets) and ease of use (Remoting).</p> <p>Edit: Ahh, I understand. Remoting is what you'll want to use, then. If the types you want to use are all derived from the same base, and both client and server are aware of the base, then Remoting will get you the rest of the way.</p> <p>For instantiating types on the Client that exist on the Server, see this page and its references - <a href="http://msdn.microsoft.com/en-us/library/cbzcxy2s%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cbzcxy2s%28VS.71%29.aspx</a></p> http://stackoverflow.com/questions/1322593/what-is-a-precise-way-to-block-a-thread-for-a-specific-period-of-time 1 What is a precise way to block a thread for a specific period of time? Erik 2009-08-24T13:54:36Z 2009-08-24T14:22:41Z <p>The system I'm working on needs to consume an IEnumerable of work items, iterate through each of them, and in between them wait for a certain period of time. I would like to keep the system as simple as possible at the enumeration site. That is, I'd like to have a method that I can call at the end of the foreach block which will block for the specific amount of time I specify - but I don't want to use Thread.Sleep because it's impossible to guarantee precision.</p> <p>The minimum amount of time I'll need to block for is 100ms, but I don't want it to block any longer than this, which I've seen Thread.Sleep do on occasion (I assume because of the time taken in context switches, etc).</p> <p>Edit: Related; does a call to WaitHandle.Wait with a timeout value do the same thing as Thread.Sleep?</p> http://stackoverflow.com/questions/1322544/how-to-make-a-linq-sum-return-null-if-the-summed-values-are-all-null/1322605#1322605 1 Answer by Erik for How to make a linq Sum return null if the summed values are all null Erik 2009-08-24T14:00:16Z 2009-08-24T14:00:16Z <p>Using Sum alone, this is impossible. As you indicated in your question, you will need to check for this situation before you call Sum:</p> <pre><code>var q = Level3Data.AsQueryable(); var duration = q.All(d =&gt; d.DurationMonths == null) ? null : q.Sum(d =&gt; d.DurationMonths); </code></pre> http://stackoverflow.com/questions/322089/how-do-i-detect-circular-logic-or-recursion-in-a-custom-expression-evaluator 1 How do I detect circular logic or recursion in a custom expression evaluator? Erik 2008-11-26T20:46:47Z 2009-08-21T15:28:15Z <p>I've written an experimental function evaluator that allows me to bind simple functions together such that when the variables change, all functions that rely on those variables (and the functions that rely on those functions, etc.) are updated simultaneously. The way I do this is instead of evaluating the function immediately as it's entered in, I store the function. Only when an output value is requested to I evaluate the function, and I evaluate it each and every time an output value is requested.</p> <p>For example:</p> <pre><code>pi = 3.14159 rad = 5 area = pi * rad * rad perim = 2 * pi * rad </code></pre> <p>I define 'pi' and 'rad' as variables (well, functions that return a constant), and 'area' and 'perim' as functions. Any time either 'pi' or 'rad' change, I expect the results of 'area' and 'perim' to change in kind. Likewise, if there were any functions depending on 'area' or 'perim', the results of those would change as well.</p> <p>This is all working as expected. The problem here is when the user introduces recursion - either accidental or intentional. There is no logic in my grammar - it's simply an evaluator - so I can't provide the user with a way to 'break out' of recursion. I'd like to prevent it from happening at all, which means I need a way to detect it and declare the offending input as invalid.</p> <p>For example:</p> <pre><code>a = b b = c c = a </code></pre> <p>Right now evaluating the last line results in a StackOverflowException (while the first two lines evaluate to '0' - an undeclared variable/function is equal to 0). What I would like to do is detect the circular logic situation and forbid the user from inputing such a statement. I want to do this regardless of how deep the circular logic is hidden, but I have no idea how to go about doing so.</p> <p>Behind the scenes, by the way, input strings are converted to tokens via a simple scanner, then to an abstract syntax tree via a hand-written recursive descent parser, then the AST is evaluated. The language is C#, but I'm not looking for a code solution - logic alone will be fine.</p> <p>Note: this is a personal project I'm using to learn about how parsers and compilers work, so it's not mission critical - however the knowledge I take away from this I do plan to put to work in real life at some point. Any help you guys can provide would be appreciated greatly. =)</p> <p>Edit: In case anyone's curious, <a href="http://shadowcoding.blogspot.com/2008/11/recursive-descent-and-grander-ideas.html" rel="nofollow">this post on my blog</a> describes why I'm trying to learn this, and what I'm getting out of it.</p> http://stackoverflow.com/questions/1309529/how-can-i-programmatically-call-my-net-buttons-onclick-in-page-load/1309545#1309545 6 Answer by Erik for How can I programmatically call my .net button's onclick in page load? Erik 2009-08-21T00:34:30Z 2009-08-21T00:34:30Z <p>Event handlers are just normal methods - you can call them from anywhere within the class they're defined in - so Dan's answer is technically correct, although I feel he leaves out a bit of best-practice advice.</p> <p>Instead of calling your event handler from your load event, you should move the code in your event handler into another method, and then call that method from within both your click event handler, and your page load method.</p> http://stackoverflow.com/questions/1243126/as-a-developer-how-do-you-deal-with-leaders-who-poke-into-your-work/1243145#1243145 3 Answer by Erik for As a developer, how do you deal with leaders who poke into your work? Erik 2009-08-07T06:04:00Z 2009-08-07T06:04:00Z <p>It depends on how much power said 'tech lead' has with regards to your project. If they're decision-makers on the project, then argue your case to the best of your ability, and if all else fails, follow their instructions. Otherwise, listen to their opinions, then ignore them.</p> http://stackoverflow.com/questions/691437/how-do-you-pronounce-the-word-tuple 6 How do you pronounce the word 'Tuple'? Erik 2009-03-27T21:05:44Z 2009-08-04T16:50:58Z <p>How do you pronounce the word 'Tuple'?</p> http://stackoverflow.com/questions/1217274/is-linq-or-linq-a-niche-tool-or-is-it-on-the-path-to-becoming-foundational/1217282#1217282 2 Answer by Erik for Is LINQ (or linq) a niche tool, or is it on the path to becoming foundational? Erik 2009-08-01T19:19:43Z 2009-08-01T19:19:43Z <p>I would say that integrated query technology in any language will become foundational in time, especially given the recent rise in interest of Functional programming languages.</p> <p>LINQ is certainly one of the biggest reasons I personally am sticking with .NET, anyway - it's become foundational for me personally, and I'd wager a lot of devs feel this way as well.</p> http://stackoverflow.com/questions/686847/baseconvert-in-net/687029#687029 5 Answer by Erik for base_convert in .NET Erik 2009-03-26T18:34:11Z 2009-07-29T15:54:17Z <p>Here's some code that'll convert an integer to an arbitrary base up to 36, and convert a string representation of a base x value to an integer (given the base):</p> <pre><code>class Program { static void Main(string[] args) { int b10 = 123; int targetBase = 5; string converted = ConvertToBase(b10, targetBase); int convertedBack = ConvertFromBase(converted, targetBase); string base3 = "212210"; string base7 = ConvertFromBaseToBase(base3, 3, 7); Console.WriteLine(converted); Console.WriteLine(convertedBack); Console.WriteLine(base7); Console.ReadLine(); } private const string chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; private static string ConvertToBase(int b10, int targetBase) { if (targetBase &lt; 2) throw new ArgumentException("Target base must be greater than 2.", "targetBase"); if (targetBase &gt; 36) throw new ArgumentException("Target base must be less than 36.", "targetBase"); if (targetBase == 10) return b10.ToString(); StringBuilder result = new StringBuilder(); while (b10 &gt;= targetBase) { int mod = b10 % targetBase; result.Append(chars[mod]); b10 = b10 / targetBase; } result.Append(chars[b10]); return Reverse(result.ToString()); } private static int ConvertFromBase(string bx, int fromBase) { if (fromBase &lt; 2) throw new ArgumentException("Base must be greater than 2.", "fromBase"); if (fromBase &gt; 36) throw new ArgumentException("Base must be less than 36.", "fromBase"); if (fromBase == 10) return int.Parse(bx); bx = Reverse(bx); int acc = 0; for (int i = 0; i &lt; bx.Length; i++) { int charValue = chars.IndexOf(bx[i]); acc += (int)Math.Pow(fromBase, i) * charValue; } return acc; } public static string ConvertFromBaseToBase(string bx, int fromBase, int toBase) { int b10 = ConvertFromBase(bx, fromBase); return ConvertToBase(b10, toBase); } public static string Reverse(string s) { char[] charArray = new char[s.Length]; int len = s.Length - 1; for (int i = 0; i &lt;= len; i++) charArray[i] = s[len - i]; return new string(charArray); } } </code></pre> <p>If you're unconcerned with displaying these values, you can use extended characters in your chars set - if you stick to plain ascii, you can theoretically have base256 values. Going beyond that I would recommend not using chars, but instead using some other uniquely-identifiable value - though I don't much see the value.</p> http://stackoverflow.com/questions/245318/c4-dynamic-keyword-why-not 1 C#4 dynamic keyword - why not? Erik 2008-10-28T23:57:49Z 2009-07-17T14:16:34Z <p>After reading many of the replies to <a href="http://stackoverflow.com/questions/244302/what-do-you-think-of-the-new-c-40-dynamic-keyword">this thread</a>, I see that many of those who dislike it cite the potential for abuse of the new keyword. My question is, what sort of abuse? How could this be abused so badly as to make people vehemently dislike it? Is it just about purism? Or is there a real pitfall that I'm just not seeing?</p> http://stackoverflow.com/questions/1054165/how-do-i-charge-for-self-contracted-jobs 8 How do I charge for self contracted jobs? Erik 2009-06-28T03:27:12Z 2009-06-28T06:52:41Z <p>I'm in the position of inheriting a number of small (between 5 to 20 hr) jobs which largely involve providing fixes and changes to existing systems on a contract basis. I've never done the self-contracting thing before - all my previous wages were set by the customer / employer.</p> <p>How do I decide how much to charge? I don't want to under-value myself, but I also don't want to scare the clients away.</p> <p>Edit in response to close votes: Sorry, I forgot to add "As a programmer" to the title. =)</p> http://stackoverflow.com/questions/1052155/parser-builders-for-c-net/1052170#1052170 4 Answer by Erik for Parser builders for C#/.NET Erik 2009-06-27T05:32:01Z 2009-06-27T05:32:01Z <p>If you really want to stay in C#, I would recommend using the <a href="http://www.codeplex.com/irony" rel="nofollow">Irony toolkit</a> - it allows you to specify grammars in C# code.</p> http://stackoverflow.com/questions/978063/anonymous-delegates-in-c/978081#978081 5 Answer by Erik for anonymous delegates in C# Erik 2009-06-10T20:50:51Z 2009-06-10T21:11:23Z <p>There's the Action delegate you could use, like so:</p> <pre><code>private void RefreshForm() { if (InvokeRequired) Invoke(new Action(Refresh)); else Refresh(); } </code></pre> <p>Or, with lambda syntax:</p> <pre><code>private void RefreshForm() { if (InvokeRequired) Invoke((Action)(() =&gt; Refresh())); else Refresh(); } </code></pre> <p>Finally there's anonymous delegate syntax:</p> <pre><code>private void RefreshForm() { if (InvokeRequired) Invoke((Action)(delegate { Refresh(); })); else Refresh(); } </code></pre> http://stackoverflow.com/questions/161125/whats-wrong-with-f 8 What's wrong with F#? Erik 2008-10-02T06:43:22Z 2009-06-10T21:08:58Z <p>What's wrong with F#?</p> <p>That is, what about the language would make it unsuitable for production environments (<strong>excluding</strong> the fact that it's not yet officially graduated from MS Research)? I'm interested in functional programming (especially on .NET) and I'd like to learn this language, but I worry about its applicability in the real world.</p> <p><strong>Edit</strong>: I'm aware of the benefits of F# - I want this question to concentrate on the deficits - I want to know why F# would be a poor choice, and for what sorts of projects it would be a poor choice.</p> <p><strong>Edit 2</strong>: I asked this question a while ago, when F# was still in beta, but I believe it's more relevant a question now as it nears release with Visual Studio 2010. Any new answers would be great to see, especially now that many people have had the chance to get their hands on it and figure it out.</p> http://stackoverflow.com/questions/978021/would-a-good-stack-overflow-reputation-be-a-good-job-reference/978033#978033 0 Answer by Erik for Would a good Stack Overflow reputation be a good job reference? Erik 2009-06-10T20:42:06Z 2009-06-10T20:42:06Z <p>I would think that it would only be relevant if you were, say, one of the top 10 (or similar) on the site. Even then, it might be seen as bragging rather than an evaluation of your skill.</p> http://stackoverflow.com/questions/957262/can-i-avoid-an-unnecessary-variable-being-created-in-this-function/957282#957282 2 Answer by Erik for Can I avoid an unnecessary variable being created in this function? Erik 2009-06-05T18:12:21Z 2009-06-05T18:12:21Z <p>You can't get away from the extra variable instantiation, but you can hide it with a helper method:</p> <pre><code>public static string DateTimeParseOrDefault(this object input, string format, string def) { DateTime output; return DateTime.TryParse(input.ToString(), out output) ? output.ToString(format) : def; } </code></pre> <p>Which you then call in your function as:</p> <pre><code>public string FormatDate(object input) { return input.DateTimeParseOfDefault("dd-MMM", input.ToString()); } </code></pre> <p>You'll probably want to rename that goofy function name, or perhaps not use an extension method (just a regular static method) - but it's up to you at this point. Again all you're doing here is hiding the variable.</p> http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb6/1797839#1797839 Comment by Erik on how do you parse a string in vb6? Erik 2009-11-25T16:46:28Z 2009-11-25T16:46:28Z Sorry - it's been years since I used VB6. I'll amend the answer. http://stackoverflow.com/questions/1797065/how-to-include-advertising-in-an-application/1797083#1797083 Comment by Erik on How to include advertising in an application? Erik 2009-11-25T14:03:16Z 2009-11-25T14:03:16Z It's only spyware if it collects and distributes information on the user's habits and software usage. If all it does is display ads, then it's adware, not spyware. http://stackoverflow.com/questions/1790776/fast-random-generator/1790833#1790833 Comment by Erik on Fast Random Generator Erik 2009-11-25T13:46:49Z 2009-11-25T13:46:49Z @tazzo: how many is many? what are the specific requirements you're after? @Nosredna: sometimes answering the question and helping the asker are two different things. And who's arguing? http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1705027#1705027 Comment by Erik on simple proof that GUID is not unique Erik 2009-11-11T15:42:04Z 2009-11-11T15:42:04Z Why don't we just use 83 billion processors? =) http://stackoverflow.com/questions/1704406/so-i-want-to-make-a-basic-music-visualizer-in-c-as-practice-is-there-a-library Comment by Erik on So I want to make a basic music visualizer in C# as practice. Is there a library that lets me handle sound files easily in C#? Erik 2009-11-09T22:41:12Z 2009-11-09T22:41:12Z What sort of manipulation are you planning to do? Just playing them, or actually editing them? http://stackoverflow.com/questions/1640988/should-i-overload-operator/1641050#1641050 Comment by Erik on Should I Overload == Operator? Erik 2009-10-29T01:01:10Z 2009-10-29T01:01:10Z +1 for noting the performance and complexity consequences with the reflection-based solution. http://stackoverflow.com/questions/901639/what-is-the-best-forgot-my-password-method/901667#901667 Comment by Erik on What is the best "forgot my password" method? Erik 2009-10-21T01:54:46Z 2009-10-21T01:54:46Z @DOK: so, someone questioned the security of security questions? ;) http://stackoverflow.com/questions/1597025/most-prevalent-substring-of-length-x/1597064#1597064 Comment by Erik on Most prevalent substring of length X Erik 2009-10-20T20:52:07Z 2009-10-20T20:52:07Z +1 for providing guidance rather than answers. http://stackoverflow.com/questions/1596301/why-doesnt-net-have-a-bidirectional-enumerator/1596324#1596324 Comment by Erik on Why doesn't .NET have a bidirectional enumerator? Erik 2009-10-20T20:43:38Z 2009-10-20T20:43:38Z Heh, like ICloneable. =P http://stackoverflow.com/questions/1596301/why-doesnt-net-have-a-bidirectional-enumerator Comment by Erik on Why doesn't .NET have a bidirectional enumerator? Erik 2009-10-20T20:42:48Z 2009-10-20T20:42:48Z Also, while all collections are enumerations, not all enumerations are collections. http://stackoverflow.com/questions/1583490/without-using-recursion-how-can-a-stack-overflow-exception-be-thrown/1583528#1583528 Comment by Erik on Without using recursion how can a stack overflow exception be thrown? Erik 2009-10-18T00:53:26Z 2009-10-18T00:53:26Z Great - assuming you're using .NET =) http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1557263#1557263 Comment by Erik on Most horrifying line of code you have ever seen? Erik 2009-10-14T16:36:59Z 2009-10-14T16:36:59Z Of course you'll still encounter a null reference exception is someArray is null since you're checking the length <i>before</i> checking for nullity. http://stackoverflow.com/questions/1552415/working-for-free Comment by Erik on Working for free Erik 2009-10-12T02:31:24Z 2009-10-12T02:31:24Z What is terrifying about working by yourself on the iPhone? http://stackoverflow.com/questions/1540983/what-is-the-easiest-way-to-implement-a-self-restarting-service/1540995#1540995 Comment by Erik on What is the easiest way to implement a self restarting service Erik 2009-10-08T23:06:25Z 2009-10-08T23:06:25Z Heh, reminds me of this - <a href="http://www.csd.uwo.ca/~magi/personal/humour/Computer_Folklore/Robin%20Hood%20And%20Friar%20Tuck.html" rel="nofollow">csd.uwo.ca/~magi/personal/&hellip;</a> http://stackoverflow.com/questions/1079645/are-you-concerned-about-the-aesthetics-of-your-code/1079665#1079665 Comment by Erik on Are you concerned about the aesthetics of your code? Erik 2009-10-08T22:55:06Z 2009-10-08T22:55:06Z Don't worry Ancide - he's upset that he didn't think of it first. ;)