Bas van Dijk
Bas van Dijk
What if you place a [endOfInput](https://hackage.haskell.org/package/attoparsec-0.13.0.1/docs/Data-Attoparsec-ByteString.html#v:endOfInput) at the end?
What encoding did you expect from reading the documentation? Maybe I can improve it. Do note that .= calls toJSON internally. Also note that the sumEncoding only applies to sum...
> A could be seen as a degenerate form of A + B + .. Single constructor types are currently not tagged with the constructor tag since that would be...
I think the following would be best: - We rename the `sumEncoding` field to `constructorEncoding`. - We rename the `SumEncoding` type to `ConstructorEncoding`. - We add a `Bool` field `encodeSingleConstructors`...
I think the [`indir` extension](https://github.com/asciidoctor/asciidoctor-extensions-lab/pull/100) might do exactly what I need. I'll try it out and report back here.
Have you looked at [safecopy](http://hackage.haskell.org/package/safecopy)? It solves a very related problem.
> Asynchronous exceptions are not an issue here because the thread ID of the new thread is not exposed and hence nobody can throw an asynchronous exception to that thread....
That ^ commit extends the test with capturing the network packets using `tcpdump` to inspect the request amazonka generates. This is the dump I get: ``` 10:20:48.571111 IP6 ::1.59144 >...
I'm suspicious of the fact that, even though the name of the bucket is specified in the `PutObject` request: ```haskell PutObject' { contentLength = Nothing , objectLockMode = Nothing ,...
If I look at [examples](https://gist.github.com/PhilipSchmid/1fd2688ace9f51ecaca2788a91fec133#file-minio-upload-sh-L12) of how to put an object to MinIO I see the request path needs to begin with the bucket name. So in our example we...