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

help-circle
  • Because harassing the Jurors won’t change the outcome of the case since the Jurors have already done everything they are going to do, so harassing them can no longer harm the case, which is probably his primary concern. He obviously would prefer that Trump not attack them, but he’s giving Trump rope and a warning, so we’ll see if Trump ignores the rope, or if he can’t help himself but to open his mouth and stick his head in it.



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








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


  • If you’ve ever been forced to use Teams you must already know they scraped the bottom of their talent barrel for the team that works on it… The software is shit, riddled with bugs to the point where at one point I used to only be able to use teams on my browser because the desktop app just decided to never let me access the text chat, and the browser version I would load it would be a white screen and I would have to refresh 3 times for it to load. But at least it worked after those 3 refreshes. And it was exactly 3 refreshes every single time, never 2, never 4, and 5 was right out. It was always without fail 3 refreshes. Whether loading from Firefox, Chrome, or Edge. Fortunately we don’t have too many meetings with people using Teams these days, so I haven’t had to use it in a while, but its easily in my top 5 worst software I’ve been forced to deal with. Maybe Top 3. But its still miles behind Magento. Fuck Magento, just thinking of it right now gets my blood pumping and I refused to work with it ever again about 10 years ago… Fuck Magento. Teams is at least a distant 2nd or 3rd to that. Absolute crap.




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