User Charlie Flowers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:21:36Z http://stackoverflow.com/feeds/user/80112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/712639/please-help-us-non-c-developers-understand-what-raii-is 10 Please help us non-C++ developers understand what RAII is Charlie Flowers 2009-04-03T05:21:53Z 2009-11-11T18:56:51Z <p>Another question I thought for sure would have been asked before, but I don't see it in the "Related Questions" list.</p> <p>Could you C++ developers please give us a good description of what RAII is, why it is important, and whether or not it might have any relevance to other languages?</p> <p>I <em>do</em> know a little bit. I believe it stands for "Resource Acquisition is Initialization". However, that name doesn't jive with my (possibly incorrect) understanding of what RAII is: I get the impression that RAII is a way of initializing objects on the stack such that, when those variables go out of scope, the destructors will automatically be called causing the resources to be cleaned up.</p> <p>So why isn't that called "using the stack to trigger cleanup" (UTSTTC:)? How do you get from there to "RAII"?</p> <p>And how can you make something on the stack that will cause the cleanup of something that lives on the heap? Also, are there cases where you can't use RAII? Do you ever find yourself wishing for garbage collection? At least a garbage collector you could use for some objects while letting others be managed?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1685531/constructor-injection-with-other-non-dependency-constructor-arguments/1695371#1695371 0 Answer by Charlie Flowers for Constructor injection with other, non-dependency, constructor arguments Charlie Flowers 2009-11-08T04:28:27Z 2009-11-08T04:28:27Z <p>I respectfully disagree with Kevin McMahon's response above, and the reason is that I have seen dependency injection code that does exactly what you want ... only with a different IoC container. Namely, it was Castle Windsor, which is another Ioc container. It would allow you to create a section in your config file to say what values to provide for name (doesn't make much sense to do that for name, but if it was a property like "connectionString", it might make a lot of sense). </p> <p>So ... it's not that what you are trying to do is not a fit for dependency injection in general ... it's just that Ninject doesn't seem comfortable with it (or perhaps Ninject can accommodate it as well ... I don't know all of its lesser used features well enough to say).</p> http://stackoverflow.com/questions/1690864/install-mvc-on-2-0-net-server-with-iis6-without-admin-rights/1695340#1695340 0 Answer by Charlie Flowers for Install MVC on 2.0.NET Server with IIS6 without Admin Rights Charlie Flowers 2009-11-08T04:07:39Z 2009-11-08T04:07:39Z <p>What Jason White says is right ... you have to have .NET 3.5 to use ASP.NET MVC. However, if you want to get into crazy, unsupported, hack-ish territory, it is possible to run ASP.NET MVC against .NET framework 2.0. I SERIOUSLY don't recommend it, but if you want to look into it, <a href="http://www.hanselman.com/blog/DeployingASPNETMVCOnASPNET20.aspx" rel="nofollow">Scott Hanselman talks about it here</a>.</p> http://stackoverflow.com/questions/1505231/what-is-the-problem-with-visual-studio-nets-absolute-positioning-and-how-is-t 1 What is the problem with Visual Studio.Net's "absolute positioning", and how is that problem fixed by CSS's "absolute positioning"? Charlie Flowers 2009-10-01T17:07:07Z 2009-10-02T19:51:08Z <p>For years, Visual Studio.NET has offered "absolute positioning" for ASP.NET, whereby you can drag controls onto the designer canvas wherever you want them to be. However, there has always been strong advice <strong><em>not</em></strong> to use that feature. Instead, the common wisdom said you should use "Flow layout", because if you were to use VS.NET's "absolute positioning", your screen would not render correctly for users whose screen resolution was different from yours.</p> <p>However, that's old advice. A while back, CSS came out with the ability to perform "absolute positioning" in a standards-compliant way, and most or all browsers caught up with CSS and have implemented CSS positioning correctly (or well enough at least).</p> <p>So the current recommended practice is to position elements using CSS absolute positioning.</p> <p>Question is: <strong>What is it that CSS does correctly about absolute positioning, that Visual Studio does wrongly? How can CSS absolute positioning be OK even for users who have different screen resolutions, while Visual Studio.NET cannot?</strong></p> <p><strong>UPDATE:</strong> The responses here have cleared the matter up for me. Here's how I summarize it:</p> <ol> <li>Ages ago, VS.NET defaulted to using absolute positioning for everything. This is how VB worked from its beginning (meaning, Windows apps before the web even existed), and VS.NET was made to feel similar to VB.</li> <li>However, using absolute positioning for everything on a web page is a very bad idea. See one of the responses below for some concrete examples of why.</li> <li>Since using absolute positioning for every single control on a web app page is such a bad idea, all that advice about using "Flow layout" sprung up. It was a way of working with VS.NET without absolutely positioning everything.</li> <li>Now that CSS is so mature and widely supported, and is the preferred mechanism for positioning and appearance, it is STILL CRAZY to absolutely position everything, and for the same reasons. Most items should be allowed to position themselves "in the flow". However, for some elements here and there, absolute CSS positioning might make sense.</li> <li>The mechanism VS.NET has always used to perform absolute positioning is actually inline CSS styles.</li> </ol> <p>Great to have all this cleared up. Thanks.</p> http://stackoverflow.com/questions/1499558/using-old-asp-net-2-0-but-with-new-browser-ie-7-should-i-use-absolute-posi 0 Using old ASP.NET 2.0, but with new browser (IE 7) ... Should I use Absolute Positioning or Flow Layout or CSS or what? :-) Charlie Flowers 2009-09-30T17:29:29Z 2009-09-30T17:42:00Z <p>I am developing a new web application, but just found out I am required to use ASP.NET 2.0. Because things were so different back when ASP.NET 2.0 was released, I am finding it hard to determine what method of positioning I should use for the web forms.</p> <p>The web app has 8 or 9 screens, all of which ask a series of questions (average of 10 questions per page, roughly). The end result I want is simply a nice functional layout of controls on each page. I'd be quite happy to simply drag the controls where I want them using the Visual Studio designer.</p> <p>However, back when ASP.NET 2.0 was the latest version, there was strong advice everywhere saying, "Do not use 'Absolute Layout'. You will have big problems if the end user has a different screen resolution than you do." The recommendation at the time was to use "flow layout", by which ASP.NET and/or the browser would layout the controls for you.</p> <p>But the industry has changed significantly since then. Now, the preferred method for positioning items is to use CSS absolute positioning. I know ASP.NET MVC makes this possible.</p> <p>But the situation is very murky to me because I have to go back and use such an old version of ASP.NET. </p> <p><strong>So can anyone please advise me: for a web app written in 2009, using ASP.NET 2.0, that will run in a modern, recent version of Internet Explorer (version 7), what technique should I use for positioning of controls, and why?</strong></p> http://stackoverflow.com/questions/683620/what-is-the-best-resource-for-learning-c-expression-trees-in-depth 9 What is the best resource for learning C# expression trees in depth? Charlie Flowers 2009-03-25T21:47:11Z 2009-09-25T17:41:16Z <p>When I first typed this question, I did so in order to find the duplicate questions, feeling sure that someone must have already asked this question. My plan was to follow those dupe links instead of posting this question. But this question has not been asked before as far as I can see ... it did not turn up in the "Related Questions" list.</p> <p><strong>What are some of the best resources you've found (articles, books, blog posts, etc.) for gaining an in-depth understanding of Expression Trees in C#?</strong> I keep getting surprised by their capabilities, and now I'm at the point where I'm saying, "OK, enough surprise. I want to stop right now and get a PhD in these things." I'm looking for material that systematically, methodically covers the capabilities and then walks through detailed examples of what you can do with them.</p> <p>Note: I'm not talking about lambda expressions. I'm talking about Expression&lt; T > and all the things that go with it and arise from it.</p> <p>Thanks.</p> http://stackoverflow.com/questions/674855/help-a-c-developer-understand-what-is-a-monad 27 Help a C# developer understand: What is a monad? Charlie Flowers 2009-03-23T19:20:29Z 2009-08-03T13:56:20Z <p>There is a lot of talk about monads these days. I have read a few articles / blog posts, but I can't go far enough with their examples to fully grasp the concept. The reason is that monads are a functional language concept, and thus the examples are in languages I haven't worked with (since I haven't used a functional language in depth). I can't grasp the syntax deeply enough to follow the articles fully ... but I can tell there's something worth understanding there.</p> <p>However, I know C# pretty well, including lambda expressions and other functional features. I know C# only has a subset of functional features, and so maybe monads can't be expressed in C#.</p> <p>However, surely it is possible to convey the concept? At least I hope so. Maybe you can present a C# example as a foundation, and then describe what a C# developer would <strong>wish</strong> he could do from there but can't because the language lacks functional programming features. This would be fantastic, because it would convey the intent and benefits of monads. So here's my question: <strong>What is the best explanation you can give of monads to a C# 3 developer?</strong></p> <p>Thanks!</p> <p>(EDIT: By the way, I know there are at least 3 "what is a monad" questions already on SO. However, I face the same problem with them ... so this question is needed imo, because of the C#-developer focus. Thanks.)</p> http://stackoverflow.com/questions/742949/advice-on-playing-sound-files-from-an-asp-net-mvc-app 1 Advice on playing sound files from an ASP.NET MVC app Charlie Flowers 2009-04-13T03:11:07Z 2009-07-24T11:00:01Z <p>I'm working on a new ASP.NET MVC / JQuery app which will need to play short sound files in response to user actions. For example, in some cases, when a user clicks on a word, the computer should pronounce that word (there is a small finite list of words). </p> <p>I'd like advice on the following: </p> <ol> <li>Which sound file format(s) would you recommend?</li> <li>What do I need to know about browser idiosyncracies regarding playing sound?</li> <li>What do you think is the most bandwidth-efficient way to deal with sound files? If there are 5 clickable words on a page, for example, would you send all 5 sound files to the browser with the page, or would you send none and use ajax to retrieve the sound file when the user clicks on it?</li> </ol> <p>And, of course, what else do I need to know? :)</p> <p>Thanks.</p> http://stackoverflow.com/questions/696021/are-you-doing-mda-model-driven-architecture-right-now-if-so-what-tools-do-you 3 Are you doing MDA (Model Driven Architecture) right now? If so, what tools do you use, and how is it working out? Charlie Flowers 2009-03-30T04:46:17Z 2009-07-08T18:21:28Z <p>Model Driven Architecture is the idea that you create models which express the problem you need to solve in a way that is free of any (or at least most) implementation technologies, and then you generate implementation for one or more specific platforms. The claim is that working at a higher level of abstraction is far more powerful and productive. In addition, your models outlive technologies (so you still have something when your first language / platform becomes obsolete that you can use for your next generation solution). Another key claimed benefit is that much of the boilerplate and "grunt work" can be generated. Once the computer understands the semantics of your situation, it can help you more.</p> <p><em>Some claim this approach is 10 times more productive, and that it is <strong>the way</strong> we will all be building software in 10 years.</em></p> <p>However, this is all just theory. I am wondering what the outcomes are when the rubber meets the road. Also, the "official" version of MDA is from the <a href="http://omg.org" rel="nofollow">OMG</a>, and seems very heavy. It is heavily based on UML, which might be considered good or bad depending on who you ask (I'm leaning towards "bad").</p> <p>But, in spite of those concerns, it is hard to argue with the idea of working at a higher level of abstraction and "teaching" the computer to understand the semantics of your problem and solution. Imagine a series of ER models which simply express truth, and then imagine using those to generate a significant portion of your solution, first in one set of technologies and then again in another set of technologies.</p> <p>So, <strong>I'd love to hear from people who really are doing MDA right now ("official" or not). What tools are you using? How is it working out? How much of the theoretical promise have you been able to capture? Do you see a true 10X effectiveness increase?</strong></p> http://stackoverflow.com/questions/669678/what-is-the-smoothest-most-appealing-syntax-youve-found-for-asserting-parameter 20 What is the smoothest, most appealing syntax you've found for asserting parameter correctness in c#? Charlie Flowers 2009-03-21T18:04:22Z 2009-07-06T03:48:09Z <p>A common problem in any language is to assert that parameters sent in to a method meet your requirements, and if they don't, to send nice, informative error messages. This kind of code gets repeated over and over, and we often try to create helpers for it. However, in C#, it seems those helpers are forced to deal with some duplication forced upon us by the language and compiler. To show what I mean, let me present some some raw code with no helpers, followed by one possible helper. Then, I'll point out the duplication in the helper and phrase my question precisely.</p> <p><strong>First, the code without any helpers:</strong></p> <pre><code>public void SomeMethod(string firstName, string lastName, int age) { if(firstName == null) { throw new WhateverException("The value for firstName cannot be null."); } if(lastName == null) { throw new WhateverException("The value for lastName cannot be null."); } // Same kind of code for age, making sure it is a reasonable range (&lt; 150, for example). // You get the idea } </code></pre> <p>}</p> <p><strong>Now, the code with a reasonable attempt at a helper:</strong></p> <pre><code>public void SomeMethod(string firstName, string lastName, int age) { Helper.Validate( x=&gt; x !=null, "firstName", firstName); Helper.Validate( x=&gt; x!= null, "lastName", lastName); } </code></pre> <p><strong>The main question is this:</strong> Notice how the code has to pass the value of the parameter <strong>and</strong> the name of the parameter ("firstName" <strong>and</strong> firstName). This is so the error message can say, "Blah blah blah the value for the <strong>firstName</strong> parameter." Have you found any way to get around this using reflection or anything else? Or a way to make it less painful?</p> <p>And more generally, have you found any other ways to streamline this task of validating parameters while reducing code duplication?</p> <p>EDIT: I've read people talking about making use of the Parameters property, but never quite found a way around the duplication. Anyone have luck with that?</p> <p>Thanks!</p> http://stackoverflow.com/questions/851078/why-does-this-first-haskell-function-fail-to-handle-infinite-lists-while-this-se 3 Why does this first Haskell function FAIL to handle infinite lists, while this second snippet SUCCEEDS with infinite lists? Charlie Flowers 2009-05-12T04:00:03Z 2009-06-23T18:12:31Z <p>I have two Haskell functions, both of which seem very similar to me. But the first one FAILS against infinite lists, and the second one SUCCEEDS against infinite lists. I have been trying for hours to nail down exactly why that is, but to no avail. </p> <p>Both snippets are a re-implementation of the "words" function in Prelude. Both work fine against finite lists.</p> <p>Here's the version that does NOT handle infinite lists:</p> <pre><code>myWords_FailsOnInfiniteList :: String -&gt; [String] myWords_FailsOnInfiniteList string = foldr step [] (dropWhile charIsSpace string) where step space ([]:xs) | charIsSpace space = []:xs step space (x:xs) | charIsSpace space = []:x:xs step space [] | charIsSpace space = [] step char (x:xs) = (char : x) : xs step char [] = [[char]] </code></pre> <p>Here's the version that DOES handle infinite lists:</p> <pre><code>myWords_anotherReader :: String -&gt; [String] myWords_anotherReader xs = foldr step [""] xs where step x result | not . charIsSpace $ x = [x:(head result)]++tail result | otherwise = []:result </code></pre> <p>Note: "charIsSpace" is merely a renaming of Char.isSpace.</p> <p>The following interpreter session illustrates that the first one fails against an infinite list while the second one succeeds.</p> <pre><code>*Main&gt; take 5 (myWords_FailsOnInfiniteList (cycle "why ")) *** Exception: stack overflow *Main&gt; take 5 (myWords_anotherReader (cycle "why ")) ["why","why","why","why","why"] </code></pre> <p><strong>EDIT: Thanks to the responses below, I believe I understand now. Here are my conclusions and the revised code:</strong></p> <p><strong>Conclusions:</strong></p> <ol> <li>The biggest culprit in my first attempt were the 2 equations that started with "step space []" and "step char []". <strong>Matching the second parameter of the step function against [] is a no-no</strong>, because it forces the whole 2nd arg to be evaluated (but with a caveat to be explained below).</li> <li>At one point, I had thought (++) might evaluate its right-hand argument later than cons would, somehow. So, I thought I might fix the problem by changing " = (char:x):xs" to "= [char : x] ++ xs". But that was <strong>incorrect</strong>.</li> <li>At one point, I thought that pattern matching the second arg against (x:xs) would cause the function to fail against infinite lists. I was <em>almost</em> right about this, but not quite! Evaluating the second arg against (x:xs), as I do in a pattern match above, <em>WILL</em> cause some recursion. It will "turn the crank" until it hits a ":" (aka, "cons"). If that never happened, then my function would not succeed against an infinite list. However, <em>in this particular case</em>, everything is OK because my function will eventually encounter a space, at which point a "cons" will occur. And the evaluation triggered by matching against (x:xs) will stop right there, avoiding the infinite recursion. At that point, the "x" will be matched, but the xs will remain a thunk, so there's no problem. (Thanks to Ganesh for really helping me grasp that).</li> <li>In general, you can <strong>mention</strong> the second arg all you want, as long as you don't <strong>force evaluation of it</strong>. If you've matched against x:xs, then you can mention xs all you want, as long as you don't force evaluation of it.</li> </ol> <p>So, here's the revised code. I usually try to avoid head and tail, merely because they are partial functions, and also because I need practice writing the pattern matching equivalent.</p> <pre><code>myWords :: String -&gt; [String] myWords string = foldr step [""] (dropWhile charIsSpace string) where step space acc | charIsSpace space = "":acc step char (x:xs) = (char:x):xs step _ [] = error "this should be impossible" </code></pre> <p>This correctly works against infinite lists. Note there's no head, tail or (++) operator in sight. </p> <p><strong>Now, for an important caveat:</strong> When I first wrote the corrected code, I did not have the 3rd equation, which matches against "step _ []". As a result, I received the warning about non-exhaustive pattern matches. Obviously, it is a good idea to avoid that warning. </p> <p>But I thought I was going to have a problem. I already mentioned above that <em>it is not OK to pattern match the second arg against []</em>. But I would have to do so in order to get rid of the warning.</p> <p><strong>However, when I added the "step _ []" equation, everything was fine! There was still no problem with infinite lists!</strong>. Why? </p> <p><strong>Because the 3rd equation in the corrected code IS NEVER REACHED!</strong> </p> <p>In fact, consider the following BROKEN version. It is EXACTLY the SAME as the correct code, except that I have moved the pattern for empty list up above the other patterns: </p> <pre><code>myWords_brokenAgain :: String -&gt; [String] myWords_brokenAgain string = foldr step [""] (dropWhile charIsSpace string) where step _ [] = error "this should be impossible" step space acc | charIsSpace space = "":acc step char (x:xs) = (char:x):xs </code></pre> <p>We're back to stack overflow, because the first thing that happens when step is called is that the interpreter checks to see if equation number one is a match. To do so, it must see if the second arg is []. To do that, it must evaluate the second arg.</p> <p>Moving the equation down BELOW the other equations ensures that the 3rd equation is never attempted, because either the first or the second pattern <em>always matches</em>. The 3rd equation is merely there to dispense with the non-exhaustive pattern warning.</p> <p>This has been a great learning experience. Thanks to everyone for your help.</p> http://stackoverflow.com/questions/720517/contrasting-c-generics-with-haskell-parameterized-types 11 Contrasting C# generics with Haskell parameterized types Charlie Flowers 2009-04-06T07:45:32Z 2009-06-16T11:23:00Z <p>Based on some advice I found on StackOverflow, I'm digging into Haskell. I was pleased to see that Haskell's parameterized types behave very much like C# generics. Both languages advise a single letter for the type parameter (usually), and both languages seem to follow a similiar process for substituting an actual type for the type parameter. I grokked the concept pretty quickly because of that.</p> <p>Which leads to this: what are some ways in which Haskell's parameterized types differ from C# generic types? I know from learning Ruby that you can get into big trouble thinking that a concept you're familiar with from one language is the same in another language you're new to. Usually, the trouble is worse when the features actually <em>are</em> very similar ... because they're usually <em>not</em> 100% the same. So what are some of the "gotchas" I might get bitten by if I assume I understand parameterized types based on my knowledge of C# generics?</p> <p>Thanks.</p> http://stackoverflow.com/questions/716549/what-are-the-principles-behind-and-benefits-of-the-party-model 5 What are the principles behind, and benefits of, the "party model"? Charlie Flowers 2009-04-04T05:17:14Z 2009-06-08T23:56:28Z <p>The "party model" is a "pattern" for relational database design. At least part of it involves finding commonality between many entities, such as Customer, Employee, Partner, etc., and factoring that into some more "abstract" database tables. </p> <p>I'd like to find out your thoughts on the following: </p> <ol> <li>What are the core principles and motivating forces behind the party model?</li> <li>What does it prescribe you do to your data model? (My bit above is pretty high level and quite possibly incorrect in some ways. I've been on a project that used it, but I was working with a separate team focused on other issues).</li> <li>What has your experience led you to feel about it? Did you use it, and if so, would you do so again? What were the pros and cons?</li> <li>Did the party model limit your choice of ORMs? For example, did you have to eliminate certain ORMs because they didn't allow for enough of an "abstraction layer" between your domain objects and your physical data model?</li> </ol> <p>I'm sure every response won't address every one of those questions ... but anything touching on one or more of them is going to help me make some decisions I'm facing.</p> <p>Thanks.</p> http://stackoverflow.com/questions/841696/please-explain-in-the-simplest-most-jargon-free-english-possible-the-universal 6 Please explain in the simplest, most jargon-free English possible, the "universal property of fold"? Charlie Flowers 2009-05-08T20:41:56Z 2009-05-10T01:17:54Z <p>I am working through "Real World Haskell", which led to to a free PDF called <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.cs.nott.ac.uk%2F~gmh%2Ffold.pdf&amp;ei=G5gESt-OPNKLtgfMrIGbBw&amp;rct=j&amp;q=%22A%2Btutorial%2Bon%2Bthe%2Buniversality%2Band%2Bexpressiveness%2Bof%2Bfold%22&amp;usg=AFQjCNG81%5FxijGu4ipQdCGBIxkR8z1Lj6w" rel="nofollow">"A tutorial on the universality and expressiveness of fold"</a>. It makes the point that a "fold" is "universal". I am wrestling with his definition of "universal", and would like to hear the from those who have already invested time digesting it: <strong>Please explain in the simplest, most jargon-free English possible, the "universal property of fold"?</strong> What is this "universal property", and why is it important?</p> <p>Thanks.</p> http://stackoverflow.com/questions/841792/what-is-meant-by-the-statement-that-functional-programs-are-more-tractable-mathe 1 What is meant by the statement that functional programs are "more tractable mathematically"? Charlie Flowers 2009-05-08T21:06:57Z 2009-05-09T04:41:43Z <p>What is meant by the statement that functional programs are "more tractable mathematically"?</p> http://stackoverflow.com/questions/828061/guidelines-for-applying-dry-in-haskell-function-definitions 2 Guidelines for applying DRY in Haskell function definitions Charlie Flowers 2009-05-06T04:47:39Z 2009-05-07T21:43:42Z <p>I have a question about whether or not a specific way of applying of the DRY principle is considered a good practice in Haskell.I'm going to present an example, and then ask whether the approach I'm taking is considered good Haskell style. <strong>In a nutshell, the question is this: when you have a long formula, and then you find yourself needing to repeat some small subsets of that formula elsewhere, do you always put that repeated subset of the formula into a variable so you can stay DRY? Why or why not?</strong> </p> <p><strong>The Example:</strong> Imagine we're taking a string of digits, and converting that string into its corresponding Int value. (BTW, this is an exercise from "Real World Haskell").</p> <p>Here's a solution that works except that it ignores edge cases:</p> <pre><code>asInt_fold string = fst (foldr helper (0,0) string) where helper char (sum,place) = (newValue, newPlace) where newValue = (10 ^ place) * (digitToInt char) + sum newPlace = place + 1 </code></pre> <p>It uses foldr, and the accumulator is a tuple of the next place value and the sum so far. </p> <p>So far so good. Now, when I went to implement the edge case checks, I found that I needed little portions of the "newValue" formula in different places to check for errors. For example, on my machine, there would be an Int overflow if the input was larger than (2^31 - 1), so the max value I could handle is 2,147,483,647. Therefore, I put in 2 checks: </p> <ol> <li>If the place value 9 (the billions place) and the digit value is > 2, there's an error.</li> <li>If sum + (10 ^ place) * (digitToInt char) > maxInt, there's an error.</li> </ol> <p>Those 2 checks caused me to repeat part of the formula, so I introduced the following new variables:</p> <ul> <li>digitValue = digitToInt char</li> <li>newPlaceComponent = (10^place) * digitValue</li> </ul> <p><em>The reason I introduced those variables is merely an automatic application of the DRY principle:</em> I found myself repeating those portions of the formula, so I defined them once and only once.</p> <p>However, I wonder if this is considered good Haskell style. There are obvious advantages, but I see disadvantages as well. It definitely makes the code longer, whereas much of the Haskell code I've seen is pretty terse.</p> <p><strong>So, do you consider this good Haskell style, and do you follow this practice, or not? Why / why not?</strong></p> <p>And for what it's worth, here's my final solution that deals with a number of edge cases and therefore has quite a large where block. You can see how large the block became due to my application of the DRY principle.</p> <p>Thanks.</p> <pre><code>asInt_fold "" = error "You can't be giving me an empty string now" asInt_fold "-" = error "I need a little more than just a dash" asInt_fold string | isInfixOf "." string = error "I can't handle decimal points" asInt_fold ('-':xs) = -1 * (asInt_fold xs) asInt_fold string = fst (foldr helper (0,0) string) where helper char (sum,place) | place == 9 &amp;&amp; digitValue &gt; 2 = throwMaxIntError | maxInt - sum &lt; newPlaceComponent = throwMaxIntError | otherwise = (newValue, newPlace) where digitValue = (digitToInt char) placeMultiplier = (10 ^ place) newPlaceComponent = placeMultiplier * digitValue newValue = newPlaceComponent + sum newPlace = place + 1 maxInt = 2147483647 throwMaxIntError = error "The value is larger than max, which is 2147483647" </code></pre> http://stackoverflow.com/questions/832992/is-it-recommended-to-always-have-exhaustive-pattern-matches-in-haskell-even-for 5 Is it recommended to always have exhaustive pattern matches in Haskell, even for "impossible" cases? Charlie Flowers 2009-05-07T05:20:39Z 2009-05-07T21:24:41Z <p>Is it recommended to always have exhaustive pattern matches in Haskell, even for "impossible" cases?</p> <p>For example, in the following code, I am pattern matching on the "accumulator" of a foldr. I am in complete control of the contents of the accumulator, because I create it (it is not passed to me as input, but rather built within my function). Therefore, I know certain patterns should never match it. If I strive to never get the "Pattern match(es) are non-exhaustive" error, then I would place a pattern match for it that simply error's with the message "This pattern should never happen." Much like an assert in C#. I can't think of anything else to do there.</p> <p>What practice would you recommend in this situation and why?</p> <p>Here's the code: </p> <pre><code>gb_groupBy p input = foldr step [] input where step item acc = case acc of [] -&gt; [[item]] ((x:xs):ys) -&gt; if p x item then (item:x:xs):ys else [item]:acc </code></pre> <p>The pattern not matched (as reported by the interpreter) is: </p> <p>Warning: Pattern match(es) are non-exhaustive In a case alternative: Patterns not matched: [] : _</p> http://stackoverflow.com/questions/833186/why-does-this-haskell-code-work-successfully-with-infinite-lists 7 Why does this Haskell code work successfully with infinite lists? Charlie Flowers 2009-05-07T06:39:18Z 2009-05-07T07:49:08Z <p>I have some Haskell code that <em>does</em> work correctly on an infinite list, but I do not understand <em>why</em> it can do so successfully. (I modified my original code -- that did not handle infinite lists -- to incorporate something from some other code online, and suddenly I see that it works but don't know why). </p> <pre><code>myAny :: (a -&gt; Bool) -&gt; [a] -&gt; Bool myAny p list = foldr step False list where step item acc = p item || acc </code></pre> <p>My understanding of foldr is that it will loop through every item in the list (and perhaps that understanding is incomplete). If so, it should not matter how the "step" function is phrased ... the code should be unable to handle infinite loops.</p> <p>However, the following works:</p> <pre><code>*Main Data.List&gt; myAny even [1..] True </code></pre> <p>Please help me understand: why??</p> http://stackoverflow.com/questions/827994/can-2-or-more-equations-defining-a-function-in-haskell-share-the-same-where-let 1 Can 2 or more equations defining a function in Haskell share the same where / let block? Charlie Flowers 2009-05-06T04:19:13Z 2009-05-06T05:46:40Z <p><strong>Can 2 or more equations defining a function in Haskell share the same where / let block?</strong></p> <p>Let me present a contrived example to illustrate the question. </p> <p>First, consider the following code as a starting point:</p> <pre><code>someFunction v1 v2 v3 = difference ^ v3 where difference = v1 - v2 </code></pre> <p>So far, so good. But then, imagine I need to deal with an "alternative case", where I need to return zero if v3 == 99 and difference &lt; 4 (completely arbitrary, but let's say those are my requirements).</p> <p>My first thought would be to do this: </p> <pre><code>someFunction v1 v2 99 | difference &lt; 4 = 0 someFunction v1 v2 v3 = difference ^ v3 where difference = v1 - v2 </code></pre> <p>However, that won't work because the first equation for someFunction and the second equation for someFunction are not both sharing the same where block. This is not a big deal in this contrived example because there is only one variable in the where block ("difference"). But in a real world situation, there could be a large number of variables, and it would be unacceptable to repeat them.</p> <p>I already know how to solve this by using guards and having only one equation. The question is, is there a way for multiple <em>equations</em> to share the same where / let clause? Because it seems desirable to have multiple equations with different patterns instead of being forced to have just one equation with many guards.</p> http://stackoverflow.com/questions/824562/does-ruby-perform-tail-call-optimization 4 Does Ruby perform Tail Call Optimization? Charlie Flowers 2009-05-05T12:03:12Z 2009-05-05T13:24:17Z <p>Functional languages lead to use of recursion to solve a lot of problems, and therefore many of them perform Tail Call Optimization (TCO). TCO causes calls to a function from another function (or itself, in which case this feature is also known as Tail Recursion Elimination, which is a subset of TCO), as the last step of that function, to not need a new stack frame, which decreases overhead and memory usage.</p> <p>Ruby obviously has "borrowed" a number of concepts from functional languages (lambdas, functions like map and so forth, etc.), which makes me curious: Does Ruby perform tail call optimization?</p> http://stackoverflow.com/questions/795317/why-does-this-haskell-code-produce-the-infinite-type-error 7 Why does this Haskell code produce the "infinite type" error? Charlie Flowers 2009-04-27T21:16:38Z 2009-04-30T20:05:56Z <p>I am new to Haskell and facing a "cannot construct infinite type" error that I cannot make sense of. </p> <p>In fact, beyond that, I have not been able to find a good explanation of what this error even means, so if you could go beyond my basic question and explain the "infinite type" error, I'd really appreciate it.</p> <p>Here's the code: </p> <pre><code>intersperse :: a -&gt; [[a]] -&gt; [a] -- intersperse '*' ["foo","bar","baz","quux"] -- should produce the following: -- "foo*bar*baz*quux" -- intersperse -99 [ [1,2,3],[4,5,6],[7,8,9]] -- should produce the following: -- [1,2,3,-99,4,5,6,-99,7,8,9] intersperse _ [] = [] intersperse _ [x] = x intersperse s (x:y:xs) = x:s:y:intersperse s xs </code></pre> <p>And here's the error trying to load it into the interpreter: </p> <p>Prelude> :load ./chapter.3.ending.real.world.haskell.exercises.hs [1 of 1] Compiling Main ( chapter.3.ending.real.world.haskell.exercises.hs, interpreted )</p> <p>chapter.3.ending.real.world.haskell.exercises.hs:147:0: Occurs check: cannot construct the infinite type: a = [a] When generalising the type(s) for `intersperse' Failed, modules loaded: none.</p> <p>Thanks.</p> <p>EDIT: Thanks to the responses, I have corrected the code and I also have a general guideline for dealing with the "infinite type" error in Haskell: </p> <p><strong>Corrected code</strong></p> <pre><code>intersperse _ [] = [] intersperse _ [x] = x intersperse s (x:xs) = x ++ s:intersperse s xs </code></pre> <p><strong>What the problem was:</strong></p> <p>My type signature states that the second parameter to intersperse is a <em>list of lists</em>. Therefore, when I pattern matched against "s (x:y:xs)", x and y became <strong>lists</strong>. And yet I was treating x and y as elements, not lists. </p> <p><strong>Guideline for dealing with the "infinite type" error:</strong></p> <p><em>Most of the time, when you get this error, you have forgotten the types of the various variables you're dealing with, and you have attempted to use a variable as if it were some other type than what it is. Look carefully at what type everything is versus how you're using it, and this will usually uncover the problem.</em></p> http://stackoverflow.com/questions/688418/what-fluent-interfaces-have-you-made-or-seen-in-c-that-were-very-valuable-what 10 What fluent interfaces have you made or seen in C# that were very valuable? What was so great about them? Charlie Flowers 2009-03-27T03:22:32Z 2009-04-30T05:03:09Z <p>"Fluent interfaces" is a fairly hot topic these days. C# 3.0 has some nice features (particularly extension methods) that help you make them. </p> <p>FYI, a fluent API means that each method call returns something useful, often the same object you called the method on, so you can keep chaining things. Martin Fowler discusses it with a Java example <a href="http://www.martinfowler.com/bliki/FluentInterface.html" rel="nofollow">here</a>. The concept kooks something like this:</p> <pre><code>var myListOfPeople = new List&lt;Person&gt;(); var person = new Person(); person.SetFirstName("Douglas").SetLastName("Adams").SetAge(42).AddToList(myListOfPeople); </code></pre> <p>I have seen some incredibly useful fluent interfaces in C# (one example is the fluent approach for validating parameters found in <a href="http://stackoverflow.com/questions/669678/what-is-the-smoothest-most-appealing-syntax-youve-found-for-asserting-parameter/670484#670484">an earlier StackOverflow question I had asked</a>. It blew me away. It was able to give highly readable syntax for expressing parameter validation rules, and also, if there were no exceptions, it was able to avoid instantiating any objects! So for the "normal case", there was very little overhead. This one tidbit taught me a <strong>huge</strong> amount in a short time. I want to find more things like that).</p> <p>So, I'd like to learn more by looking at and discussing some excellent examples. So, <strong>what are some excellent fluent interfaces you've made or seen in C#, and what made them so valuable?</strong></p> <p>Thanks.</p> http://stackoverflow.com/questions/788361/critique-this-late-night-noob-haskell-code 3 Critique this late night, noob Haskell code Charlie Flowers 2009-04-25T06:31:03Z 2009-04-25T22:32:35Z <p>I'm working through <a href="http://book.realworldhaskell.org/" rel="nofollow">Real World Haskell</a>, and at the moment doing the exercises at the end of Chapter 3.</p> <p>I'm taking an unusual approach: <strong>even though I know there are some language features they haven't covered yet that would help me, I am trying to do these exercises using <em>only</em> things they have explicitly covered.</strong> Why? Just kind of for fun really. It feels like it is forcing me to give my brain some extra practice with recursion.</p> <p>So I just completed the exercise posed as follows: <strong>"Create a function that sorts a list of lists based on the length of each sublist. (You may want to look at the sortBy function from the Data.List module.)"</strong></p> <p>Now, they threw in the hint about the Data.List module. But they didn't say a word about where reference doc can be found, about how to import stuff, etc. So I decided to <em>roll my own sort</em> just to see if I could do it. I used Bubble Sort since it's the simplest algorithm.</p> <p>The result is below. I'd like to get you Haskell gurus to critique it please ... but <strong>with the following caveat in mind:</strong> <em>If you suggest improvements, please base them on language features covered through chapter 3 of Real World Haskell (or what you guess those features might be without going to the trouble of looking it up). I <strong>know</strong> there are tons of awesome language features waiting for me that will let me make this code better, but right now the specific challenge was to do it with the "primitive" features covered so far.</em></p> <p>I'm sure there are cases where I'm reaching around my shoulder to scratch my elbow, cases where I'm using explicit control flow when recursion and pattern matching could do more for me, etc. I'm sure the code could be made much shorter and more readable too. I bet there are good idioms I don't know about that can be used with the primitive language features I'm limiting myself to. Those are the kinds of tips I'd love to receive.</p> <p>This is probably the ugliest code I'm proud of in any language (at least, that I can remember). My first stab, in a functional language, at something beyond "Hello, world" type stuff. And now you are going to beat the crap out of it :) . Be gentle, please, but I'm looking forward to some meaty insight. Thanks.</p> <pre><code>areListsEqual :: (Eq a) =&gt; [a] -&gt; [a] -&gt; Bool areListsEqual [] [] = True areListsEqual [] _ = False areListsEqual _ [] = False areListsEqual xs ys = (head xs == head ys) &amp;&amp; (areListsEqual (tail xs) (tail ys)) charlieSort :: (Eq a) =&gt; [[a]] -&gt; [[a]] charlieSort [] = [] charlieSort (x:xs) | null xs = [x] charlieSort xs | (length xs) &gt;= 2 = if(not (areListsEqual xs wip)) then charlieSort wip else wip where first = head xs second = head (tail xs) theRest = drop 2 xs swapPairIfNeeded a b = if(length a &gt;= length b) then [second, first] else [first, second] modifiedPair = swapPairIfNeeded first second wip = (take 1 modifiedPair) ++ charlieSort ( (drop 1 modifiedPair) ++ theRest) </code></pre> http://stackoverflow.com/questions/775730/please-confirm-or-correct-my-english-interpretation-of-this-haskell-code-snippe 5 Please confirm or correct my "English interpretation" of this Haskell code snippet Charlie Flowers 2009-04-22T04:48:41Z 2009-04-23T02:20:07Z <p>I'm a C# developer who is working through <a href="http://book.realworldhaskell.org/" rel="nofollow">"Real World Haskell"</a> in order to truly understand functional programming, so that when I learn F#, I'll really grok it and not just "write C# code in F#", so to speak.</p> <p>Well, today I came across an example which I thought I understood 3 different times, only to then see something I missed, update my interpretation, and recurse (and curse too, believe me).</p> <p>Now I believe that I do actually understand it, and I have written a detailed "English interpretation" below. Can you Haskell gurus please confirm that understanding, or point out what I have missed?</p> <p>Note: The Haskell code snippet (quoted directly from the book) is defining a custom type that is meant to be isomorphic to the built in Haskell list type.</p> <p><strong>The Haskell code snippet</strong></p> <pre><code>data List a = Cons a (List a) | Nil defining Show </code></pre> <p><strong><em>EDIT: After some responses, I see one misunderstanding I made, but am not quite clear on the Haskell "parsing" rules that would correct that mistake. So I've included my original (incorrect) interpretation below, followed by a correction, followed by the question that still remains unclear to me.</em></strong></p> <p><strong>EDIT: Here is my original (incorrect) "English interpretation" of the snippet</strong></p> <ol> <li>I am defining a type called "List".</li> <li>The List type is parameterised. It has a single type parameter.</li> <li>There are 2 value constructors which can be used to make instances of List. One value constructor is called "Nil" and the other value constructor is called "Cons".</li> <li>If you use the "Nil" value constructor, then there are no fields.</li> <li>The "Cons" value constructor has a single type parameter.</li> <li>If you use the "Cons" value constructor, there are 2 fields which must be provided. The first required field is an instance of List. The second required field is an instance of a.</li> <li>(I have intentionally omitted anything about "defining Show" because it is not part of what I want to focus on right now).</li> </ol> <p><strong>The corrected interpretation would be as follows (changes in BOLD)</strong></p> <ol> <li>I am defining a type called "List".</li> <li>The List type is parameterised. It has a single type parameter.</li> <li>There are 2 value constructors which can be used to make instances of List. One value constructor is called "Nil" and the other value constructor is called "Cons". </li> <li><p>If you use the "Nil" value constructor, then there are no fields.</p> <p><strong>5. (this line has been deleted ... it is not accurate) The "Cons" value constructor has a single type parameter.</strong></p></li> <li><p><strong>If you use the "Cons" value constructor, there are 2 fields which must be provided. The first required field is an instance of a. The second required field is an instance of "List-of-a".</strong></p></li> <li>(I have intentionally omitted anything about "defining Show" because it is not part of what I want to focus on right now).</li> </ol> <p><strong>The question which is still unclear</strong></p> <p>The initial confusion was regarding the portion of the snippet that reads "Cons a (List a)". In fact, that is the part that is still unclear to me.</p> <p>People have pointed out that each item on the line after the "Cons" token is a <em>type</em>, not a value. So that means this line says "The Cons value constructor has 2 fields: one of type 'a' and the other of type 'list-of-a'."</p> <p>That is very helpful to know. However, something is still unclear. When I create instances using the Cons value constructor, those instances "interpret" the first 'a' as meaning "place the value passed in here." But they do <em>not</em> interpret the second 'a' the same way. </p> <p>For example, consider this GHCI session: </p> <pre><code>*Main&gt; Cons 0 Nil Cons 0 Nil *Main&gt; Cons 1 it Cons 1 (Cons 0 Nil) *Main&gt; </code></pre> <p>When I type "Cons 0 Nil", it uses the "Cons" value constructor to create an instance of List. From 0, it learns that the type parameter is "Integer". So far, no confusion.</p> <p>However, it <em>also</em> determines that the <em>value</em> of the first field of the Cons is 0. Yet it determines <em>nothing</em> about the <em>value</em> of the second field ... it only determines that the second field has a <em>type</em> of "List Integer".</p> <p>So my question is, why does "a" in the first field mean "the type of this field is 'a' <em>and</em> the value of this field is 'a'", while "a" in the second field means <em>only</em> "the type of this field is 'List of a'"?</p> <p><strong>EDIT: I believe I have now seen the light, thanks to several of the responses. Let me articulate it here. (And if somehow it is <em>still</em> incorrect in some fashion, please by all means let me know!)</strong></p> <p>In the snippet "Cons a (List a)", we are saying that the "Cons" value constructor has two fields, and that the first field is of type 'a', and that the second field is of type 'List of a'.</p> <p><strong>That is all we are saying!</strong> In particular, we are saying <em>NOTHING</em> about values! This is a key point I was missing.</p> <p>Later, we want to create an instance, using the "Cons" value constructor. We type this into the interpreter: "Cons 0 Nil". This <strong>explicitly</strong> tells the Cons value constructor to use 0 for the value of the first field, and to use Nil as the value for the second field. </p> <p>And that's all there is to it. Once you know that the value constructor definition specifies <em>nothing but types</em>, everything becomes clear.</p> <p>Thanks everyone for the helpful responses. And as I said, if anything is still off, please by all means tell me about it. Thanks.</p> http://stackoverflow.com/questions/735737/multiple-assertions-when-unit-testing-constructor/736706#736706 3 Answer by Charlie Flowers for Multiple assertions when unit testing constructor? Charlie Flowers 2009-04-10T04:29:41Z 2009-04-10T04:29:41Z <p>You might be interested to see what <strong><em>Kent Beck himself</em></strong> said, right here on Stack Overflow. He said...</p> <blockquote> <p>I get paid for code that works, not for tests, so my philosophy is to test as little as possible to reach a given level of confidence (I suspect this level of confidence is high compared to industry standards, but that could just be hubris). If I don't typically make a kind of mistake (like setting the wrong variables in a constructor), I don't test for it. I do tend to make sense of test errors, so I'm extra careful when I have logic with complicated conditionals. When coding on a team, I modify my strategy to carefully test code that we, collectively, tend to get wrong.</p> </blockquote> <p><a href="http://stackoverflow.com/questions/153234/how-deep-are-your-unit-tests/153565#153565">Here's the link.</a></p> <p>I have no problem admitting that made me re-think some things I was doing. And for the better.</p> http://stackoverflow.com/questions/716609/what-idiom-if-any-do-you-prefer-for-naming-the-this-parameter-to-extension-me 10 What idiom (if any) do you prefer for naming the "this" parameter to extension methods in C#, and why? Charlie Flowers 2009-04-04T06:11:10Z 2009-04-04T13:48:07Z <p>The first parameter to a C# extension method is the instance that the extension method was called on. I have adopted an idiom, without seeing it elsewhere, of calling that variable "self". I would not be surprised at all if others are using that as well. Here's an example: </p> <pre><code>public static void Print(this string self) { if(self != null) Console.WriteLine(self); } </code></pre> <p>However, I'm starting to see others name that parameter "@this", as follows:</p> <pre><code>public static void Print(this string @this) { if(@this != null) Console.WriteLine(@this); } </code></pre> <p>And as a 3rd option, some prefer no idiom at all, saying that "self" and "@this" don't give any information. I think we all agree that <em>sometimes</em> there is a clear, meaningful name for the parameter, specific to its purpose, which is better than "self" or "@this". Some go further and say you can <em>always</em> come up with a more valuable name. So this is another valid point of view.</p> <p><strong>What other idioms have you seen? What idiom do you prefer, and why?</strong></p> http://stackoverflow.com/questions/716738/resources-for-learning-design-patterns/716747#716747 0 Answer by Charlie Flowers for Resources for Learning Design Patterns Charlie Flowers 2009-04-04T08:08:19Z 2009-04-04T08:08:19Z <p>Really, I think the best way to learn them is to deeply understand your language (C# based on your tags), and then to really commit yourself to the goals of having good separation of concerns, low coupling and high cohesion. <a href="http://blog.objectmentor.com/articles/2009/02/12/getting-a-solid-start" rel="nofollow">I'd read and study Robert Martin's writings about SOLID principles.</a> </p> <p>And then (and this is the most important part), try to follow those principles as you develop software. You'll find that you start to do certain things, and later it will hit you, "Oh! That was the strategy pattern." This is truly what the "pattern movement" demonstrates ... people working in a certain kind of language, trying to achieve good software design, will find themselves arriving at solutions that follow certain common patterns. </p> http://stackoverflow.com/questions/716613/how-to-make-a-net-or-jvm-language/716622#716622 4 Answer by Charlie Flowers for How to make a .Net or JVM language? Charlie Flowers 2009-04-04T06:19:30Z 2009-04-04T06:19:30Z <p>You're kind of in luck. There is an explosion of languages being developed for .NET, and there are articles / resources targeted at individuals such as yourself (not just large corporations with tons of money to invest). </p> <p>Search for "dynamic language runtime", and go from there.</p> <p>Here are some links: </p> <p><a href="http://blogs.msdn.com/hugunin/archive/2007/04/30/a-dynamic-language-runtime-dlr.aspx" rel="nofollow">Blog of the guy who is the brain behind IronPython</a></p> <p><a href="http://www.codeplex.com/dlr" rel="nofollow">The home of the Dynamic Language Runtime</a></p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc163344.aspx" rel="nofollow">An article about how IronPython was implemented</a></p> <p><a href="http://blogs.msdn.com/mmaly/archive/2008/01/14/building-a-dlr-language-trees.aspx" rel="nofollow">A blog posting talking about abstract syntax trees and the DLR</a></p> http://stackoverflow.com/questions/716563/asp-net-session-management/716568#716568 2 Answer by Charlie Flowers for asp.net session management Charlie Flowers 2009-04-04T05:38:56Z 2009-04-04T05:38:56Z <p>The right practice is to "find" the user's session each time you receive a postback. And right then and there, if you can't find it, report an error that their session has expired and they need to log in again.</p> http://stackoverflow.com/questions/716552/can-you-create-a-simple-equalitycomparert-using-a-lamba-expression/716561#716561 2 Answer by Charlie Flowers for Can you create a simple 'EqualityComparer<T>' using a lamba expression Charlie Flowers 2009-04-04T05:29:44Z 2009-04-04T05:29:44Z <p>You could group by the key value and then select the top item from each group. Would that work for you?</p> http://stackoverflow.com/questions/1064254/what-are-some-good-open-source-c-examples-of-quality-domain-models/1300640#1300640 Comment by Charlie Flowers on What are some good open source c# examples of quality domain models. Charlie Flowers 2009-11-17T22:17:48Z 2009-11-17T22:17:48Z I agree. It is the spawn of Satan. More accurately, it was an excellent pedagogical device that Rocky used to write a good book for OO beginners. Since it was pedagogical, it did not go far enough with refactoring and further needed design improvements (if it had gone that far, it would have lost its pedagogical value for beginners). Then, it was taken and pitched as a fully complete, ready-for-enterprise framework (which is ludicrous), and many business were duped into believing that pitch. Even developers were duped into it because of the religious fervor and guru-status behind it. http://stackoverflow.com/questions/1695356/c-custom-events-with-overloads Comment by Charlie Flowers on C# Custom Events with Overloads Charlie Flowers 2009-11-08T04:34:03Z 2009-11-08T04:34:03Z I need more info. When you say &quot;make addStatus an overload&quot;, what do you mean? You want an overload that takes a different set of parameters? http://stackoverflow.com/questions/96818/best-jquery-book-jquery-in-action-vs-learning-jquery/96829#96829 Comment by Charlie Flowers on Best jQuery Book: jQuery in Action vs. Learning jQuery Charlie Flowers 2009-10-28T17:43:09Z 2009-10-28T17:43:09Z I didn't know you could say &quot;bullshit&quot; on here. I would have used that a little more often. http://stackoverflow.com/questions/1505231/what-is-the-problem-with-visual-studio-nets-absolute-positioning-and-how-is-t/1505268#1505268 Comment by Charlie Flowers on What is the problem with Visual Studio.Net's "absolute positioning", and how is that problem fixed by CSS's "absolute positioning"? Charlie Flowers 2009-10-01T19:14:59Z 2009-10-01T19:14:59Z +1, thanks. Good info. http://stackoverflow.com/questions/1505231/what-is-the-problem-with-visual-studio-nets-absolute-positioning-and-how-is-t/1505781#1505781 Comment by Charlie Flowers on What is the problem with Visual Studio.Net's "absolute positioning", and how is that problem fixed by CSS's "absolute positioning"? Charlie Flowers 2009-10-01T19:13:35Z 2009-10-01T19:13:35Z Fantastic response, thanks. I agree with you and I'm starting to see the light. The old advice about using FlowLayout was not just about avoiding VS.Net's own implementation of absolute layout ... it was about avoiding absolute layout in general. Web pages should not have every element laid out with absolute positioning (and yet VS.Net used to default to it). Very helpful, thanks. http://stackoverflow.com/questions/1505231/what-is-the-problem-with-visual-studio-nets-absolute-positioning-and-how-is-t Comment by Charlie Flowers on What is the problem with Visual Studio.Net's "absolute positioning", and how is that problem fixed by CSS's "absolute positioning"? Charlie Flowers 2009-10-01T17:37:07Z 2009-10-01T17:37:07Z Well, maybe I have it wrong. My understanding is that the general web community (outside of the Microsoft world) recommends that CSS positioning be used. That HTML elements should convey structure, not positioning or appearance. Then, positioning should be done with CSS. Also, my understanding is that the larger organizing elements of the page should be positioned by CSS absolute positioning. For ex, this link recc's using CSS-P instead of table-driven layout: <a href="http://webdesign.about.com/od/css/a/aa102102a.htm" rel="nofollow">webdesign.about.com/od/css/a/aa102102a.htm</a>. http://stackoverflow.com/questions/1499558/using-old-asp-net-2-0-but-with-new-browser-ie-7-should-i-use-absolute-posi/1499587#1499587 Comment by Charlie Flowers on Using old ASP.NET 2.0, but with new browser (IE 7) ... Should I use Absolute Positioning or Flow Layout or CSS or what? :-) Charlie Flowers 2009-10-01T16:59:24Z 2009-10-01T16:59:24Z I think I will turn that into its own separate question. http://stackoverflow.com/questions/1499558/using-old-asp-net-2-0-but-with-new-browser-ie-7-should-i-use-absolute-posi/1499587#1499587 Comment by Charlie Flowers on Using old ASP.NET 2.0, but with new browser (IE 7) ... Should I use Absolute Positioning or Flow Layout or CSS or what? :-) Charlie Flowers 2009-10-01T14:41:45Z 2009-10-01T14:41:45Z OK, I think this question cuts to the chase: what is it that the VS.Net designer does badly at absolute positioning, but that CSS does well about absolute positioning? Why is CSS positioning OK across different screen resolutions, but the VS.Net absolute approach is not? http://stackoverflow.com/questions/1499558/using-old-asp-net-2-0-but-with-new-browser-ie-7-should-i-use-absolute-posi/1499619#1499619 Comment by Charlie Flowers on Using old ASP.NET 2.0, but with new browser (IE 7) ... Should I use Absolute Positioning or Flow Layout or CSS or what? :-) Charlie Flowers 2009-09-30T18:18:19Z 2009-09-30T18:18:19Z Ugh, I'm afraid I may have to do that, but I want to avoid it at all cost. It is a hodgepodge of all the poor practices from the past ... tables to control layout and non-standards based absolute positioning. But I see why you did it and appreciate the response. http://stackoverflow.com/questions/1499558/using-old-asp-net-2-0-but-with-new-browser-ie-7-should-i-use-absolute-posi/1499587#1499587 Comment by Charlie Flowers on Using old ASP.NET 2.0, but with new browser (IE 7) ... Should I use Absolute Positioning or Flow Layout or CSS or what? :-) Charlie Flowers 2009-09-30T18:16:25Z 2009-09-30T18:16:25Z Really? If so that's good to hear. But I thought that many of the ASP.NET controls are not CSS-friendly which would make it difficult to use CSS positioning. http://stackoverflow.com/questions/9033/hidden-features-of-c/52998#52998 Comment by Charlie Flowers on Hidden Features of C#? Charlie Flowers 2009-09-26T02:51:30Z 2009-09-26T02:51:30Z Yes, this is powerful. http://stackoverflow.com/questions/187380/why-use-ruby-instead-of-smalltalk/194232#194232 Comment by Charlie Flowers on Why use Ruby instead of Smalltalk? Charlie Flowers 2009-09-26T02:38:02Z 2009-09-26T02:38:02Z Which one is the interstate, and which is the windy back road with tree cover? lol http://stackoverflow.com/questions/713043/your-favorite-programming-book-available-for-free-download/713066#713066 Comment by Charlie Flowers on Your Favorite Programming Book available for FREE download Charlie Flowers 2009-08-28T01:27:14Z 2009-08-28T01:27:14Z His &quot;Thinking in C++&quot; was instrumental to me about 15 years ago. Before I read it, I mistakenly thought I understood C++ only to get eaten alive on tech interviews (twice). Then his book turned on the light for me. http://stackoverflow.com/questions/712769/have-you-ever-derived-a-programming-solution-from-nature/712784#712784 Comment by Charlie Flowers on Have you ever derived a programming solution from nature? Charlie Flowers 2009-08-28T01:20:13Z 2009-08-28T01:20:13Z In fact, there are some rules that are funnier to think about than &quot;elevator rules&quot; ... &quot;urinal rules&quot;. The way guys choose a urinal in a crowded restroom is very much like the behavior of the birds. :) http://stackoverflow.com/questions/688418/what-fluent-interfaces-have-you-made-or-seen-in-c-that-were-very-valuable-what/690608#690608 Comment by Charlie Flowers on What fluent interfaces have you made or seen in C# that were very valuable? What was so great about them? Charlie Flowers 2009-08-28T01:07:42Z 2009-08-28T01:07:42Z I agree that nameOf and some similar operators would be great. Let us get to the names of variables that are in scope cheaply so that there is less of a barrier between code and data.