Ray McDermott
Ray McDermott
Hi Zachary We have a Clojure [podcast called defn](https://soundcloud.com/defn-771544745) It would be great to have you on to discuss the project Just ping me back if you're interested or hit...
Small, simple example of a failing snippet: ```clojure (defn x [x] x) (map xx [0]) ``` The function in the final form fails (undefined function) but this will prevent future...
As you know, by default sente tries to connect to the host in the browser window, which is very convenient. When using figwheel however the browser host points to the...
Thanks for these components! As usual though there is just one more thing that would be a clincher... the ability to upload a file. I know there are a lot...
The item selection as it is explained seems perfect for allowing actions on several rows. How can I attach a click handler to each row individually? In my case, I...
The code using `#?@` all works but is greyed out in the editor. It is treated OK in the standard `#?` form ```clojure (ns io.ok2cry.cry (:require #?@(:org.babashka/nbb [["crypto" :as crypto]]...
to make js interop more pleasant
This ticket is to follow up on the plans for documentation that Alex confirmed in response to this Question on Ask Clojure https://ask.clojure.org/index.php/11032/are-there-plans-for-official-docs-rationale-and-guide-datafy
There are various ways to define and access properties defined with protocols and data types which are non-obvious and not explained or clarified in the Protocols or Data Types guides...
When implementing Protocols using `defrecord` there are some missing affordances. As an example, :pre and :post conditions cannot be applied. [ Yes, I know we will soon have spec but...