Kaitlyn Kenwell
Kaitlyn Kenwell
That would work, though how would I fill the global with my intended value? Glancing at the API docs it seems that there's a barrier between rust types like str,...
It seems like I can't use an array because the signature of printf as I have it at the moment expects variadic i8*, and that type doesn't match [i8 x...
I ended up just stealing the stuff from librustc_trans which works. Seems there they associate builders with a block directly. The way a builder is constructed makes it linked with...
Playing around more I found that it was just me not knowing how GEP works. Equivalent code using stuff from librustc_trans segfaults as well.
I can share a temporary solution for this I've rolled using incron, and a small shell script, if anyone wants it.
@Vamoss I've actually converted it to a python script, but here you go https://gist.github.com/Redrield/81dd7c0cebd5760c65d1127495e487f8 You're gonna need to install pyinotify (and inotify for the actual OS)
As far as I can tell, very little needs to be done by the server for status effects. When the effect is initially added to the entity, an EntityEffect packet...
I copied/translated an implementation from Koma. a Kotlin linear algebra library that can use EJML for the backing matrices. The code is [here](https://github.com/Redrield/allwpilib/blob/feature/wpiutil-matrix/wpiutil/src/main/java/edu/wpi/first/wpiutil/math/SimpleMatrixUtils.java)
Most of the control between robot and DS happens over UDP. Certain actions like sending game data and match/competition info happens over TCP. To the issue of QDS, I have...
I'm currently maintaining an open-source DS [Conductor](https://github.com/Redrield/Conductor/tree/next) that works with 2020 robots. It implements all the safety features of the NI DS (such as grabbing disable keybinds regardless of window...