Martin Taillefer
Martin Taillefer
I recommend integrating with https://github.com/svg/svgo which does an excellent job in crunching down SVGs. It'd be great to have ImgBot take care of those.
svgo can run on a specific file, on a specific directory, or on a specific directory recursively. I don't know how ImgBot is put together, but if I were to...
To add a bit more color: * We have custom source generators that are both built and used as part of our project. * We have two kinds of test...
I have an idea that would likely address the problem. I mentioned we have the tests to validate that the generated code builds and runs with the right semantics. I...
I'd be satisfied with docs. There are only so many code generators in the world. Although it was hard to figure out how to do this testing, in the end...
Note that we're also planning to support this kind of functionality through Mixer policies.
We want Mixer adapters to be able to influence routing decisions. This makes it possible for Mixer to reach out to a database which supplies the routing info for a...
Regarding IBufferWriter, see #47
Since #47 was reverted, I've tried again with #50 , hopefully it'll work out better this time around :-)
IBufferWriter is the modern efficient way to produce data without requiring the callee to allocate a buffer. Look at how serialization code works in https://github.com/protobuf-net/protobuf-net, https://github.com/neuecc/MessagePack-CSharp, and https://github.com/protocolbuffers/protobuf/tree/master/csharp. The modern...