• 0 Posts
  • 6 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 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.