• 0 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: August 16th, 2023

help-circle
  • 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.













  • If your connection is stable, the latency will more or less be the same, but TCP will consume more bandwidth because of acknowledgement packets, making it harder to keep your connection stable.

    On an unstable connection, TCP latency will skyrocket as it resends packets, while UDP will just drop those packets unless the game engine has its own way of resending them. Most engines have that, but they only do it for data that is marked as “important”. For example using an item is important, but the position of your character probably isn’t, because it’ll be updated on the next tick anyway.





  • Postgres normalizes table and field names to lowercase, unless you put them in quotes. It’s also case sensitive.

    That means if you use quotes and capital letters when creating the table, then it’s impossible to refer to that table without using quotes.

    It also means if you rename the table later to be all lowercase, then all your existing code will break.

    Still a much better database than MySQL though.