Professional developer and amateur gardener located near Atlanta, GA in the USA.

  • 10 Posts
  • 526 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle



  • If it were me, I’d do something like not really focus on what their actual “real” sexuality is unless it is somehow relevant to the plot. Then if it is so something like make them a 1 or a 5 on the Kinsey scale instead of a 0 or a 6.

    I don’t think games should be required to do, I’m not trying to force some sort of universal bi/pan agenda. I’m just saying it personally annoys me when I am locked out of pursuing a character just because of the gender I happen to be playing as because I typically don’t play games multiple times. It also annoys me when games don’t allow you to pursue all characters. Like in BG3, as far as I know, all characters are bi/pan but not all are poly. The game forced me to pick between Astarion and Karlach, for example. I put 100 hours or so into the game before I quit. I’m not willing to put over 100 more hours into it just to see what would’ve been different. It’s just a waste of my time.

    An alternative approach is only having “sex scene” type content gated behind gender, but everything else can still be seen by friends. E.g., anything a character would eventually tell a lover they still tell close friends. Which is still sort of annoying but not really as bad because you can easily just look up a sex scene, but experiencing things like dialogue and special quests in game isn’t comparable to looking it up on YouTube.








  • Every time I’m doing anything with Python I ask myself if Java’s tooling is this complicated or I’m just used to it by now. I think a big part of the weirdness is that a lot of Python tooling is tied to the Python installation whereas in Java things like Maven and Gradle are separate. In addition, I think dependencies you install get tied to that Python installation, while in Java they just are in a cache for Maven/Gradle. And in the horrible scenario where you need to use different versions of Maven/Gradle (one place I was at specifically needed Maven 3.0.3 for one project and a different for a different, don’t ask, it’s dumb and their own fault for setting it up that way) at least they still have one common cache for everything.

    I guess it also helps that with Java you (often) don’t need platform specific jar files. But Python is often used as an easy and dynamic scripting interface over more performant, native code. So you don’t really run into things like “this artifact doesn’t have a 64 bit arm version for python 2” often with Java. But that’s not a fault of Python’s tooling, it’s just the reality of how it’s used.