Ask HN: What is your favorite method of sending large files?
91–100 of 363 posts
Re: Ask HN: What is your favorite method of sending large files?
#92Bittorrent. No, really. Lots of nice behaviors when transferring large amounts of data between arbitrary endpoints. Transferring the torrent metadata is pretty trivial and can be done via a wide range of methods, and having that flexibility can be nice. Unlike HTTP, you get reasonable retry behavior on network hiccups. Also, more robust data integrity guarantees, though a manual hash test is probably a good idea eith…
Re: Ask HN: What is your favorite method of sending large files?
#93Re: Ask HN: What is your favorite method of sending large files?
#94Re: Ask HN: What is your favorite method of sending large files?
#95S3. Sometimes I do that even when I'm transferring on my local network just because I know the flow so well. After all, my speed to the Internet is roughly the same as the speed on my LAN. They're both gigabit duplex.
You config IAM perms every time?
Then I copy-paste that into a self-Slack and `wget` it on the other side.
It's almost equivalent ergonomically to a `python3 -m http.server` and because it's the same whether I'm giving to someone else or to myself, I spend less thinking!
Re: Ask HN: What is your favorite method of sending large files?
#96Bittorrent. No, really. Lots of nice behaviors when transferring large amounts of data between arbitrary endpoints. Transferring the torrent metadata is pretty trivial and can be done via a wide range of methods, and having that flexibility can be nice. Unlike HTTP, you get reasonable retry behavior on network hiccups. Also, more robust data integrity guarantees, though a manual hash test is probably a good idea eith…
I don't know enough, maybe it has security issues, or some limits... but the fact is that it's still widely used, by tech literate people, so it still stands the test of time and it must be doing something right.
Re: Ask HN: What is your favorite method of sending large files?
#97Re: Ask HN: What is your favorite method of sending large files?
#98I've never needed to send TBs of data.
Re: Ask HN: What is your favorite method of sending large files?
#99Re: Ask HN: What is your favorite method of sending large files?
#1005GB on my local network: Windows File Share, Rsync, or HTTP depending on source/destination 5GB on Internet: Upload to my OVH VPS and HTTP or Rsync it to its destination 10TB, local or Internet: Physical Hard Drive. Never underestimate the bandwidth of a station wagon full of backup tapes! https://www.tidbitsfortechs.com/2013/09/never-underestimate-... And since you now buy 1TB micro SD cards, so perhaps I'd split th…