ericb-summit

Results 14 comments of ericb-summit

Can I call this wrapper simply `docker-compose` and put it in the path normally? In that case, how would this script find the real compose v2 binary?

I would hope that anyone who is reading this let alone working with grpc knows what a unary RPC is and what a streaming RPC is as a [basic core...

Thanks for the reply. I also agree about breaking changes, that is not an ideal scenario. A better idea would be to add new fields to `GrpcWebClientBaseOptions`. In any case,...

For some reason google removed js compilation from protoc and now it's a plugin: https://github.com/protocolbuffers/protobuf-javascript/blob/main/generator/js_generator.cc#L525 Putting it here so when they reorg it again in 2 weeks we won't need...

espv2 is envoy based. Assuming it is possible to control the config, you could use a local reply to rewrite the 401 to something that `grpc-web` will consume. This works....

Yeah, I'm not getting this either. I've enabled caches ``` caches: - path: cache ``` and run the same build, on the wame worker, and though the layer SHA are...

So I guess there is no way to do this still other than a) creating the resources outside of helm b) fork the helm chart

Sorry let me be sure I explained properly: Let's say I `evm use 23.3.4.18`, and install rebar3 from sources, which is just `./bootstrap && ./rebar3 local install` which pops it...

This is what installed rebar3 looks like ``` #!/usr/bin/env sh ## Rebar3 3.22.0+build.5277.ref44d0587a REBAR3_VSN=${REBAR3_VSN:-3.22.0+build.5277.ref44d0587a} erl -pz /home/enry/.cache/rebar3/vsns/${REBAR3_VSN}/lib/*/ebin +sbtu +A1 -noshell -boot start_clean -s rebar3 main $REBAR3_ERL_ARGS -extra "$@" ``` Within...