[29256] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 500 Volume: 11

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Jun 10 03:10:16 2007

Date: Sun, 10 Jun 2007 00:09:06 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)

Perl-Users Digest           Sun, 10 Jun 2007     Volume: 11 Number: 500

Today's topics:
        *  Obama Sleeps with Old Presidential intern!  complex.easy.n13@gmail.com
    Re: [newbie] XML::Simple install fails? <bill@teraXNOSPAMXquest.com>
    Re: a password encryption question. <wyzelli@yahoo.com>
    Re: Finding out where my pattern was matched <ced@blv-sam-01.ca.boeing.com>
        new CPAN modules on Sun Jun 10 2007 (Randal Schwartz)
    Re: Not an ARRAY reference at ...Heap/Elem.pm line 31 <sisyphus1@nomail.afraid.org>
    Re: system call  hendedav@gmail.com
    Re: The Concepts and Confusions of Prefix, Infix, Postf <ptmcg@austin.rr.com>
    Re: The Concepts and Confusions of Prefix, Infix, Postf <bcb@undisclosedlocation.net>
    Re: The Concepts and Confusions of Prefix, Infix, Postf <twisted0n3@gmail.com>
    Re: www-search-yahoo prints no results  krakle@visto.com
    Re: www-search-yahoo prints no results <nospam@home.com>
    Re: Yet Another Software Challenge  krakle@visto.com
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Sat, 09 Jun 2007 15:28:48 -0700
From:  complex.easy.n13@gmail.com
Subject: *  Obama Sleeps with Old Presidential intern!
Message-Id: <1181428128.228645.242050@g4g2000hsf.googlegroups.com>

http://obama711.blogspot.com/ - Download the videos of obama sleeping
with interns!



------------------------------

Date: Sat, 9 Jun 2007 16:37:06 -0500
From: "Bill Cohagan" <bill@teraXNOSPAMXquest.com>
Subject: Re: [newbie] XML::Simple install fails?
Message-Id: <466b1d82$0$1407$4c368faf@roadrunner.com>

Rob
  Reinstalling cygwin/perl didn't help so I tried the alternative you 
suggested and it appears to have installed without problems.  Thanks for the 
suggestion!

Bill

"Sisyphus" <sisyphus1@nomail.afraid.org> wrote in message 
news:46640e60$0$14719$afc38c87@news.optusnet.com.au...
>
> "Bill Cohagan" <bill@teraXNOSPAMXquest.com> wrote in message 
> news:46640b4d$0$9011$4c368faf@roadrunner.com...
>> Rob
>>  Thanks for the response; however that appears not to be the case; i.e.,
>>
>>>>>>>>>>>>>>>>>>
>> C:\>perl -MXML::Simple -e "print $XML::Simple::VERSION"
>> Can't locate XML/Simple.pm in @INC (@INC contains: 
>> /usr/lib/perl5/5.8/cygwin
>
> Aaah ... sorry. You're earlier post mentioned "Windows" ... but you're 
> using Cygwin. (I was thinking *native* windows and,  hence, ActivePerl - 
> *my* mistake :-)
>
> Sorry - I don't make any attempt to diagnose problems with CPAN.pm 
> installations (as I never use it).
>
> You could perhaps circumvent your problems with CPAN.pm/Cygwin by 
> downloading 
> http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-Simple-2.16.tar.gz 
> , extracting it to some location, cd'ing to that location and running, in 
> succession:
>
> perl Makefile.PL
> make test
> make install
>
> Cheers,
> Rob 




------------------------------

Date: Sat, 09 Jun 2007 22:55:35 GMT
From: "Peter Wyzl" <wyzelli@yahoo.com>
Subject: Re: a password encryption question.
Message-Id: <HdGai.11120$wH4.9449@news-server.bigpond.net.au>

<nightcats@gmail.com> wrote in message 
news:1181375038.642765.243290@x35g2000prf.googlegroups.com...
> On 6 9 ,   1 13 , nightc...@gmail.com wrote:
>> On 6 9 ,   8 13 , "Peter Wyzl" <wyze...@yahoo.com> wrote:

<snip>

