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/)IC
Posts
0
Comments
70
Joined
2 yr. ago

  • By promoting the lies that either Biden or Harris can single handedly stop the genocide, and that they've made no attempt to do so.

    If we just ended our alliance with Israel, do you know what they would do next? They would likely ally themselves with Russia instead.

    That would give Russia control over a port that facilitates a huge portion of commerce in the middle east. It would also give them control of a lot of tech companies, including Intel's massive R&D campus, and they would have access to the iron dome, which would be a pretty big intelligence leak. Israel also has an extremely important spy network that western countries rely on, and suddenly they would start serving Russia instead.

    It would also allow the rest of the middle east to "escape containment", so to speak. Particularly Iran. As soon as that happens, where do you think their missiles will go next?

    Oh, and the genocide of Palestinians would still continue.

    Geopolitics is complicated, and Biden was walking a tightrope. He was at least placing limits on how US weapons could be used, and trying to negotiate a ceasefire. Trump will scrap all of that and encourage Israel to kill everyone in the region.

    But you didn't care about any of that. Your moral outrage prevented you from trying to figure out why things are the way they are, and you joined the choir of people who were trying to prevent anyone from voting for Harris. A choir that mostly consisted of Trump supporters who were just trying to promote anything that might hurt Harris's chances of winning.

  • The average is more like 25-30 minutes. If it breaks 45 minutes then either it's a really even game (which is fun), or the team that has the lead doesn't know how to use their advantage to win (which is excruciating for both teams).

    Still, you're right, that's a long time to be locked in with someone who is clearly weighing down the team. And of course, that person is probably embarrassed about their performance, so they'll often lash out at other people to deflect from themselves, which will tilt the rest of the team even if they were chill until then.

    The advantage that a lead gives you is also a lot bigger than in most other games. Players get drastically more powerful as they gain XP and money, so if one team gets an early lead, no amount of mechanical skill will be able to counter their advantage. The only way to catch up is to avoid fighting, drag the game out, farm NPCs, and try to punish the enemy's mistakes. That's extremely frustrating if you're not the one who died and gave them the lead.

    It's hard to avoid getting caught up in all of that unless you decide to focus completely on your own game and improving over time, and stop caring about individual wins and losses. Most people don't have that kind of perspective. I didn't either back when I played League a lot.

  • Permanently Deleted

    Jump
  • Well yeah, they're just blocking known fingerprinting services. If you use a tool that they don't recognize, it'll still work, but their approach will still block the big companies that can do the most harm with that data.

    The only alternative is probably to disable WebGL entirely, which isn't a reasonable thing to do by default.

  • Yeah, I manage the infrastructure for almost 150 WordPress sites, and I moved them all to ARM servers a while ago, because they're 10% or 20% cheaper on AWS.

    Websites are rarely bottlenecked by the CPU, so that power efficiency is very significant.

  • They do, most of the time. For example if you upload an heic file from an iPhone to a file input on a website that doesn't accept heic files, it'll upload a jpeg.

    Apple can't see or control all the different ways of transferring files, though, so in practice it still causes problems sometimes.

    The strange thing is that some Android phones also save photos as heic files and make no attempt to convert them, so I still had to add logic to my websites to convert them myself.

  • Google is buying your data, not selling it. They use it to make their ad platform more effective, and selling the data would just help their competitors.

    The NSA does collect data from third parties like Google, but not just anyone can buy it from them.

  • You think in Reddit’s 20 year history no one has thought of indexing comments for data science workloads?

    I'm sure they have, but an index doesn't have anything to do with the python library you mentioned.

    Analytics workflows are never run on the production database, always on read replicas

    Sure, either that or aggregating live streams of data, but either way it doesn't have anything to do with ElasticSearch.

    It's still totally possible to sync things to ElasticSearch in a way that won't affect performance on the production servers, but I'm just saying it's not entirely trivial, especially at the scale reddit operates at, and there's a cost for those extra servers and storage to consider as well.

    It's hard for us to say if that math works out.

    It’s incredibly naive to think that they don’t have a vested interest in identifying organic engagement

    You would think, but you could say the same about Facebook and I know from experience that they don't give a fuck about bots. If anything they actually like the bots because it looks like they have more users.

    1. To compare every comment on reddit to every other comment in reddit's entire history would require an index, and if you want to find similar comments instead of exact matches, it becomes a lot harder to do that efficiently. ElasticSearch might be able to do it, but then you need to duplicate all of that data in a separate database and keep it in sync with your main database without affecting performance too much when people are leaving new comments, and that would probably be expensive.
    2. Comparing combinations of comments is probably impossible. Reddit has a massive number of comments to begin with, and the number of possible subtrees of those comments would just be absurd. If you only care about comparing entire threads and not subtrees, then this doesn't apply, but I don't know how useful that will be.
    3. Programmers just do what they're told. If the managers don't care about something, the programmers won't work on it.