Results 126 comments of vans163

> curious if this is getting merged. If not, can the functionality be extracted into a separate library for others to use? We already made our own simple/gets-the-job-done-without-writing-a-dissertation CRDT library...

Is this rebar3_auto crashing, or your supervisor tree crashing? Remember rebar3 does a hard purge, forcing all processes executing changed code to crash.

I had a conversation on IRC about this, it seems this is a feature and a hard one to implement at that. The basic idea is to allow hot plug...

> would it be a problem for you to provide reproduction code in Erlang? GPT4: Translate this elixir code into erlang ```erlang -module(sshwrap). -export([connect/1, connect/2, connect/3, connect/4, close/1, execute_async/3, execute_sync/3,...

To add to this, if a process exits that has opened a ssh connection, the connection is not terminated, thus its not cleaned up properly. Eventually this leads to a...

> I think in practice, a function exactly like this won't be particularly useful - frequently you'd want to do more special handling for different values - e.g. concatenating lists,...