> Hi, once again, I found answers for my previos question
>
> I chang my script to:
>
>   @alphabet = ('a' .. 'z', 'A' .. 'Z', '0' .. '9', '.', '/');
>   $salt = join ('', @alphabet[rand (64), rand (64)]);
>
>   $password = "$FORM{'password'}";
>   $pass = crypt($password, $salt);
>
> The ouput was a perfect result of random-crypted password.  However, a
> new problem was created.
>
> My Login.cgi could not read the ramdom-cryped password.
> The related script was,
>
>   @alphabet = ('a' .. 'z', 'A' .. 'Z', '0' .. '9', '.', '/');
>   $salt = join ('', @alphabet[rand (64), rand (64)]);
>
>   if (crypt($password, $salt) ne $pwordlist{$FORM{'username'}})
>      {
>         &error(not_match);
>          }
>
> How could I make it successfully veryify with the crypted-password?
> thanks.

The crypted 'password' written to disk written to disk is a string, the 
first two characters of which is the salt, the balance of which is the 
actual password.

So the process is to take the first two characters of the crypted sting from 
disk, and use that as a salt to crypt the password entered by the user.  You 
then compare the resultant string with the entire string stord on disk.  If 
they match the user entered the correct password.

So from the above, I assume that $passwd contained the stored crypted 
password from which we extract the first two characters being the salt. 
That is what this line is doing....

$test_passwd = crypt($FORM{'password'}, substr($passwd, 0, 2));

Then if $test_passwd is the same as $passwd, we have a match.

P 



------------------------------

Date: Sat, 09 Jun 2007 22:05:10 -0700
From:  "comp.llang.perl.moderated" <ced@blv-sam-01.ca.boeing.com>
Subject: Re: Finding out where my pattern was matched
Message-Id: <1181451910.370609.229810@j4g2000prf.googlegroups.com>

On Jun 8, 11:27 am, disco <d...@anywherebuthere.com> wrote:
> Basically I'm reading a file into an array as usual, each line occupying
> one element of the array etc.
>
> Then I'm using "my @filtered = grep(/foo/, @list)" to cut out anything I
> don't want. My problem is that I need to know where exactly in the
> file/array the matches were picked out from.
>

use List::MoreUtils qw/indexes/;
my @idx = indexes { push @filtered,$_ if /foo/ }
              @list;

--
Charles DeRykus



------------------------------

Date: Sun, 10 Jun 2007 04:42:13 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Sun Jun 10 2007
Message-Id: <JJEL2D.HGv@zorch.sf-bay.org>

The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN).  You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.

