Rafael Ávila de Espíndola

Results 47 comments of Rafael Ávila de Espíndola

> @espindola yes yes, but you would potentially be eagerly loading a long chain of those objects (e.g a chained list) Fair point. I *think* that is OK, since we...

Note that in general it is not possible to possible to return 500 when the transaction fails, since the http headers are sent first, then can follow a 1TB stream,...

At least according to https://security.stackexchange.com/questions/153057/possible-to-sign-an-imported-key-with-a-subkey-using-gpg a subkey cannot be used for certification.

Deno has a node compatibility layer at deno_std/node. As far as I can tell, not that much is missing. The bigger issue I hit was module resolution. What I have...

I just tried duplex scanning with a MFC-L2750DW and I only got the odd numbered pages. It works with brscan4. Let me know if I can help debug.

I think a possible solution would be to change the signature to ``` fn on_result(&self, enter: Self::E, _result: R) -> Advice { ... } ``` someone with a `&Result` can...

Cool. One simplification I found is that in order to get Metered, it is sufficient to implement OnResultMut, so we can leave the interface of OnResult unchanged. A complication is...

Ping. I have a patch that makes get_conn a plain async fn, but it depends on this.

ping. I have rebased it on top of current master.

In case you find it easier to review it all at once, https://github.com/blackbeam/mysql_async/pull/285 has both this patch and the conversion to a plain async fn.