There is a set of ISO codes for each language, but it’s not catchy used as an icon, and are also implicitly Western-centric by virtue of using the Latin alphabet.
- 0 Posts
- 30 Comments
I wish there were some internationally recognized symbols to represent languages as distinct entities from their countries of origin, but the idea of trying to make some seems really unpopular for some reason.
There’s other languages that have far more politically contentious flags representing them - at least all the English-speaking countries are broadly allies. Spare a thought for the Taiwanese who have to select a People’s Republic of China flag, even though the language is as much theirs as it is the PRC’s, or the large number of Russian-speaking native Ukrainians who have to select the flag of the country who’s bombing them and their families.
The notion of a country owning a language is fraught with toxicity (indeed, Russia’s claim to vast swathes of Ukraine leans heavily on it), and if languages had their own flags we could sidestep the whole issue.
Same, it’s largely doing pretty much as the article implies, replacing StackOverflow for when I need the correct runes to do something specific.
For real. You can tell how good a programmer someone is, by how good they think an LLM is at programming.
Yup. I once decided to spend an afternoon answering questions on a framework I was expert in, as a kind of profile-building exercise to help with job hunting, and after around the third smug self-satisfied comment picking me up on some piece of irrelevant bullshit I deleted my account.
skisnow@lemmy.cato You Should Know@lemmy.world•YSK that in 16 States in the USA has banned Ranked-Choice voting, including 5 that has just banned it in 2025, and 6 of those bans happened in 2024.English21·2 days agoIt’s even worse than that - they don’t just “do absolutely nothing to change that”, they actively whip each other into line by loudly blaming third party voters for not giving them the votes that they somehow owe to their big money party.
skisnow@lemmy.cato Programmer Humor@programming.dev•Vibe Coders might be serious, but I cannot take them seriously, especially when they say "It is a must-have skill".English21·4 days agoMy LinkedIn has recently become flooded with Suggested Posts from 3rd degree connections who have “Vibe Coding Guru” listed as their job and post lots of stuff saying “people who mock Vibe Coding just don’t get it, and you too will be left behind if you don’t subscribe to my newsletter (which ChatGPT writes for me)”
skisnow@lemmy.cato Uplifting News@lemmy.world•Co-op members vote for boycott of Israeli products in all storesEnglish131·4 days agoI had a look at the supposed “false and defamatory statements” that the UKLFI claimed the Co-op made, and it’s such a weaksauce mix of pedantry over minor points plus heaps of unsourced speculation peppered with weasel words that it’s almost comically bad. Even their own defence of Israel is damning.
skisnow@lemmy.cato Lemmy Shitpost@lemmy.world•Voted today. Let's go, Romania! 🇷🇴🇪🇺English11·5 days agoWestern expats in Japan are notorious for hating every other Western expat in Japan. It’s even got a name, “My Japan Syndrome”.
skisnow@lemmy.cato Uplifting News@lemmy.world•Instead of takedown ads, this Gen-Z congressional candidate is using campaign money to feed peopleEnglish5·6 days agoYou mentioned your post history elsewhere, so I had a look, and… nope. Your post history is largely unpleasant and tinged with bouts of xenophobia.
skisnow@lemmy.cato Technology@lemmy.world•Apple business executives ban Fortnite from iOS. People around the world - including in Europe - say their iPhone is preventing them from playing the videogame. English1·6 days agoWhat’s more, Windows S Mode proved perfectly that you could offer the “safe” functionality that Apple claim they need to protect their customers, without fucking things up for people who wanted to take responsibility for vetting applications themselves.
skisnow@lemmy.cato Technology@lemmy.world•Microsoft shuts down email account of International Criminal Court chief prosecutorEnglish20·6 days agoI’m currently in the long tedious process of replacing all my details for every website and service with an email address at a domain I actually own, before some AI bot at Google decides that some random shit violates their TOC and deletes my Gmail.
skisnow@lemmy.cato Programmer Humor@programming.dev•Which of these javascript expressions is false?English24·7 days agoThat one wasn’t the one I had issues with, since the concept is essentially the same across all languages. We say it’s false because we can’t conclusively say that it’s true. Same as the reason why null != null in SQL.
The code is a set of preprocessor macros to stuff loads of booleans into one int (or similar), in this case named ‘myFlags’. The preprocessor is a simple (some argue too simple) step at the start of compilation that modifies the source code on its way to the real compiler by substituting #defines, prepending #include’d files, etc.
If myFlags is equal to, e.g. 67, that’s 01000011, meaning that BV00, BV01, and BV07 are all TRUE and the others are FALSE.
The first part is just for convenience and readability. BV00 represents the 0th bit, BV01 is the first etc. (1 << 3) means 00000001, bit shifted left three times so it becomes 00001000 (aka 8).
The middle chunk defines macros to make bit operations more human-readable.
SET_BIT(myFlags, MY_FIRST_BOOLEAN)
gets turned into((myFlags) |= ((1 << 0)))
, which could be simplified asmyFlags = myFlags | 00000001
. (Ignore the flood of parentheses, they’re there for safety due to the loaded shotgun nature of the preprocessor.)
Back in the day when it mattered, we did it like
#define BV00 (1 << 0) #define BV01 (1 << 1) #define BV02 (1 << 2) #define BV03 (1 << 3) ...etc #define IS_SET(flag, bit) ((flag) & (bit)) #define SET_BIT(var, bit) ((var) |= (bit)) #define REMOVE_BIT(var, bit) ((var) &= ~(bit)) #define TOGGLE_BIT(var, bit) ((var) ^= (bit)) ....then... #define MY_FIRST_BOOLEAN BV00 SET_BIT(myFlags, MY_FIRST_BOOLEAN)
skisnow@lemmy.cato Lemmy Shitpost@lemmy.world•“This script is fantastic. Let’s get Julia Roberts to play Harriet Tubman.”English9·9 days agoIt’s such an insane story that I wonder what the other side of it is. It’s easy to imagine the guy just having got out of a meeting ten minutes earlier with “if you don’t get Julia Roberts into a movie by the end of the week, I’ll see you never work in this town again!” ringing in his ears.
skisnow@lemmy.cato Technology@lemmy.world•Netflix will show generative AI ads midway through streams in 2026English2·9 days agoYes. This is basically the core of why capitalism eats itself.
You don’t have to be evil or short-sighted to be a CEO, but if you don’t do evil and short-sighted shit to pump the share price there’s a high probability the board will replace you with someone who will.
This is why I believe the government should hold stock and sit on the boards of any company that gets publicly listed. Much easier than tying yourself in knots with an adversarial system of complex regulations.
skisnow@lemmy.cato Technology@lemmy.world•Netflix will show generative AI ads midway through streams in 2026English5·9 days agoI think at least a few of those objections are addressed in the show.
The reason I didn’t like it is that all the previous incarnations of Wednesday had her as vengeful to those who deserved it, but basically decent, if a little sardonic, towards those who didn’t. Whereas this new one was a colossal B to everyone she met by default; made it kind of hard to root for her.
skisnow@lemmy.cato Technology@lemmy.world•Netflix will show generative AI ads midway through streams in 2026English7·9 days agoSure, but they have a crazy large amount of data and an army of Data Science PhDs who sat down and calculated they’d make more money increasing their margins on people who’ll put up with it, than they’d lose pissing the rest of their customers off.
All the rest of us can do is leave our Torrents running and keep our ratios up…
That’s shocking, more so for the fact that speaking with that level of callousness about the victims of Hamas attacks would get you banned from basically every platform and political party in the West.