Algorithm-NaiveBayes-0.04
http://search.cpan.org/~kwilliams/Algorithm-NaiveBayes-0.04/
Bayesian prediction of categories 
----
Algorithm-NeedlemanWunsch-0.02
http://search.cpan.org/~vbar/Algorithm-NeedlemanWunsch-0.02/
sequence alignment with configurable scoring 
----
Audio-M4P-0.341
http://search.cpan.org/~billh/Audio-M4P-0.341/
M4P/MP4/M4A QuickTime audio music format modules 
----
Basset-1.04
http://search.cpan.org/~jimt/Basset-1.04/
----
Bundle-Dependencies-Catalyst-0.03
http://search.cpan.org/~ski/Bundle-Dependencies-Catalyst-0.03/
installs non-Catalyst prereqs 
----
Bundle-DependenciesCatalyst-0.01
http://search.cpan.org/~ski/Bundle-DependenciesCatalyst-0.01/
installs non-Catalyst prereqs 
----
CPAN-Site-0.15
http://search.cpan.org/~markov/CPAN-Site-0.15/
CPAN.pm subclass for adding site local modules 
----
Class-Component-0.04
http://search.cpan.org/~yappo/Class-Component-0.04/
pluggable component framework 
----
Class-Generate-1.09
http://search.cpan.org/~swartik/Class-Generate-1.09/
Generate Perl class hierarchies 
----
DBD-mysql-4.005
http://search.cpan.org/~capttofu/DBD-mysql-4.005/
MySQL driver for the Perl5 Database Interface (DBI) 
----
DBIx-Simple-UTF8Columns-0.01
http://search.cpan.org/~banb/DBIx-Simple-UTF8Columns-0.01/
Force UTF-8 flag for DBIx::Simple data 
----
DateTime-Format-Natural-0.36
http://search.cpan.org/~schubiger/DateTime-Format-Natural-0.36/
Create machine readable date/time with natural parsing logic 
----
File-MimeInfo-0.14
http://search.cpan.org/~pardus/File-MimeInfo-0.14/
Determine file type 
----
Gas-Prices-0.0.3
http://search.cpan.org/~ashoooo/Gas-Prices-0.0.3/
Perl Module to get the gas prices around a particular zip code 
----
Geo-Proj4-0.99
http://search.cpan.org/~markov/Geo-Proj4-0.99/
PROJ.4 cartographic projections library 
----
Google-Data-JSON-v0.0.6
http://search.cpan.org/~takeru/Google-Data-JSON-v0.0.6/
General XML-JSON converter based on Google Data APIs 
----
HTML-FromMail-0.11
http://search.cpan.org/~markov/HTML-FromMail-0.11/
base-class for the HTML producers 
----
HTML-Tiny-0.10
http://search.cpan.org/~andya/HTML-Tiny-0.10/
Lightweight, dependency free HTML/XML generation 
----
HTML-Tiny-0.9
http://search.cpan.org/~andya/HTML-Tiny-0.9/
Lightweight, dependency free HTML/XML generation 
----
HTML-WebDAO-0.78
http://search.cpan.org/~zag/HTML-WebDAO-0.78/
Perl extension for create complex web application 
----
Hash-Case-1.004
http://search.cpan.org/~markov/Hash-Case-1.004/
base class for hashes with key-casing requirements 
----
JavaScript-SpiderMonkey-0.18
http://search.cpan.org/~tbusch/JavaScript-SpiderMonkey-0.18/
Perl interface to the JavaScript Engine 
----
Lingua-Stem-It-0.02
http://search.cpan.org/~acalpini/Lingua-Stem-It-0.02/
Porter's stemming algorithm for Italian 
----
Lingua-Stem-it-0.02
http://search.cpan.org/~acalpini/Lingua-Stem-it-0.02/
----
Locale-Memories-0.04
http://search.cpan.org/~xern/Locale-Memories-0.04/
L10N Message Retrieval 
----
Log-Report-0.06
http://search.cpan.org/~markov/Log-Report-0.06/
report a problem, pluggable handlers and language support 
----
MIME-Types-1.20
http://search.cpan.org/~markov/MIME-Types-1.20/
Definition of MIME types 
----
Math-MatrixReal-2.02
http://search.cpan.org/~leto/Math-MatrixReal-2.02/
Matrix of Reals 
----
Math-Random-MT-Auto-6.03
http://search.cpan.org/~jdhedden/Math-Random-MT-Auto-6.03/
Auto-seeded Mersenne Twister PRNGs 
----
MetaStore-0.24
http://search.cpan.org/~zag/MetaStore-0.24/
Set of classes for multiuser web applications. 
----
MooseX-Params-Validate-0.03
http://search.cpan.org/~stevan/MooseX-Params-Validate-0.03/
an extension of Params::Validate for using Moose's types 
----
MooseX-Storage-0.02
http://search.cpan.org/~stevan/MooseX-Storage-0.02/
An serialization framework for Moose classes 
----
Net-Radius-1.56
http://search.cpan.org/~luismunoz/Net-Radius-1.56/
----
Number-Object-0.02
http://search.cpan.org/~yappo/Number-Object-0.02/
pluggable number object 
----
OODoc-Template-0.02
http://search.cpan.org/~markov/OODoc-Template-0.02/
Simple template system 
----
Object-InsideOut-3.18
http://search.cpan.org/~jdhedden/Object-InsideOut-3.18/
Comprehensive inside-out object support module 
----
Object-Realize-Later-0.17
http://search.cpan.org/~markov/Object-Realize-Later-0.17/
Delayed creation of objects 
----
Object-Realize-Later-0.18
http://search.cpan.org/~markov/Object-Realize-Later-0.18/
Delayed creation of objects 
----
POE-Component-Cron-0.018
http://search.cpan.org/~cfedde/POE-Component-Cron-0.018/
Schedule POE Events using a cron spec 
----
POE-Component-MessageQueue-0.1.3
http://search.cpan.org/~dsnopek/POE-Component-MessageQueue-0.1.3/
A POE message queue that uses STOMP for the communication protocol 
----
POE-Component-WebApp-0.01_02
http://search.cpan.org/~mbailey/POE-Component-WebApp-0.01_02/
An asynchronous(POE) HTTP framework for building web applications. 
----
POSIX-Account-LDAP-0.01
http://search.cpan.org/~jfenal/POSIX-Account-LDAP-0.01/
LDAP posixAccount, posixGroup, netgroup, etc. management 
----
Sepia-0.92
http://search.cpan.org/~seano/Sepia-0.92/
Simple Emacs-Perl Interface 
----
Template-Alloy-1.002
http://search.cpan.org/~rhandom/Template-Alloy-1.002/
Fast and lightweight TT2/3 template engine 
----
Template-Alloy-XS-1.002
http://search.cpan.org/~rhandom/Template-Alloy-XS-1.002/
XS version of key parts of Template::Alloy 
----
Test-Email-0.03
http://search.cpan.org/~james/Test-Email-0.03/
Test Email Contents 
----
Test-Email-0.04
http://search.cpan.org/~james/Test-Email-0.04/
Test Email Contents 
----
Test.php-0.08
http://search.cpan.org/~avar/Test.php-0.08/
TAP test framework for PHP with a Test::More-like interface 
----
Test.php-0.09
http://search.cpan.org/~avar/Test.php-0.09/
TAP test framework for PHP with a Test::More-like interface 
----
Test.php-0.10
http://search.cpan.org/~avar/Test.php-0.10/
TAP test framework for PHP with a Test::More-like interface 
----
Test.php-0.11
http://search.cpan.org/~avar/Test.php-0.11/
TAP test framework for PHP with a Test::More-like interface 
----
Test.php-0.12
http://search.cpan.org/~avar/Test.php-0.12/
TAP test framework for PHP with a Test::More-like interface 
----
Texinfo-Menus-1.01
http://search.cpan.org/~cjm/Texinfo-Menus-1.01/
Update node links and menus in Texinfo documents 
----
Text-CSV_PP-1.05
http://search.cpan.org/~makamaka/Text-CSV_PP-1.05/
comma-separated values manipulation routines (PP version) 
----
Text-CSV_XS-0.29
http://search.cpan.org/~hmbrand/Text-CSV_XS-0.29/
comma-separated values manipulation routines 
----
Tk-JFileDialog-1.34
http://search.cpan.org/~turnerjw/Tk-JFileDialog-1.34/
A highly configurable File Dialog widget for Perl/Tk. 
----
Tk-Wizard-2.008
http://search.cpan.org/~mthurn/Tk-Wizard-2.008/
GUI for step-by-step interactive logical process 
----
WWW-Facebook-API-v0.3.3
http://search.cpan.org/~unobe/WWW-Facebook-API-v0.3.3/
Facebook API implementation 
----
WWW-Search-Jobs-2.024
http://search.cpan.org/~mthurn/WWW-Search-Jobs-2.024/
----
WWW-Search-Jobs-2.025
http://search.cpan.org/~mthurn/WWW-Search-Jobs-2.025/
----
Wiki-Toolkit-0.74
http://search.cpan.org/~dom/Wiki-Toolkit-0.74/
A toolkit for building Wikis. 
----
XML-Atom-Service-v0.11.1
http://search.cpan.org/~takeru/XML-Atom-Service-v0.11.1/
Atom Service Document object 
----
XUL-Image-PPT-0.01
http://search.cpan.org/~sal/XUL-Image-PPT-0.01/
insert images into a ppt 
----
Xul2ppt_mec-0.2
http://search.cpan.org/~sal/Xul2ppt_mec-0.2/
----
mocked-0.06
http://search.cpan.org/~lukec/mocked-0.06/
use mocked libraries in unit tests 


