Crispin Wellington
Crispin Wellington
One thing that confused me was the name 'relabel' is itself misleading. I was under the assumption that it was a tool for changing the labels, not for creating new...
OK, bear with me. This will require some explanation. I have been implementing `babashka.process/process` piped stream support in the upcoming pod `bbssh`. During this work the following code would not...
In clojure you cannot actually io/copy from a PipedInputStream to an OutputStream (but you can to other destinations because that uses a different io/copy multimethod). In clojure you **can** create...
I traced it to the missing metadata... and then was overwhelmed when I had to dive into sci
I can propagate the events manually to the cursors by adding a watcher to the root atom: ``` clojure (add-watch test-ratom :propagate-child-cursors (fn [k a o n] (when (not= (:foo...
Yes, that works. The difference is your code does a deref on the cursor. When you deref it to log it, magic happens. Although most access to the cursor comes...
I can understand your concern over memory leaks. My app has the cursor only constructed once so it's not as issue for me, but will be in other cases. I...
It's better because the existing implementation returns the wrong directory for any non standard user, or any system with users laid out in multiple directory hierarchies. This patch returns the...
I missed this at the time. I wish github had webpush notifications for this stuff. I will have a look at this.
I have hit this problem. The ^:skip-aot did not solve the compilation hang. Removing the line entirely made the compile succeed. But then adding it into the main application made...