• 0 Posts
  • 58 Comments
Joined 3 years ago
cake
Cake day: June 2nd, 2021

help-circle







  • The worst thing is that the mods can ban you for any or no reason, locking you completely out of the information they’re providing. That is beyond an unreasonable amount of power that they can have over a user, and you just KNOW they’re going to use that for political reasons.

    Also the fact they can delete stuff in a way that makes them invisible to law enforcement, so a lot of illegal shit goes down there too. Combine that with the naturally hierarchal structure of discord leads to a lot of people using that power to abuse some of the more vulnerable members and of course once you call it out, poof goes the messages and poof goes your access to their server.







  • You’re writing extremely bad code if that’s the case and you need to refactor. The point of a function is to return a value. Anything else is just there to waste cycles and make the code less readable. You should also never use else statements for arithmetic due to their massive relative overhead. Your processor can do multiple arithmetic operations in the time it takes to process one if statement, and don’t get me started on people who demand you use nested if even though switch statements are way faster and leagues more readable.