Comment Re:Don't ever sign a contract with "arbitration" (Score 1) 104
Comment Re:What happened to personal choice? (Score 1) 104
Comment Re:What happened to personal choice? (Score 1) 104
Comment Re:Don't ever sign a contract with "arbitration" (Score 1) 104
Comment Re:mod parent up (Score 2, Interesting) 464
I have done this sort of thing before, and have had the same results. Something that most people seem to miss is that, while we all prefer Linux, it is a resource hog.
Mandrake and a few others are now taking up more the 200 MB of physical RAM. Windows and it's GUI only use about 60 MB. There is a major difference in the usage here as well. Older computers can benefit from Windows, or it could benefit from Linux.
It all depends on the distro used.
My $0.02 worth. For what it's worth.
Journal Journal: 116 pics of assorted ladies 8
#!/bin/bash
Comment Re:cURL (Score 1) 5
But I REALLY hate how slashcode screws up the code formatting. the <ecode> tag handling sux the bag.
Journal Journal: Okay friends, here's some more 5
#!/usr/bin/perl
# sample url http://www.hardloveart.com/34/inf8.0015.jpg
for ($i = 1; $i <=8; $i++) {
for ($j = 1; $j <= 15; $j++) {
if ($j < 10) {
$cmd = "wget www.hardloveart.com/34/inf$i/000$j.jpg -w4";
} else {
$cmd = "wget www.hardloveart.com/34/inf$i/00$j.jpg -w4";
}
`$cmd`;
}
}
About 7 megs of pix, 120 images.
Journal Journal: I'm B-A-A-A-C-K !!! 4
Sorry for the hiatus (holidays, stupid dog that eats EVERYTHING, work, etc., but I'm back, and here we go with another simple script:
#!/usr/bin/perl
$site="www.met-art.com";
$dir= "g1";
$file="met-art_fl_00";
$ext=".jpg -w 4";
Journal Journal: Anime Pr0n?! and a (bigotted racist) new foe ... 22
And thanks and welcome to the 25 people who friended Porn Whitelist today
So, here's a script to download more pix.
Journal Journal: Close enough - heres 11,000 pix 4
Yesterday I wrote that if we got this journal up to 50 people friending it, I'd post a script that get a decent chunk of pr0n.
Well, 47 friends/fans is close enough among friends so:
#!/usr/bin/perl
for ($i=105;$i<=859;$i++) {
`wget -r www.pornodonkey.com/$i/1176.html`
}
Journal Journal: Some curl 3
curl http://www.nikkygalore.com/w200412/d10-2/pics/pp[01-20].jpg -o "nikkygalore.com.#1.jpg"
Journal Journal: 47 meg of ... um ... something. 1
Here's the perl script:
#!/usr/bin/perl
for ($i=1; $i <=48; $i++) {
for ($j=1; $j <=16; $j++) {
$url = "www.fetishhub.net/mip/gal";
if($i<10) {$url = $url . '0'; }
$url = $url . $i . '/big_';
if ($j<10) {$url = $url . '0'; }
$url = $url . $j . '.jpg';
`wget -r $url`;
}
}
Journal Journal: Some PERL for pr0n 5
#!/usr/bin/perl
for ($i=1; $i<27;$i++) {
for ($j=1; $j<17; $j++) {
`wget -r www.sweetamateurbabes.com/teen/$i/$j.jpg`
}
}
For those of you new to perl, those are backquotes around the wget command - they tell the shell to interpet the command string, after doing variable substitution