Ron Waldon-Howe

Results 107 comments of Ron Waldon-Howe

Ooo, from the lang team update: https://blog.rust-lang.org/inside-rust/2021/02/03/lang-team-feb-update.html > working on a vision document that lays out a multi-year vision for how async I/O should look/feel in Rust Links to: https://hackmd.io/p6cmRZ9ZRQ-F1tlhGaN9rg...

> On the other hand, forcing this behavior by default could mean that gofumpt would be less of a drop-in replacement, if the line-breaking is too agressive. Yeah, I have...

> If a line feels too long, wrap it and indent with an extra tab. This is very subjective, and can be labor intensive to do consistently, and also a...

> Some formatted only with gofmt, some formatted with both gofmt / gofumpt. I think there's an effort to keep the output of `gofumpt` compatible with `gofmt`, that is: `gofmt`...

Agreed, something about putting the second condition on the next line right next to the `if` body irks me a bit `prettier` turns this: ``` if (isThisAReallyLongVariableName === 123 &&...

Another example, this time in `rustfmt` (Rust is like Go in that `if` conditions do not require parens): ``` if isThisAReallyReallyReallyReallyReallyLongVariableName == 123 && doReallyReallyReallyLongNamedCheck() == true { return true;...

http://en.wikipedia.org/wiki/Decimal_mark#Digit_grouping It looks like China and Japan group them as in 1,0000,0000,0000. The Indian number system looks like it's the most complex. It appears as though everyone else uses either...

I'm sure there's much more to it than this, but it looks like [`winit::event_loop::EventLoop::new()`](https://docs.rs/winit/0.26.0/winit/event_loop/struct.EventLoop.html#method.new) will automatically work for either wayland or X11 :shrug:

Ah, I hadn't even looked into transparency at all, but I assume others on wayland will probably want this :) The other thing I can think of is the idle-behaviour,...

Just encountered this today: With RUST_BACKTRACE=1, the error output is: ``` error: failed to run custom build command for `ring v0.16.20` Caused by: process didn't exit successfully: `/repo/target/release/build/ring-bdefb98f3de94c81/build-script-build` (exit status:...