Dustin Getz
Dustin Getz
@ggeoffrey we will need to tag team this, Rosie's sub pickers are broken until we fix it. We're going to have to go to prod with this broken and then...
You could try unquote-splice ``` user> [:div (map (fn [v] [:span v]) (range 3))] [:div ([:span 0] [:span 1] [:span 2])] user> `[:div ~@(map (fn [v] [:span v]) (range 3))]...
Hi, great work, do hover triggers nest?
A parent overlay trigger with a child overlay trigger, if mouse is over child (really over both parent and child) show child overlay
Here is an answer with concrete types for the next guy: ``` (->> [(exception/success 1) #_(exception/failure 42) (exception/success 2)] (reduce #(mlet [acc %1 v %2] (cats/return (conj acc v))) (exception/success...
Workaround: ```clojure (defmacro with "Resource cleanup helper, based on missionary's dependency-free Task protocol, see https://github.com/leonoel/task" [dispose-fn & body] `(let [dispose# ~dispose-fn #_#_res# (do ~@body)] ; busted, introduces second rewrite pass...
Reopening to add to readme
I like the issue - the test label combined with the current namespace could be enforced as unique but what if you change the label? What would clojure.test do in...
Would this work? `(ns dustin.foo) (tests "hello world" 1 := 1)` test key is `"dustin.foo hello world"` Integrating clojure.test at the namespace level is an interesting insight, @seancorfield would that...
@seancorfield we're wrapping up a rewrite using tools.anaylzer to get correct term rewriting, we will revisit this later. We need to wrap this up before moving on. Thanks for your...