Live data from Hacker News

You can't download this image

youcantdownloadthisimage.online

11–20 of 241 posts

Re: You can't download this image

#11
post #10
post #9

curl --max-time 1 https://youcantdownloadthisimage.online/lisa.jpg > lisa.jpg

Results in an empty file.

Increase the time a bit, it looks like sometimes it takes more time to download curl --max-time 2 https://youcantdownloadthisimage.online/lisa.jpg > lisa.jpg

Re: You can't download this image

#16
post #9

curl --max-time 1 https://youcantdownloadthisimage.online/lisa.jpg > lisa.jpg

Add -N, --no-buffer Disables the buffering of the output stream. In normal work situations, curl will use a standard buffered output stream that will have the effect that it will output the data in chunks, not necessarily exactly when the data arrives. Using this option will disable that buffering.

and it works

Post reply on HN