If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.

This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
  http://www.stonehenge.com/merlyn/LinuxMag/col82.html

print "Just another Perl hacker," # the original

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!


------------------------------

Date: Sun, 10 Jun 2007 10:38:58 +1000
From: "Sisyphus" <sisyphus1@nomail.afraid.org>
Subject: Re: Not an ARRAY reference at ...Heap/Elem.pm line 31
Message-Id: <466b481f$0$17158$afc38c87@news.optusnet.com.au>


<donuvitanoga@gmail.com> wrote in message
 .
 .
>> Hmmm ... on second thoughts (since Heap-0.80 is more recent than 
>> Graph-0.81)
>> it may be that you need to *downgrade* Heap to an earlier version (if 
>> you're
>> already running Heap-0.80).
>
> Is there a way to do it from the "perl -MCPAN -e shell" command line ?
>

I would think there is, but as I don't use that method, I don't know :-)

(If necessary you could install the module manually - ie by downloading the 
source, extracting it to some location, cd'ing to that location and running 
'perl Makefile.PL', 'make test', and 'make install').

There's already a bug report about this at 
http://rt.cpan.org/Public/Dist/Display.html?Name=Graph  - so I'm fairly 
confident that installing an earlier version of Heap will fix your problem.

Cheers,
Rob 



