Remix.run Logo
mikepurvis 3 days ago

But gmail is also a relatively complicated app, much of which runs locally on the client device.

MobiusHorizons 2 days ago | parent | next [-]

It is true that browsers do much more computation than "dumb" terminals, but there are still non-trivial parallels. Terminals do contain a processor and memory in order to handle settings menus, handle keyboard input and convert incoming sequences into a character array that is then displayed on the screen. A terminal is mostly useless without something attached to the other side, but not _completely_ useless. You can browse the menus, enable local echo, and use device as something like a scratchpad. I once drew up a schematic as ascii art this way. The contents are ephemeral and you have to take a photo of the screen or something in order to retain the data.

Web browsers aren't quite that useless with no internet connection, some sites do offer offline capabilities (for example gmail). but even then, the vast majority of offline experiences exist to tide the user over until network can be re-established, instead of truly offering something useful to do locally. Probably the only mainstream counter-examples would be games.

WalterSear 2 days ago | parent | prev [-]

It's still a SAAS, with components that couldn't be replicated client-side, such as AI.

galaxyLogic 2 days ago | parent | next [-]

Right. But does it matter whether computation happens on the client or server? Probabaly on both in the end.

But yes I am looking forward to having my own LMS on my PC which only I have access to.

fragmede 2 days ago | parent | prev [-]

Google's own Gemma models are runnable locally on a Pixel 9 Max so some lev of AI is replicatable client side. As far as Gmail running locally, it wouldn't be impossible for Gmail to be locally hosted and hit a local cache which syncs with a server only periodically over IMAP/JMAP/whatever if Google actually wanted to do it.

eru a day ago | parent [-]

Yes, but seems like a lot of hassle for not much gain (for Google).

fragmede a day ago | parent [-]

The gain, as far as local AI goes for Google, is that, at Google scale, the CPU/GPU time to run even a small model like Gemma will add up across Gmail's millions of users. If clients have the hardware for it (which Pixel 9's have) it means Gmail's servers aren't burning CPU/GPU time on it.

As far as how Gmail's existing offline mode works, I don't know.