Michał Łępicki
Michał Łępicki
I am using ubuntu 16.04 with xfce and I am affected by this bug using xfce4-terminal and elm-repl 0.17.1 in bash. 1. Enter `elm-repl` 2. Hit `ctrl + c` ->...
For linux precompiled binaries, since it doesn't look like the Erlang/OTP team will provide the binaries, would it make sense to use the builds packaged by the hex team? This...
Regarding precompiled binaries for Ubuntu 18.04 and 20.04, I pursued my idea mentioned earlier, and I don't know if this is a correct approach (or if it's safe to use),...
The above plan looks good to me For Linux, to use the existing builds by Bob and The Hex Team (it could be a band name) I think the plugin...
Quite possibly there's nothing wrong with code in this repository, supposedly there's a bug in qemu that causes problems when Erlang 25's JIT is used, see [discussion on erlangforums](https://erlangforums.com/t/otp-25-0-rc3-release-candidate-3-is-released/1317/25)
Looks like type guards can cause warnings in presence of additional type information, like from argument pattern matches: ```elixir defmodule Mod do def function(:atom = arg) when is_atom(arg) or is_integer(arg)...
Recently Microsoft open-sourced their [calcuator](https://github.com/Microsoft/calculator) app, and inside we can find a [library](https://github.com/Microsoft/calculator/tree/master/src/CalcManager/Ratpack) that allows for > infinite precision for basic operations (addition, subtraction, multiplication, division) and 32 digits of...
First commit says > Closes #4348 I think this should be > Closes #4349
I changed it to a `duplicate_bag` because it's much faster for loading stop times, and reverted loading multiple items to the tables at once - it didn't make a significant...
@josevalim I agree that `:persistent_term` would be best for read-only data but I saw mentions in the repo that this benchmark might be extended to add more features like adding/modifying...