Looking for an alternative to reddit

  • 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: July 28th, 2023

help-circle








  • I feel really sorry for people who are not attractive, because in today’s society, everything is about how attractive you are. You get more partners, friends, contacts, job offers… The human race are very animal-like in that way. And science tells people we are just animals, so why not act like animals, right?

    This is a big topic so I won’t bore anyone, but everyones life has a higher meaning. If you are not attractive, don’t get depressed by that. Accept it and live your life as if you were. Do the things you want to do.


  • None of the languages give the same runtime guarantees as Rust without having a garbage collector.

    I think people in this thread are putting Rust in the same bucket as garbage-collecting languages, but there is a performance cost to garbage collecting. Rust doesn’t have a garbage collector and this is why Rust is very fast and still can guarantee a lot of runtime errors won’t happen (unlike in C, c++ etc).

    But it’s really complicated to write code in Rust. Not the basic code but if you have lifetimes on things or use async code and want to change it, you may have to spend hours reworking your entire program.