Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment Re:Fund the US Patent office independently (Score 0) 73

Suggestion: Increase the application fee and make it non-refundable. Any changes to the application after lodging incurs another application fee. No other fees payable when the application is approved. That way the patent office is incentivised to reject patents because accepting them means more work but no extra money.
The Military

NSA and Army On Quest For Quantum Physics Jackpot 110

coondoggie sends this excerpt from NetworkWorld: "The US Army Research Office and the National Security Agency (NSA) are together looking for some answers to their quantum physics questions. ... The Army said quantum algorithms that are developed should focus on constructive solutions [PDF] for specific tasks, and on general methodologies for expressing and analyzing algorithms tailored to specific problems — though they didn't say what those specific tasks were ... 'Investigators should presuppose the existence of a fully functional quantum computer and consider what algorithmic tasks are particularly well suited to such a machine. A necessary component of this research will be to compare the efficiency of the quantum algorithm to the best existing classical algorithm for the same problem.'"

Comment Err "equal weight"? (Score 1) 870

Quote: "'You think there are more facts and better facts on your side than on the other side. The very act of giving them equal weight seems like bias. Like inappropriate evenhandedness.'"

However, some facts have more weight than others when judged by objective observer - don't they?

Good example is the (illegal) invasion of Iraq.

The fact that UN1441 required the council to "convene immediately upon receipt of a report in accordance with paragraphs 4 or 11 above, in order to consider the situation and the need for full compliance with all of the relevant Council resolutions in order to secure international peace and security;" i.e. to decide what to do next.

http://community.channel4.com/eve/forums/a/tpc/f/503603557/m/3490049144/p/1

BTW: I'm MadWorld poster (because it is).
Announcements

Journal Journal: 116 pics of assorted ladies 8

Just to show that I can use curl as well as wget: of course, now you can have fun writing it in perl for a change :-)

#!/bin/bash

User Journal

Journal Journal: Okay friends, here's some more 5

And this time NO TYPOS (I hope).

#!/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.

Announcements

Journal Journal: I'm B-A-A-A-C-K !!! 4

Corrected Script - transposed an el and a one" (thanks to Nucleardog for pointing out I made a fuckup). Corrected script below :-)

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";

Anime

Journal Journal: Anime Pr0n?! and a (bigotted racist) new foe ... 22

Well, I guess it had to happen - Anime porn.

And thanks and welcome to the 25 people who friended Porn Whitelist today :-) (guess I'll have to come up with something special for the 100th sooner than I would have thought ... darn)

So, here's a script to download more pix.

Upgrades

Journal Journal: Close enough - heres 11,000 pix 4

Posted under "Upgrades", so you can (ahem) upgrade your collection.

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`
}

User Journal

Journal Journal: Some curl 3

As promised, I've found something fairly large (several hundred meg - thousands of pix, both thumbnails and full-sized) for when we've got 50 people who have friended this blog. In the meantime, here's some quickie curl commands to get 5 meg of porn (or you can convert it to wget as an exercise for the reader).

curl http://www.nikkygalore.com/w200412/d10-2/pics/pp[01-20].jpg -o "nikkygalore.com.#1.jpg"

X

Journal Journal: 47 meg of ... um ... something. 1

I'm not going to comment on what this is - it's not up to me to judge. That's why it's filed under "X".

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`;
}
}

Perl

Journal Journal: Some PERL for pr0n 5

Here's something different - a perl script ...

#!/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 :-)

Displays

Journal Journal: MILFs, etc.

Remember American Pie? How the guys were going nuts over Stiffler's mother? I had never heard of the phrase "MILF" before - "Mother I'd Like (to) Fuck".

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 ...

Movies

Journal Journal: A quickie ... 2

Lights, camera, and ... action. Here's a quickie to finish off the weekend, for those who are up late ...

wget -r http://www.sweetauditions.com/images -w 1

Space

Journal Journal: Here's a big one - to celebrate the first freak! 2

Posted under "Space", 'cause you better have some free space for this one ...

As promised earlier, here's a wget for 386,000 thumbnails, 2.3 gigs ... suitable for all sorts of things, in celebration of Porn Whitelist's first freak:

wget -r http://www.spacethumbs.com/tgp/thumbs -w 10

Why the -w 10?

Slashdot Top Deals

PL/I -- "the fatal disease" -- belongs more to the problem set than to the solution set. -- Edsger W. Dijkstra, SIGPLAN Notices, Volume 17, Number 5

Working...