dmjio
dmjio
I believe this is available in the form of wai middleware, https://hackage.haskell.org/package/wai-middleware-throttle-0.2.0.2/docs/Network-Wai-Middleware-Throttle.html You should be able to plug this in where servant-server generates an `Application` type, so something like this....
I'd shy away from specifying the value at the type level. Suppose the query param took a Double. On Wed, Jun 14, 2017 at 10:09 AM, Elliot Cameron wrote: >...
@poscat0x04, I'm not completely convinced the gains provided are worth the implementation effort, breakage / loss of backwards compatibility, adoption hindrance, ease-of type inference. The tangible gains are essentially the...
@poscat0x04 what tangible benefits does this provide besides boilerplate reduction of a few characters? This change requires modifying every instance of every interpretation for every package. Also, `symbolVal` and `natVal`...
I agree, it does seem like a bug. Now that we have gotten away from the HaLVM platform, I wonder if it would be OK to remove `halvm-cabal` entirely. If...
Didn't mean to close. Keeping `halvm-cabal` sounds good. Only frame of reference is `cabal`'s `ghcjs` flag, but it seems like they added some code to `cabal-install` to support this. ```...
@izgzhen, it might be possible to do something like this with Nix and our own [hydra](https://nixos.org/hydra/) server (CI system using Nix). Example hydra, http://hydra.nixos.org/ NixOS has a test framework that...
> NixOS has a test framework that can be used to spawn networks of virtual machines. We can load the Xen kernel into one of these machines, mount the /nix/store...
Hmm, my approach was to copy the AST from the PostgreSQL `gram.y` file, and attempt to match up the JSON with the AST, sound reasonable?
I want to be able to use any monad. All I should need to provide is a function that can get back to Handler from my custom monad. Sent from...