The result is https://kms.andrewpavlov.org/.
Using the UI on the website, you can gradually increase the load and watch how the server's CPU and RAM usage respond in real time.
Maybe the HN effect will do its job and take the server down. Although I have a feeling the BEAM might survive. :)
For those hearing about Gleam for the first time: Gleam is a functional, statically typed programming language that compiles to both Erlang and JavaScript. This makes it possible to build backend and frontend code in the same language and, where appropriate, share code between the two targets.
On the backend, Gleam runs on the Erlang VM (BEAM), giving it access to Erlang/OTP's lightweight concurrency, fault tolerance, and supervision model. Failures in individual processes can be isolated from other processes rather than necessarily bringing down the entire application.
On the frontend, Gleam's type system catches many classes of errors at compile time, which can significantly reduce runtime bugs. The programming model is somewhat reminiscent of Elm, while still being part of the broader BEAM ecosystem.
The project is open source, and the website itself is inspired by the Gleam website.
I think Gleam is an interesting technology for building highly concurrent applications, especially real-time systems where Erlang and Elixir have already proven themselves at scale. WhatsApp and Discord are good examples of what the BEAM ecosystem is capable of.
My friend built the project and will be answering questions in the comments. I'll be following along as well.
Let's see if the HN effect can take it down. :)