nrepl

https://github.com/nrepl/nrepl || https://nrepl.org
bozhidar 2021-06-30T07:14:32.029800Z

@eugen.stan Most people use SSH tunneling to achieve more or less the same result. CIDER also supports this. I think it's a good balance between not adding complexity to nREPL and providing you with a secure connection.

Eugen 2021-06-30T07:15:22.030Z

thanks, I think so too

Eugen 2021-06-30T14:10:30.031500Z

@bozhidar: any reason why (:import clojure.lang.RT is being imported? does not seem to be used but it seems to impact nrepl usage in babashka https://github.com/nrepl/nrepl/blob/f1ed475a0218852ad98899942e1865c75610c18a/src/clojure/nrepl/transport.clj#L12

bozhidar 2021-06-30T14:12:42.032200Z

@eugen.stan No idea. Seems it has been around forever, someone will have do dig the history. If everything works without it we can remove it.

Eugen 2021-06-30T14:13:55.033300Z

thanks, I will keep that in mind when I get to it if @borkdude does not get to it first

borkdude 2021-06-30T14:18:11.035100Z

I think that can be safely replaced by (Class/forName "[B")

1👍
bozhidar 2021-06-30T14:31:38.035400Z

Yep, I'm fairly sure you're right.

bozhidar 2021-06-30T14:31:57.035600Z

I should have grepped first. 😄