sh54
sh54
Adding functions to `helins.binf.cabi` that read/write a clojure data structure according to some layout. ## Example ```clojure (let [v some-binf-view env (binf.cabi/env w32) layout ((binf.cabi/struct :my-struct [[:a binf.cabi/i32] [:b binf.cabi/i32]])...
The following: ```clj (let [view (-> (binf.buffer/alloc 64) (binf/view 32 16) (binf/endian-set :little-endian))] (binf/wa-b8 view 0 42) (t/is (= 42 (binf/ra-u8 view 0)))) ``` Works in clojurescript but fails in...
## Rationale I have hit a few scenarios where I want to copy bytes from one view to another. It feels natural for this to be part of the main...
This adds support for docking features from the [docking branch of imgui](https://github.com/ocornut/imgui/tree/docking). It is a question if this belongs in master or in a branch. [One of the java wrappers](https://github.com/SpaiR/imgui-java)...
It would be nice to target [WebGPU](https://gpuweb.github.io/gpuweb/) too. That should eventually be replacing WebGL. Its api is starting to settle down so any breaking changes will probably just be name...
**Assumptions** This assumes that a goal of the library is for a test like this to always pass for any given `org`: ``` (let [org "* Headline"] (is (= org...
If I use an image from a private registry Arion does not seem able to retrieve them. I get a 403 Forbidden. ### Error from service ``` ❯ systemctl status...
Issue is reproduced in this [repo](https://github.com/sh54/clj-nix-clojupyter). # Aim Build a Clojure project into a Jupyter kernel using [Clojupyter](https://github.com/clojupyter/clojupyter/blob/master/doc/library.md). # Issue Including dependency `clojupyter/clojupyter {:mvn/version "0.4.332"}` breaks the build. Clojure stops...