User Edward Kmett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T03:21:28Zhttp://stackoverflow.com/feeds/user/34707http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844195/doubly-linked-list-in-a-purely-functional-programming-language/1844243#184424311Answer by Edward Kmett for Doubly Linked List in a Purely Functional Programming LanguageEdward Kmett2009-12-04T01:11:09Z2009-12-04T01:11:09Z<p>There are a number of approaches. </p>
<p>If you don't want to mutate the doubly-linked list once you have constructed it you can just 'tie the knot' by relying on laziness. </p>
<p><a href="http://www.haskell.org/haskellwiki/Tying%5Fthe%5FKnot" rel="nofollow">http://www.haskell.org/haskellwiki/Tying_the_Knot</a></p>
<p>If you want a mutable doubly-linked list you need to fake references somehow -- or use real ones -- ala the trick proposed by Oleg Kiseylov and implemented here:</p>
<p><a href="http://hackage.haskell.org/packages/archive/liboleg/2009.9.1/doc/html/Data-FDList.html" rel="nofollow">http://hackage.haskell.org/packages/archive/liboleg/2009.9.1/doc/html/Data-FDList.html</a></p>
<p>Interestingly, note that the former relies fundamentally upon laziness to succeed. You ultimately need mutation or laziness to tie the knot.</p>
http://stackoverflow.com/questions/1743608/iterating-over-arrays-in-haskell/1772712#17727120Answer by Edward Kmett for Iterating over arrays in haskellEdward Kmett2009-11-20T19:24:13Z2009-11-20T19:24:13Z<p>Using <a href="http://www.haskell.org/ghc/docs/6.10.2/html/libraries/base/Data-Foldable.html" rel="nofollow"><code>Data.Foldable</code></a> you can <code>foldr</code>/<code>foldl</code> an <code>Array</code> just like you can a list.</p>
<p>Another option is that you can convert the <code>Array</code> back into a list with <code>elems</code>, and then <code>foldr</code> or <code>foldl</code> over the list.</p>
http://stackoverflow.com/questions/1733513/how-to-get-64-bit-binaries-from-ghc-for-snow-leopard/1735569#17355691Answer by Edward Kmett for How to get 64-bit binaries from GHC for Snow Leopard?Edward Kmett2009-11-14T20:55:58Z2009-11-16T17:58:57Z<p>My understanding is that at the moment ghc cannot generate correct 64 bit binaries under Snow Leopard. This appears to be in part because of a bug in its 64 bit link generation and in part because of a change in the native toolchain. The workaround you mention simply tells it to generate a 32 bit target and thus won't be part of any actual solution to your problem.</p>
http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1743800#17438000Answer by Edward Kmett for Pointer equality in Haskell?Edward Kmett2009-11-16T17:56:01Z2009-11-16T17:56:01Z<p>Another way to do this is to exploit StableNames.</p>
<p>However, special would have to return its results inside of the IO monad unless you want to abuse unsafePerformIO.</p>
<p>The IORef solution requires IO throughout the construction of your structure. Checking StableNames only uses it when you want to check referential equality.</p>
http://stackoverflow.com/questions/1524057/computing-to-infinite-binary-precision-in-c/1560768#15607682Answer by Edward Kmett for Computing π to "infinite" binary precision in C#Edward Kmett2009-10-13T14:55:50Z2009-10-13T14:55:50Z<p>By far my favorite Haskell spigot for pi comes from Jeremy Gibbons:</p>
<pre><code>pi = g(1,0,1,1,3,3) where
g(q,r,t,k,n,l) =
if 4*q+r-t<n*t
then n : g(10*q,10*(r-n*t),t,k,div(10*(3*q+r))t-10*n,l)
else g(q*k,(2*q+r)*l,t*l,k+1,div(q*(7*k+2)+r*l)(t*l),l+2)
</code></pre>
<p>The mathematical background that justifies that implementation can be found in:</p>
<p><a href="http://www.mathpropress.com/stan/bibliography/spigot.pdf" rel="nofollow">A Spigot Algorithm for the Digits of Pi</a></p>
http://stackoverflow.com/questions/1474459/is-it-considered-bad-taste-to-put-your-gpa-in-your-resume-when-applying-for-a-pro/1474540#14745402Answer by Edward Kmett for Is it considered bad taste to put your GPA in your resume when applying for a programming job?Edward Kmett2009-09-24T22:36:33Z2009-09-24T22:36:33Z<p>With a 4.0 (really, anything better than a 3.0) it is worth mentioning. A simple "4.0 GPA, summa cum laude with University and Departmental Honors" or what have you, doesn't take up much space and shows that you cared about the quality of your coursework. </p>
<p>I have been in industry for 15 years, and I still put down the fact that I graduated with a 4.0 on my resume next to each of my degrees. I don't think anyone will judge you negatively for being proud of an accomplishment like that.</p>
http://stackoverflow.com/questions/395628/saving-graphs-in-haskell/1412250#14122501Answer by Edward Kmett for Saving graphs in HaskellEdward Kmett2009-09-11T17:25:39Z2009-09-11T17:25:39Z<p>Yes and no. It can be done via domain knowledge of the structure of your Node type and defining some notion of equality that you can test, combined with a list or map of nodes seen so far to recover sharing. In the pathological case there is a notion of a StableName in GHC to construct such a notion.</p>
<p>On another front Matt Morrow has been doing some work to extract in the form of a assembly language .S file, arbitrary cyclic data using his handy vacuum library. So either that or vacuum might suit your needs.</p>
<p>In general avoiding voodoo and tracking nodes seen so far in a map is probably the most rational and maintainable solution.</p>
http://stackoverflow.com/questions/1411089/how-to-stop-ghc-from-generating-intermediate-files/1412191#14121914Answer by Edward Kmett for How to stop GHC from generating intermediate files?Edward Kmett2009-09-11T17:13:14Z2009-09-11T17:13:14Z<p>My usual workflow is to use cabal rather than ghc directly. This sets the outputdir option into an appropriate build folder and can do things like build haddock documentation for you. All you need is to define the .cabal file for your project and then say cabal install or cabal build instead of run ghc directly. Since you need to follow this process in the end if you ever want to share your work on hackage, it is a good practice to get into and it helps manage package dependencies as well.</p>
http://stackoverflow.com/questions/1359158/mysterious-word-lps-appears-in-a-list-of-haskell-output/1362577#13625770Answer by Edward Kmett for Mysterious word ("LPS") appears in a list of Haskell output Edward Kmett2009-09-01T13:44:19Z2009-09-01T13:56:03Z<p>LPS was the old constructor for the old Lazy ByteString newtype. It has since been replaced with an explicit data type, so the current behavior is slightly different. </p>
<p>When you call Show on a Lazy ByteString it prints out the code that would generate approximately the same lazy bytestring you gave it. However, the usual import for working with ByteStrings doesn't export the LPS -- or in later revisions, the Chunk/Empty constructors. So it shows it with the LPS constructor wrapped around a list of strict bytestring chunks, which print themselves as strings.</p>
<p>On the other hand, I wonder if the lazy ByteString Show instance should do the same thing that most other show instances for complicated data structures do and say something like:</p>
<pre><code>fromChunks ["foo","bar","baz"]
</code></pre>
<p>or even:</p>
<pre><code>fromChunks [pack "foo",pack "bar", pack "baz"]
</code></pre>
<p>since the former seems to rely on <code>{-# LANGUAGE OverloadedStrings #-}</code> for the resulting code fragment to be really parseable as Haskell code. On the other-other hand, printing bytestrings as if they were strings is really convenient. Alas, both options are more verbose than the old LPS syntax, but they are more terse than the current Chunk "Foo" Empty. In the end, Show just needs to be left invertible by Read, so its probably best not to muck around changing things lest it randomly break a ton of serialized data. ;)</p>
<p>As for your problem, you are getting a <code>[[ByteString]]</code> instead of <code>[[Float]]</code> by mapping words over your lines. You need to unpack that ByteString and then call <code>read</code> on the resulting string to generate your floating point numbers.</p>
http://stackoverflow.com/questions/1339152/summation-notation-in-haskell/1340358#13403581Answer by Edward Kmett for Summation notation in HaskellEdward Kmett2009-08-27T11:05:33Z2009-08-27T11:05:33Z<p>One thing to note is that sum may be lazier than you would want, so consider using foldl'.</p>
http://stackoverflow.com/questions/1334488/how-do-i-remove-every-occurance-of-a-value-from-a-list-in-haskell-using-prelude/1335530#133553016Answer by Edward Kmett for How do I remove every occurance of a value from a list in haskell using Prelude?Edward Kmett2009-08-26T15:22:42Z2009-08-26T15:22:42Z<pre><code>removeall = filter . (/=)
</code></pre>
http://stackoverflow.com/questions/1319705/introduction-or-simple-examples-for-iteratee/1320035#13200353Answer by Edward Kmett for Introduction or simple examples for iteratee?Edward Kmett2009-08-24T00:59:00Z2009-08-24T00:59:00Z<p>I have some slides on monoidal parsing that build Iteratee based Parsec streams up as an intermediate result that you might find useful.</p>
<p><a href="http://comonad.com/reader/2009/iteratees-parsec-and-monoid/" rel="nofollow">http://comonad.com/reader/2009/iteratees-parsec-and-monoid/</a></p>
http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/266842#2668420Answer by Edward Kmett for What's your first program that you were proud of?Edward Kmett2008-11-05T21:47:23Z2009-08-19T23:34:20Z<p>A <a href="http://en.wikipedia.org/wiki/VT100" rel="nofollow">VT100</a> terminal emulator (with 80 columns, true descenders, and itty bitty fonts) for the <a href="http://en.wikipedia.org/wiki/Commodore%5F64" rel="nofollow">Commodore 64</a>.</p>
http://stackoverflow.com/questions/1284325/scala-equivalent-to-haskells-where-clauses/1284781#12847812Answer by Edward Kmett for Scala equivalent to Haskell's where-clauses?Edward Kmett2009-08-16T17:02:18Z2009-08-16T17:02:18Z<p>You can use <code>var</code> and <code>val</code> to provide local variables, but that is different than Haskell's <code>where</code> clause in two fairly important aspects: laziness and purity.</p>
<p>Haskell's <code>where</code> clause is useful because laziness and purity alows the compiler to only instantiate the variables in the where clause that are actually used. </p>
<p>This means you can write a big long local definition, and drop a <code>where</code> clause below it and there is no consideration needed for the order of effects (because of purity) and no consideration needed for if each individual code branch needs all of the definitions in the where clause, because laziness allows unused terms in the where clause to exist just as thunks, which purity allows the compiler to choose to elide from the resulting code when they aren't used. </p>
<p>Scala, unfortunately, has neither of these properties, and so cannot provide a full equivalent to Haskell's <code>where</code> clause.</p>
<p>You need to manually factor out the <code>var</code>s and <code>val</code>s that you use and put them in before the statements that use them, much like ML <code>let</code> statements.</p>
http://stackoverflow.com/questions/1270905/comparing-3-output-lists-in-haskell/1274435#12744350Answer by Edward Kmett for Comparing 3 output lists in haskellEdward Kmett2009-08-13T20:38:57Z2009-08-13T20:38:57Z<p>The easiest way is to respecify your problem slightly</p>
<p>Rather than deal with three lists (note the removal of the superfluous n argument):</p>
<pre><code>hexag = [ n*(2*n-1) | n <- [40755..]]
penta = [ n*(3*n-1)/2 | n <- [40755..]]
trian = [ n*(n+1)/2 | n <- [40755..]]
</code></pre>
<p>You could, for instance generate one list:</p>
<pre><code>matches :: [Int]
matches = matches' 40755
matches' :: Int -> [Int]
matches' n
| hex == pen && pen == tri = n : matches (n + 1)
| otherwise = matches (n + 1) where
hex = n*(2*n-1)
pen = n*(3*n-1)/2
tri = n*(n+1)/2
</code></pre>
<p>Now, you could then try to optimize this for performance by noticing recurrences. For instance when computing the next match at (n + 1):</p>
<pre><code>(n+1)*(n+2)/2 - n*(n+1)/2 = n + 1
</code></pre>
<p>so you could just add (n + 1) to the previous tri to obtain the new tri value.</p>
<p>Similar algebraic simplifications can be applied to the other two functions, and you can carry all of them in accumulating parameters to the function matches'.</p>
<p>That said, there are more efficient ways to tackle this problem.</p>
http://stackoverflow.com/questions/1269888/invisible-identation-error-in-haskell-caused-load-fail-in-ghci/1271521#12715213Answer by Edward Kmett for invisible identation error in Haskell caused load fail in ghci Edward Kmett2009-08-13T11:54:51Z2009-08-13T11:54:51Z<p>Your problem has to do with the expansion of tabs. Haskell assumes a tab is worth 8 spaces. Your editor likely has a different assumption. Try searching and replacing all tabs with 8 space in your editor, then adjust the spacing to line up the where clause.</p>
http://stackoverflow.com/questions/1255018/n-queens-in-haskell-without-list-traversal/1268285#12682852Answer by Edward Kmett for N-queens in Haskell without list traversalEdward Kmett2009-08-12T19:43:17Z2009-08-12T19:43:17Z<p>In general you are probably going to be stuck paying the <code>O(log n)</code> complexity tax for a functional non-destructive implementation or you'll have to relent and use an <code>(IO|ST|STM)UArray</code>. </p>
<p>Strict pure languages may have to pay an <code>O(log n)</code> tax over an impure language that can write to references by implementing references through a map-like structure; lazy languages can sometimes dodge this tax, although there is no proof either way whether or not the extra power offered by laziness is sufficient to always dodge this tax -- even if it is strongly suspected that laziness isn't powerful enough.</p>
<p>In this case it is hard to see a mechanism by which laziness could be exploited to avoid the reference tax. And, after all that is why we have the <code>ST</code> monad in the first place. ;)</p>
<p>That said, you might investigate whether or not some kind of board-diagonal zipper could be used to exploit locality of updates -- exploiting locality in a zipper is a common way to try to drop a logarithmic term.</p>
http://stackoverflow.com/questions/1264797/string-interpolation-in-haskell/1267718#12677183Answer by Edward Kmett for string interpolation in haskellEdward Kmett2009-08-12T17:57:45Z2009-08-12T17:57:45Z<p>While the other posters here mention many of the 'right' ways to do string interpolation, there is a fancier way using quasiquotation and the <a href="http://hackage.haskell.org/packages/archive/interpolatedstring-perl6/0.4/doc/html/Text-InterpolatedString-Perl6.html" rel="nofollow">interpolatedstring-perl6 library:</a></p>
<pre><code>{-# LANGUAGE QuasiQuotes, ExtendedDefaultRules #-}
import Text.InterpolatedString.Perl6 (qq)
main = putStrLn [$qq| length [1,2,3] => ${length [1,2,3]} |]
</code></pre>
<p>In fact there is also an <a href="http://hackage.haskell.org/packages/archive/interpolatedstring-qq/0.1/doc/html/Text-InterpolatedString-QQ.html" rel="nofollow">interpolatedstring-qq</a> library which offers a Ruby syntax.</p>
<pre><code>{-# LANGUAGE QuasiQuotes, ExtendedDefaultRules #-}
import Text.InterpolatedString.QQ (istr)
main = putStrLn [$istr| length [1,2,3] => #{length [1,2,3]} |]
</code></pre>
<p>That said, you probably should just use show and ++ or concat to glue together the strings</p>
<pre><code>main = putStrLn $ "length [1,2,3] => " ++ show (length [1,2,3])
</code></pre>
<p>or</p>
<pre><code>main = putStrLn $ concat ["length [1,2,3] => ", show $ length (1,2,3)]
</code></pre>
<p>The latter tends to look nicer, code-wise, when you are gluing together a lot of string fragments.</p>
http://stackoverflow.com/questions/463105/in-place-radix-sort/1128806#11288061Answer by Edward Kmett for In-Place Radix SortEdward Kmett2009-07-15T00:37:54Z2009-07-15T00:49:05Z<p>Performance-wise you might want to look at a more general string-comparison sorting algorithms.</p>
<p>Currently you wind up touching every element of every string, but you can do better!</p>
<p>In particular, a <a href="http://en.wikipedia.org/wiki/Burstsort" rel="nofollow">burst sort</a> is a very good fit for this case. As a bonus, since burstsort is based on tries, it works ridiculously well for the small alphabet sizes used in DNA/RNA, since you don't need to build any sort of ternary search node, hash or other trie node compression scheme into the trie implementation. The tries may be useful for your suffix-array-like final goal as well.</p>
<p>A decent general purpose implementation of burstsort is available on source forge at <a href="http://sourceforge.net/projects/burstsort/" rel="nofollow">http://sourceforge.net/projects/burstsort/</a> - but it is not in-place.</p>
<p>For comparison purposes, The C-burstsort implementation covered at <a href="http://www.cs.mu.oz.au/~rsinha/papers/SinhaRingZobel-2006.pdf" rel="nofollow">http://www.cs.mu.oz.au/~rsinha/papers/SinhaRingZobel-2006.pdf</a> benchmarks 4-5x faster than quicksort and radix sorts for some typical workloads.</p>
http://stackoverflow.com/questions/1126588/are-list-comprehensions-a-major-part-of-haskell/1128455#11284559Answer by Edward Kmett for Are list comprehensions a major part of HaskellEdward Kmett2009-07-14T22:36:48Z2009-07-14T22:36:48Z<p>Haskell is defined by having a small set of core language functionality surrounded by a rich set of syntactic choices. List comprehensions are one choice, but they provide nothing that the monad sugar that RWH spends the entire book building up intuition for doesn't also provide. There are many cases where Haskell provides two syntaxes for the same thing, let vs. where, case and combinator oriented programming style, and list comprehensions and monad sugar.</p>
<p>List comprehensions were originally implemented as monad comprehensions, a fact which changed in the "great monomorphization revolution of '98" (aka Haskell '98). In fact, the design of LINQ in .NET languages derives heavily from the older monad comprehension design. List comprehensions could be far more general than they are, but were deliberately crippled to make them yield easier to understand error messages.</p>
<p>Given a finite amount of paper, you have to choose what material to emphasize, and RWH avoids talking about them for the most part so you don't fall into the trap of thinking of lists as anything special. </p>
<p>That said, there is a brief mention of them in Chapter 12. By that point sufficient intuition has been built up for the underlying concepts that they aren't really a danger.</p>
<p>In the end, the name of the book is Real World Haskell. It wants to teach you good real world programming techniques. A number of Haskellers (not all) avoid list comprehensions because the notation doesn't scale well, and because eventually, you may want to come back in and retrofit a monad transformer or something and would wind up rewriting whole swathes of comprehension code in monadic style anyways.</p>
http://stackoverflow.com/questions/1111517/https-response-body-is-it-secured/1111717#11117170Answer by Edward Kmett for HTTPS Response body - Is it secured?Edward Kmett2009-07-10T20:11:21Z2009-07-10T20:11:21Z<p>The entire HTTP session is encrypted including both the header and the body.</p>
<p>Any packet sniffer should be able to show you the raw traffic, but it'll just look like random bytes to someone without a deep understanding of SSL, and even then you won't get beyond seeing the key exchange as a third party.</p>
http://stackoverflow.com/questions/1111661/8192-bytes-when-creating-file/1111674#11116741Answer by Edward Kmett for 8192 bytes when creating fileEdward Kmett2009-07-10T20:00:04Z2009-07-10T20:00:04Z<p>If I had to guess, that is the amount of space you are using to read in the file. Without the rest of the code I can't tell if it is trying to read it all and cram it into 8k or if it is reading it in, 8k at a time, and then dumping it into the file.</p>
http://stackoverflow.com/questions/881867/hash-tables-using-vlists/1111653#11116531Answer by Edward Kmett for Hash tables using VListsEdward Kmett2009-07-10T19:56:57Z2009-07-10T19:56:57Z<p>Hrmm there seem to be a number of issues with the data structures proposed by the paper in question. </p>
<p>Off the cuff, the naive vlists mentioned first seem to need unique references in order to get anything near the time guarantees proposed. You lose the ability for the most part to share tails. You can share the tiny nodes towards the back of the list, but you wind up having to duplicate the largest vlist node the moment you cons something onto the cdr of vlist that is still active. That cost is proportional to the cost of copying the whole list. </p>
<p>With the 2d modifications mentioned later it becomes constant again, but its a pretty large constant, since you wind up at least copying the head of a list of pages (or worse, a vlist) and the first page in your list.</p>
<p>The functional hash list stuff in there didn't seem to make much sense to me to be honest. It was just a brief blurb that seemed to be bolted onto an otherwise unrelated paper, without enough detail to really make out how practical it is.</p>
http://stackoverflow.com/questions/1111155/what-exactly-is-the-halting-problem/1111256#11112563Answer by Edward Kmett for What exactly is the halting problem?Edward Kmett2009-07-10T18:37:51Z2009-07-10T18:55:30Z<blockquote>
<p>"If you just add one loop, you've got the halting program and therefore you can't automate task"</p>
</blockquote>
<p>Sounds like someone over generalizing the application of the halting problem. There are plenty of particular loops that you can prove terminate. There exists research that can perform termination checking for wide classes of programs. For instance in Coq you are limited to programs that you can prove terminate. Microsoft has a research project called Terminator that uses various approximations to prove that programs will terminate.</p>
<p>But, remember, the halting problem isn't just about toy examples. Neither of those solves the general 'halting problem', because they don't work for every program.</p>
<p>The problem is that the halting problem says that there exist programs that you have no way to know if they will terminate without running them, which means that you may never get done deciding if they halt.</p>
<p>An example of a program that may or may not halt (in Haskell):</p>
<pre><code>collatz 1 = ()
collatz !n | odd n = collatz (3 * n + 1)
| otherwise = collatz (n `div` 2)
</code></pre>
<p>or in something more accessible:</p>
<pre><code>while (n != 1)
if (n & 1 == 1)
n = 3 * n + 1;
else
n /= 2;
</code></pre>
<p>Given every integer >= 1, will this program halt? Well, it has worked so far, but there is no theorem that says it will halt for every integer. We have a <em>conjecture</em> due to <a href="http://en.wikipedia.org/wiki/Collatz%5Fconjecture" rel="nofollow">Lothar Collatz</a> that dates back to 1937 that it holds, but no proof.</p>
http://stackoverflow.com/questions/1110803/if-you-wanted-to-improve-software-development-in-your-organization-and-you-had-1/1111208#11112082Answer by Edward Kmett for If you wanted to improve software development in your organization and you had $1000 to spend, what would you spend it on?Edward Kmett2009-07-10T18:28:51Z2009-07-10T18:28:51Z<p>At a thousand dollars, about the best you could do is invest in moving your developers into a dual monitor arrangement. It sounds silly to management, but even if you realize a 1% performance increase that is a pretty great rate of return on a developer's salary. </p>
<p>The interesting part of course, is that research has shown the figure is actually closer to 20-30%!</p>
<p><a href="http://lifehacker.com/software/dual-monitor/dual-monitors-increase-productivity-168488.php" rel="nofollow">http://lifehacker.com/software/dual-monitor/dual-monitors-increase-productivity-168488.php</a></p>
<p>I personally have a 3 monitor arrangement in my home office (a 26" 1680x1050 Samsung that I use to read papers, a 30" 2560x1600 Dell that I use for code and a 42" 1920x1080 HDTV that I run a browser on and keep little bits of clutter on or use when watching presentations. By completely filling my peripheral vision, I don't get distracted nearly as easily. I can always have whatever I need at my finger tips and can cross reference and compare different sources without losing my place or dragging windows out of the way to see.</p>
<p>In the office I use a much less flashy dual monitor arrangement, but it is still a net win over just hunching over the laptop display.</p>
http://stackoverflow.com/questions/1093579/uninitialised-values-of-heap-and-stack-space/1111015#11110152Answer by Edward Kmett for Uninitialised values of heap and stack spaceEdward Kmett2009-07-10T17:51:40Z2009-07-10T17:51:40Z<p>What you are seeing are artifacts of your environment, not givens. I'm going to assume you are talking about C.</p>
<p>But that said, when you allocate memory from the heap it may or may not be initialized to zero. In a language like C, malloc makes no guarantees about the memory being initialized to 0, but calloc does. However, that said, in practice, if you allocate a lot of stuff you'll tend to see it filled with 0s. Why? Because when your program runs out of room to give you memory it asks the operating system for more memory. When it does so, the operating system gives it the memory by mapping it a bunch of virtual pages that it'll actually materialize and fill with 0s on their first access. Now, if you free some values on the heap and allocate more with malloc you may be given back some of that 'dirtied' memory that you scribbed on earlier. If you assumed everything was going to be 0 initialized, this can lead to subtle bugs that only happen once the system has been running for a while, or after deletions have been made in a completely different part of the system!</p>
<p>So don't rely on fresg space off the heap being initialized to 0, unless you ask it for explicitly initialized memory.</p>
<p>As for why the stack is even worse, the same problem of reusing space on the heap causing random noise to be in the memory you just allocated happens on the stack, but the problem is worse because after you returned from a function call, your program just scribbled a bunch of stuff all over the stack above you and didn't bother to clean it up. So you are almost always in the 'dirty' case above.</p>
<p>In the end it is best to make sure that you ensure everything you plan to use is initialized to a known state before it is read from.</p>
http://stackoverflow.com/questions/994819/how-to-calculate-scores/1110928#11109280Answer by Edward Kmett for How to calculate scores?Edward Kmett2009-07-10T17:35:15Z2009-07-10T17:35:15Z<p>You might look at using the lower bound of the Wilson score interval for your ratings.</p>
<p>See <a href="http://www.evanmiller.org/how-not-to-sort-by-average-rating.html" rel="nofollow">http://www.evanmiller.org/how-not-to-sort-by-average-rating.html</a> for more details. Although, there, it is used for the simpler Bernoulli case.</p>
<p>The gist is if you have a lot of ratings you have a higher degree of confidence in your scoring. You can then combine the scores from your local ratings and the Technorati ratings, by weighting the scores by the number of voters locally and on Technorati.</p>
<p>As for wanting a single -1 vote to have high impact, just remap it to a large negative value proportional to your desired impact before feeding it into your scoring formula.</p>
http://stackoverflow.com/questions/1109509/describe-the-damas-milner-type-inference-in-a-way-that-a-cs101-student-can-unders/1110829#11108293Answer by Edward Kmett for Describe the Damas-Milner type inference in a way that a CS101 student can understandEdward Kmett2009-07-10T17:19:48Z2009-07-10T17:19:48Z<p>Damas Milner is just a structured use of unification.</p>
<p>When it recurses into a lambda expression it makes up a new variable name. When you find a sub-term that variable in a way that would require a given type, it records the unification of that variable and that type. If it ever tries to unify two types that don't make sense, like saying that an individual variable is both an Int and a function from a -> b, then it yells at you for doing something bad.</p>
<blockquote>
<p>Also, this algorithm is often said to do type inference. Is it really an inference system? I thought it was only deducing the types.</p>
</blockquote>
<p>Deducing the types is type inference. Checking to see that type annotations are valid for a given term is type checking. They are different problems.</p>
<blockquote>
<p>If so, that means that the interesting part is the type system itself not the type inference system.</p>
</blockquote>
<p>It is commonly said that Hindley-Milner style type systems are balanced on a cusp. If you add much more functionality it becomes impossible to infer the types. So type system extensions that you can layer on top of a Hindley-Milner style type system without destroying its inference properties are really the interesting parts of modern functional languages. In some cases, we mix type inference and type checking, for instance in Haskell a lot of modern extensions can't be inferred, but can be checked, so they require type annotations for advanced features, like polymorphic recursion.</p>
http://stackoverflow.com/questions/1110565/distance-between-2-geocodes/1110675#11106750Answer by Edward Kmett for Distance between 2 geocodesEdward Kmett2009-07-10T16:48:23Z2009-07-10T17:05:12Z<p>The pythagorean theorem as offered up by others here doesn't work so well.</p>
<p>The best, simple answer is to approximate the earth as a sphere (its actually a slightly flattened sphere, but this is very close). In Haskell, for instance you might use the following, but the math can be transcribed into pretty much anything:</p>
<pre><code>distRadians (lat1,lon1) (lat2,lon2) =
radius_of_earth *
acos (cos lat1 * cos lon1 * cos lat2 * cos lon2 +
cos lat1 * sin lon1 * cos lat2 * sin lon2 +
sin lat1 * sin lat2) where
radius_of_earth = 6378 -- kilometers
distDegrees a b = distRadians (coord2rad a) (coord2rad b) where
deg2rad d = d * pi / 180
coord2rad (lat,lon) = (deg2rad lat, deg2rad lon)
</code></pre>
<p><code>distRadians</code> requires your angles to be given in radians.</p>
<p><code>distDegrees</code> is a helper function that can take lattitudes and longitudes in degrees.</p>
<p>See <a href="http://www.mathforum.com/library/drmath/view/51711.html" rel="nofollow">this series of posts</a> for more information on the derivation of this formula.</p>
<p>If you <em>really</em> need the extra precision granted by assuming the earth is ellipsoidal, see this FAQ: <a href="http://www.movable-type.co.uk/scripts/gis-faq-5.1.html" rel="nofollow">http://www.movable-type.co.uk/scripts/gis-faq-5.1.html</a></p>
http://stackoverflow.com/questions/23860/what-is-the-best-way-to-learn-recursion/1110191#11101910Answer by Edward Kmett for What is the best way to learn recursion?Edward Kmett2009-07-10T15:20:39Z2009-07-10T15:20:39Z<p>Learning Haskell is a good step, if only because you wind up using it for everything, and its fairly rigorous mathematical background makes reasoning by induction (or coinduction) about your programs fairly natural. That and its syntax largely just gets out of your way and lets you focus almost purely on the recursive aspects of your program.</p>
<p>For example, a recursive solution to the towers of Hanoi is tiny, and you can readily see how the recursion is working.</p>
<pre><code>hanoi _ _ _ _ 0 = []
hanoi f a z x n = hanoi f a x z (n-1) ++ f n a z ++ hanoi f x z a (n-1)
move n a b = concat ["Move disc ", show n, " from ", a, " to ", b, "\n"]
solve = hanoi move "A" "C" "B"
</code></pre>
http://stackoverflow.com/questions/1894453/development-time-in-various-languages/1894784#1894784Comment by Edward Kmett on Development time in various languagesEdward Kmett2009-12-12T22:47:41Z2009-12-12T22:47:41ZI came in here just to post this link!http://stackoverflow.com/questions/1844195/doubly-linked-list-in-a-purely-functional-programming-language/1844619#1844619Comment by Edward Kmett on Doubly Linked List in a Purely Functional Programming LanguageEdward Kmett2009-12-07T21:52:21Z2009-12-07T21:52:21ZI definitely agree that those are far better options. =)http://stackoverflow.com/questions/1743608/iterating-over-arrays-in-haskell/1743666#1743666Comment by Edward Kmett on Iterating over arrays in haskellEdward Kmett2009-11-20T19:25:54Z2009-11-20T19:25:54ZActually they are! but only in the form of an instance for Data.Foldable.Foldable. They don't exist with their own names because that would just clutter up the namespace further. When in doubt check what classes have instances for the data type you are using.http://stackoverflow.com/questions/1731395/calculating-a-product-recursively-only-using-addition/1731431#1731431Comment by Edward Kmett on Calculating a product recursively only using additionEdward Kmett2009-11-13T19:59:06Z2009-11-13T19:59:06ZIn short, how does it know when to stop?http://stackoverflow.com/questions/1664394/significant-whitespace-in-c-like-python-or-haskellComment by Edward Kmett on Significant Whitespace in C# like Python or Haskell?Edward Kmett2009-11-06T15:37:36Z2009-11-06T15:37:36ZActually I think you will find that adding whitespace sensitivity to an existing language is nontrivial. For instance people tend to break method and class declarations across multiple lines. So now you need to be able to cleanly distinguish between body and signature without the help of the { you language was designed with. I would have written this as an actual reply but it seems that this topic was closed somewhat eagerly, cutting off discussion.http://stackoverflow.com/questions/1678104/anyone-ever-flip/1679176#1679176Comment by Edward Kmett on Anyone ever flip (<$>)Edward Kmett2009-11-05T20:40:26Z2009-11-05T20:40:26ZStephan: that said your argument seems I'll posed. Preferring >>= to =<< would be more appropriate as you are given the former and the other is derived. I realize you were after the argument order though.http://stackoverflow.com/questions/1678104/anyone-ever-flip/1679176#1679176Comment by Edward Kmett on Anyone ever flip (<$>)Edward Kmett2009-11-05T20:37:29Z2009-11-05T20:37:29ZI prefer =<< to >>= because the form has a clear interpretation in terms of the Kleisli category of your monad which can be inverted to give an understandable definition for comonads.http://stackoverflow.com/questions/463105/in-place-radix-sort/463158#463158Comment by Edward Kmett on In-Place Radix SortEdward Kmett2009-07-15T00:29:23Z2009-07-15T00:29:23ZThis radix sort looks to be a special case of the American Flag sort - a well known in-place radix sort variant.http://stackoverflow.com/questions/1126588/are-list-comprehensions-a-major-part-of-haskell/1126628#1126628Comment by Edward Kmett on Are list comprehensions a major part of HaskellEdward Kmett2009-07-14T22:37:37Z2009-07-14T22:37:37ZGood thing RWH mentions them then. ;)http://stackoverflow.com/questions/1111661/8192-bytes-when-creating-file/1111674#1111674Comment by Edward Kmett on 8192 bytes when creating fileEdward Kmett2009-07-10T20:05:05Z2009-07-10T20:05:05ZThen it is reading in 8k at a time and sending that over to the file before grabbing the next 8k chunk. The justification is that 8k is a reasonable trade off between spinning your wheels calling functions, and wasting space when you get to the end of the file, because and it is reasonably close to the block size on many file systems.http://stackoverflow.com/questions/1110138/what-is-a-stack-overflow/1110180#1110180Comment by Edward Kmett on What is a stack overflow?Edward Kmett2009-07-10T17:41:57Z2009-07-10T17:41:57Z@Fredrik Mörk - well, unless it's tail recursive and your language does tail call optimization. ;)http://stackoverflow.com/questions/1110565/distance-between-2-geocodes/1110581#1110581Comment by Edward Kmett on Distance between 2 geocodesEdward Kmett2009-07-10T16:36:31Z2009-07-10T16:36:31ZAlas, the earth is not flat.http://stackoverflow.com/questions/1096746/haskell-build-automation/1100350#1100350Comment by Edward Kmett on Haskell Build AutomationEdward Kmett2009-07-08T21:47:29Z2009-07-08T21:47:29ZIt sounded like he was looking for something that ran cabal for him (at least, thats what I got from the continuous-integration tag).http://stackoverflow.com/questions/1091629/haskell-generic-ioref-mvar/1093163#1093163Comment by Edward Kmett on Haskell: generic IORef, MVar?Edward Kmett2009-07-07T18:43:07Z2009-07-07T18:43:07ZEr I suppose self-contained was the wrong term, I meant 'without a bunch of other baggage', so perhaps 'unencumbered with other baggage' would be more appropriate. =)http://stackoverflow.com/questions/1023981/practical-applications-of-homomorphic-encryption-algorithms/1077537#1077537Comment by Edward Kmett on Practical applications of homomorphic encryption algorithms?Edward Kmett2009-07-07T18:40:30Z2009-07-07T18:40:30ZA homomorphic encryption scheme that could execute a sufficiently complex algorithm would allow this to happen. The question is, can such an algorithm exist? The approach mentioned only supports logarithmic depth circuits. I would gamble that any MRI filtering algorithm sufficiently interesting to be worth protecting isn't a member of NC1.