jacereda
jacereda
I get the following: ``` $ blinkenlights.com /nix/store/mij848h2x5wiqkwhg027byvmf9x3gx7y-glibc-2.33-50/lib/ld-linux-x86-64.so.2 --help ERROR: SEGMENTATION FAULT 00000001f000 ``` Same with: ``` $ blinkenlights.com /nix/store/mij848h2x5wiqkwhg027byvmf9x3gx7y-glibc-2.33-50/lib/ld-2.33.so --help ERROR: SEGMENTATION FAULT 00000001f000 ```
I've uploaded a repo with my work so far at https://github.com/jacereda/cosmogfx I'll send a PR with my changes to this repo in a while.
Looks like the sources for this object aren't present in the repo. https://github.com/jart/cosmopolitan/blob/67b5200a0b8b42f1b06d43ac91161e9c19853e9a/libc/runtime/runtime.mk#L67
I had to disable the `rdrand` path to avoid crashes on my box. https://github.com/jart/cosmopolitan/blob/39bf41f4eb25dc6b295bda6b3c254d4615cae1d4/third_party/python/Python/random.c#L464 Could this use `cpuid` to check the presence of `rdrand` and fallback to the old code...
Hi, Could you clang-format the code under `dev/src`? I want to PR some changes and I don't want to pollute it with formatting stuff. Also, I guess the .clang-format file...
A quick attempt at a vulkan nim generator. The code is quite ugly but it seems to get the job done. I'll ask for feedback regarding the bindings to the...
Looks like this code taken from @scolsen's comment in #1012 loops forever. ``` (load "https://github.com/scolsen/typeclass@master") (defn bi-lift [f applicative-a applicative-b] (sequence (fmap &(binary-partial binary-partial f) cx) cy)) ```
I was thinking that having a lookup system mimicking the one in Forth would simplify the Haskell side and give more power to the Carp side. https://forth-standard.org/standard/search/SET-ORDER Basically, the haskell...