I see this problem happening only to me when it's used as code repository. Which is what he is doing. I had that for one project because the client didn't want to use git, but it's horrible. So, logically, when you have a lot of files changing all the time (compiling (xcode, eclipse), adding libraries (node, RoR)) you'll see dropbox taking over your computer. For all other uses it seems fine. Note also that when you…
Well, yes, but if you read the result of his tests even with syncing turned off Dropbox is still eating about 500 mAh. And that is, I would say, rather strange.
Dropbox will kill your insane MacBook Air 2013 battery
51–60 of 111 posts
Re: Dropbox will kill your insane MacBook Air 2013 battery
#52Laptop operating systems need to start keeping tabs on what's using your battery, like Android does (with mixed success but that's another story).
Re: Dropbox will kill your insane MacBook Air 2013 battery
#53Re: Dropbox will kill your insane MacBook Air 2013 battery
#54Earlier quoted context omitted.
likely because linux has inotify
Every modern operating system has inotify-like capabilities. Mac OS has an integrated desktop search since 2005, which wouldn't be feasible without filesystem events.
sudo fs_usage -w
I've been watching it recently and it seems to touch files that it shouldn't need to. I need to do more investigation. I uninstalled backblaze recently because I discovered that it manually scans the whole filesystem _all the time_.
Re: Dropbox will kill your insane MacBook Air 2013 battery
#55Earlier quoted context omitted.
same question here. If you can get free private git repositories on services like bitbucket, it's sort of a mystery to me why one would want to lose true versioning and go with plain backup instead.
You can have both. If you put your working directory in Dropbox you will have a copy of your uncommitted work as well. Also, in many cases it is easier for a graphic designer or just a customer to put stuff in a Dropbox folder that will sync to their website, than uploading stuff using a web form or learning to use git and X amount of deployment tools.
Re: Dropbox will kill your insane MacBook Air 2013 battery
#56Oh if only it was one App that killed the battery on the last laptop I bought. Before nuking the default windows install, I did a quick test, with all the crapware that comes as standard, it managed about 4 hours. Fresh install 6.5 hours.
For Windows boxes, there's decrapifier.
Re: Dropbox will kill your insane MacBook Air 2013 battery
#57Dropbox is terrible with CPU usage. This is something I reported to them several times, but it seems they don't really care. Last I tested, Dropbox consumed CPU for ANY changes ANYWHERE in your filesystem, not just within the Dropbox folder. So its (slow) code processed changes even when you untarred a large set of files somewhere in /tmp. I also stopped using Dropbox for storing my code because of that — it's nearly…
> Another problem with Dropbox is that upon login it indexes the entire Dropbox I haven't used Dropbox in a while as a local client for other reasons but I think people need to appreciate this is the payoff for having the convenience? How can one expect it to sync changes if it never scans or detects changes? People seem to want a magical product where it never uses any HD throughput or CPU to index/scan/upload megab…
The indexation doesn't need to happen immediately upon boot. Do one directory every minute or so, let the computer start up and do other things while your background task runs.
Changes are detected because the operating system notifies dropbox of changes made, they're not continuously scanning the drive. From other comments it sounds like dropbox has registered a hook like that for the entire filesystem, instead of just the working folder. That seems unnecessary.
Re: Dropbox will kill your insane MacBook Air 2013 battery
#58I have a 13" MacBook Air, medio 2011. I bought it almost right after it was released and have used it as my only computer almost every day since. I have the Dropbox agent running all the time.
While working last Sunday I got 5.5 hours of battery life out of it and I've never taken good care of the battery. I never drain it unless I'm not near a power outlet, in which case I just have it plugged in all day.
My current battery health information shows: Cycle Count: 253, Condition: Normal
Re: Dropbox will kill your insane MacBook Air 2013 battery
#59Dropbox is terrible with CPU usage. This is something I reported to them several times, but it seems they don't really care. Last I tested, Dropbox consumed CPU for ANY changes ANYWHERE in your filesystem, not just within the Dropbox folder. So its (slow) code processed changes even when you untarred a large set of files somewhere in /tmp. I also stopped using Dropbox for storing my code because of that — it's nearly…
> And to everyone that says you should not store code in dropbox: a) there are good and legitimate reasons for doing so I'm genuinely curious: why do this, as opposed to using a DVCS like git?