Greg Lowe
Greg Lowe
It's pretty easy to get started with. Make sure you've read up on Futures and Streams.
The library has a hard dependency on dart:mirrors at the moment. This means it's not possible to use with dart2native. Should be pretty easy for someone to implement a patch....
Thanks for the PR, using reflectable will definitely make this library better suited for use in the browser. I spent some time experimenting with the code. One concern is I...
I've been experimenting the connect web GRPC protocol. It's really nice. Perhaps there could be some collaboration on this? See https://connect.build/docs/introduction/ And https://connect.build/docs/protocol/ > Connect supports [its own protocol](https://connect.build/docs/protocol): a...
FWIW I wrote a code generator which generates idiomatic python dataclasses which wrap the official protobuf python objects. I've been successfully using this for a project. But don't have time...
So according to this comment - this isn't a race condition. https://community.temporal.io/t/is-workflow-go-safe-for-concurrency/6722
Hmmm it looks like the following works: ``` v = struct_pb2.Value() json_format.ParseDict(5, v) print(v) ``` So this is a doc bug - not a feature request. Consider updating the following...
How about the following changes? If I can get some feedback here, I'd be happy to turn this into a PR. Add the following to `def ParseDict()`: In the special...