Ask HN: How do you keep your work and home machine in sync?
11–17 of 17 posts
Re: Ask HN: How do you keep your work and home machine in sync?
#12https://superuser.com/questions/31512/how-to-synchronize-the...
rsync would be good for small file size. If you were to sync for big files then you need a pretty good internet connection, like syncing 1GB file on a 10 MB would take under 15 mins.
Re: Ask HN: How do you keep your work and home machine in sync?
#13Re: Ask HN: How do you keep your work and home machine in sync?
#14I leave my work laptop at work. After work I go to the pub, or a cafe, or to my apartment, and live life. Sometimes I work on personal projects, but _never_ on my work machine, and _never_ at work (the nature of invention assignment agreements makes this prudent). 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).
Re: Ask HN: How do you keep your work and home machine in sync?
#15Despite 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.
Re: Ask HN: How do you keep your work and home machine in sync?
#16Re: Ask HN: How do you keep your work and home machine in sync?
#17Thanks for sharing your current solutions.