Taylor
                                            Taylor
                                        
                                    Here is the backtrace of the executable compiled with the docker image: ``` (lldb) thread backtrace 2 * thread #2, name = 'main', stop reason = signal SIGSEGV: invalid address...
Just compiled this with the master branch, segfault still occurs.
I've created a generalized version that also segfaults: ```pony use "itertools" class SegFaulter[A] fun ref segfault() => Iter[U8]([as U8: 1; 2; 3].values()) .map[None]({(a) => Iter[SegFaulter[A]]([SegFaulter[A]].values()) .map[None]({(b) => None }).run() })...
Had the same issue on elementary OS 6.1 when installing from the latest .deb file. Tried building from source to see if I could isolate and fix the bug, but...
Not sure because I don't actually know any Go but I think [this line](https://github.com/holochain/holochain-proto/blob/1bf89189d66bd7e43fb991d8d2b0a64f510e7c1e/zygosome.go#L1038) is the problem. In the Javascript ribosome, I think the analogous line would be [this one](https://github.com/holochain/holochain-proto/blob/1bf89189d66bd7e43fb991d8d2b0a64f510e7c1e/jsribosome.go#L1009)....
I created a draft pull request with my code. #750 Here is a sample of the current output of this script. It's worth nothing that there are still quite a...
I've modified the script per Huu Nguyen's request and specifications. Here is a sample of the new output: [output.csv](https://github.com/LAION-AI/Open-Assistant/files/10422259/output.csv)
No docker image at the moment but if you'd like to try it, the Holochain binaries (& source) of version v0.0.11-alpha1 can be found here: https://github.com/holochain/holochain-rust/releases/tag/v0.0.11-alpha1 That page also has...
I have created a JSON encoding of the `"(1 & (2 &| (3 | 4)) & !5)"` example search: ```json { "search": [ { "type": "and", "values": [ {"type": "exactly",...
Perhaps a better way of saying something like `"1 & 2 & !3 & !4"` would be `"1 & ((2 ! 3) ! 4)"` Where `x ! y` means `x...