Jon Gjengset

Results 867 comments of Jon Gjengset

I think this gets pretty difficult to enforce, especially if we make `minrust` optional (#20). I generally keep `minrust` as low as I possibly can for my libraries, which would...

Thanks, this is a cool change! I've left some inline notes :)

Sadly no, not as far as I'm aware. They have a [JSON schema](https://github.com/microsoft/azure-pipelines-vscode/blob/master/service-schema.json) that can be used to validate, but not sure it really helps much with things like debugging...

I had one thought last night -- do you think that any cargo arguments one passes through this one would also want passed to `cargo check` or to `clippy` (which...

I think it comes down to whether you require those arguments to be passed to compile, or whether they are just "nice to haves". Similarly, for coverage, _can_ tests be...

I'll leave a link to [Apache Arrow](https://arrow.apache.org/) and [`loom`](https://github.com/carllerche/loom) here, which may both end up being relevant to this.

See also [this highly relevant Reddit thread](https://www.reddit.com/r/rust/comments/b463rg/are_we_database_yet/). I left a comment outlining some of my thoughts around [async Rust DB libraries](https://www.reddit.com/r/rust/comments/b463rg/are_we_database_yet/ej53djm/).

Much of this could be fixed by having a lower-level event binding available (`onKeyUp`, `onKeyDown`); having "semantic" text field events might be useful for ease-of-use, but it is also fairly...

Looks like it's been slightly updated since [this version](https://web.archive.org/web/20191207185739/https://250bpm.com/multiplexing), but yes, that's the same article!

This is a tough question. I think what I'd do here is to make the transport produce "ghost" time-out responses after a certain amount of time, rather than bake that...