another way, if you wanna test your brain is to write some code

if you look in the download page you'll see that the tuts are divided up into catagories (c=6 for programming and c=4 for tutorials)

http://www.antionline.com/tutorials/?c=6

so we know this, but its trivial. So we want the tutorials - well there all indexed somehow (I dunno how I didnt do it, but if you look at the URL, for a tutorial in that link above you get something like -

http://www.antionline.com/tutorials/jump.php?68

that 68 is the indexed number of the tutorial, which links to its true URL on the forums, so with some pseudo code we can figure out a sort of program.

Code:
for x from 1 to 100
{
       goto a = http://www.antionline.com/tutorials/jump.php?+"x"     //note the + x..
       wait for a bit to let it download
       d = get url of current page
       dwn = download(d)
       fwrite(somefile, dwn)
}
thats such a basic example, I know you could knock this together in python in a few hours with no experience.

I hope this method isnt deemed unethical,

i2c