Dave Cottlehuber
Dave Cottlehuber
@SukhikhN the most common case is installing OTP via binary package, which gives us: ``` $ which erl; uname -p; elixir --eval 'IO.puts(:erlang.system_info(:system_architecture))' /usr/local/lib/erlang26/bin/erl amd64 amd64-portbld-freebsd15.0 ``` how did you...
@SukhikhN perhaps PR for this? `{{:unix,:freebsd}, arch, 64} when arch in ~w(x86_64 amd64) -> "freebsd-x64"`
I was pretty sure I tried and failed with this in the weekend, but it works fine today :-) `port(443)` seems like a good default to use in future, and...
this is actually desirable when connecting to a node where it is not known in advance whether it is ipv6 or not, via `connect_options: [transport_opts: [inet6: true]]`: ```elixir iex> Req.get("/_dbs")...
@Dalgona this PR brings rss + elixir 1.16/otp26 compatibility. Would be nice to have it reviewed and merged, and published to hex when you have time.
@joseph-henry I think we can close this.
As `mochijson2.erl` is a drop in copy-pasta module, any other library using `mochi*` will fail to generate a release: ``` ERROR: generate failed while processing /projects/widget/rel: {'EXIT',{{badmatch,{error,"Module mochijson2 potentially included...
Hi @peerst I hope this helps you a bit. ``` err: wlan0: ipv4_sendrawpacket: No buffer space available ``` This error comes from a race condition - the interface is created,...
BTW as a grisp user, all I'd need is to have those above errors simply documented somewhere, like a "troubleshooting network connectivity" page, and if it turns out its possible...
It would be interesting to compare to hugo, also if you have Joe Armstrong's 2nd "Programming Erlang" book, Appendix 3 "A simple Execution Environment" has a whole lot of interesting...