kstrafe
kstrafe
# Task Description Hard-coding test ports are error-prone. We should use the OS loopback interface to find any available port instead of manually ensuring that ports on each test are...
This is a PR to just get a discussion going about a potential immediate-mode API. This API does not require the user to be concerned with `manual_poll` or `start_polling`, and...
I wish for argbash to be able to format its help output such that it is aligned. An example is python3's output: ``` -u : force the stdout and stderr...
This library is currently the bloatiest part of my application according to `cargo bloat --release`: `0.1% 2.8% 123.4KiB wayland_sys wayland_sys::client::WaylandClient::open` `123.4 KiB` is a lot of data, this data is...
I use vim-rtags as a submodule. The generated files pollute the submodule diff by stating there are changes in the submodule. This patch just gitignores the pyc files to resolve...
Implicit name generation is something that is very dangerous, and we should almost always use hygienic, correctly scoped macros. So instead of making `CheeseVec` for the following: ``` #[derive(StructOfArray)] struct...
Lenses can sometimes fail: `(lens-view (hash-ref-lens 'b) #hash((a . 0)))` This is especially troublesome for composed lenses that act on deeply nested structures. I'd love there to be a sort...
The following results in `SIGSEGV MAPERR si_code 1 fault on addr 0x10`. Changing the "B" label to an empty string or removing `(send the-dialog show #t)` prevents this crash. `glfw3`...
There is a need for semi-persistence in some cases. Especially threads may make use of this functionality: the thread needs to be reloaded but its previous instance must be killed....