Comment Taught myself (Score 1) 515
I taught myself with books on programming, and a lot of time. Since I was interested in it, I kept going and learning. Now I'm a full time programmer.
I taught myself with books on programming, and a lot of time. Since I was interested in it, I kept going and learning. Now I'm a full time programmer.
Clearly, they are defending their eggs from a super predator. What kind of predator eats the eggs of other species?
Weasels.
Giant Space Weasels.
The story almost writes itself.
This was described years ago by either Pournelle or Niven, I forget which, as part of a non-fiction essay in a collection of short stories. Part of the War series?
Also, the elephant aliens used them against us in "Footfall," which was either by Pournelle or Niven or both.
Anyway, the writer described this as "crowbars in space." I thought it was a horrible, terrible idea. It's bad for the human race, for several reasons.
First, these things would be activated by radio somehow, unless you have a crew up there montitoring them continuously. If it can be fired remotely, then someone will try to hack the system. Once that happens, then the mighty US would no longer be in command of these weapons, and everyone would be in trouble.
Second, once one of these systems gets deployed, then who is to say that the US system would be the only one. We don't need another arms race.
Nuclear weapons are bad enough, but these would be much worse. They essentially cause artificial asteroid strikes. Doesn't everyone agree that these are bad? I honestly hoped that everyone would forget this idea.
#!/bin/bash
But I REALLY hate how slashcode screws up the code formatting. the <ecode> tag handling sux the bag.
#!/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.
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";
More useful stuff!:
And thanks and welcome to the 25 people who friended Porn Whitelist today
So, here's a script to download more pix.
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`
}
curl http://www.nikkygalore.com/w200412/d10-2/pics/pp[01-20].jpg -o "nikkygalore.com.#1.jpg"
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`;
}
}
#!/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
So, here's a (very) small leech: 1.3 meg - just type it in a terminal
wget -r http://www.milfmagazine.com/wives/153evelyn/
To make up for that small one, here's 87 meg of girls with a little extra
wget -r http://www.sweetauditions.com/images -w 1
The devil finds work for idle circuits to do.