Bas van Dijk
Bas van Dijk
> Does the project you're add-sourc'ing properly cabal sdist? Yes it does: ``` $ cd ~/downloads/Crypto-4.2.4/ $ cabal sdist Building source dist for Crypto-4.2.4... Preprocessing library Crypto-4.2.4... Preprocessing executable 'WordListTest'...
Since we have to construct a new ByteString to foldCase the original we can't avoid asking for pinned memory. What we could do is add an `instance FoldCase ShortByteString`. Care...
For some reason that RULE made the benchmark faster.
Hi @jonathanjouty, sorry for the much too late response. GitHub notifications escape my attention too much these days. I'm happy to add you as a maintainer on Hackage!
@jonathanjouty @arybczak you're both new maintainers of `resouce-pool` on Hackage. I hope you do a better job maintaining the package than I did. BTW I recently started a project in...
It seems a long debate has been going on from at least 2015 between RedHat and Docker trying to get a better integration between systemd and docker. The last remaining...
I don't think we should reintroduce the ByteString instances with base64 implementations. It would really confuse people to first have a text-based ByteString instance, then no instance, then a base64-based...
I now think introducing a type, whose only purpose it is to change the encoding in some medium, is the wrong way to go. Ideally types tell us how values...
While thinking about this again I would like to slightly adapt my previous opinion on the matter: Usually when you have a string of binary data somewhere in your record...
Yes you do get an extra newtype wrapper W (```newtype W = W ByteString64 deriving (ToJSON, FromJSON)```) for every different type of bytestring which indeed causes more code. BTW I'm...