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

help-circle
  • Aw fuck, time for youtube to force that shitty game into my sub feed again. For fuck sake just die already.

    EDIT: Come on you all know that’s true, the gameplay sucks and the skin economy is basically just NFTs. You cannot in good faith say you genuinely enjoy the game so much as trapped within it because the community is a fucking cult, one which is forced onto you by every platform at every moment after your escape.










  • I once went to a professional to get a website done (as my ability (read: patience) to code websites had proved inadequate) and they constantly tried to upsell me on just the most stupid bullshit. When I pointed out how a lot of moving parts just means more things that could possibly break they blew me off and acted like it was a completely unreasonable concern. Needless to say ended up using a website builder instead and despite a few small glitches it works pretty well with JS completely disabled.

    EDIT: I was particularly concerned with how heavily they were leaning on JS, to the point it flat out wouldn’t load at all for some users. Having JS flair is perfectly fine on the side but when you can’t even get fucking text to load without it, that’s a problem.



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