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/)F
Posts
5
Comments
757
Joined
3 yr. ago

  • I'm saying that, and we had this in the UK with the extreme pornography laws, that puritans (/proto-fascists / cryptofascists) will call it Nazi porn in order to ban it, even if they are (lower-case) nazis themselves

  • I'm not defending the guy in the OP, but "violent", "extreme" and "nazi" porn is a slippery slope. A latex domme facesitting could be framed as extreme, violent, nazi pornography by some people.

  • we just grilled our bosses because they do a quarterly presentation about how well the company is doing, and then in May and September laid off 20% then 30% of the company for "financial" reasons.

    I think they think that now AI is here we can all just do the work without people? But what that means is you just get unreconstructed verbatim AI output as a service.

  • they know and dont care.

  • I got to see her live recently. One of the greatest.

  • we've already had a thousand years of Christians killing each other over whether the Holy Spirit proceeds from the Godhead with the Father or from the Father.

  • bi guy married to a woman here

    sometimes we appear to be adhering to these gender roles and sometimes not (i guess). In reality the alignment to the roles are irrelevant and we just live our lives.

    As many people would say - for e.g. - that me being the one who cooks more in our household is inline with gender roles (more men are chefs) and some the opposite (cooking is a woman's domain).

    Both are wrong, it's just that I like cooking and she doesn't mind.

  • I mean a comedian already did pretty much the best set about it you're ever going to get as an entire special

  • is this what you're thinking of?

  • explains a lot tbh.

  • Hobbyist - I only use it for casual home projects. I open the bookmark of my repo to see a major update definitely uploaded and then close it again.

  • also sometimes you're not the underdog, sometimes you're the extremely unpopular minority.

  • ++ OUT OF CHEESE ERROR ++ REDO FROM START ++

  • While I'm not saying they don't both exist, there are plenty of people writing the original definition for tech products, too.

    And I'd argue that purely scientific papers are often written to promote products and viewpoints, too.

  • developers want to read documentation

    they won't look at any white papers

    ?!?!?!?!!

  • are you looking for engagement or an archive?

    If it's engagement, and you want the most engagement - then reddit, Facebook, Instagram, Twitter, tiktok, youtube.

    If you have a moral objection to those then pick a federated or independent alternative like Lemmy, Bluesky, Pixelfed etc

    if it's just to archive them then build a simple WordPress blog which you can choose your provider or self-host. Or just back them up in a 321 method of your choice.

  • making a decision and having an opinion is not rude. And actually, often people are glad that you've removed the mental labor and discussion.

  • Object.is(NaN, NaN); // -> true

    NaN === NaN; // -> false

    Object.is(-0, 0); // -> false

    -0 === 0; // -> true

    Object.is(NaN, 0 / 0); // -> true

    NaN === 0 / 0; // -> false

    !![] // -> true

    [] == true // -> false

    !!null; // -> false

    null == false; // -> false

    0 == false; // -> true

    "" == false; // -> true