• 0 Posts
  • 23 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle

  • I’ve had some experience with Mint Mobile, but couldn’t get it to activate where I live. The sim worked fine visiting Vegas, but back in my home state, even though it runs on T-Mobile’s network and T-Mobile was fine, the same sim with a phone number with an area code in my home state didn’t work in my home state. So, maybe it works, but the one time I tried it wouldn’t work and Mint couldn’t get it working just kept saying everything is fine and it should be working.

    Tried StraightTalk Wireless after that, 2 different sims so far, no issues, other than I had to get a new sim when the account was inactive for 6 to 8 months. But at least now their sim packs come with both Verizon and notVerizon compatible sims in the same pack now.





  • It looks like the generation digit corresponds to year for Desktop CPUs too. I think the only major difference from the image I showed prior is the last digit, the desktop CPUs have different letter(s) but the other 4 digits correspond the same. For example, the 7950X is 2023, Ryzen 9, Zen 5, Lower model, and X is high power draw and clock speeds, then there is the 7955WX which is 2023, Ryzen 9, Zen 5, Upper Model (Threadripper), Workstation. The 8950X upcomming cpu is 2024, Ryzen 9, Zen5, Lower Model, High Power and clock speeds, etc. So the 8 series is still Zen 5, so its still a refresh of other zen5 chips, however it also apparently has about a 20% uplift compared to the 7 series, but its still a refresh. So the 9000 series we won’t know if its a refresh or not until we have the skus with the 3rd digit, if its a 6, then its a not a zen5 refresh, if its a 5, it is a zen5 refresh.


  • That’s because, according to the super secret AMD Decoder Wheel, the 7 series just means it came out in 2023, while the 8 series means it comes out in 2024, and the 9 series is any model released first released in 2025. Which means you can’t use the first digit to tell what architecture the CPU is at all, you need the 2nd digit and 3rd digit. Which means this “leak” about 9000 series is not a leak because AMD has already stated, for over a year now, that the 9 series would be CPUs released in 2025.




  • I’ve had VGA come out by accident when its not screwed in, mostly when cable routing and I give it a little tug to try and get it up to the monitor. I think the main reason for the screws is that VGA isn’t intended to be hotswappable so by screwing it in you were ensuring it wouldn’t actually pop out while in use and preventing a potential cause damage to components. While HDMI is hotswappable and is designed with specific tolerances to make it fit well enough that it won’t fall out by accident when routing and if it did, it won’t cause damage to components anyway so its probably better to just let it pull out if it gets tugged on than to have it dragging the system or monitor around.




  • Gmail wasn’t even the first, Hotmail, Yahoo mail, there were tons of free email offerings, even sites that would host your whole website for free like geocities. Gmail came into the market when 3rd party email being free was already well established. They just followed an Apple style of development, taking something that already exists and made a better version of it. Also back then their motto was still “Don’t Be Evil” and they mostly still kept to it, so they used that goodwill and the better user experience to grow it at a massive rate. And for the most part, its still the best experience for email for many cases.




  • IANAL, so take this with a grain of salt, but from my understanding, Its legal, though it may be unenforceable. If I want to sue them, they will say I agreed to arbitration in the contract, I will ignore that and continue to file. They will counter-file that I agreed to arbitration by accepting the EULA and that the case should be dropped, I will counter-file that I only agreed to it under duress because it was either agree or throw away my TV and that the arbitration clause is invalid because of X, Y or Z. At this point either the Judge will decide to listen to arguments from both sides then make a decision or will decide based on the undisputed facts presented by both sides and will either invalidate the EULA and allow the lawsuit to continue, or will uphold the EULA and drop the case with prejudice, or will allow me to make another argument and drop the case without prejudice allowing me to re-file with a better case.

    The issue is, is it worth it to spend that kind of time and money for it in the first place? If you don’t have an open and shut case and can’t file in a state where you can make Roku pay the legal fees, in general whatever you’re trying to accomplish will cost you more than just getting off their ecosystem, which is what they are counting on. Since you would have to sue them just to see if you can sue them, it just adds extra time, money, and effort into suing them that it is more likely to deter people from actually suing and instead choosing to arbitrate under their terms which, depending on the ethical considerations of the company, could be fair or it could be heavily skewed in their favor. At which point you can decide at that point if you should sue and then will also have any evidence acquired about an unfair arbitration in the filings as well.

    Either way, the legality is perfectly legal to be in an EULA, its enforceability though is mostly only backed by how much time, money, and effort it would take to bypass it. Like if there is an open door with a sign saying “Please use next door” and the next door leads to the same place as the open door. Most of us will just use the next door because its not worth the effort to deal with whatever issue might occur if we used the open door. But if the “next” door is locked, we’d just go in the open door because its no longer worth the effort to deal with procedures the company wants.



  • It can do stuff that running in your browser can not. Since electron runs both the client-side code and the server-side nodeJS you can communicate between the rendering engine and the back-end for tasks that a web browser alone wouldn’t allow you to do, like accessing and navigating your local file system for example. Or if the app has a lot of assets and it needs to work offline, you can have the nodeJS backend download the files and encrypt them and have the front-end query the nodeJS and to get the decrypted assets and use the whole web app offline completely with a local database that you may sync with a webserver at some point later if or when internet connectivity is restored.

    For most apps its overkill, but Electron and NodeJS can do pretty much anything a native app can do (just slower and while using a LOT more resources than a native app) but can be done entirely by someone experienced in web frontend development and nodeJS.