Edward Kmett
|
Registered User
|
Programmer, Mathematician, Defense Contractor
|
|
1d |
comment |
Doubly Linked List in a Purely Functional Programming Language I definitely agree that those are far better options. =) |
|
Dec 4 |
answered | Doubly Linked List in a Purely Functional Programming Language |
|
Nov 20 |
comment |
Iterating over arrays in haskell Actually 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. |
|
Nov 20 |
answered | Iterating over arrays in haskell |
|
Nov 16 |
accepted | How to get 64-bit binaries from GHC for Snow Leopard? |
|
Nov 16 |
revised |
How to get 64-bit binaries from GHC for Snow Leopard? Hypercorrection correction |
|
Nov 16 |
answered | Pointer equality in Haskell? |
|
Nov 14 |
answered | How to get 64-bit binaries from GHC for Snow Leopard? |
|
Nov 13 |
comment |
Calculating a product recursively only using addition In short, how does it know when to stop? |
|
Nov 6 |
comment |
Significant Whitespace in C# like Python or Haskell? Actually 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. |
|
Nov 6 |
awarded | ● Yearling |
|
Nov 5 |
comment |
Anyone ever flip (<$>) Stephan: 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. |
|
Nov 5 |
comment |
Anyone ever flip (<$>) I 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. |
|
Oct 13 |
answered | Computing π to “infinite” binary precision in C# |
|
Sep 24 |
answered | Is it considered bad taste to put your GPA in your resume when applying for a programming job? |
|
Sep 11 |
answered | Saving graphs in Haskell |
|
Sep 11 |
answered | How to stop GHC from generating intermediate files? |
|
Sep 1 |
revised |
Mysterious word (”LPS”) appears in a list of Haskell output addressed actual question |
|
Sep 1 |
answered | Mysterious word (”LPS”) appears in a list of Haskell output |
|
Aug 27 |
answered | Summation notation in Haskell |
|
Aug 27 |
awarded | ● Nice Answer |
|
Aug 26 |
answered | How do I remove every occurance of a value from a list in haskell using Prelude? |
|
Aug 24 |
answered | Introduction or simple examples for iteratee? |
|
Aug 23 |
accepted | invisible identation error in Haskell caused load fail in ghci |
|
Aug 20 |
accepted | N-queens in Haskell without list traversal |
|
Aug 16 |
answered | Scala equivalent to Haskell’s where-clauses? |
|
Aug 13 |
answered | Comparing 3 output lists in haskell |
|
Aug 13 |
answered | invisible identation error in Haskell caused load fail in ghci |
|
Aug 12 |
answered | N-queens in Haskell without list traversal |
|
Aug 12 |
answered | string interpolation in haskell |
|
Jul 15 |
revised |
In-Place Radix Sort added 289 characters in body |
|
Jul 15 |
answered | In-Place Radix Sort |
|
Jul 15 |
comment |
In-Place Radix Sort This radix sort looks to be a special case of the American Flag sort - a well known in-place radix sort variant. |
|
Jul 14 |
answered | Are list comprehensions a major part of Haskell |
|
Jul 13 |
accepted | Describe the Damas-Milner type inference in a way that a CS101 student can understand |
|
Jul 10 |
revised |
If you wanted to improve software development in your organization and you had $1000 to spend, what would you spend it on? corrected spelling |
|
Jul 10 |
answered | HTTPS Response body - Is it secured? |
|
Jul 10 |
comment |
8192 bytes when creating file Then 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. |
|
Jul 10 |
answered | 8192 bytes when creating file |
|
Jul 10 |
answered | Hash tables using VLists |
|
Jul 10 |
revised |
What exactly is the halting problem? reordered argument |
|
Jul 10 |
revised |
What exactly is the halting problem? clarification of integer range |
|
Jul 10 |
answered | What exactly is the halting problem? |
|
Jul 10 |
answered | If you wanted to improve software development in your organization and you had $1000 to spend, what would you spend it on? |
|
Jul 10 |
revised |
What is the best way to learn recursion? eliminated superfluous parentheses |
|
Jul 10 |
answered | Uninitialised values of heap and stack space |
|
Jul 10 |
comment |
What is a stack overflow? @Fredrik Mörk - well, unless it's tail recursive and your language does tail call optimization. ;) |
|
Jul 10 |
answered | How to calculate scores? |
|
Jul 10 |
answered | Describe the Damas-Milner type inference in a way that a CS101 student can understand |
|
Jul 10 |
revised |
Distance between 2 geocodes further reading |
