Hacker News new | ask | show | jobs
by sieabah 1382 days ago
I wish torrenting for general downloads was more popular. I had unstable internet that would make downloading anything over 100MB impossible.

Slap a torrent together of the same payload and it'd be guaranteed not to stall/error because of the network.

1 comments

I agree, I wish they were more common, but you don't need torrents to solve any issues with resuming downloads. HTTP supports sufficient functionality to accomplish this: https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requ...

    while; wget -c http://...; end
(From memory, may need tweaking.)