Master of Applied Cuntery, Level 7 Misanthrope, and Social Injustice Warrior
Is that all the crab memes you got?
I was half expecting a proper crab meme dump, like in the good ol’ days.
Pathetic.
What’s so hard to understand about start with an S, then add a slightly different S?
You suck at drawing dragons. Follow these instructions to improve: https://m.youtube.com/watch?v=90X5NJleYJQ&pp=ygURc3Ryb25nIGJhZCBkcmFnb24%3D
I always found this argument funny because how would you use pronouns for someone whose gender you do not know? They. It’s they. E.g. you are given the sentence: Jordan went to the store to buy apples. And you want to ask a followup question regarding how many, you reply: How many apples did they buy?
And that’s not how English was taught to me or 99℅ of the population (including English as a second or third language) 20+ years ago. Singular they was only used for situations where the gender (read as superficially visible sex) was factually unknown. You see a forgotten umbrella and never saw who forgot it: “Somebody forgot their umbrella.” As soon as you only got a glimpse on the person forgetting it you would make a guess about he/she.
They has been used for gender ambiguity in everyone’s lives since grammar school.
If you’re younger than ~30 and from Great Britain, maybe. GB were the first to formalize and teach it like that less than 2 decades ago (if I recall correctly).
People just have an inherent bias towards trans folks and it’s incredibly depressing and sad.
That’s bullshit projection.
I, a non-native speaker, complain about increased ambiguity of the language because of singular they as a personal pronoun and make a proposal about new pronouns for the purpose.
You: Ah, must be transphobe. Let’s ignore everything he said (which doesn’t relate to transphobia at all).
It’s so frustrating not to be able to have a discussion about stuff making a language harder than it needs to be without people invoking transphobia, like, instantly.
But hey, I called it: can’t have a discussion about it and I’ve given up on it.
edit: tiny add-on. I was still taught gender-neutral he and only heard about they later while being discouraged to use it in writing.
Doesn’t feel like you want to have an honest argument when you ask how far we should go back on a proposal about going forward and don’t address the single motivator ambiguity.
I criticized singular they/them for increasing language ambiguity and suggested replacing it with something new like xe/xer multiple times. The reply is usually a shitstorm and downvote tornado. I’ve given up on that front.
A total lack of competence didn’t stop Trump.
It doesn’t make it flawless (at all), but installing the microsoft fonts helps. Most distros have a package or helper tool for that.
Invest in debugging and code review capabilities: With 45% of developers reporting increased debugging time for AI code, organizations need stronger code review processes. They need debugging tools specifically designed for AI-generated solutions.
Or, maybe, don’t use tools that generate garbage code.
https://en.m.wikipedia.org/wiki/Intelligence
Take your pick from anything that isn’t recent and by computer scientists or mathematicians, to call stuff intelligent that clearly isn’t. According to some modern marketing takes I developed AI 20 years ago (optimizing search problems for agentic systems); it’s just that my peers and I weren’t stupid enough to call the results intelligent.
I’d welcome actual AI. What is peddled everyday as “AI” is just marketing bullshit. There’s no intelligence in it. Language shapes perception and we should take those words back and use them according to their original and inherent meaning. LLMs are not AI. Stable diffusion is not AI. Neural networks trained for a singular task are not AI.
I’m doing a combination of 3 to 6.
Hasse zu brechen es dir: Bote sind motorisiert mit Verbrennungsmotoren und ein Kanal in Venedig vergleichbar mit Straße in anderen Städten.
Does the US still have a working reporting system?
Though, obviously I had to come up with some ridiculous solutions:
bool IsEven(int i) => ((Func<string, bool>)(s => s[^1] == 48))($"{i:B}");
This one works without conditionals :)
bool IsEven(int i)
{
try
{
int _ = (i & 1) / (i & 1);
}
catch (Exception)
{
return true;
}
return false;
}
Not to take from all the funny answers … but
bool IsEven(int i) => (i & 1) != 1;
(C#)
Rookie numbers.