Matthew Lugg

Results 110 comments of Matthew Lugg

Yeah, I'm also confused; this "Report malware" button exists pretty clearly on the package page, and [this doc page](https://docs.npmjs.com/reporting-malware-in-an-npm-package) says that it'll go to "the npm security team" (whoever that...

Since clearly EC2 isn't being maintained, I'm working on my own little AE2 addon to do Mekanism gas cells and maybe some other small bits. I can tell you when...

I do get the same behaviour from the AudioExample.hs example

@Hardebayho, in case you never found out, you can set `lib.link_z_notext = true;` in your `build.zig` as a workaround.

Huh, I somehow totally missed that. But yeah, okay, makes sense, just a bad error message

One thing I'd like to pick up on here is the support for late binding coercion, rather than this being a specific syntax form. Is this support really necessary? I...

Also, how are you measuring memory consumption? The peak RSS of the `zig build run` command won't include the memory usage of your application, because it's a subprocess. In general,...

Here's an idea of how to handle inferred-size array literals. Currently, we have a special case to allow `[_]T{ ... }` syntax in array literals, where otherwise the `[_]T` part...

I'd like to make one more argument against `T{ ... }` syntax. Nowadays, the only place I ever really write `T{ ... }` myself is for certain APIs in the...

The mixin approach is not viable because the contents of `@import("builtin.zig")` may differ between modules in one Zig compilation. And yes, for the record, there is a hard ban on...