busy eating waffles brb

  • 1 Post
  • 17 Comments
Joined 2 years ago
cake
Cake day: July 19th, 2023

help-circle
  • Interesting! To me inverting the x-axis just makes sense in 3rd person games: you see the back of the head of the character so if the back of the head moves to the left your field of view should move to the right. Basically, the joystick controls the head of the character from your POV. Never thought that was uncommon!

    GameCube controllers controlled the camera by using buttons and not two thumbsticks

    Played a bit of GameCube a few months ago and that’s definitely wrong — the c-stick isn’t great but it’s very much used for camera controls — however the rest of the article seems pretty good. Thanks for sharing!


  • TL;DW from my vague memories:

    Oracle got the trademark for JavaScript because they bought the company who made it. Now they have no involvement in the JavaScript ecosystem aside from making a library that barely anyone is using. The JavaScript standard has to refer to JavaScript as ECMAScript because Oracle doesn’t want anything to do with it and won’t allow other people to use the JavaScript name.

    The Node.JS/Done guy says that’s stupid and had been requesting Oracle to release the trademark into the public domain for years which Oracle had always ignored/refused. More recently, Node.JS/Deno guy took Oracle to court for holding onto the JavaScript copyright with no intention of doing anything with it which ended in failure with Oracle claiming they’re involved in the ecosystem thanks to that one library they made.

    The guy who created JavaScript agrees that’s stupid but can’t help.





  • 21:00.0 Network controller: Broadcom Inc. and subsidiaries BCM4352 802.11ac Dual Band Wireless Network Adapter (rev 03)

    It’s probably related to this recent issue

    In my experience Broadcom on Linux is a bad omen, second only to Nvidia. If you can, I’d recommend switching your Wi-Fi card for one that has better Linux support (e.g. “TP-Link Archer TX3000E” or anything that uses an Intel chip inside really since support for them is handled directly by Intel and integrated into Linux’s source code). Good luck! :)





  • The server might always send a modified script that just uploads the plaintext private key.

    Yeah, you’d need a way to validate the client code before it’s executed to solve that issue

    Section “2. Client application security” of MEGA’s Security Whitepaper discusses this exact problem. Their best solution to that issue is to just cram the whole frontend in a signed web extension and not serve any code to the user when the extension is active, which is not very user friendly but works for those who want an extra layer of protection

    I just can’t find a good user-friendly implementation, sorry for not being of more help. The web just isn’t E2EE-friendly ig :/


  • Yeah, I’m not used to E2EE in the browser either and StackExchange seems to agree that there’s no nice solution :/

    The sanest option in terms of user practicality to me appears to be storing the private key on the server, maybe encrypted with the user’s password, and sending it to the user on successful login where it would be decrypted client side. It seems like it’s more or less what Mega is doing since they have a similar issue

    If the server having temporary access to the user’s password is an issue maybe the password could be partially pre-hashed before being sent?

    It’s be interesting to talk about it with someone with more experience, especially since implementing all of that will be a pain so it can’t be redone every Thursday