Live data from Hacker News

All Hacker Monthly issues free for next ~24 hours

hn.my

11–20 of 107 posts

Re: All Hacker Monthly issues free for next ~24 hours

#11
post #6

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!)

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

#12
post #6

for 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

this guy's servers must be crying.

Re: All Hacker Monthly issues free for next ~24 hours

#17
On 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

#19
post #6

for 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
Post reply on HN