martinhath
martinhath
I'm still hitting this, or so I think. I've got freshly generated SHA256 keys that are uploaded to GitHub, which works from my computer (for testing purposes). The same keys...
Nice! Thanks! Maybe there should be an issue for updating the docs?
Interesting! Especially the parts about mixing HP and EBR. I'm not too sure about the `shield` API as presented here, but this is certainly something we can play around with....
For what it's worth, I think I prefer eg. `crossbeam::Queue` over `crossbeam::sync::Queue` (eventually `crossbeam::collections::Queue`, but this might be too many modules?). Crossbeam is all about sync, so I feel having...
> To clarify, Zygote does not support mutation operation, but it does support mutable data structures (Array is a prime example of that). So MArray should be fine as long...
This is starting to become understandable! Thanks a lot! This adjoint seems to work well: ``` @Zygote.adjoint (T::Type{(nothing, y...) ``` There's still one thing that's confusing regarding the `nothing` in...
@imocode: In the end, I had to use RSA instead of ED, and have the username in both the `Git repository URL` field *and* in the `username` field. I.e. in...
Have done some more digging. `atomFamily` seems like it should be supported, as it's in the `ATOM_IMPORTS` list in `common/src/constants.rs`. Weird that it's getting omitted here (or that the inserted...
It seems like it does; I wrote a quick test for it, in order to better understand how the hot-reload persisting was supposed to work. Basically this: ```tsx const testFamily...
Update on the test case: adding `import { atomFamily } from "jotai/utils";` to the test (and its output) makes the test pass.