Dropbox has selective sync for years already, doesn't it?
How we use BitTorrent to improve our design sharing workflow
11–20 of 27 posts
Re: How we use BitTorrent to improve our design sharing workflow
#12Re: How we use BitTorrent to improve our design sharing workflow
#13" not to mention it means everyone who wants access needs to commit to losing 1TB of space on their hard drive." Dropbox has selective sync for years already, doesn't it?
Re: How we use BitTorrent to improve our design sharing workflow
#14OP mentions this app "Arq" for AWS S3/Glacier backups. Does anyone know a similar app for Linux?
Re: How we use BitTorrent to improve our design sharing workflow
#15OP mentions this app "Arq" for AWS S3/Glacier backups. Does anyone know a similar app for Linux?
Re: How we use BitTorrent to improve our design sharing workflow
#16OP mentions this app "Arq" for AWS S3/Glacier backups. Does anyone know a similar app for Linux?
Duplicity[0] supports it through a boto[1] backend. [0] http://duplicity.nongnu.org [1] https://github.com/boto/boto
Re: How we use BitTorrent to improve our design sharing workflow
#17"git-annex allows managing files with git, without checking the file contents into git. While that may seem paradoxical, it is useful when dealing with files larger than git can currently easily handle, whether due to limitations in memory, time, or disk space."
and
"The git-annex assistant creates a folder on each of your computers, Android devices, removable drives, and cloud services, which it keeps synchronised, so its contents are the same everywhere. It's very easy to use, and has all the power of git and git-annex."
Re: How we use BitTorrent to improve our design sharing workflow
#18How does this handle a situation where multiple designers edit large files at roughly the same time?
Re: How we use BitTorrent to improve our design sharing workflow
#19How does this handle a situation where multiple designers edit large files at roughly the same time?
I also always wondered if there was some version control system for pictures.
Re: How we use BitTorrent to improve our design sharing workflow
#20I was hoping this was going to be something where the files themselves were distributed so that they didn't take up space on everyone's machines, a la MogileFS[1], but alas. This is always a point of pain for us: in our studios we work from a central file server, so our shiny iMacs with their 1TB drives all have about 90% capacity on them — but we don't have any easy way to pool all that extra capacity and use it eve…
That's what git-annex is for. Everyone has a list of all the files, and then if you want to access one, you can just do "git annex get [file]" and it'll get it from any of the machines that happen to have that file. If you want to delete it, "git annex drop [file]" will ensure at least N machines keep a copy of the file before deleting it. I use it to manage files between my VPS, desktop, laptop and NAS, with each ma…