jimbojetlag

Results 21 comments of jimbojetlag

Any updates on this? This issue was opened 2 years ago. Maybe at that time swagger was not as important. but in 2016, Open API is a crucial part of...

@revskill10 please see https://github.com/storybooks/storybook/issues/4017.

@nathanielmanistaatgoogle @hsaliak any updates on this? Or, at least, any advice on how to implement this? Google's own usage of grpc does not seem to have a clear pattern on...

@nevi-me I cannot find anything about non-`OK` proto message in your repo. I'm only interested in the original question in this thread. How to deal with non-`OK` cases at the...

@nevi-me I'm not sure if this makes a difference, but unlike your example, the Shelf example does not return a stream. Also, I'm still unsure about how this works. `CreateShelf`...

Here is a live working example to demonstrate the question: Google genomis API has [this endpoint](https://github.com/googleapis/googleapis/blob/master/google/genomics/v1alpha2/pipelines.proto#L41-L43): ``` rpc CreatePipeline(CreatePipelineRequest) returns (Pipeline) { option (google.api.http) = { post: "/v1alpha2/pipelines" body: "pipeline"...

@nevi-me thanks for explanation. I am interested in Go implementation, here is [an example](https://github.com/grpc/grpc-go/blob/master/examples/helloworld/greeter_server/main.go#L53-L56): ```go // SayHello implements helloworld.GreeterServer func (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) { return...

Thanks for the detailed explanation. > Do you mean autocomplete for a single-value field or hashtag/mention support within a document? I'm not sure what you mean by single-value field, but...

> Yet, this has the downside that the UI on top is decoupled from the plugin. I actually I find this a plus. In prosemirror-suggestions plugin, there is a lot...

I may be missing some point here. In this part, what is the benefit of passing the Popup component to the plugin generator? ```javascript const currentPositionPopup = currentPosition(Popup) ``` Why...