Benjamin Schaaf
Benjamin Schaaf
Say you take the [rerun_itself.feature](https://github.com/atilaneves/reggae/blob/master/features/rerun_itself.feature) test but instead of running `reggae -b ninja proj/` you run `reggae -b ninja -C build/` linking will fail with the following error: ``` Couldn't...
Putting 4 cylinders into a compound collider has some very odd collision behavior: https://user-images.githubusercontent.com/2748981/160272665-44df6ac1-6935-4393-b9c2-6520e2230d87.mp4 It also happens in other orientations: https://user-images.githubusercontent.com/2748981/160272672-b79e51eb-29b1-4690-832d-af3222e2112d.mp4 But not for other shapes: https://user-images.githubusercontent.com/2748981/160272675-494237e3-81dd-472b-93cb-6d51ae7cbf1b.mp4 I've made an...
Hello, I've written an improved Prolog syntax based on SBNF/sublime-syntax: https://github.com/BenjaminSchaaf/swi-prolog-sublime-syntax. Since there haven't been any real updates to this repository in a while I'm planning for this new syntax...
This is useful in embedded environments. I've used this successfully here: https://github.com/BenjaminSchaaf/turning-complete-riscv.
I have a situation where I'm temporarily keeping some extra data for each entry in a `SlotMap` (specifically a boolean for whether or not I've seen that entry before). I...
The normal interpolation is very slow, it needs optimisations or a completely new system
When you have a test that needs to run multiple times, or simply includes an iteration of some sort, it is often useful to know at which iteration an assertion...
Posix signal handlers come with a lot of useful information, but the only thing currently made available is the signal that was raised. I'm currently dealing with processes and using...
License?
Is this repository open source, if so what license? Without a license this code is proprietary and thus can't be used by others. If you're not sure I'd suggest: https://choosealicense.com/
Some trivially valid examples are currently impossible due to lifetime annotations: ``` // This works fine let mut i = 0; lua.scope(|scope| { scope.create_any_userdata_ref_mut(&mut i); }); // This fails because...