AppleSheeple
AppleSheeple
@niceiq Keep an eye on `cosmic-term`. It's still very early days. But at least they consider BiDi/RTL a first class feature.
> Also curious how people figure out what dep is calling these > I just get a backtrace at the crash site using a debugger. FWIW, I went with a...
Edit: See comment below. ~~Preferably, there should be no default between single-choice and multi-choice. At the code (and API) level, it should be an enum, not a flag. And at...
Also, in multiple-choice pulls, `min..=max` choices allowed should be defined, ~~defaulting to `0..=poll_choices`~~ with no defaults, and with the no-choice vote option indicated in the UI for users at submission....
Real efficiency/performance would require federation to be done using an efficient binary format like [speedy](https://docs.rs/speedy). But I understand why diverging from apub, even if only optionally, and only with Lemmy-Lemmy...
@cetra3 A small difference becomes bigger at scale. And the small difference here covers all three of size, memory, and processing power needed. And more relevantly, if the project were...
I have commands showing the same symptoms. They look like: ``` sudo -- su root -c ip netns exec SOME_NS su someuser -c "'mate-terminal' '--disable-factory'" ``` Self-built sudo-rs 0.2.2 on...
I had some time for a proper initial investigation (didn't get to the code yet). What's happening is that I run this stuff from a script in a terminal. But...
I gave the code a look, and confirmed that polling here does **NOT** return an error: https://github.com/memorysafety/sudo-rs/blob/90e2385b866dde529837da9e059ec0f1e9cd83c6/src/exec/event.rs#L182 So, even if that error wasn't ignored, the issue would still be triggered....
Alright. Had some time to look at this again. This change fixes the issue for me: ``` patch diff --git a/src/exec/use_pty/pipe/mod.rs b/src/exec/use_pty/pipe/mod.rs index 7f02f06..b6046c7 100644 --- a/src/exec/use_pty/pipe/mod.rs +++ b/src/exec/use_pty/pipe/mod.rs @@...