Matt Mueller
Matt Mueller
Hey there, I'd like to be able to write in order synchronously without waiting for the replies. The use case being able to speed up typing in keyboard events, where...
Is it currently possible to distinguish between response errors and network errors in RPCC? For example, with the `DOM.getNodeForLocation` method, it can sometimes return an error: `No node found at...
Not sure about the feasibility since the goal of this project is to emulate the cedar stack, but right now the average node container is over 1GB. I'd love to...
This PR allows you to write to stderr and stdout from within a custom command. For example, ```go func Test(t *testing.T) { p := testscript.Params{ Cmds: map[string]func(ts *testscript.TestScript, neg bool,...
Hey there, I've had a couple cases where it'd be nice to be able to write to stdout and stderr from inside a custom command. For example: ```go func Test(t...
Wondering if it's possible to support scanning into `*uuid.UUID`. Something like this: ```go type Team struct { ID *uuid.UUID } // ... var team Team err := row.Scan(&team.ID) ``` Right...
basically the `default` cases here: https://gobyexample.com/non-blocking-channel-operations couldn't really see anything from the code, but in the original PR with the switch statement makes me think that it's possible
Example: ``` js List.prototype.array_remake = function(els) { return new this.constructor(els, this.selector); }) ```
Based on: http://stackoverflow.com/questions/12681003/how-to-empty-an-array-like-object-cross-browser-ie8
This is an experimental v3 of the generator filesystem. The goals are: - Bake in dependency caching so running spawning subprocesses only occurs when dependent files change - Fix minor...