Daniel Keller
Daniel Keller
I'm working out how to wrap egui's API for my scripting language. Something that would make this a lot easier is if there was an alternative API to the functions...
Since interpolations already supports evaluating at arrays of points in a vectorized way, would it be hard to support evaluating at points of SIMD.jl vector types? It would be very...
Conrod's description states that it's an immediate-mode wrapper over a retained-mode UI. Is it possible to use it in retained mode? That is, create the UI once, then query it...
When I render a block which causes an exception to be thrown (eg `NoReverseMatch` from `{% url %}`), I get a nested exception `'NoneType' object has no attribute 'origin'` from...
Hi! I've come up with a somewhat different epoch algorithm, which performs very similarly to the current one while being much simpler. (It also fixes #551 and might help with...
I've come up with a basic implementation of `#[derive(BitfieldSpecifier)]` that works on struct-like enum variants, that is, algebraic data types. It stores a discriminant, which determines the enum variant and...
If I call `new SodiumAndroid()` from a unit test, this doens't work because it's running on my computer and not Android, which is fair enough. I tried depending on lazysodium-android...