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

help-circle


  • They should just make it a small art exhibit out front, then 2 bathrooms, the mens is normal, with some basic art, but the women’s bathroom has a bar and cocktail lounge and the extra amenities. Then the business wouldn’t be excluding men, it would just be providing them a different experience in the bathroom which I feel like they’d have a much better time defending in court. But it also seems like this whole thing was done as a form of activism and it looks like one of the intents is for this business to close down so they can be martyrs.


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




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