ˌbodʲɪˈɡrʲim

Results 1034 comments of ˌbodʲɪˈɡrʲim

Awesome, I was not aware of this algorithm. I've found the original post of Lucy_Hedgehog (https://projecteuler.net/thread=10;page=5#111677). He mentions that "It is also possible to improve the complexity of the algorithm...

I've just realised that there is `Math.NumberTheory.Primes.Counting.Impl.primeCount`, which boasts to count pi(x) (number of primes up to a given limit) in roughly O(n^0.7) time. The discussion above suggests that it...

With regards to `array` vs. `vector`: there are unboxed mutable vectors with a low-level interface, providing decent performance: [unsafeRead](http://hackage.haskell.org/package/vector-0.12.0.1/docs/Data-Vector-Mutable.html#v:unsafeRead), [unsafeWrite](http://hackage.haskell.org/package/vector-0.12.0.1/docs/Data-Vector-Mutable.html#v:unsafeWrite), etc. I feel like nowadays Haskell developers (or at least...

@jhenahan any news? Feel free to ping me, if you need to discuss anything.

As a Hackage trustee, I made a revision: https://hackage.haskell.org/package/cron-0.7.0/revisions/

@arrowd someone has to step up and ask to take over. My understanding is that @bos is not maintaining his Haskell packages any longer.

As a Hackage trustee I made a necessary revision: https://hackage.haskell.org/package/socket-0.8.3.0/revisions/

I think it's a reasonable request, but take it with a grain of salt: I'm a fan of `IsString` / `IsList` and `instance Foldable (a,)` ;)

FWIW I cannot reproduce it with `stack --resolver lts-18.28` on macOS, seems working fine.

There are plenty of things one might wish to configure in `consoleTestReporter`, but it would be overwhelming for casual users to be presented with a screen-long list of display options...