This not being an official release from Google, using this is potentially worse than giving someone your Google password without fully vetting it. There are some existing safeguards in place to make a password alone difficult to use, but the app itself would have signed in access to your account and the contents of files. You may think it's simple to watch the app for bad behavior and decide it's safe, but you wouldn…
Does it ask for your password? I'd expect it to use OAuth.
Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
51–60 of 97 posts
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#52Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#53... An 18 MB animated GIF embedded in the project home page just to show me a demo video? I suppose that’s on-brand for an Electron app. Snark aside, FFmpeg is your friend and a 1-liner plus a tag will reduce this to less than a MB. Your mobile visitors will thank you!
GitHub doesn't do .
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#54Earlier quoted context omitted.
I made the mistake of copying a node project I was working on.... holy cow does Backup and Sync choke on all those tiny JavaScript files. It started syncing and just couldn't stop. I had to delete or move all the Backup and Sync contents across my devices to get to 0 before it quit endlessly thrashing.
Dropbox still has the best sync tech and is the only one that can handle deep and numerous file hierarchies. The rest have better pricing and integrations like email/productivity apps.
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#55This not being an official release from Google, using this is potentially worse than giving someone your Google password without fully vetting it. There are some existing safeguards in place to make a password alone difficult to use, but the app itself would have signed in access to your account and the contents of files. You may think it's simple to watch the app for bad behavior and decide it's safe, but you wouldn…
Does it ask for your password? I'd expect it to use OAuth.
The repository doesn't include all of the code that gets included in the app, because it has dependencies. It links those dependencies on the github page, but you have to verify that the dependencies being linked to are the ones the build actually uses. Then check that you like what's in those dependencies. At first glance, a forked version of one of the dependencies is pulled from his own repository instead of the repository linked on the page, so you have to make sure you aren't vetting the wrong repository. Then the release archives package in Electron for you, so that's another thing you're trusting if you don't build it locally.
It doesn't mean anyone is doing anything wrong, but even if they have good intentions good people pull in bad dependencies occasionally too.
Developers as people are innocent until proven guilty. Software is guilty until proven innocent, especially if there's a higher chance of a security risk. Not everyone can assess that well for themselves.
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#56Earlier quoted context omitted.
Does it ask for your password? I'd expect it to use OAuth.
It wouldn't matter how you signed in for potential abuse to occur if the app itself is untrusted, unfortunately. The repository doesn't include all of the code that gets included in the app, because it has dependencies. It links those dependencies on the github page, but you have to verify that the dependencies being linked to are the ones the build actually uses. Then check that you like what's in those dependencies…
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#57Earlier quoted context omitted.
Well, to be more specific -- I want the OS itself to be a full-screen tab container with multiple spaces/desktops (and add tiling, and popping out tabs like floating windows, as advanced usage). And then each tab is an app or app document window. So I could have a Chrome tab next to a Firefox tab if I wanted. Browser tabs would be peers next to other apps. None of this is about security, or running apps in the browse…
Have you tried i3 on Linux? It’s probably not exactly what you’re thinking of, but you can use it very similarly.
There's no elegant way of telling Firefox to never use tabs, always open a new window. There are some extensions pretending to this, but the experience is terrible. There actually is a new tab created which is then detached.
I don't usually use Chrome, so I looked up wether it handled this, but it seems to rely on extensions too.
Qutebrowser works, but it has other limitations, such as poor extension support.
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#58Earlier quoted context omitted.
Dropbox still has the best sync tech and is the only one that can handle deep and numerous file hierarchies. The rest have better pricing and integrations like email/productivity apps.
Can confirm. I have to move all my node projects to Dropbox for this particular reason.
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#59Earlier quoted context omitted.
Dropbox still has the best sync tech and is the only one that can handle deep and numerous file hierarchies. The rest have better pricing and integrations like email/productivity apps.
Actually, Resilio is not any slower than Dropbox. Syncthing is also faster thans any commercial offering I ever tried. Even Nextcloud sync is fast after an initial init.
Dropbox is the best at crawling a very complex directory structure with millions of files and diffing it efficiently with the server and other clients, and then transferring all the individual changes. Nothing else comes close. And their write-ups show the work involved:
https://dropbox.tech/infrastructure/rewriting-the-heart-of-o...
https://dropbox.tech/infrastructure/-testing-our-new-sync-en...
Re: Google Drive Desktop – A cross-platform Google Drive desktop app made w Electron
#60Earlier quoted context omitted.
You need a window manager/virtual desktops, not the insecurity doing everything in the browser brings.
Well, to be more specific -- I want the OS itself to be a full-screen tab container with multiple spaces/desktops (and add tiling, and popping out tabs like floating windows, as advanced usage). And then each tab is an app or app document window. So I could have a Chrome tab next to a Firefox tab if I wanted. Browser tabs would be peers next to other apps. None of this is about security, or running apps in the browse…