Jack Grigg

Results 886 comments of Jack Grigg
trafficstars

I'm also very interested in avoiding a persistent fork if possible (it's something we didn't manage for bellman, and I want to learn from that experience and get ahead of...

Ooh, nice! I would love to see this adapted to implement the [`Sha256Instructions` trait from `halo2_gadgets`](https://github.com/privacy-scaling-explorations/halo2/blob/a9e99a72a65d7c98e8a4258c2c94269c834d1c10/halo2_gadgets/src/sha256.rs#L24-L57), as then circuit developers would have a very easy time switching between our 10-column...

We have found [another deadlock](https://trac.i2p2.de/ticket/1207#comment:13), caused in part by the fix for the previous one. I have [a patch for it](http://pastethis.i2p/show/6887/), but we are not certain whether it is entirely...

@dholms wrote: > an `unknown` in lexicon is the same thing as an open union with no refs provided This does match [the specification for `union`](https://atproto.com/specs/lexicon#union) (though the spec says...

This appears to have been fixed. Tested on web (build version: 1.37.0), both the "ALT" menu and "Edit" menu show an alt text field alongside the image: ![image](https://github.com/bluesky-social/social-app/assets/4993799/95f087c3-fd1f-4d21-97a1-7f575f5f6627) ![image](https://github.com/bluesky-social/social-app/assets/4993799/97c2ccb5-c5c3-49de-8660-38bdd408ce41) I...

I've written a Ghidra Python script for demangling Rust symbols: https://gist.github.com/str4d/e541f4c28e2bca80d222434ac1a204f4 Currently it only supports the "legacy" mangling format, but that's still the default format as RFC 2603 hasn't yet...

Update: my script now supports most of the v0 mangling format. The main things missing are const generics (which are blocked on a pending change to the RFC) and decompression...

For additional context, originally (during early development) `age` did treat `-` as a filename. This behaviour was changed in response to a user request for age to follow the general...

Your understanding is consistent with @meineerde 's observation: > This can be used to e.g. delete a file named `-f` with `rm -- -f`. That is, the reason `--` enables...

For reference, I implemented this check in https://github.com/str4d/rage/pull/202 (after agreeing to change `rage -o` to match `age`'s behaviour and overwrite existing files in https://github.com/str4d/rage/pull/168).