this post was submitted on 03 Aug 2025
333 points (94.6% liked)

Programmer Humor

26307 readers
1251 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

"Rust's compiler prevents common bugs" So does skill. No offense to you, but, this trope is getting so tiresome. If you like the language then go ahead and use it. What is it with the rust crowd that they have to come acrosslike people trying to convert your religion at your front door?

you are viewing a single comment's thread
view the rest of the comments
[–] smiletolerantly@awful.systems 121 points 1 month ago (18 children)
  • if your skill is so great that you would never cause the kinds of bugs the rust compiler is designed to prevent, then it will never keep you from compiling, and therefore your complaint is unnecessary and you can happily use rust
  • if you do encounter these error messages, then you are apparently not skilled enough to not use rust, and should use rust

In summary: use rust.

[–] tatterdemalion@programming.dev 23 points 1 month ago (5 children)

Your first point is not true. There are valid uses of memory sharing that rust will reject.

[–] smiletolerantly@awful.systems 5 points 1 month ago (2 children)

Curious what you are talking about. Multi-threaded sharing of memory for example is also easy with rust, it just doesn't let you wrote and read at the same time, and so on.

[–] sukhmel@programming.dev 8 points 1 month ago

Off the top of my head, single-threaded writing to the same memory from different fields of a struct. Not to mention self-referencing like if you want to hold a buffer and have different views into it in the same structure.

[–] qaz@lemmy.world 2 points 1 month ago (1 children)

Classic example: A linked list

[–] smiletolerantly@awful.systems 0 points 1 month ago (1 children)
[–] qaz@lemmy.world 2 points 1 month ago* (last edited 1 month ago)

With unsafe, but how can you write a double linked list in safe rust? (without indices)

load more comments (2 replies)
load more comments (14 replies)