• 3 Posts
  • 6 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle
  • There’s a reasonable probability that I’ll be heavily downvoted for this, but it’s my two cents, so here I go. For clarity, I’ll in the following use “male” and “female” to refer to biological groups identified by their reproductive organs (by far most people can clearly be identified as one or the other), and “man” and “women” to refer to groups of people that identify as such.

    Sex (the action) is pretty fundamentally tied to your reproductive organs. As such, I think it makes most sense to define “straight” vs. “bi” vs. “gay” in terms of sex (the attribute). I would say that a male that is exclusively attracted to females is “straight”, while a male that is exclusively attracted to women “bi with a strong preference for women”, and that a male that is exclusively attracted to males is “gay”.

    My reasoning here is twofold: First, a male that is attracted to women can have a range for how “female presenting” the woman has to be before they are interested. Some will only consider women that have gone through surgery and full hormonal therapy attractive, while others will find women without any surgery or hormone therapy attractive. This brings up the second point: A lot of sexuality becomes a lot easier to talk about (and de-stigmatize) if we accept that sexuality is a continuous spectrum. If we accept that, it makes sense to me to use one word for each extreme, and a more fluid language for the bulk of the spectrum. I know plenty of bi people that have more or less strong preferences towards one side of the spectrum, and some that are completely agnostic. I think a lot of stigma can be removed if we’re more open to people being “just slightly bi”, while we can keep the language clear by reserving “straight” and “gay” for the two extremes.

    Finally, if we use “straight” to refer to e.g. males that are exclusively attracted to women, we open an unnecessary can of worms regarding males that are attracted to people who identify as women, but don’t present as female. In short: Sex (act) is fundamentally tied to sex (attribute), so it makes sense to me to define sexuality in terms of sex, rather than gender.


  • These two are not interchangeable or really even comparable though? Make is a program that generates non-source files from source files, cmake is a high-level tool to generate makefiles.

    If you’re writing anything more than a completely trivial makefile I would heavily recommend learning cmake. It makes your build system much, much more robust, far easier to maintain, much more likely to work on other systems than your own, and far easier to integrate with other dependent projects.

    My primary experience with plain make was when I re-wrote a 2000+ line make-system in a project I maintain with about 200 lines of cmake, because we were setting up some CI that required us to clone and build some dependencies, which was an absolutely PITA to handle cross-platform with plain make, but was trivial with cmake.

    PS. The cmake docs suck for anyone that hasn’t used cmake for 10 years already.


  • What you say is true, but doesn’t really answer “Could someone take down Wikipedia [without completely shutting off the internet]”. For obvious reasons, shutting internet access completely off isn’t going to happen short of an insurrection or a war.

    Shutting down Wikipedia specifically is much harder. As others have pointed out, there are many thousand copies of Wikipedia lying around on peoples private devices. If Wikipedia were actually taken down (blocked by the government in some sense) hundreds of mirrors would likely pop up immediately, and it would be more or less impossible for the government to go after each individual site that some person decides to host, short of just cutting internet access completely.



  • This will sound dumb, but I’m saying it sincerely.

    I’ve had similar issues (without getting into details), but what worked for me was getting outside a couple times a week. By that I mean bringing a tent or hammock + tarp and sleeping outside a couple nights a week on workdays.

    To be specific: I sleep outside Monday-Tuesday and Wednesday-Thursday. On those days I also make my dinner at my campsite. What I’ve found is that my brain goes into a much more “primal” state of “monke outside in cold, monke get shit done”, and that it propagates into my day and week.

    The barrier to this is of course actually going outside, but I’ve been able to get to a place where I have a “deal with myself” about those two nights a week. I always have my pack ready, so it’s just about grabbing it and heading out- I think that’s key.

    I’m not saying this is a solution for everyone, but it’s done wonders for me. As of now, I get restless and feel bad if I’m in a situation where I can’t get outside at least once a week. It brings me a peace of mind and will to get stuff done that nothing else can.



  • A protein is like a really long chain of simple monomers (amino acids), that you can think of as a long string of differently coloured beads. The ordering of the beads somewhat determines how the protein functions, but the major factor that determines it is how this long string is bundled up, i.e. “folded” (think of a ball of yarn).

    A DNA sequence tells us the sequence of the amino acids in a protein, but tells us nothing about how it is folded. It is of great interest to compute how a protein will fold, given its sequence, because then we can determine how and why it works like it does, and use gene-editing techniques to design proteins to do the stuff we want. This requires huge amounts of computational power, so you get the fold@home project :)

    Thanks for contributing!