|
|
|
|
|
by austinjp
1394 days ago
|
|
As per recent comments here in other threads, I wonder if we could see less "written in Rust" in the titles? I know it's verbatim from TFA's title, but honestly, at this point Rust evangelism feels like proselytising propaganda. What exactly is going on? Is there a concerted effort in the Rust community to actively evangelise? Or is it just that blog posters are gaming SEO and riding the upward adoption curve? I'm aware that several key influences have praised Rust-related efforts, but there seems to be something far more deliberate going on. Is there? I don't use Rust, and a few months ago it was on my list of languages to check out, but frankly the fan-boyism is a real turn-off. |
|
As any developer knows, a low level programming language may help you get there, but ultimately this is mostly dependent on code quality. Rust applications can be absolutely riddled with bugs and use O(n^2) algorithms where they don't need to, or have awesome code but rely on third party libraries that don't. There's just so much surrounding the core aspects of the language that we just can't judge applications based on their programming language.
Rust does protect against buffer overflows and pointer misuse etc but so does many other languages nowadays, for example by directing the developer away from (or not even supporting) the use of low level unchecked pointers in the first place.