------------------------------

Date: Sat, 09 Jun 2007 14:27:41 -0700
From:  hendedav@gmail.com
Subject: Re: system call
Message-Id: <1181424461.549600.196360@h2g2000hsg.googlegroups.com>

On Jun 8, 4:15 pm, hende...@gmail.com wrote:
> On Jun 7, 1:41 am, Joe Smith <j...@inwap.com> wrote:
>
> > hende...@gmail.com wrote:
> > >>> if (system("./backup.pl \"$_\" 30 \&") == 0) {
> > >                       Since the system call
> > > has an appended & at the end to indicate to run as a seperate process,
> > > the browser shouldn't be waiting on perl to finish that additional
> > > script call, right?
>
> > Using "&" alone is insufficient, since STDIN, STDOUT, and STDERR are
> > still being held open by the backgrounded task.
>
> >     $log_file = '/dev/null'
> >     if (system qq(./backup.pl "$_" 30 </dev/null >>$log_file 2>&1 &) == 0 {
>
> >         -Joe
>
> Thanks for the responses Mumia and Joe.  Joe your solution worked
> great.  Would there be a problem embedding the $log_file value
> directly into the qq statement?  I tried it and it worked just fine.
> I just wanted to make sure there wasn't something I was overlooking as
> to why I should use a variable instead of the direct value.
>
> Thanks,
> Dave



Gang,

     I have put together a solution based on the previous posts in
this threat (posted below).  Basically this script has two options
that can be run, one to start an external pl script and the other
regularly checks if its still running.  The script seems to be running
great from a browser point of view.  However, when I run a "ps aux" at
the prompt, I see a "[backup.cgi] <defunct>" for everytime the it was
run (for the initialization and everytime it was checked to see if it
was still running).  I have googled for possible explainations and
tried exiting right after the function has completed and tried closing
STDOUT (commented out below), but without success.  If anyone can help
me out with this, I would greatly appreciate the help.

Thanks,
Dave



backup.cgi
------------------
#!/usr/bin/perl -w

use strict;
use CGI qw(:all);
use CGI::Carp qw(fatalsToBrowser);

if (defined param('trackStatus')) {
   $_ = param('trackStatus');        # this value contains the pid
   $_ = `ps h -p $_ 2>&1`;
   print "Content-type: text/html\n\n";
   if ($_ ne "") { print "processing"; } else { print "completed"; }
#close (STDOUT);
#exit 0;

} elsif (defined param('runnow')) {
   $_ = param('runnow');
   if (system("./backup.pl \"$_\" 30 </dev/null >>/dev/null 2>&1 &")
== 0) {
	$_ = `ps ax|grep "backup.pl $_"`;
	my ($pid) = /(\d{3,})/;
	my @info = stat("/tmp/buj$pid");
	print "Content-type: text/xml\n\n\n";
	print "<info pid=\"". $pid ."\" date=\"". scalar(localtime) ."\" />";
   }
#close (STDOUT);
#exit 0;
}
exit 0;



------------------------------

Date: Sat, 09 Jun 2007 11:43:45 -0700
From:  Paul McGuire <ptmcg@austin.rr.com>
Subject: Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations
Message-Id: <1181414625.121073.203940@g4g2000hsf.googlegroups.com>

On Jun 9, 6:49 am, Lew <l...@noemail.lewscanon.com> wrote:
> > In particular, Perl code looks more like line
> > noise than like code from any known programming language. ;))
>
> Hmm - I know of APL and SNOBOL.
>
> --
> Lew

TECO editor commands.  I don't have direct experience with TECO, but
I've heard that a common diversion was to type random characters on
the command line, and see what the editor would do.

-- Paul



------------------------------

Date: Sat, 9 Jun 2007 19:21:14 -0500
From: "BCB" <bcb@undisclosedlocation.net>
Subject: Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations
Message-Id: <0uHai.176367$nh4.13819@newsfe20.lga>


"Paul McGuire" <ptmcg@austin.rr.com> wrote in message 
news:1181414625.121073.203940@g4g2000hsf.googlegroups.com...
> On Jun 9, 6:49 am, Lew <l...@noemail.lewscanon.com> wrote:
>> > In particular, Perl code looks more like line
>> > noise than like code from any known programming language. ;))
>>
>> Hmm - I know of APL and SNOBOL.
>>
>> --
>> Lew
>
> TECO editor commands.  I don't have direct experience with TECO, but
> I've heard that a common diversion was to type random characters on
> the command line, and see what the editor would do.
>
> -- Paul
>

