Ximin Luo

Results 364 comments of Ximin Luo

after some experimenting i've managed to work out that it's a particular string that's making pandoc take ages to convert... i'll file a bug there instead.

i dunno how haskell works, but this sort of stuff could also be done in a separate thread (or equivalent) so that other requests from other users can be handled...

In general it's best to create Debian source packages (`.dsc`) rather than binary `.deb`s directly. [debcargo](https://crates.io/crates/debcargo) is the official Debian crate-to-package converter we're using which takes this approach, and uses...

In general it's best to create Debian source packages (`.dsc`) rather than binary `.deb`s directly. [debcargo](https://crates.io/crates/debcargo) is the official Debian crate-to-package converter we're using which takes this approach, and points...

> As you've noted, the wrapper API is trivial. The "trivial" API would be inefficient since it would involving doing a `lookup` for each `insert` to check whether we should...

Have you tried `Data.HashMap` from `unordered-containers`? As I mentioned [here](https://github.com/gregorycollins/hashtables/issues/55#issuecomment-526789285), although it is a pure data structure, it is actually faster than this library (including Cuckoo), as indicated by benchmarks...

i.e. just wrap it in a `MutVar` or something, that's what we did

@freckletonj as you can see from `C-h f`, `with-eval-after-load` takes a FILE not a function name. So you want `"company"` instead of `'company`, like this: ~~~~ (with-eval-after-load "company" (add-to-list 'company-backends...

That's fair enough, so far I'm only using these in some unpublished personal projects but I thought these might be useful elsewhere. I've seen various cases of functions taking state-transition...

The `gh802` branch needs further changes for GHC 8.2.2, something to do with `transformers-compat`: ~~~~ ghc-mod$ cabal install Resolving dependencies... cabal: Could not resolve dependencies: trying: ghc-8.2.2/installed-8.2... (dependency of ghc-mod-5.9.0.0)...