abeltensor | 3 months ago | on: Response to "Ruby Is Not a Serious Programming Language"
abeltensor's comments
abeltensor | 1 year ago | on: Verso – Web browser built on top of the Servo web engine
abeltensor | 3 years ago | on: Why Discord is switching from Go to Rust (2020)
abeltensor | 3 years ago | on: Why Discord is switching from Go to Rust (2020)
With discord, I imagine a big reason why Rust was considered as an alternative to Go is because they already have a substantial Elixir codebase. Rust and Elixir have a very easy time communicating with one another via Erlang NIFs (native function interfaces). You can embed languages like C/C++/Rust into elixir without much overhead. While I've never personally tried do to such a thing with go, I can't imagine its a smooth experience. You'd probably need to use Ports or CNodes for Go simply for this reason.
I love go myself, but one of the biggest turn offs for the language is its FFI support for C and other C connected languages. CGo is a relatively expensive investment when compared to many other comparable alternatives and it should be avoided if possible.
abeltensor | 3 years ago | on: Why Discord is switching from Go to Rust (2020)
abeltensor | 3 years ago | on: Why Discord is switching from Go to Rust (2020)
abeltensor | 3 years ago | on: Why Discord is switching from Go to Rust (2020)
abeltensor | 4 years ago | on: Tauri: Rust-based Electron alternative releases beta
And you can always just use some of the other GUI toolkits that have been coming out recently.
abeltensor | 4 years ago | on: Tauri: Rust-based Electron alternative releases beta
abeltensor | 5 years ago | on: Tauri: An Electron alternative written in Rust
abeltensor | 5 years ago | on: Tauri: An Electron alternative written in Rust
abeltensor | 5 years ago | on: Tauri – toolchain for building secure native apps that have tiny binaries
abeltensor | 5 years ago | on: Tauri – toolchain for building secure native apps that have tiny binaries
abeltensor | 5 years ago | on: Tauri – toolchain for building secure native apps that have tiny binaries
abeltensor | 7 years ago | on: Clojure REBL [video]
They tried to fix the errors with Spec but honestly I don't think that solution worked that well. Spec is great for generative testing and other solutions but no one wants to write specs for every single small little potential error that could happen.
Ruby is incredibly versatile: NASA has used it for simulation, it's a popular choice for scripting, DevOps automation, and static site generation. It's a simple, dynamic language ideal for quickly prototyping solutions.
Elixir, however, is a separate conversation. Having used it in production for years, I can attest that the ecosystem is fantastic. Its lack of mainstream popularity doesn't matter; its true strength lies in the BEAM, an incredibly well-architected piece of software. Elixir is simply a great way to access that power. Beyond its Ruby-like syntax, it has become its own distinct entity. It used to exist mainly as a alternative to erlang but it's become its own thing in recent years.
I really hate language-based dogma, every virtually every programming language has place as a tool in in a programmer's tool belt. There is even value in learning and using deprecated languages because doing so gives you a perspective beyond whatever ecosystem that you're currently tied to. There is a reason that languages like fortran and lisp have persisted as meaningful choices in certain domains and I suspect that Ruby will stick around for a very long time.