Sam Elie

Results 17 comments of Sam Elie

You might need to remap the keys in `Key bindings` > User eg: ``` { "keys": ["super+shift+s"], "command": "convert_to_snake"}, { "keys": ["super+alt+shift+s"], "command": "convert_to_screaming_snake"} ```

In my case, the kubernetes Kong ingress controller doesnt seem to be sending the chunk `chunkType === ChunkType.TRAILERS` so during the `onTransportEnd` function, there was no `grpc-status` hence the same...

After switching to the Contour + Envoy setup this error vanished.

Hey @stephenh hopefully this approach is better. the goal of not generating `rpc ChangeUserSettingsStream (stream Cred) returns (stream DashUserSettingsState) {}` has been accomplished for grpc-web Also, off topic, any thoughts...

@stephenh @boukeversteegh I'm really not familiar with client streaming in grpc-web. I saw a post on their issues about it saying you needed the websocket transport. Makes sense. One day...

Experiencing on `12.18.2` Interestingly, following [interop_extra_test](https://github.com/grpc/grpc-node/blob/48e888007684b9aa7961498e25fb5093a5562aac/test/api/interop_extra_test.js#L79) after creating a client ``` const client = new Client( '0.0.0.0:50051', grpc.credentials.createInsecure(), { 'grpc.max_send_message_length': -1, 'grpc.max_receive_message_length': -1 } ); ``` and for good measure...

You could try throwing this in your ffmpeg command eg: ``` type: "run", mounts: [ { type: "WORKERFS", opts: { blobs: [ { name: "input.webm", data: blob }, { name:...

Try putting `-ss` before the `-i` flag and then using `-t ` instead of `-to`

A guide would be really helpful. Am stumbling piecing together what's required in the contour+envoy config to make this work

Was able to piece it together - props to y'all and this amazing project. There were only 2 custom parts to getting grpc-web working > envoy-config.yaml ``` apiVersion: v1 kind:...