Comments by "Anony Mousse" (@anon_y_mousse) on "ForrestKnight" channel.

  1. 20
  2. 12
  3. 10
  4. 8
  5. 5
  6. 5
  7. 5
  8. 3
  9. 3
  10. 2
  11. 2
  12. 2
  13. 2
  14. 2
  15. 2
  16. 2
  17. 1
  18. 1
  19. 1
  20. 1
  21. 1
  22. 1
  23. One minor correction for that meme you showed, the Rust maintainers don't consider memory leaks to be unsafe, and Rust won't prevent most of them from occurring anyway. Although, that's the least of your worries because there's still a lifetime leakage bug in the compiler. For those criticizing the safety of C and/or C++, there are tools for checking the correctness of your programs for both C and C++, and these programs are free and open source, and they're older, more battle tested and in general just better than the Rust compiler. That said, since no one bothers to learn what was written before, I'll tell you that you can use GC in plain ol' C too. If you really want to be lazy with memory management, look into Hans Boehm's GC and rejoice at how easy it is to setup and use. I can't say if it's better than Go's or Java's GC because I've never actually used it for more than a talking point to show that it's possible in C, and has been since at least the 90's, but if you really need GC, you can have it even in C. Finally, as I've been learning Rust, being a student of as many languages as I can be (but not a literal student mind you), I see that it's basically just the same as C++, only with a shittier syntax. If you write correct code in C++, then Rust's borrow checker will only sometimes annoy you. There are a lot of instances where correct code gets flagged by it, but this is why you should just use C++ instead. If you write your code in an idiomatic way in C++, then you'll never have safety issues with your code. If you write code in C the way I do, then you'll never have safety issues with your code either, but not everyone is capable of writing like I do. It requires a different mindset which most people these days seem incapable of acquiring. TL;DR: Ha ha ha! You'll never read this. YouTube will probably filter it anyway.
    1
  24. 1
  25. 1
  26. 1
  27. 1
  28. 1
  29. 1
  30. 1
  31. 1
  32. 1
  33. 1
  34. 1
  35. 1
  36. 1
  37. 1
  38. 1
  39. 1