Fork me on GitHub
#cider
<
2019-12-18
>
tianshu08:12:13

Can I ask cider to use a release jar, instead of download snapshot everyday? The network to clojars is pretty bad for me 😞

dominicm08:12:23

I think it does if you're on stable

bozhidar09:12:09

Generally even the master build uses snapshots only up to a point - when we get to the first alpha release.

FiVo15:12:58

When stepping in the cider debugger is there a way so that the buffer with the locals gets updated automatically?

erwinrooijakkers17:12:40

> Favourite Features > When asked to highlight their favourite features in CIDER most people pointed out the following: > The debugger > The (value) inspector > Interactive programming

erwinrooijakkers17:12:45

What is the (value) inspector??? 🙂

erwinrooijakkers17:12:55

cider-inspect of cider-inspect-value I guess

tianshu17:12:57

I found this inspector not work in ClojureScript in my case. But I can't find an issue about this, I think this problem should be obvious, because in my case, cider-inspect can work even with very simple value, like {:a 1}.

☝️ 4
aisamu13:12:08

Same here, it spits an error but prints the thing in the process 😬

frozenlock18:12:32

Is there a library to enable NAT traversal for CIDER, or perhaps more specifically NREPL? I have an application installed on a remote machine behind a firewall and I'd like to connect to its REPL. I also have a server that could act as the reachable 3rd party for both this remote machine and my workstation. Obviously I want to keep everything secure, otherwise I'd just forward the REPL port in the firewall settings.

frozenlock17:12:28

It would still require a 3rd party to allow the firewall traversal and I'm not sure it would be any simpler. However I will keep it in mind, thanks!

frozenlock18:12:53

I also can't SSH directly into the remote machine.

mccraigmccraig18:12:14

@frozenlock ssh -L tunnel via your jump host should work, the tunnel target can be on a remote machine

frozenlock18:12:02

By that I also meant that the machine might not have ssh available. I should have been more explicit. In my current case on it's on Windows. All I really have to work with is my application jar.

frozenlock18:12:40

Hmm actually I wonder if something could be done with a SSH library. @mccraigmccraig thanks for the hint, I'll explore this path.