Skip Navigation
We coulda had Bernie...
  • I guess not having freedom of press and a very censored internet is an easy way to have the population like the government. You could feed people worms if you don't let them know there's other food out there, they'll like you if you tell them out there not even worms exist.

    The people of Hong Kong absolutely LOVED having their democracy suppressed by china's (#1 best democracy of the world!!!).

    I guess nobody even asked the Uyghurs how they feel about their government. Or they're <10% of Chinese population so who cares, they don't need democracy.

  • We coulda had Bernie...
  • So the most Democratic countries on this planet according to you are cuba and china. Both of them are 1-party states, and China is straight up a surveillance state. Ok lol.

    Does china pay you or are you spreading their bullshit propaganda for free?

  • We coulda had Bernie...
  • Not just Europe and the anglosphere. It's also happening in Latin America (ecuador), and that's basically all the regions where democracy used to be prevalent.

    The middle east is still as dictatorial as it always was. Asia is still as dictatorial as it always has. Africa is still as dictatorial as it always has. I know all of these regions are huge and diverse, and that there are democracies. But none of them I can think of has gained democracy.

    So the places that had democracy are turning less democratic, and the places that had little democracy still have little democracy. I'd say that's an "All over the world" thing.

  • The first time I went to Spain I learned that they used a different set of playing cards
  • In Spain every single playing card company has its own design (even if they are all swords, sticks, coins and cups), probably more than one. I don't think I've ever seen the same design twice, every house I go to has different cards.

  • NO-SHA rule
  • Safety rules are written in blood. When you spend at least 8hours/day doing the same thing, even if that thing has a very small chance of generating an accident, that's a lot of time spent doing something risky. Everyone has bad days, any one of those could kill you/severely injure you if you don't take safety protocols seriously.

  • A simple benchmark of various math operations (2014)
  • This synthetic benchmark is nice a general wisdom thing. But I'd love a more complete analysis taking into account loading from memory, caches, SIMD, CPU pipeline and all of that.

    Probably when taking all those things into account (specially loading values from memory) the performance difference of a div and a mult should be negligible.

  • Steam announces game recording beta.
  • That's easy to explain. EGS managed to make everyone hate them just as it started. How do they expect to be profitable if they piss off the entire market?

    There are other stores such as GoG that have actual users.

  • MMOs 'don't give people the tools to build community anymore,' says EverQuest 2 creative director
  • GW2 is the only MMO I know that doesn't have other people stealing your loot. All loot is independent for everyone (no loot sharing, bids, etc.) and you get loot from the mob just by hitting it once, doesn't matter if you last hit it or not.

  • Anon is your financial advisor
  • Investments are not effort-to-profit. They are risk-to-profit.

    There is no such a thing as risk-free investing. If there is an investment with good returns, it means it's just as easy to lose all that money.

  • What is the deal with API documentation that can seem so terse to a hobbyist?
  • Docs should be written for someone experienced in programming but inexperienced with the API. If it is about a niche subject (for example VR).

    Whenever an explanation contains something about that niche subject, you don't need to explain everything, but maybe provide a link towards another place (for example wikipedia) that explains it.

  • [help] impl block for generic type overriden by specific type

    I want to do basically this: ```rust struct MyStruct &lt; T> { data: T }

    impl &lt; T> for MyStruct &lt; T> { fn foo() { println!("Generic") } }

    impl for MyStruct &lt; u32> { fn foo() { println!("u32") } } ```

    I have tried doing

    rust impl &lt; T: !u32> for MyStruct &lt; T> { ... } But it doesn't seem to work. I've also tried various things with traits but none of them seem to work. Is this even possible?

    EDIT: Fixed formatting

    5
    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/)CA
    calcopiritus @lemmy.world
    Posts 1
    Comments 224