Show HN: Station307 – Stream files between cURL, Wget and/or browser
1–10 of 17 posts
Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#2Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#3This is very useful! How do they think to earn money with it?
Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#4By the way - there was another similar service recently, but stores files: https://transfer.sh/ , https://news.ycombinator.com/item?id=11322007
Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#5Very nice. I've bookmarked it. By the way - there was another similar service recently, but stores files: https://transfer.sh/ , https://news.ycombinator.com/item?id=11322007
Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#6Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#7How does this work? I see the pending POST in the Chrome network tab, which completes when someone downloads it, and then become pending again for the next download. So are you proxying the uploaded data to the downloading client?
An interesting difference is that in the browser the rePOSTing is done through scripting whereas when using cURL or Wget (or httpie, or ...) the server will issue a 307 Temporary Redirect allowing cURL/Wget to send the file again without manual intervention. Hence the name! (although that doesn't really account for the "Station" part yet)
Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#8If there are any (more) questions on the what or how, I'm happy to answer them. The day here is however coming to an end so it might take me a couple of hours. While I'm gone, please be aware that the service is running on a $5/month VM ;).
Re: Show HN: Station307 – Stream files between cURL, Wget and/or browser
#9Author here! This is a little side project I created because I found myself using scp + email to send a file from a server to someone sitting right next to me more than once. I have a different project which does relaying over HTTP so I figured it might be a good idea to reuse a part of the codebase for a simple file streaming service. I finished it yesterday and it already proved useful for myself, and I hope it als…