Austin Seipp

Results 289 comments of Austin Seipp

This seems to be basically the equivalent of "how do I do `glob` on an `http_archive`", which I somewhat addressed here: https://github.com/facebook/buck2/discussions/387#discussioncomment-7136698 I think you would need to write a...

I guess I could rephrase that part as: no, it's not a problem that it's a rule with a new provider added, but that this should probably be part of...

Great idea! The following extremely simple rule can do the above easily: ```bazel def _command_test(ctx: AnalysisContext) -> list[Provider]: return [ DefaultInfo(), ExternalRunnerTestInfo( type = "custom", command = ctx.attrs.cmd, ) ]...

I don't think an `add` command is necessary, just a common set of fixups that are maintained and people can contribute to. Honestly, I just spent about 20 minutes combing...

FWIW, I used Morte as the beginning of my own experiments this past week, and one of the first things I did was port it to Bound. I just got...

It's not ready yet (and I'm reworking everything and changing the language.) But the basics explain it easily enough: The type: ``` haskell -- | The type of all types;...

Also, I'd probably _suggest_ skipping the `isUsed` trick, because I'm not sure it's completely sound in the case someone actually uses `_` as a variable name if that's allowed, as...

Oh, I also forgot to mention: `bound` on Hackage currently doesn't build against GHC 8.0, just for anyone reading this and hasn't noticed it. So you'll need to hold off...

@sgraf812 > Re: isUsed: I had a similar problem when migrating freeIn. I already got rid of it altogether, but what I did was along the lines of Although you...

I no longer work for Fastly, and have not for quite a while, but I can provide some advice: @edolstra Shielding is absolutely the reason the latency is good, and...