What it feels like when Rust saves your bacon
smallcultfollowing.com
What it feels like when Rust saves your bacon
1–10 of 192 posts
Re: What it feels like when Rust saves your bacon
#2This is classically a problem of GUI systems, where you have a large number of interlinked on-screen objects constantly undergoing modification.
Re: What it feels like when Rust saves your bacon
#3Re: What it feels like when Rust saves your bacon
#4Yes... but before you start feeling too sure about Rust protecting you from creating bugs, also consider this more cautionary (and very entertaining) tale posted on HN today: https://hacks.mozilla.org/2022/06/fuzzing-rust-minidump-for-...
Re: What it feels like when Rust saves your bacon
#5Yes... but before you start feeling too sure about Rust protecting you from creating bugs, also consider this more cautionary (and very entertaining) tale posted on HN today: https://hacks.mozilla.org/2022/06/fuzzing-rust-minidump-for-...
Re: What it feels like when Rust saves your bacon
#6Yes... but before you start feeling too sure about Rust protecting you from creating bugs, also consider this more cautionary (and very entertaining) tale posted on HN today: https://hacks.mozilla.org/2022/06/fuzzing-rust-minidump-for-...
Re: What it feels like when Rust saves your bacon
#7Yes... but before you start feeling too sure about Rust protecting you from creating bugs, also consider this more cautionary (and very entertaining) tale posted on HN today: https://hacks.mozilla.org/2022/06/fuzzing-rust-minidump-for-...
This is a fun mistake. It’s “Palate cleanser”.
Re: What it feels like when Rust saves your bacon
#8I must say - as someone who doesn't use rust - I haven't had this type of issue in years, and when I did it wasn't hard to debug. You get corrupted data, set data breakpoint and in the provided example you will see it being modified by unrelated operations on stack. From there there is only one conclusion. Authors reactions seems to be a bit exaggerated.
Re: What it feels like when Rust saves your bacon
#9Yes... but before you start feeling too sure about Rust protecting you from creating bugs, also consider this more cautionary (and very entertaining) tale posted on HN today: https://hacks.mozilla.org/2022/06/fuzzing-rust-minidump-for-...
Well you’d have these bugs, plus the memory bugs in other languages.
Re: What it feels like when Rust saves your bacon
#10This article is super overcomplicated. All it had to say was that rust tells you when you keep reference to on stack variable after it goes out of scope. Context provided adds nothing. I must say - as someone who doesn't use rust - I haven't had this type of issue in years, and when I did it wasn't hard to debug. You get corrupted data, set data breakpoint and in the provided example you will see it being modified by…