Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TE
Posts
0
Comments
806
Joined
2 yr. ago

  • That last quote had me rolling. Good on Brian for having a working brain.

    It also concerns me that so many SD legislators are hearing voices in their heads at home, but I guess that's a problem for their psychiatrists to figure out.

  • My thumb does not happen to be 7 inches long. Unfortunately, app designers seem to believe it is and put their hamburger menus in the top left.

    And my hand's not small. It's moderately sized, I'll have you know.

  • I think what I was more hoping that would address are anonymous (and sometimes fake) personas spreading hatred and misinformation publicly and loudly. I guess the problem though is that even without anonymity, people still do it anyway, and Facebook and Twitter are great examples of that. I think having control over your own anonymity is important. I just wish there was less of a feeling that you can harm and disrespect others without consequence.

  • I keep wondering, if forums and social media platforms required ID verification (probably through a third party with policies against retaining PII) and each account was linked (but not necessarily publicly) to a real ID, would that help? For example, being banned from a platform would be permanent since the ban would be tied indirectly to your ID, meaning that consequences would be real for abuse.

    I feel like the core problem is that people can post without consequences. It's both a good thing and a bad thing ofc, but maybe the downsides are too big.

    Could also maybe be a more robust "verified" system I guess where all platforms verify identities of businesses/people through a common provider, and even a platform like Lemmy could show who is verified (which would require tying the identity to the account publicly). This would still allow for anonymous accounts, but those who are verified would be able to be held accountable to what they post online in exchange for higher credibility. I don't think the verification systems we've seen already really help that much though, considering how toxic twitter has been basically throughout its entire existence.

  • Returning the cart, or at least moving it out of the road, means I don't have to get out of my car and lob the cart at your car as you drive off move the cart out of the way to park my car. Decency has nothing to do with what you do for yourself - it's all about what you do for others.

    Personally I don't really care where the cart is as long as it's out of the way and not a problem for the store's staff to access it.

  • Permanently Deleted

    Jump
  • For me, it highly depends. Turn-based strategy games, I can easily play at a much lower framerate (30 is fine tbh though I always appreciate more). FPS-style games? 60 is a bare minimum, but 100+ is what I would consider to be enjoyable.

  • This is the real battle that should be fought against antisemitism. Not random symbols that people have used for decades to mean completely innocent things. Someone who would heil multiple times on public TV and openly post and share hatred on major platforms.

    It's a shame the ADL refused to call him what he is when it mattered: a nazi.

  • Usually the serialization/deserialization code, I keep with the model. The part where a file or whatever comes in, I leave that to the caller to decide on. In other words, the model knows how to serialize and deserialize itself, but not where it's being serialized to or deserialized from.

    Then again, in C#, it's usually just a couple attributes on my model, and in Rust, it's usually just a couple derives. It's rare I actually write much, if any, serialization logic by hand.