Ask HN: How do you keep your work and home machine in sync?
I primarily use a Macbook Pro for work and carry it everyday from home to my office. I'm tired of doing so, and hence I'm planning to get a mac mini for office.
I have a difficult time deciding how to keep my files in sync. I could use dropbox or Google drive but syncing every little change becomes operationally difficult. Also, when I'm traveling and working offline, I might not have access to files on the other machine.
What solution do you use to address these issue?
16 comments
[ 6.2 ms ] story [ 65.4 ms ] threadhttp://www.getsync.com
It's not so bad to have one canonical location for data (+backups).
Don't work for free.
I have also used dropbox in remote locations, to keep a team synced up. It works ok, but works best if you keep a separate working directory (so saves don't automatically generate a sync to cloud).
Despite that, all my code is in git so it is synced wherever and whenever I need it, as long as I am disciplined about pushing to my central repo.
There is some data that I use on both home and work machines (vim config, bashrc, etc.) and that is in an "environment" git repository so it is easily syncable.
Thanks for sharing your current solutions.