Ivar Refsdal

Results 39 comments of Ivar Refsdal

For others reading this thread, I ended up with the following: ```clojure ; require [cheshire.core :as json] (defn json-array-chan [c] (let [out (async/chan)] (async/go (async/>! out "[") (loop [first true...

Thanks @bbatsov I've cleaned up the code a bit. My speciality is also not TLS unfortunately. As long as the Java API does not change, I think that "upgrading" the...

Hi @bbatsov Sorry for the long delay again. I have been sick lately. I haven't forgotten about this though. In the mean time [CVE-2022-21449: Psychic Signatures in Java](https://neilmadden.blog/2022/04/19/psychic-signatures-in-java/) happened. I...

Hi again @bbatsov I've created a pull request: https://github.com/nrepl/nrepl/pull/283 What do you think? Thanks again! Edit: It [has a few tests](https://github.com/nrepl/nrepl/blob/5ff71cb616811632a3e4685cb333bc8b807e3161/test/clojure/nrepl/tls_test.clj) verifying the TLS behaviour. And documents [how it is...

It would be nice to see a release containing this fix. Thanks!

Did you solve this issue? My deps.edn looks like this: ``` yada/yada {:mvn/version "1.2.16" :exclusions [byte-streams/byte-streams aleph/aleph]} aleph/aleph {:mvn/version "0.5.0"} ``` Works here. Edit: formatting.

Sorry, that did indeed not work. It worked with aleph 0.4.7 though.

Hi, and thanks to @bhauman for a very fine project! Here is my take on `figwheel.main` + Cursive: 1. Add a `nrepl` alias to `deps.edn`: ``` ... :nrepl {:extra-paths ["dev"]...

Hi @deanmalmgren @edeno Maybe of interest: I did a proof of concept to grab the SVG server side using python, selenium/chrome and @edeno 's fork of crowbar: https://github.com/ivarref/d3-save-svg/blob/develop/extract_svg.py Embedding of...

I've done some work towards this at: https://github.com/ivarref/nrepl Currently missing configuration options, linting, tests, etc.. But seems to work OK IMO. > If this is fixed some day, I want...