Cody Casterline
Cody Casterline
Here, this character is parsed as `KeyCode::BackTab`: https://github.com/qwandor/anes-rs/blob/389ebf6d98a2625db1724873913d484082937934/anes/src/parser/parsers.rs#L17 But I believe this is supposed to be Delete. https://en.wikipedia.org/wiki/ASCII --- Thanks for this library! I'm using it in a fun little...
`Sequence` currently has this shape: ```rust pub enum Sequence { /// A keyboard event sequence. Key(KeyCode, KeyModifiers), /// A mouse event sequence. Mouse(Mouse, KeyModifiers), /// A cursor position (`x`, `y`)....
Things I learned from playing around with the API that I haven't seen in docs: * Supports multiple simultaneous progress bars. * Great for parallel processing/downloads * This functionality does...
See: https://www.tbray.org/ongoing/When/202x/2025/04/16/Decentralized-Schemes Currently, Diskuto "decentralizes" its links in a couple ways: * The recommended way to link to another post is with a relative link of the format `/u/:uid/i/:sig/`. That...
I'm not happy with `FollowGroup`. In an effort not to break backward compatibility, I kept the same `repeated Follow follows` type, and bolted on an `optional int32 follow_group` field. That...
Currently, the readme [states] that edits are an "unplanned feature". I originally didn't want to allow edits because I don't like the fact that you can "take back" something that...
I've had some issues with Actix (see: #81, and [actix-web] issue 1913). I've used Axum and don't remember running into those issues. (Though, TBF, that was a different use case,...
… this can allow odd behavior. see: https://crates.io/crates/ed25519-dalek > However, there's a much looser kind of forgery that Ed25519 permits, which we call weak key forgery. An attacker can produce...
I delved into the [Nostr] ecosystem a bit, even going so far as creating my own [server] implementation and some tools for that. It has some pros and cons vs....