Alex Parrill

Results 73 comments of Alex Parrill

I'm interested in this too, particularly setting no new privileges.

Just ran into this. At the very least, an improved error message or a comment on the failing assertion would be helpful.

> I suspect this is [gfx-rs/wgpu#4775](https://github.com/gfx-rs/wgpu/issues/4775) (fixed in [gfx-rs/wgpu#4967](https://github.com/gfx-rs/wgpu/pull/4967)). I've made a fork of wgpu 0.19 that includes this fix [here](https://github.com/Friz64/wgpu/commits/v0.19-4967/). > > ```toml > [patch.crates-io] > wgpu = {...

For completeness, there's other issues with the Date API as well. For example, the arguments to `toLocaleString` are optional, defaulting to the user's current locale (a useful behavior), but the...

Java 8 has built in classes for proper timezone conversions. ```java import java.time.ZonedDateTime; import java.time.ZoneId; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("America/New_York"); ZonedDateTime...

> @ColonelThirtyTwo SMT apps were sold to ad company. [SimpleMobileTools/General-Discussion#241](https://github.com/SimpleMobileTools/General-Discussion/issues/241) Fork is here https://github.com/FossifyOrg RIP thanks for letting me know

> Rendered link is broken after second commit. Fixed

> One concern I have is with the syntax, since the `+` in the `impl PartialEq + Eq` could be ambiguous with addition, and closures are expressions. I don't know...

> As noted in zulip, you want this declared explicitly both in the trait bounds, as well as when instantiating the closure, so maybe.. > > ``` > fn foo(f:...

> I never claimed existing procmacros should be used for this feature. I suggested that "procmacro closures" would make rustc expose information about the captured variables, which then makes better...