←back to thread

816 points tosh | 1 comments | | HN request time: 0.208s | source
Show context
hoppyhoppy2 ◴[] No.41276373[source]
A similar project with some nice features that I use is croc: https://github.com/schollz/croc
replies(3): >>41277318 #>>41277529 #>>41277619 #
Klathmon ◴[] No.41277619[source]
I've used https://file.pizza a bunch before, only because of the memorable name
replies(2): >>41278325 #>>41283083 #
foresto ◴[] No.41278325[source]
It was useless for large files when I tried it, at least on Firefox. It seemed to be trying to pull the entire file into RAM.
replies(1): >>41278684 #
bootlegbilly ◴[] No.41278684[source]
As someone who's been working on a file upload service for a while, this is the only real way to download very large files on Firefox.

The file system access API is a great way to write chunks of a file at a gime, but for now Firefox doesn't support it

https://wicg.github.io/file-system-access/ https://mozilla.github.io/standards-positions/#native-file-s...

replies(2): >>41278728 #>>41341003 #
1. ric2b ◴[] No.41341003[source]
Firefox can definitely download very large files with no problem, JS doesn't even need to be involved, downloading a file is ancient browser functionality.

The server sends an application/octet-stream response and a few other headers and it works.