Adrian
Adrian
`run-sync` just hangs. `run` returns the channel, but no window appears.
Implement bubbling using wrapping?
mainly the thread local optimization: https://tech.redplanetlabs.com/2020/09/02/clojure-faster/
This library looks neat! I was wondering if there are future plans for supporting wild cards for joins similar to https://docs.datomic.com/on-prem/query/pull.html#wildcard-specifications. I was hoping to be able do something like...
I wrote some demos that display videos using [skia](https://github.com/phronmophobic/clj-media/blob/main/src/com/phronemophobic/clj_media/skia.clj), [swing](https://github.com/phronmophobic/clj-media/blob/main/src/com/phronemophobic/clj_media/java2d.clj), and [cljfx](https://github.com/phronmophobic/clj-media/blob/main/src/com/phronemophobic/clj_media/cljfx.clj). The cljfx and swing examples worked great, but for skia, I needed access to the raw frame data...
Defui should support something like ```clojure (defui dynamic-component [{:keys [my-component props]}] ;; support fully dynamic (defui-call (my-component props)) (defui-call ;; allow keys to be provided for efficiency. ;; not sure...
There are various caches (eg. `membrane.ui/bounds`, defui components, image cache, font cache, etc.). There are number of ways to improve caches: - allow users to specify cache behavior - provide...
Parse path will update the "path" for a binding using something like the following: ``` (clojure.core/nth nth) [(second form) `(list (quote ~'nth) ~(nth form 2))] ``` This generally works, but...
Logically, scrollview offsets the origin of all its children. This offset is applied explicitly for each of its event handlers. However, if a new event was created, it would have...