• 0 Posts
  • 14 Comments
Joined 11 months ago
cake
Cake day: August 16th, 2023

help-circle



  • I haven’t said anything on the subject before, because I don’t care very much, but I don’t know what the alternative is supposed to be. It’s not like someone who is that famous can walk into a public airplane without putting her own safety at risk and causing trouble for other passengers.

    It’s also well known that conservatives really hate her because she told her fans to vote and these memes are part of their effort to discredit her. Whether the point has any merit or not, it’s obvious who started the trend and who it’s helping.




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