Marco Z
Marco Z
When working with large chunks of HTML I found the need for binary combinators to combine predicates such as ```haskell (|||), (&&&) :: AttributePredicate -> AttributePredicate -> AttributePredicate (|||) =...
I've started using this library and I quite like it! But I feel some things could be smoothened out for a beginner: e.g. would sensible defaults that somehow match the...
I would be extremely helpful if pages such as https://hackage.haskell.org/package/plots-0.1.0.2/docs/Plots-Types-Scatter.html also included the code snippet that generated the figure under the figure itself, as a `-- > ... `comment.
 The above time series was obtained from a non-Gaussian distribution; the vertical axis is not centered at 0 but rather at that tiny value (something ^ -18). Are the...
https://en.wikipedia.org/wiki/Haskell_Platform These too, and everything pointing to it, should be removed or updated
A specialized version of `mapAccumWhile` that keeps folding as long as the function argument returns 'Right' ``` foldWhile :: (Monad m) => (a -> s -> Either s s) ->...
I have a CSV text file with two columns: quoted text, integer ``` "Beginner : read(ing) tutorial material/solved some coding exercises",11 "Beginning : wrote less than 2 libraries or applications/unpublished",30...
While building a project containing `vector-space` (version unpinned), `MemoTrie-0.6.4` was failing to build (but only on TravisCI). I solved this by pinning the version of `MemoTrie` to the latest available...
Add a function that returns the result along the Stats, and specialize `benchmark` in terms of this one. Addresses #9 Edit : I believe this needs a bit of background;...
Currently `benchmark` discards the value computed by the inner action but in some cases it would be handy to return it.