for i in `seq -w 19`; do echo "http://hackermonthly.com/xmas/hackermonthly-issue0"$i".zip"; done | xargs wget
Thanks for this! Considering how quickly it took someone to write a script to download them all (It is "Hacker" News, after all), I don't know why they didn't just release them all in one Zip file anyway. Or maybe someone could put a torrent together, given how much they are getting hammered. (2 hours for a 15.6 MB file, yikes!)
All Hacker Monthly issues free for next ~24 hours
11–20 of 107 posts
The download links of the page seem irregular, so I was trying to make a list. It looks like he kept all issues ordered on the server under another name though, one that fits this format.
Re: All Hacker Monthly issues free for next ~24 hours
#12Re: All Hacker Monthly issues free for next ~24 hours
#13If you manage to connect to the site, that is.
Re: All Hacker Monthly issues free for next ~24 hours
#14awesome! any chance there's an easy way to bulk download all of them?
It would be nice if a torrent was available, but they couldn't exactly have it expire after 24 hours.
Re: All Hacker Monthly issues free for next ~24 hours
#15As a monthly subscriber, this is great to see! Hopefully this will lead some other subscribing as I think the price is well worth it. Wow, I sound like a salesman, but genuinely just a fan of well done work for our community. Thanks!
Re: All Hacker Monthly issues free for next ~24 hours
#16for i in `seq -w 19`; do echo "http://hackermonthly.com/xmas/hackermonthly-issue0"$i".zip"; done | xargs wget
Good deeds rarely go unpunished.
Thank you Lim Cheng Soon, that was very generous of you.
Merry Christmas to you too!
Re: All Hacker Monthly issues free for next ~24 hours
#17On a mac (without wget) paste this into the terminal and it'll open up every download in a tab in your default web browser.
open http://hackermonthly.com/hackermonthly-startupstories.zip;
open http://hackermonthly.com/hackermonthly-thedebate.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue019.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue018.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue017.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue016.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue015.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue014.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue013.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue012.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue011.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue010.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue009.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue008.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue007.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue006.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue005.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue004.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue003.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue002.zip;
open http://hackermonthly.com/xmas/hackermonthly-issue001.zip;Re: All Hacker Monthly issues free for next ~24 hours
#18Hm yeah..cool offer. But we need one of two things..
1. server/bandwidth upgrade 2. time extension of the offer beyond 24h
Or actually.. ideally both :)
Re: All Hacker Monthly issues free for next ~24 hours
#19for i in `seq -w 19`; do echo "http://hackermonthly.com/xmas/hackermonthly-issue0"$i".zip"; done | xargs wget
In parallel: for i in `seq -w 19`; do wget "http://hackermonthly.com/xmas/hackermonthly-issue0"$i".zip" & done wait
seq -w 19 | xargs -I{} -P4 -n1 wget "http://hackermonthly.com/xmas/hackermonthly-issue0{}.zip
Re: All Hacker Monthly issues free for next ~24 hours
#20Put a torrent up before your server melts down.