Martin Janiczek
Martin Janiczek
Here's an emulation of 16bit overflow logic in a language that doesn't have it, inspired by https://www.mathworks.com/matlabcentral/answers/355611-is-there-a-way-to-do-signed-16-bit-integer-math ```elm challengeBound5 : Test challengeBound5 = let bits = 16 max = 2...
What's the reason the number of cores is always a power of two?
For reviewers: the intuitive sense as to why this doesn't need any `List.reverse` nor `++` is that instead of tail-optimization it explodes the calculation into many nested function calls. @ggPeti...
The issue seems to go away when I remove the tuple from the `grid`: ```diff - dbg ("grid",grid) + dbg grid ```
Erlang Solutions has instructions for installing Erlang on Ubuntu different from the "Installing Gleam" doc: https://www.erlang-solutions.com/downloads/# They're roughly: ```bash # Add to /etc/apt/sources.list deb http://binaries2.erlang-solutions.com/ubuntu/ jammy-esl-erlang-25 contrib # Possible other...