dodexahedron
dodexahedron
Also for what it's worth, that change only required removing that code path from FindHotkey itself, removing the two test methods explicitly for that behavior, and removing the parameter from...
Cool. I already went forward with that assumption anyway. Right now I'm trying to avoid as many enumerations of the string as possible within the scope of that method, without...
Whoops. Finger tapped and clicked the button as I was scrolling. 🤦♂️
I also have a major love/hate relationship with Rune (more hate than love). Why Microsoft thought it would be cool to add in a UTF-32 (which nobody really uses) type...
Already done. :) And I have a new implementation for this method, now, which: - Is zero-allocation for all inputs. - Not even an enumerator allocation. - Doesn't create any...
Performance-wise, avoiding heap allocations is major, in any code, when possible. Crude benchmarks showed this new implementation to be slightly better than on-par with an already-improved version I had written,...
Also happens on RedHat 8.7
What about a more generic implementation of URI parsing to match anything that fits the RFC, and leave handling actually opening it to Windows? Artificially implementing schemes, explicitly, on a...
Well taken. I tend to be of a mind aligning with the third bullet point above, for a few reasons: - This particular feature *is* just a convenience to the...
> Might be good to think of the use case for switching modes, just in case the problem can be solved another way. For me, the use case is to...