Dmitrii Kovanikov

Results 365 comments of Dmitrii Kovanikov

@bergmark > `toJSON = genericToJSON defaultOptions { fieldLabelModifier = drop (length "ProjectManager") }` Well, this is not reliable enough. If I change type name I need not to forget all...

After this GHC proposal is accepted and implemented, it becomes possible to write `typeName` function without `Generic`: * https://github.com/ghc-proposals/ghc-proposals/pull/164

@Bodigrim it certainly does 👍🏻 Thanks @Colton-Clemmer for the implementation 🤗

@sjakobi I don't have a preference here and I'm happy with everything that doesn't throw an error 🙂

I'm also confused by current documentation but didn't found this issue and asked [my question on StackOverflow](https://stackoverflow.com/questions/45374472/what-is-difference-between-decode-and-decode-functions-from-aeson-package?noredirect=1#comment77714345_45374472).

Hello everyone! Could someone help me to clarify the status of this issue? Is it possible now to add custom auth schemes to `servant` using `servant-auth`? I'm working on [`servant-hmac-auth`](https://github.com/holmusk/servant-hmac-auth)...

I understand that streaming is a useful feature. But a lot of services sign whole body of the request. This means that it's not possible to implement `servant` applications that...

@erewok > Sidenote: for Servant clients, I don't really know how to _sign_ requests before they're issued? While working on `servant-hmac-auth` I've implemented custom client that signs all outgoing requests....

@alpmestan It's more about this commend by @phadej > * new fresh `requestBody` (One have to use `MVar` here, as `getRequestBodyChunk` relies on some hidden state: socket's one in the...

@winterland1989 Thanks for the answer! My question is mostly about whether MySQL supports named parameters on the protocol level or should I implement my own custom parser of `Query`.