[23822] in Perl-Users-Digest
Perl-Users Digest, Issue: 6025 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Jan 29 21:06:24 2004
Date: Thu, 29 Jan 2004 18:00:58 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Thu, 29 Jan 2004 Volume: 10 Number: 6025
Today's topics:
Re: Newbie... bubble sort in a more elegant fashion? <uri@stemsystems.com>
Re: Newbie... bubble sort in a more elegant fashion? <calle@cyberpomo.com>
Re: Newbie... bubble sort in a more elegant fashion? <uri@stemsystems.com>
Re: Newbie... bubble sort in a more elegant fashion? <jwkenne@attglobal.net>
Re: Newbie... bubble sort in a more elegant fashion? (Mark Jason Dominus)
Re: Newbies probleme <1usa@llenroc.ude>
Re: Newbies probleme <tore@aursand.no>
Re: Newbies probleme <raisin@delete-this-trash.mts.net>
Re: Newbies probleme <noreply@gunnar.cc>
Re: Newbies probleme <rev_1318@hotmail.com>
Re: Newbies probleme <orion93@club-internet.fr>
Re: Newbies probleme <tore@aursand.no>
nix file perms $_@_.%_
Re: nix file perms (Walter Roberson)
Re: nix file perms <ittyspam@yahoo.com>
Re: nix file perms $_@_.%_
Re: No answer for your problem ? <hikksnotathome@aol.com>
Re: No answer for your problem ? <p.r.e.e.t.i@p.h.p.w.o.r.l.d>
Re: No answer for your problem ? (J French)
Re: No answer for your problem ? <robw@sofw.org>
Re: No answer for your problem ? <foo@bar.invalid>
Re: No answer for your problem ? <chernyshevsky@hotmail.com>
Re: No answer for your problem ? <thisIsNot@MyEMailAddress.com>
Re: No answer for your problem ? <me@scantek.hotmail.com>
Re: No answer for your problem ? <since_humans_read_this_I_am_spammed_too_much@spamyourself.com>
Re: No answer for your problem ? <matthew.garrish@sympatico.ca>
Re: No answer for your problem ? (Sara)
Re: No answer for your problem ? <matthew.garrish@sympatico.ca>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 21 Jan 2004 17:24:29 GMT
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: Newbie... bubble sort in a more elegant fashion?
Message-Id: <x7ad4hdxkj.fsf@mail.sysarch.com>
>>>>> "AS" == Anno Siegel <anno4000@lublin.zrz.tu-berlin.de> writes:
AS> Bubble sort? What's to optimize, it's beyond hope :)
AS> I really don't understand why bubble sort is even studied in CS
AS> classes, except as an example how *not* to do it. It isn't even
AS> intuitive... card players would kill a companion who started
AS> sorting a deck using bubble sort. It may have the occasional
AS> application for small lists that are already almost in order, but
AS> otherwise the only thing in its favor is its pretty name.
it is taught in CS classes as a classic O(N^2) sort. and for real world
short lists it is usually the fastest sort as it has no setup
overhead. but short can mean as little as 5 elements. is it also the
simplest sort code around (if done well) so it is good to teach for
concepts and such. of course no decent sized sort should use it but it
is a still a required tool to know.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
------------------------------
Date: Wed, 21 Jan 2004 18:41:25 +0100
From: Calle Dybedahl <calle@cyberpomo.com>
Subject: Re: Newbie... bubble sort in a more elegant fashion?
Message-Id: <86llo119oa.fsf@ulthar.bisexualmenace.org>
>>>>> "Uri" == Uri Guttman <uri@stemsystems.com> writes:
> is it also the simplest sort code around (if done well) so it is
> good to teach for concepts and such.
Doesn't that depend rather a lot on the language? Compared to the
bubblesort code that's been posted to this thread, I think this
quicksort code is much easier to understand (both code-wise and
algorithm-wise):
sub qsort {
return @_ if @_ <= 1;
my $pivot = $_[0];
return
qsort(grep {$_ < $pivot} @_),
$pivot,
(qsort(grep {$_ > $pivot} @_));
}
--
Calle Dybedahl <calle@lysator.liu.se>
"I'd definitely like to see more rubber-clad literature in future."
-- Penny Dreadful
------------------------------
Date: Wed, 21 Jan 2004 17:57:56 GMT
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: Newbie... bubble sort in a more elegant fashion?
Message-Id: <x7vfn5chgc.fsf@mail.sysarch.com>
>>>>> "CD" == Calle Dybedahl <calle@cyberpomo.com> writes:
>>>>> "Uri" == Uri Guttman <uri@stemsystems.com> writes:
>> is it also the simplest sort code around (if done well) so it is
>> good to teach for concepts and such.
CD> Doesn't that depend rather a lot on the language? Compared to the
CD> bubblesort code that's been posted to this thread, I think this
CD> quicksort code is much easier to understand (both code-wise and
CD> algorithm-wise):
CD> sub qsort {
CD> return @_ if @_ <= 1;
CD> my $pivot = $_[0];
CD> return
CD> qsort(grep {$_ < $pivot} @_),
CD> $pivot,
CD> (qsort(grep {$_ > $pivot} @_));
CD> }
i don't call resursion simple. it may seem that way to you and me and
most others here but to newbies learning basic algorithms it can be
confusing. in any decent textbook that covers sorting, bubble sorts will
be taught first and then some O(N * log N) sorts like tree, merge and
quicksorts. knowing bubble sort makes the need for the other sorts more
apparant. and all of this has to be taught with O() stuff as well. i
have seen people who learn sort methods and other algorithms who don't
understand O() at all and that is shameful.
and bubble sorts illustrate the basic principles of sorting (comparison,
moving) very well. your code (while fine) makes those operations harder
to understand. as i said, bubble sort is a good thing to teach and know
and it even has a niche place in the real coding world.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
------------------------------
Date: Thu, 22 Jan 2004 03:44:36 GMT
From: "John W. Kennedy" <jwkenne@attglobal.net>
Subject: Re: Newbie... bubble sort in a more elegant fashion?
Message-Id: <EGHPb.56796$OM2.16057911@news4.srv.hcvlny.cv.net>
Anno Siegel wrote:
> I really don't understand why bubble sort is even studied in CS classes,
Because it's comprehensible to beginners, and, once understood, can be
built on to explain how to do it better.
(Human beings normally sort using algorithms optimized for compare
operations that are ten to thirty times faster than any manipulation,
and in which the equivalent of PERL's "splice" function is less
expensive than a two-item swap, so human experience isn't of much use.)
For the same reason, when I explain external sorts, I start with the
balanced tape sort algorithm, and build up to the sophisticated (and
often proprietary) algorithms used on modern mainframes.
--
John W. Kennedy
"But now is a new thing which is very old--
that the rich make themselves richer and not poorer,
which is the true Gospel, for the poor's sake."
-- Charles Williams. "Judgement at Chelmsford"
------------------------------
Date: Sun, 25 Jan 2004 08:13:00 +0000 (UTC)
From: mjd@plover.com (Mark Jason Dominus)
Subject: Re: Newbie... bubble sort in a more elegant fashion?
Message-Id: <buvtqc$qtj$1@plover.com>
In article <bulqs6$jck$1@mamenchi.zrz.TU-Berlin.DE>,
Anno Siegel <anno4000@lublin.zrz.tu-berlin.de> wrote:
>I really don't understand why bubble sort is even studied in CS classes,
>except as an example how *not* to do it. It isn't even intuitive...
I seem to recall that Knuth makes the same point, perhaps in _The Art
of Computer Programming_ volume III.
Selection sort is easier to understand, simpler to implement, and
faster to run.
It seems to me that a lot of the traditional material of the computer
science curriculum is similarly useless. For example, in a typical
data structures class one spends a lot of time on complicated
self-balancing tree algorithms, which are of little use, and little
time on hashing algorithms, which are much more valuable.
------------------------------
Date: 27 Jan 2004 23:48:19 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude>
Subject: Re: Newbies probleme
Message-Id: <Xns947DBF4D0D986asu1cornelledu@132.236.56.8>
Web Surfer <raisin@delete-this-trash.mts.net> wrote in
news:MPG.1a807b6266b80adc989792@news.mts.net:
> [This followup was posted to comp.lang.perl.misc]
What is the point of this? I am reading this here, am I not?
> opendir(DIR,"$dirname")
Useless use of quotes. See
* What's wrong with always quoting "$vars"?
in perlfaq4.
--
A. Sinan Unur
1usa@llenroc.ude (reverse each component for email address)
------------------------------
Date: Wed, 28 Jan 2004 02:46:35 +0100
From: Tore Aursand <tore@aursand.no>
Subject: Re: Newbies probleme
Message-Id: <pan.2004.01.28.01.46.28.347053@aursand.no>
On Tue, 27 Jan 2004 18:02:35 +0000, Orion93 wrote:
> Actually i try to make a script to compte all lines of all pl files.
What does 'comte' mean? Compute?
> Try to use opendir but i don't understand how to use it!
Documentation:
perldoc -f opendir
Example:
opendir( DIR, '/' ) or die "$!\n";
my @all_files = readdir( DIR );
closedir( DIR );
--
Tore Aursand <tore@aursand.no>
"Scientists are complaining that the new "Dinosaur" movie shows
dinosaurs with lemurs, who didn't evolve for another million years.
They're afraid the movie will give kids a mistaken impression. What
about the fact that the dinosaurs are singing and dancing?" -- Jay
Leno
------------------------------
Date: Tue, 27 Jan 2004 13:43:32 -0600
From: Web Surfer <raisin@delete-this-trash.mts.net>
Subject: Re: Newbies probleme
Message-Id: <MPG.1a807b6266b80adc989792@news.mts.net>
[This followup was posted to comp.lang.perl.misc]
In article <Xns947DC2788B18Aorion93clubinternetf@194.158.104.32>,
orion93@club-internet.fr says...
> Actually i try to make a script to compte all lines of all pl files. Also i
> find how to do it for one file but no for all of them. Try to use opendir
> but i don't understand how to use it!
>
> Please help me!
>
> See my script:
>
> #!/usr/bin/perl
> sub recupPages
> {
> my $nomFic = shift;
> my $result = shift;
>
> # Récupération des lignes du fichier
> open(F,$nomFic);
> open(SORTIE,">> $result");
> $i = 0;
> while(<F>)
> {
>
> $i ++;
> }
> print SORTIE " $nomFic $i\n";
>
> close F;
> close SORTIE;}
>
> my $emplacement = "C:\\stat\\test.pl";
> my $ficResultat = "C:\\result.txt";
> recupPages($emplacement,$ficResultat);
>
> Tks for all!
opendir(DIR,"$dirname") ||
die("opendir failed for $dirname : $!\n");
@entries = readdir DIR;
closedir DIR;
print "The files under $dirname are : ",
join(", ",@entries),"\n";
------------------------------
Date: Tue, 27 Jan 2004 21:18:02 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Newbies probleme
Message-Id: <bv6h53$olaaa$1@ID-184292.news.uni-berlin.de>
Orion93 wrote:
> Actually i try to make a script to compte all lines of all pl
> files. Also i find how to do it for one file but no for all of
> them. Try to use opendir but i don't understand how to use it!
It's easier to just change the last line to:
recupPages($_, $ficResultat) for glob 'C:/stat/*.pl';
See http://www.perldoc.com/perl5.8.0/pod/func/glob.html
> See my script:
>
> #!/usr/bin/perl
use strict;
use warnings;
> sub recupPages
> {
> my $nomFic = shift;
> my $result = shift;
>
> # Récupération des lignes du fichier
> open(F,$nomFic);
> open(SORTIE,">> $result");
> $i = 0;
open F, $nomFic or die "Couldn't open $nomFic\n$!";
open SORTIE, ">> $result" or die "Couldn't open $result\n$!";
my $i = 0;
Hope that helps.
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Wed, 28 Jan 2004 04:17:17 +0100
From: Polleke <rev_1318@hotmail.com>
Subject: Re: Newbies probleme
Message-Id: <pan.2004.01.28.03.17.15.294497@hotmail.com>
On Wed, 28 Jan 2004 02:46:35 +0100, Tore Aursand wrote:
> On Tue, 27 Jan 2004 18:02:35 +0000, Orion93 wrote:
>> Actually i try to make a script to compte all lines of all pl files.
>
> What does 'comte' mean? Compute?
compte (not comte) comes - if memory serves - from the Frech verb
'compter' which means 'to count'. So OP wants to count the numer of lines
each .pl-file containes.
Paul
------------------------------
Date: 28 Jan 2004 07:22:33 GMT
From: Orion93 <orion93@club-internet.fr>
Subject: Re: Newbies probleme
Message-Id: <Xns947E55F60F072orion93clubinternetf@194.158.104.32>
Polleke <rev_1318@hotmail.com> wrote in
news:pan.2004.01.28.03.17.15.294497@hotmail.com:
> On Wed, 28 Jan 2004 02:46:35 +0100, Tore Aursand wrote:
>
>> On Tue, 27 Jan 2004 18:02:35 +0000, Orion93 wrote:
>>> Actually i try to make a script to compte all lines of all pl files.
>>
>> What does 'comte' mean? Compute?
>
> compte (not comte) comes - if memory serves - from the Frech verb
> 'compter' which means 'to count'. So OP wants to count the numer of lines
> each .pl-file containes.
>
> Paul
Exact i'm french! sorry for my bad English!
------------------------------
Date: Wed, 28 Jan 2004 10:10:07 +0100
From: Tore Aursand <tore@aursand.no>
Subject: Re: Newbies probleme
Message-Id: <pan.2004.01.28.08.46.20.880164@aursand.no>
On Wed, 28 Jan 2004 04:17:17 +0100, Polleke wrote:
>>> Actually i try to make a script to compte all lines of all pl files.
>> What does 'comte' mean? Compute?
> compte (not comte) comes - if memory serves - from the Frech verb
> 'compter' which means 'to count'. So OP wants to count the numer of lines
> each .pl-file containes.
Ah. Sorry about my bad French. :-) Something like this (untested) should
do the trick:
#!/usr/bin/perl
#
use strict;
use warnings;
## Where to search?
my $dir = '/perl/scripts';
## Create a list of files ending with '.pl'
opendir( DIR, $dir ) or die "$!\n";
my @files = grep { /\.pl$/ } readdir( DIR );
closedir( DIR );
## Process each file
foreach ( @files ) {
open( PL, "$dir/$_" ) or die "$!\n";
my @lines = <PL>;
close( PL );
print $_ . ' has ' . @lines . "\n";
}
--
Tore Aursand <tore@aursand.no>
"War is too serious a matter to entrust to military men." -- Georges
Clemenceau
------------------------------
Date: Thu, 22 Jan 2004 02:04:34 GMT
From: $_@_.%_
Subject: nix file perms
Message-Id: <ScGPb.4642$kH2.1834@nwrdny01.gnilink.net>
here is the statement
dbmopen(my %HASH, "file", 0640)
now what it is.. id like to use a more secure file permission.
something like 'others cannot read / write / execute'
its my understanding that this '0640' permission nearly does that
with the exception of allowing others in the same group read access.
i would like to continue to use this octal method.
does anyone know what number could be used for this?
------------------------------
Date: 22 Jan 2004 02:35:40 GMT
From: roberson@ibd.nrc-cnrc.gc.ca (Walter Roberson)
Subject: Re: nix file perms
Message-Id: <buncts$3nu$1@canopus.cc.umanitoba.ca>
In article <ScGPb.4642$kH2.1834@nwrdny01.gnilink.net>, <$_@_.%_> wrote:
:dbmopen(my %HASH, "file", 0640)
:now what it is.. id like to use a more secure file permission.
:something like 'others cannot read / write / execute'
:its my understanding that this '0640' permission nearly does that
:with the exception of allowing others in the same group read access.
:i would like to continue to use this octal method.
:does anyone know what number could be used for this?
Sounds like a Unix question, not a perl question.
In any case, you want 0600, which means that the owner is allowed
to read it (4) plus write it (2) [4+2=6] and no-one else can do
anything with it.
--
Aleph sub {Aleph sub null} little, Aleph sub {Aleph sub one} little,
Aleph sub {Aleph sub two} little infinities...
------------------------------
Date: Wed, 21 Jan 2004 21:39:23 -0500
From: Paul Lalli <ittyspam@yahoo.com>
Subject: Re: nix file perms
Message-Id: <20040121213323.Q28498@dishwasher.cs.rpi.edu>
On Thu, 22 Jan 2004 $_@_.%_ wrote:
> here is the statement
>
> dbmopen(my %HASH, "file", 0640)
>
> now what it is.. id like to use a more secure file permission.
> something like 'others cannot read / write / execute'
>
> its my understanding that this '0640' permission nearly does that
> with the exception of allowing others in the same group read access.
>
> i would like to continue to use this octal method.
> does anyone know what number could be used for this?
This is really not Perl-related, but...
The octal number is created by three groups of three permissions. Each
group is one digit. The permissions are read (represented by the digit
in the 4s place), write (the 2s place), and execute (the 1s place). 640
octal therefore corresponds in binary to:
110 100 000
which translates to the permissions
rw- r-- ---
You want to remove the group read permissions:
rw- --- ---
This corresponds to
110 000 000
which becomes 600 octal.
Therefore, your statement should be
dbmopen(my %HASH, "file", 0600);
Paul Lalli
------------------------------
Date: Thu, 22 Jan 2004 18:07:24 GMT
From: $_@_.%_
Subject: Re: nix file perms
Message-Id: <wjUPb.6147$ro4.6033@nwrdny02.gnilink.net>
Walter Wrote....
> Sounds like a Unix question, not a perl question.
> In any case, you want 0600, which means that the owner is allowed
> to read it (4) plus write it (2) [4+2=6] and no-one else can do
> anything with it.
Thank you sir,
This is very much appreciated.
------------------------------
Date: Tue, 27 Jan 2004 19:52:22 +0000
From: Randy Webb <hikksnotathome@aol.com>
Subject: Re: No answer for your problem ?
Message-Id: <3fGdnS5px8CflYrdRVn-hA@comcast.com>
Dan Tripp wrote:
> brad.lewis@usa.com wrote:
>
>> Hi everyone,
>> if you wonna earn some money using your IT-knowledge, have a look at
>> www.infutura.com. Also you can post there very serious IT problems you
>> didnīt get any answers yet. By offering a small fee you might get fast
>> answers there. Good luck
>
>
> If I post there, will I get laid?
Actually, you might. Well, you are gonna get screwed, is that close
enough? :)
--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/
------------------------------
Date: Tue, 27 Jan 2004 21:04:22 -0500
From: "p.r.e.e.t.i" <p.r.e.e.t.i@p.h.p.w.o.r.l.d>
Subject: Re: No answer for your problem ?
Message-Id: <AOERb.2268$CJ1.979@lakeread01>
lol
<brad.lewis@usa.com> wrote in message
news:ee0a7fe3.0401271008.66bf91e@posting.google.com...
| Hi everyone,
| if you wonna earn some money using your IT-knowledge, have a look at
| www.infutura.com.
| Also you can post there very serious IT problems you
| didnīt get any answers yet.
| By offering a small fee you might get fast
| answers there.
| Good luck
------------------------------
Date: Tue, 27 Jan 2004 20:32:18 +0000 (UTC)
From: erewhon@nowhere.com (J French)
Subject: Re: No answer for your problem ?
Message-Id: <4016cbb1.35600145@news.btclick.com>
On 27 Jan 2004 10:08:38 -0800, brad.lewis@usa.com (brad.lewis@usa.com)
wrote:
>Hi everyone,
>if you wonna earn some money using your IT-knowledge, have a look at
>www.infutura.com.
>Also you can post there very serious IT problems you
>didnīt get any answers yet.
>By offering a small fee you might get fast
>answers there.
>Good luck
Get stuffed
------------------------------
Date: Tue, 27 Jan 2004 16:20:22 -0500
From: Robert Wallace <robw@sofw.org>
Subject: Re: No answer for your problem ?
Message-Id: <4016D616.E3780B78@sofw.org>
"brad.lewis@usa.com" wrote:
>
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
will I make a million dollars?
------------------------------
Date: Tue, 27 Jan 2004 21:27:02 +0000
From: Cameron <foo@bar.invalid>
Subject: Re: No answer for your problem ?
Message-Id: <bv6l2s$6ul$2@newsg3.svr.pol.co.uk>
brad.lewis@usa.com wrote:
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
There is one very serious IT problem, it's called SPAM, go away!
~Cameron
------------------------------
Date: Tue, 27 Jan 2004 16:50:23 -0500
From: "Chung Leong" <chernyshevsky@hotmail.com>
Subject: Re: No answer for your problem ?
Message-Id: <OfadnTJoidjfQ4vd4p2dnA@comcast.com>
I've been trying to write a regular expression that checks for SARS. Can you
help me with that?
Uzytkownik <brad.lewis@usa.com> napisal w wiadomosci
news:ee0a7fe3.0401271008.66bf91e@posting.google.com...
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
------------------------------
Date: Tue, 27 Jan 2004 21:59:03 GMT
From: Dan Tripp <thisIsNot@MyEMailAddress.com>
Subject: Re: No answer for your problem ?
Message-Id: <HaBRb.6843$gQ7.3722@newssvr29.news.prodigy.com>
brad.lewis@usa.com wrote:
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
If I post there, will I get laid?
- Dan
http://www.dantripp.com/
------------------------------
Date: Wed, 28 Jan 2004 07:15:40 GMT
From: "CountScubula" <me@scantek.hotmail.com>
Subject: Re: No answer for your problem ?
Message-Id: <wkJRb.16949$ZV7.9553@newssvr27.news.prodigy.com>
<brad.lewis@usa.com> wrote in message
news:ee0a7fe3.0401271008.66bf91e@posting.google.com...
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
I would like to thank everyone for not reamming me like this when I do my
shameless plugs :)
Also, I looked at that site, its all about $20 or so (or what ever the EUR
equiv is)
So if I spend 2 hours on a problem, and spend 1 hour explaining it, I might
make as much as if I said, "want fries with that?"
--
Mike Bradley
http://www.gzentools.com -- free online php tools
------------------------------
Date: Wed, 28 Jan 2004 14:29:36 +0100
From: Erwin Moller <since_humans_read_this_I_am_spammed_too_much@spamyourself.com>
Subject: Re: No answer for your problem ?
Message-Id: <4017b907$0$333$e4fe514c@news.xs4all.nl>
brad.lewis@usa.com wrote:
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnÂīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
I will surely do that.... when this NG is out of answers. :P
------------------------------
Date: Wed, 28 Jan 2004 08:42:45 -0500
From: "Matt Garrish" <matthew.garrish@sympatico.ca>
Subject: Re: No answer for your problem ?
Message-Id: <n%ORb.56802$Kg6.487170@news20.bellglobal.com>
"Chung Leong" <chernyshevsky@hotmail.com> wrote in message
news:OfadnTJoidjfQ4vd4p2dnA@comcast.com...
> I've been trying to write a regular expression that checks for SARS. Can
you
> help me with that?
>
quarantine($person) if $person =~ /SARS/;
Always happy to help... : )
Matt
------------------------------
Date: 28 Jan 2004 06:11:33 -0800
From: genericax@hotmail.com (Sara)
Subject: Re: No answer for your problem ?
Message-Id: <776e0325.0401280611.339e9d40@posting.google.com>
brad.lewis@usa.com (brad.lewis@usa.com) wrote in message news:<ee0a7fe3.0401271008.66bf91e@posting.google.com>...
> Hi everyone,
> if you wonna earn some money using your IT-knowledge, have a look at
> www.infutura.com.
> Also you can post there very serious IT problems you
> didnīt get any answers yet.
> By offering a small fee you might get fast
> answers there.
> Good luck
Wadda wanka..
Listen buddy I'm working on my PHD in CS so I can move to India and
clean up making $16,000 a year. Beat THAT!
------------------------------
Date: Wed, 28 Jan 2004 19:08:16 -0500
From: "Matt Garrish" <matthew.garrish@sympatico.ca>
Subject: Re: No answer for your problem ?
Message-Id: <N9YRb.5216$qU3.391711@news20.bellglobal.com>
"Sara" <genericax@hotmail.com> wrote in message
news:776e0325.0401280611.339e9d40@posting.google.com...
> brad.lewis@usa.com (brad.lewis@usa.com) wrote in message
news:<ee0a7fe3.0401271008.66bf91e@posting.google.com>...
> > Hi everyone,
> > if you wonna earn some money using your IT-knowledge, have a look at
> > www.infutura.com.
> > Also you can post there very serious IT problems you
> > didnīt get any answers yet.
> > By offering a small fee you might get fast
> > answers there.
> > Good luck
>
> Wadda wanka..
>
> Listen buddy I'm working on my PHD in CS so I can move to India and
> clean up making $16,000 a year. Beat THAT!
Really? Last time you were working on two Masters. The only person you're
fooling is yourself
You should worry more about graduating high school and then getting into
university. Your idiotic whining about what you think you'll get paid one
day is pathetic. No one ever gets paid what they're worth. Some get too much
and others too little, but the amount you're quoting sounds like far more
than you're worth...
Matt
------------------------------
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 V10 Issue 6025
***************************************