Jaro

Results 167 comments of Jaro

I just tried [`doctest-parallel`](https://github.com/martijnbastiaan/doctest-parallel) and it seems to speed up the doctests from 45 seconds to 9 seconds on my machine (after `cabal build` has been run at least once)....

Here is my response to: > This form is consistent with brittany's handling of `]` and `}` as well. Perhaps it is already answered by @chreekat > Where dangling parentheses...

Thanks for the quick reply. Am I right when I conclude from your response that avoiding freezing the window manager is the main reason for disabling child processes? In that...

I meant more like having the IO action executed in a background thread that returns an X action that can be put on some kind of queue to be executed...

Yeah, I understand why it gives this error now. Is it maybe possible to first check if haskell.compiler.ghc843 exists before trying to build it (and then show a custom error...

I ran into this with `brittany`: https://github.com/lspitzner/brittany/blob/4d064db674203626fe5011d10874fcbc335ec9b1/brittany.cabal#L47

> Switch to DYRE?? I recommend against doing this (at least in the current state of dyre). [Yi](https://github.com/yi-editor/yi) does this, but it has been a source of many problems that...

@Bodigrim I have made a benchmark here: https://gist.github.com/noughtmare/f2478b9ea7a466d33b3f0185dc51f0dd. That indicates that inlining can play a pretty big role (3x performance improvement) with the `dropWhile` function. I assume the other functions...

As I understand it `INLINEABLE` would still make it possible to inline it if it is imported in another module. Without `INLINEABLE` I don't think the function is available for...

> Care to take a look at Core as well? I'd like to understand what exactly contributes to x3 speed up. I have looked a bit at it and it...