dodexahedron
dodexahedron
With GSSAPIKeyExchange enabled on openssh, ssh-audit does not recognize most of the kex algorithms for it, and flags them as unknown, except for `gss-group14-sha256-`, which it shows as green. The...
Since a lot of distributions are using systemd, at this point, it would be nice if any build on a system using systemd would install a systemd unit file instead...
While doing a cleanup and performance pass on TextFormatter, the loops in the FindHotKey method made go hmmm. They're basically Rune-ified IndexOf operations, looking for the hotkey specifier Rune and...
As discussed in #3242, we can improve id generation for views and make them independent of build configuration. This could simplify some logic in View. Current thought is to use...
(Intended as a future work item) This is partially a formatting work item (great for inclusion in a project in that vein). It also is deeper than just switching the...
As mentioned in discussion #3206, event handling could use some TLC. This issue is meant to be the main issue, though it may spawn others, depending on just how involved...
In particular, this is referring to a small handful of methods which don't use async properly. I'm fixing them in a dedicated branch based off of the current latest commit...
https://github.com/gui-cs/Terminal.Gui/blob/4cc63391929114a5f9fdb9efbba55addbcfa99ba/Terminal.Gui/Views/ListView.cs#L842 That loop has some problems. Most importantly, it has a potential null reference exception.\ It also has a redundant branch that can never be reached, and has inconsistent behavior...
There's a fair amount of things like string concatenation in loops and various other things related to relatively simple string operations that are costly, sprinkled around both old and new...
Key is a type that is likely to be in configuration files. Microsoft.Extensions.Configuration is the standard configuration mechanism, these days. The following code does not work: ``` class SomeConfig {...