J

http://www.jsoftware.com/ 




------------------------------

Date: Sun, 10 Jun 2007 04:09:18 -0000
From:  Twisted <twisted0n3@gmail.com>
Subject: Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations
Message-Id: <1181448558.120521.63250@g4g2000hsf.googlegroups.com>

On Jun 9, 8:21 pm, "BCB" <b...@undisclosedlocation.net> wrote:
> "Paul McGuire" <p...@austin.rr.com> wrote in message
>
> news:1181414625.121073.203940@g4g2000hsf.googlegroups.com...
>
> > On Jun 9, 6:49 am, Lew <l...@noemail.lewscanon.com> wrote:
> >> > In particular, Perl code looks more like line
> >> > noise than like code from any known programming language. ;))
>
> >> Hmm - I know of APL and SNOBOL.
>
> >> --
> >> Lew
>
> > TECO editor commands.  I don't have direct experience with TECO, but
> > I've heard that a common diversion was to type random characters on
> > the command line, and see what the editor would do.
>
> > -- Paul
>
> J
>
> http://www.jsoftware.com/

Oh come on! Toy languages (such as any set of editor commands) and
joke languages (ala Intercal) don't count, even if they are
technically Turing-complete. ;)

Nor does anything that was designed for the every-character-at-a-
premium punch-card era, particularly if it is, or rhymes with,
"COBOL".

Those have excuses, like it's a joke or it's a constrained
environment. Perl, unfortunately, has no such excuses. If there were
such a thing as "embedded Perl", I'd have to hesitate here, but since
there isn't...



------------------------------

Date: Sat, 09 Jun 2007 14:25:19 -0700
From:  krakle@visto.com
Subject: Re: www-search-yahoo prints no results
Message-Id: <1181424319.377514.279900@q69g2000hsb.googlegroups.com>

On Jun 8, 9:10 pm, "Nospam" <nos...@home.com> wrote:
> I am wondering why this doesn't print any search results, all it does is

Most likely the module hasn't been updated and no longer works with
Yahoo Search. Most of those WWW-search modules completely stink and
are out dated. The MSN search one works though...




------------------------------

Date: Sun, 10 Jun 2007 03:46:43 GMT
From: "Nospam" <nospam@home.com>
Subject: Re: www-search-yahoo prints no results
Message-Id: <DuKai.594$F77.119@newsfe4-gui.ntli.net>


<krakle@visto.com> wrote in message
news:1181424319.377514.279900@q69g2000hsb.googlegroups.com...
> On Jun 8, 9:10 pm, "Nospam" <nos...@home.com> wrote:
> > I am wondering why this doesn't print any search results, all it does is
>
> Most likely the module hasn't been updated and no longer works with
> Yahoo Search. Most of those WWW-search modules completely stink and
> are out dated. The MSN search one works though...
>
>

I tried www-search-msn the results are the same as www-search-yahoo nothing!





------------------------------

Date: Sat, 09 Jun 2007 22:48:01 -0700
From:  krakle@visto.com
Subject: Re: Yet Another Software Challenge
Message-Id: <1181454481.883941.161290@c77g2000hse.googlegroups.com>

On Jun 7, 5:29 am, yan...@gmail.com wrote:
> If you're mad aboutsoftwareriddles, just have a look athttp://software.challenge.googlepages.comand challenge yourself or
> invite your friends to join.
>
> Be prepared to spend some nights there!
>
> Enjoy!
>
> Thierry

Wow... That is the crappiest website I have ever seen.



------------------------------

Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>


Administrivia:

#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc.  For subscription or unsubscription requests, send
#the single line:
#
#	subscribe perl-users
#or:
#	unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.  

NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice. 

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.

#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V11 Issue 500
**************************************


home help back first fref pref prev next nref lref last post