Martin Kavalar
Martin Kavalar
This would indeed be handy. Sketched a PoC in 7219298b3028bdbc1374a163a64e8b5563ce5ac2. I think we'd want to support both a global and a per-notebook setting. What's a bit annoying is that the...
With https://clerk.vision we went with an approach using `alter-var-root` instead, see https://github.com/nextjournal/clerk-website/commit/e451a0418f6f282c211f81a07882400a088b60c0. Since this gives you maximum flexibility (append, prepend, modify) I'm wondering if we should make this the recommended...
With the latest clerk (42e15d2203fc93101e656985fee7f094002c512a) you can add it in user land like so: ```clojure ;; # Markdown Links (ns linking (:require [nextjournal.clerk.viewer :as v])) (defn ->doc-url [href] (if (clojure.string/starts-with?...
This does throw an exception and breaks the tap inspect but you don't see it as the tap is running in a different thread.
This seems to be a smaller repro of what's going wrong: ```clojure (def ds (let [ds (tech.v3.dataset/mapseq-parser)] (doseq [x (for [i (range 100)] {:x i :y (java.time.Instant/now)})] (ds x)) (ds)))...
Thanks @harold, I've opened the attached issue using your smaller repro.
@sritchie can you confirm this is no longer an issue?
I failed to reproduce it so going to close it as I try to get an handle on the open issues. Please reopen if it's still a problem.
@sritchie can you check the open file descriptors on your system next time you run into this issue? Using e.g. `lsof -p `.
Since adding things is hard to take back I'm wondering what the impact of it is compared to not depending on it. Is it fair to say that using`js-interop` in...