she/her

  • 0 Posts
  • 70 Comments
Joined 2 years ago
cake
Cake day: August 3rd, 2023

help-circle



  • It’s fair to want to learn (and it’s certainly a good skill to have), but the question is what you’d rather see in a large, production environment. Guard rails are usually there for a reason. As for the control: you actually can program memory-unsafe (and in kernel development you often have to!) in Rust. The difference is that in Rust it’s explicitly marked by an unsafe block:

    unsafe {
      ...
    }
    

    That way you get the same, fine-grained control over low-level processes, but someone else reading your code can at a glace spot where potential memory bugs may be.

    In the end, languages are a tool. Especially for personal projects, everyone should just go with what’s fun to them. I personally think it makes sense, logistically, to slowly transition legacy C-based projects to Rust, because it makes onboarding new developers easier, while keeping the same memory safety that requires years of experience otherwise, basically for free. But there’s really no rush to rewrite anything that’s working well in Rust

















  • This is a silly joke question, and you’re right about the urea breaking down. Now for the water molecules (which are indistinguishable, so outside of pseudoscience the answer is meaningless), it becomes more interesting.

    Assuming a person pees about 1l/day, over a lifetime you have on the order of 10^29 water molecules in your pee. There’s about 1.3 billion cubic kilometers of water on earth, or about 10^21 litres. So assuming the pee gets perfectly diluted, you get about 10^8 molecules that used to be in a specific person’s pee, per litre of water. In reality it will likely be more, since much water is deep in the ocean, where there is little convection, so it takes long to evenly mix the pee around.