Peter N

Results 15 comments of Peter N

``` if err := ctx.Input.DispatchKeyEvent(ctx, input.NewDispatchKeyEventArgs("keyDown").SetText(text)); err != nil { return errors.Wrap(err, "failed to type into the input") } ``` cdp.Input: DispatchKeyEvent: rpc error: Invalid 'text' parameter (code = -32602)...

Hey @deuill thanks for the response! I like the use of a class deconstructor to control the shutting down, I hadn't thought of that. In additional tests, it doesn't seem...

Yeah I'd be interested in helping. I have a use case where I would prefer to keep mpst of the code in Go but run a library in PHP. I...

I don't think this is applicable. Mongo is better for large flat data.

This is the new context ``` // NewContext returns a new Context that carries value u. func NewContext(ctx context.Context, l Language) context.Context { return context.WithValue(ctx, languageKey, l) } // FromContext...

So digging into this more, it seems like the question is about how to store context data within an AppEngine context in middleware. If you resolve a new context as...

@delphinus that makes a lot more sense. Let me toy around with this. I find it weird that they're creating new instances of request instead of appending the data to...

Hey any update on HA? You can create a test cluster using their enterprise Docker containers. https://hub.docker.com/_/neo4j/ From the original driver, it looks like they create a routing table in...