• 0 Posts
  • 41 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle















  • Dismissing sexism within a particular group because it is disproportionately prevalent in that group is, frankly, treating that sexism as acceptable.

    You can just as easily extend this approach until you either reach a group where it’s evened out, or is the entirety of humanity.

    “It’s more prevalent in stem? No, you have to look at university students overall”

    “It’s prevalent in university students overall? No, you have to look at all students”

    “It’s prevalent in students as a whole? No, you have to look at everyone involved in education”

    “It’s prevalent in education in general? No, you have to look at public services as a whole”

    “It’s prevalent in public services as a whole? No, you have to look at all non-private entities”

    “It’s prevalent across non-private entities? No, you have to look at all forms of work”





  • The original example was doing the unwrap_within an iterator doing some string parsing, so there was a lot of unrelated boilerplate around the actual unwrapping that made it really unclear, as well as usual unwrap_or_else to produce a constant value

    Ehhh, I was more using get_default as a placeholder for some function, as opposed to representing Default::default for the inner type specifically. I think it should be alright since only people familiar with rust would know about the default trait anyway. I did consider adding an unwrap_or_default example, but thought it was getting a bit off topic at that point.