Jeremy Shaw
Jeremy Shaw
Depends how brave and determined you are. Somebody once wrote a replication system for acid-state, https://hackage.haskell.org/package/acid-state-dist As far as I know it has never been used in any real application....
Multiple packages sounds fine. Putting it all in a single repo -- less so. I have tried that on several occasions and ended up splitting things into smaller pieces in...
I think the problem with nix is that you can normally use `cabal2nix` build from github by running, ``` cabal2nix git://github.com/Daniel-Diaz/HaTeX.git > default.nix ``` But, if the package is in...
I know createCheckpointAndClose was added as an after thought. That might explain why it is not part of the interface. Or maybe there was some reason why it was only...
I ran into the same issue a while ago. I did not keep great notes, but it seemed to me like it was a new restriction in TH. I may...
Thanks! This is helpful. In case you are curious -- here is more information about what I am doing. First off, I'd like to say that I am really impressed...
I am a co-author of that `stripe-haskell` library and the goal is to bring it up to date. That library predates the OpenAPI spec, so everything had to be handcoded...
Does this code work with `PolyKinds` enabled in older versions of `safecopy` ? From your report it is not clear if it used it work in older version of `safecopy`,...
The error is not daunting at all! Just remove `TypeApplications` and change `Proxy @st` to `Proxy :: Proxy st`.
The more I think about this, the more I think I am abusing the `ByteRanges` type by trying to use it as part of a Response. I currently need a...