trinity-1686a

Results 76 comments of trinity-1686a

I found this issue while looking for something else, but wanted to mention, there is a simple way for printw to percent-escape itself, just make it call the C `printw("%s",...

@hntd187 is it pr 61? If so, you can get the commit back by running `git fetch origin +refs/pull/61/head && git checkout FETCH_HEAD`

> Does SNI add any security to the protocol Some would argue that SNI decrease security as it leaks information on the service being reached, creating the need for something...

I use nftables. I believe miniupnpd would work with my setup, however I don't really like having a software adding and removing rules from my firewall. As nftables has a...

Just tried it, `target-feature` takes no final 's', but otherwise setting that RUSTFLAGS + target seems to work

I had to do something of that kind, and ended up doing something like this: ```rust let res = stream::iter(url_list.into_iter() .map(|url| async_function_that_downoad_and_do_things(url)) ) .buffer_unordered(5) .collect() .await; ```

fixed by #1535 and #1539

A very simple implementation would be using datalist, however it is not possible to style it

As an alternative, having some `fn need_rescan(&self) -> bool {matches!(self.attrs.flag(), Some(Flag::Rescan))}` on `Event`, with some documentation highlighting how important it is to actually check that, would already go a long...

Should I submit a PR with my "low effort solution", while a longer-term (6.x) solution is being discussed?