[31342] in Perl-Users-Digest
Perl-Users Digest, Issue: 2587 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Sep 7 21:09:45 2009
Date: Mon, 7 Sep 2009 18:09:13 -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 Mon, 7 Sep 2009 Volume: 11 Number: 2587
Today's topics:
Re: Cookies [Firefox/IE] <claus.kick@googlemail.com>
Re: Cookies [Firefox/IE] <wassupme@gmail.com>
Re: copy specific lines <nat.k@gm.ml>
Re: copy specific lines sln@netherlands.com
Re: copy specific lines <nat.k@gm.ml>
FAQ 3.20 How can I hide the source for my Perl program? <brian@theperlreview.com>
FAQ 4.2 Why is int() broken? <brian@theperlreview.com>
Re: join lines - perl command <nat.k@gm.ml>
Re: join lines - perl command sln@netherlands.com
Re: Query about viewing web pages. <ben@morrow.me.uk>
Re: Query about viewing web pages. <orion.osiris@virgin.net>
replace words <fred78980@yahoo.com>
Re: replace words <nat.k@gm.ml>
Re: Why does "$v = @ARGV[0]" work ? <nat.k@gm.ml>
Re: Why does "$v = @ARGV[0]" work ? <uri@StemSystems.com>
Re: Why does "$v = @ARGV[0]" work ? <nat.k@gm.ml>
Re: Why does "$v = @ARGV[0]" work ? <uri@StemSystems.com>
Re: Why does "$v = @ARGV[0]" work ? <nat.k@gm.ml>
Re: Why does "$v = @ARGV[0]" work ? <nat.k@gm.ml>
Re: Why does "$v = @ARGV[0]" work ? <uri@StemSystems.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Mon, 7 Sep 2009 08:33:05 -0700 (PDT)
From: "claus.kick@googlemail.com" <claus.kick@googlemail.com>
Subject: Re: Cookies [Firefox/IE]
Message-Id: <60aa7001-5128-43ba-a1a0-73ef2846344c@h13g2000yqk.googlegroups.com>
On 7 Sep., 15:53, greyma...@mail.com wrote:
[...]
>
> You crooked hacker!.. Let us know how you get on!.
>
<innocent>
What is crooked about that?
</innocent>
------------------------------
Date: Mon, 7 Sep 2009 10:02:23 -0700 (PDT)
From: wassup <wassupme@gmail.com>
Subject: Re: Cookies [Firefox/IE]
Message-Id: <a6ff36fb-545b-4be2-9b7b-8162c1be81e3@o41g2000yqb.googlegroups.com>
On Sep 7, 4:33=A0pm, "claus.k...@googlemail.com"
<claus.k...@googlemail.com> wrote:
> On 7 Sep., 15:53, greyma...@mail.com wrote:
>
> [...]
>
>
>
> > You crooked hacker!.. Let us know how you get on!.
>
> <innocent>
> What is crooked about that?
> </innocent>
so, is this correct then?
#!/usr/bin/perl
use strict;
use warnings;
use WWW::Mechanize;
use HTTP::Cookies::Mozilla;
$HTTP::Cookies::Mozilla::SQLITE =3D '/usr/bin/sqlite3';
my $cookiefile =3D "/home/user/.mozilla/firefox/q17733ib.default/
cookies.sqlite";
my $m =3D WWW::Mechanize->new;
$m->cookie_jar($cookiefile);
$m->get("http://www.whateverpage.com/test.php");
etc
etc
...
------------------------------
Date: Mon, 07 Sep 2009 12:24:57 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: copy specific lines
Message-Id: <i6dpm.21268$UH2.8515@newsfe01.iad>
sln@netherlands.com wrote:
> (open my $fh1, ">data1.txt") && (open my $fh2, ">data2.txt")
> or die "couldn't open an output file: $!";
What do you think that'll do, depending on if both fail?
> my $fh = $fh1;
>
> while(<DATA>) {
Your example uses __DATA__ when the user's question (and a good portion
of their problem) specifically mentioned the issue with file
modification. Just an FYI.
------------------------------
Date: Mon, 07 Sep 2009 14:31:44 -0700
From: sln@netherlands.com
Subject: Re: copy specific lines
Message-Id: <1qraa5lf5ca2fanhaol4pjlguogsvua8kr@4ax.com>
On Mon, 07 Sep 2009 12:24:57 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>sln@netherlands.com wrote:
>
>> (open my $fh1, ">data1.txt") && (open my $fh2, ">data2.txt")
>> or die "couldn't open an output file: $!";
>
>What do you think that'll do, depending on if both fail?
>
If either fails, the less tight binding of 'or' reaches die.
Both won't get evaluated unless the first one is true (&&).
Therefore $! will be specific.
1 && 0 or print "1 && 0 failed\n";
0 && 1 or print "0 && 1 failed\n";
1 && 1 or print "1 && 1 failed\n";
0 && 0 or print "0 && 0 failed\n";
print "end\n";
----
1 && 0 failed
0 && 1 failed
0 && 0 failed
end
>> my $fh = $fh1;
>>
>> while(<DATA>) {
>
>Your example uses __DATA__ when the user's question (and a good portion
>of their problem) specifically mentioned the issue with file
>modification. Just an FYI.
Two files with the correct data chunks.
File modification is left as an excercise.
-sln
------------------------------
Date: Mon, 07 Sep 2009 16:29:30 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: copy specific lines
Message-Id: <uHgpm.206119$vp.1237@newsfe12.iad>
sln@netherlands.com wrote:
> On Mon, 07 Sep 2009 12:24:57 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>
>>sln@netherlands.com wrote:
>>
>>> (open my $fh1, ">data1.txt") && (open my $fh2, ">data2.txt")
>>> or die "couldn't open an output file: $!";
>>
>>What do you think that'll do, depending on if both fail?
>>
> If either fails, the less tight binding of 'or' reaches die.
> Both won't get evaluated unless the first one is true (&&).
> Therefore $! will be specific.
That's a weird design. Sure, it works the same way though.
>>
>>Your example uses __DATA__ when the user's question (and a good
>>portion of their problem) specifically mentioned the issue with file
>>modification. Just an FYI.
>
> Two files with the correct data chunks.
> File modification is left as an excercise.
>
But that was his question, you didn't consider that.
------------------------------
Date: Mon, 07 Sep 2009 16:00:02 GMT
From: PerlFAQ Server <brian@theperlreview.com>
Subject: FAQ 3.20 How can I hide the source for my Perl program?
Message-Id: <66apm.142953$sC1.102110@newsfe17.iad>
This is an excerpt from the latest version perlfaq3.pod, which
comes with the standard Perl distribution. These postings aim to
reduce the number of repeated questions as well as allow the community
to review and update the answers. The latest version of the complete
perlfaq is at http://faq.perl.org .
--------------------------------------------------------------------
3.20: How can I hide the source for my Perl program?
Delete it. :-) Seriously, there are a number of (mostly unsatisfactory)
solutions with varying levels of "security".
First of all, however, you *can't* take away read permission, because
the source code has to be readable in order to be compiled and
interpreted. (That doesn't mean that a CGI script's source is readable
by people on the web, though--only by people with access to the
filesystem.) So you have to leave the permissions at the socially
friendly 0755 level.
Some people regard this as a security problem. If your program does
insecure things and relies on people not knowing how to exploit those
insecurities, it is not secure. It is often possible for someone to
determine the insecure things and exploit them without viewing the
source. Security through obscurity, the name for hiding your bugs
instead of fixing them, is little security indeed.
You can try using encryption via source filters (Starting from Perl 5.8
the Filter::Simple and Filter::Util::Call modules are included in the
standard distribution), but any decent programmer will be able to
decrypt it. You can try using the byte code compiler and interpreter
described later in perlfaq3, but the curious might still be able to
de-compile it. You can try using the native-code compiler described
later, but crackers might be able to disassemble it. These pose varying
degrees of difficulty to people wanting to get at your code, but none
can definitively conceal it (true of every language, not just Perl).
It is very easy to recover the source of Perl programs. You simply feed
the program to the perl interpreter and use the modules in the B::
hierarchy. The B::Deparse module should be able to defeat most attempts
to hide source. Again, this is not unique to Perl.
If you're concerned about people profiting from your code, then the
bottom line is that nothing but a restrictive license will give you
legal security. License your software and pepper it with threatening
statements like "This is unpublished proprietary software of XYZ Corp.
Your access to it does not give you permission to use it blah blah
blah." We are not lawyers, of course, so you should see a lawyer if you
want to be sure your license's wording will stand up in court.
--------------------------------------------------------------------
The perlfaq-workers, a group of volunteers, maintain the perlfaq. They
are not necessarily experts in every domain where Perl might show up,
so please include as much information as possible and relevant in any
corrections. The perlfaq-workers also don't have access to every
operating system or platform, so please include relevant details for
corrections to examples that do not work on particular platforms.
Working code is greatly appreciated.
If you'd like to help maintain the perlfaq, see the details in
perlfaq.pod.
------------------------------
Date: Mon, 07 Sep 2009 22:00:03 GMT
From: PerlFAQ Server <brian@theperlreview.com>
Subject: FAQ 4.2 Why is int() broken?
Message-Id: <Dnfpm.155161$cf6.21574@newsfe16.iad>
This is an excerpt from the latest version perlfaq4.pod, which
comes with the standard Perl distribution. These postings aim to
reduce the number of repeated questions as well as allow the community
to review and update the answers. The latest version of the complete
perlfaq is at http://faq.perl.org .
--------------------------------------------------------------------
4.2: Why is int() broken?
Your "int()" is most probably working just fine. It's the numbers that
aren't quite what you think.
First, see the answer to "Why am I getting long decimals (eg,
19.9499999999999) instead of the numbers I should be getting (eg,
19.95)?".
For example, this
print int(0.6/0.2-2), "\n";
will in most computers print 0, not 1, because even such simple numbers
as 0.6 and 0.2 cannot be presented exactly by floating-point numbers.
What you think in the above as 'three' is really more like
2.9999999999999995559.
--------------------------------------------------------------------
The perlfaq-workers, a group of volunteers, maintain the perlfaq. They
are not necessarily experts in every domain where Perl might show up,
so please include as much information as possible and relevant in any
corrections. The perlfaq-workers also don't have access to every
operating system or platform, so please include relevant details for
corrections to examples that do not work on particular platforms.
Working code is greatly appreciated.
If you'd like to help maintain the perlfaq, see the details in
perlfaq.pod.
------------------------------
Date: Mon, 07 Sep 2009 12:26:38 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: join lines - perl command
Message-Id: <O7dpm.21269$UH2.19013@newsfe01.iad>
julia wrote:
> What is the perl command to join lines ? I appreciate your help.
>
> linelineline\newline (line1)
> lineline\newline (line2)
> linelinelineline\newline (line3)
> &
> rowrowrow\newline (line1)
> rowrow\newline(line2)
> row\newline(line3)
> &
> whateverwhatever(line1)
> whateverwhatever(line2)
> whatever(line3)
>
> Result
> linelineline&rowrowrow&whateverwhatever\newline
> lineline&rowrow&whateverwhatever\newline
> linelinelineline&row&whatever\newline
How are you gathering the lines of data, from input on the command, via
a form/web page, or reading from a file, or?
------------------------------
Date: Mon, 07 Sep 2009 12:42:38 -0700
From: sln@netherlands.com
Subject: Re: join lines - perl command
Message-Id: <9eoaa55r2fov09jm0ilsphb6g29v933fk1@4ax.com>
On Mon, 7 Sep 2009 06:52:54 -0700 (PDT), julia <julia_2683@hotmail.com> wrote:
>What is the perl command to join lines ? I appreciate your help.
>
>linelineline\newline (line1)
>lineline\newline (line2)
>linelinelineline\newline (line3)
>&
>rowrowrow\newline (line1)
>rowrow\newline(line2)
>row\newline(line3)
>&
>whateverwhatever(line1)
>whateverwhatever(line2)
>whatever(line3)
>
>Result
>linelineline&rowrowrow&whateverwhatever\newline
>lineline&rowrow&whateverwhatever\newline
>linelinelineline&row&whatever\newline
Indirect adressing will interleave.
-sln
use strict;
use warnings;
my @ar = [];
my $i = 0;
while (<DATA>) {
chomp; next if !length();
if (/^\s*&\s*$/) {
$i = 0; next;
}
push @{$ar[$i]}, @{$ar[$i++]} ? '&'.$_ : $_;
}
for my $ar (@ar) {
print @{$ar},"\n";
}
------------------------------
Date: Mon, 7 Sep 2009 16:16:56 +0100
From: Ben Morrow <ben@morrow.me.uk>
Subject: Re: Query about viewing web pages.
Message-Id: <8okfn6-vvb1.ln1@osiris.mauzo.dyndns.org>
Quoth phaedrus <orion.osiris@virgin.net>:
>
> I have a problem with online newspaper pages that contain long
> paragraphs of nested comments.
>
> Whenever I post a comment, the page reloads with new comments people
> have submitted since I last did a refresh or a post. Now however, as
> well as a bunch of new comments, I still have all the old ones some of
> which i've read and some not. But these are hard to distinguish.Very
> often, I'm half way through an item before I recall I've read it
> before. And of course, the longer and more complex the page becomes,
> the worse the problem.
>
> I need some way of 'graying out' the already-red comments, so the
> unread ones can stand out and I can spot them easily. I don't want the
> pre-existing comments erased completely since some of the new ones may
> refer back to them.
>
> I haven't seen a browser that supports this feature so I'm going to
> have to tackle it by writing a C program but someone on another group
> said I should consider Perl first as it's far more suitable. Any
> suggestions as to the best way to approach this task? Thanks!
I would recommend using the GreaseMonkey Firefox extension.
Ben
------------------------------
Date: Mon, 7 Sep 2009 10:08:06 -0700 (PDT)
From: phaedrus <orion.osiris@virgin.net>
Subject: Re: Query about viewing web pages.
Message-Id: <e926c969-c4a0-498f-b2fa-b36519500469@o9g2000yqj.googlegroups.com>
On Sep 7, 5:16=A0pm, Ben Morrow <b...@morrow.me.uk> wrote:
> I would recommend using the GreaseMonkey Firefox extension.
>
I can't say I've heard about it. A bit of digging reveals it sounds
promising, though. I'll make additional enquiries in a more
appropriate forum.
Many thanks for the steer.
PK.
------------------------------
Date: Mon, 7 Sep 2009 16:51:55 -0700 (PDT)
From: fred <fred78980@yahoo.com>
Subject: replace words
Message-Id: <8bc8a9e3-6261-4638-b571-9e124c57bd82@f33g2000vbm.googlegroups.com>
Thanks sln from @netherlands.com/
xxxx&(ght)(hgf)&&(yyt)
xx9x&(gg)(ff)&&(yyt)
oixxx&(hfd)(jj)&&(yyt)
xxxx&(jj)(kk)&&(yyt)
xjhxxx&(jj)(j)&&(yyt)
xjhxxx&(jj)(j)&&(yyt)
xjhxxx&(jj)(j)&&(yyt)
This command is working. I can change && for foo1 and foo2.
perl -0 -pe 's(&&)(++$n < 2 ? "&foo1&" : "&foo2&")eg' text.txt
Please explain to me why the command is not working for foo3.
perl -0 -pe 's(&&)(++$n < 2 ? "&foo1&" : "&foo2&" : "&foo3&" )eg'
text.txt
Thanks
------------------------------
Date: Mon, 07 Sep 2009 17:42:55 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: replace words
Message-Id: <kMhpm.155582$cf6.48523@newsfe16.iad>
fred wrote:
> Thanks sln from @netherlands.com/
>
> xxxx&(ght)(hgf)&&(yyt)
> xx9x&(gg)(ff)&&(yyt)
> oixxx&(hfd)(jj)&&(yyt)
> xxxx&(jj)(kk)&&(yyt)
> xjhxxx&(jj)(j)&&(yyt)
> xjhxxx&(jj)(j)&&(yyt)
> xjhxxx&(jj)(j)&&(yyt)
>
> This command is working. I can change && for foo1 and foo2.
> perl -0 -pe 's(&&)(++$n < 2 ? "&foo1&" : "&foo2&")eg' text.txt
>
> Please explain to me why the command is not working for foo3.
> perl -0 -pe 's(&&)(++$n < 2 ? "&foo1&" : "&foo2&" : "&foo3&" )eg'
> text.txt
> Thanks
The "condition ? value1 : value2" is an if/else condition. If the
condition is true, it'll place value1 "or else" value2 if it's not met.
If you want it to run another test before knowing if foo2 or foo3 is
going to be placed, you need to add another conditional. Of course,
it's not clear what you want to do in your example above. What do you
want it to accomplish?
------------------------------
Date: Mon, 07 Sep 2009 12:19:34 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <b1dpm.121785$nL7.60867@newsfe18.iad>
rlf wrote:
> I've taken over some perl code that starts out with :
>
> $v = @ARGV[0]
>
> That's an @ sign on ARGV, not a dollar sign.
It's called a slice. [0] is the first element. Not the ideal way to
write it.
------------------------------
Date: Mon, 07 Sep 2009 18:55:43 -0400
From: "Uri Guttman" <uri@StemSystems.com>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <87ab16s6ts.fsf@quad.sysarch.com>
>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
NK> rlf wrote:
>> I've taken over some perl code that starts out with :
>>
>> $v = @ARGV[0]
>>
>> That's an @ sign on ARGV, not a dollar sign.
NK> It's called a slice. [0] is the first element. Not the ideal way to
NK> write it.
how helpful. at least tell him how to do it correctly. oh, you don't
help, you just snark on those who do. and it was already correctly
answered 2 days ago.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.sysarch.com --
----- Perl Code Review , Architecture, Development, Training, Support ------
--------- Gourmet Hot Cocoa Mix ---- http://bestfriendscocoa.com ---------
------------------------------
Date: Mon, 07 Sep 2009 16:33:08 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <VKgpm.206131$vp.144954@newsfe12.iad>
Uri Guttman wrote:
>>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
>
> NK> rlf wrote:
> >> I've taken over some perl code that starts out with :
> >>
> >> $v = @ARGV[0]
> >>
> >> That's an @ sign on ARGV, not a dollar sign.
>
> NK> It's called a slice. [0] is the first element. Not the ideal
> way to NK> write it.
>
> how helpful. at least tell him how to do it correctly.
Good thing you offered your "help" with _your_ "snarky" remark. You are
still a dick, I see.
> oh, you don't
> help, you just snark on those who do.
I did no such thing.
> and it was already correctly
> answered 2 days ago.
So what? I don't have my news reader set the same way you do, and a lot
of people don't, which is why there are usually multiple replies to the
same question. Of course, you "have it out" for me (because I don't
put up with your ego bullshit here), so you'd only try and call me on
the same thing everyone else does (including you). What a weak debater
you are.
> uri
nal cake.
Uri, at least write your own name as a proper noun, if you want to think
you're as smart as you actually aren't. Now, fuck off, troll boy.
------------------------------
Date: Mon, 07 Sep 2009 19:38:20 -0400
From: "Uri Guttman" <uri@StemSystems.com>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <87y6oqqqab.fsf@quad.sysarch.com>
>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
NK> Uri Guttman wrote:
>>>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
>>
NK> rlf wrote:
>> >> I've taken over some perl code that starts out with :
>> >>
>> >> $v = @ARGV[0]
>> >>
>> >> That's an @ sign on ARGV, not a dollar sign.
>>
NK> It's called a slice. [0] is the first element. Not the ideal
>> way to NK> write it.
>>
>> how helpful. at least tell him how to do it correctly.
NK> Good thing you offered your "help" with _your_ "snarky" remark. You are
NK> still a dick, I see.
nope, i saw the correct answers and didn't need to add more. you added a
useless answer. and you still can't refrain from vulgarity. your momma
didn't raise you too well.
>> and it was already correctly
>> answered 2 days ago.
NK> So what? I don't have my news reader set the same way you do, and a lot
NK> of people don't, which is why there are usually multiple replies to the
NK> same question. Of course, you "have it out" for me (because I don't
NK> put up with your ego bullshit here), so you'd only try and call me on
NK> the same thing everyone else does (including you). What a weak debater
NK> you are.
2 days is long even on usenet time. but you don't care about helping as
we have seen. snark away!
>> uri
NK> nal cake.
how high school of you. now grow up and graduate kindergarten already.
NK> Uri, at least write your own name as a proper noun, if you want to think
NK> you're as smart as you actually aren't. Now, fuck off, troll boy.
you don't even know what my name means, its origins or history. snarky
snark snark.
as for brains, your low educational tone and repeated use of the same
kiddie insults settles the matter in your case. the best punishment for
you is being you.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.sysarch.com --
----- Perl Code Review , Architecture, Development, Training, Support ------
--------- Gourmet Hot Cocoa Mix ---- http://bestfriendscocoa.com ---------
------------------------------
Date: Mon, 07 Sep 2009 17:52:08 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <ZUhpm.172824$0e4.170278@newsfe19.iad>
Uri Guttman wrote:
>>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
>
> NK> Uri Guttman wrote:
> >>>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
> >>
> NK> rlf wrote:
> >> >> I've taken over some perl code that starts out with :
> >> >>
> >> >> $v = @ARGV[0]
> >> >>
> >> >> That's an @ sign on ARGV, not a dollar sign.
> >>
> NK> It's called a slice. [0] is the first element. Not the ideal
> >> way to NK> write it.
> >>
> >> how helpful. at least tell him how to do it correctly.
>
> NK> Good thing you offered your "help" with _your_ "snarky" remark.
> You are NK> still a dick, I see.
>
> nope, i saw the correct answers and didn't need to add more.
Perhaps in this case you did so, but in a lot of threads you do not.
Like I said, I don't have the posts show the same way you do, and so
what? Why don't you give grief to everyone else that also reply to all
of the threads here daily, even after other people do? Why? Because
you're just flipped out that I didn't put up with your ego bullshit in
another thread a while ago. You're just an arrogant worm and you need
to get over it.
> you added
> a useless answer.
It wasn't useless. You are useless. Do you think your arrogant attacks
on people are helpful? Or more helpful than a redundant answer? You
actually probably do think your arrogant, pointless and unhelpful and
uncivil interactions are more purposeful. Sad.
> and you still can't refrain from vulgarity.
Not when you're acting like a worthless prick. Treat people with
civility and you'll find you get a different reaction.
> your
> momma didn't raise you too well.
And apparently yours did a great job with how arrogant and bullyish you
try and be?
> >> and it was already correctly
> >> answered 2 days ago.
>
> NK> So what? I don't have my news reader set the same way you do,
> and a lot NK> of people don't, which is why there are usually
> multiple replies to the
> NK> same question. Of course, you "have it out" for me (because I
> don't NK> put up with your ego bullshit here), so you'd only try and
> call me on
> NK> the same thing everyone else does (including you). What a weak
> debater NK> you are.
>
> 2 days is long even on usenet time.
Irrelevant.
> but you don't care about helping
> as we have seen. snark away!
I can say the same about you. You are more interested in attacking
people with your snarky arrogance. Grow up.
> >> uri
> NK> nal cake.
>
> how high school of you.
Well, that's pretty much about the value I place on you, to be honest.
> now grow up and graduate kindergarten already.
Yeah, because _you_ are acting real mature yourself there, buddy.
Sadly, you really think you don't have to follow your own advice.
You've got serious emotional problems to think your own rules don't
apply to you and that you can try and bully people on "usenet" of all
places. What a fucking coward and a clown you are.
> NK> Uri, at least write your own name as a proper noun, if you want
> to think
> NK> you're as smart as you actually aren't. Now, fuck off, troll
> boy.
>
> you don't even know what my name means, its origins or history. snarky
> snark snark.
I actually do (and really, what difference would it make if I didn't?),
and it's a proper noun, so what I said still applies. Honestly, you
think you aren't snarky? You're acting like a complete bitch on this
group all of the time.
> as for brains, your low educational tone and repeated use of the same
> kiddie insults settles the matter in your case.
Yes, I know you think that whatever you "proclaim" about people you
personally decided to have a problem with, somehow makes it a "fact" to
your arrogant mind. This is not surprising. You are irrelevant and
stupid.
> the best punishment
> for you is being you.
Funny, I was just thinking the same thing about you. Now, if only you
could practice what you preach, you'd maybe not come off looking like a
completely arrogant asshole without any class. And be honest, before I
ever referred to you in the accurately portrayed vulgar term(s), you
were already pulling and saying this same bullshit anyway. You can't
be friendly, because you're that much of a prick. You're just going to
have to deal with the fact that you can't "push" me around on usenet,
and how cowardly are you anyway? Go back to your bubble, you fucking
fruitcake.
> uri
nal cake.
------------------------------
Date: Mon, 07 Sep 2009 17:55:30 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <7Yhpm.172933$0e4.48915@newsfe19.iad>
Uri Guttman wrote:
>
> uri
PS: Congrats on making yet another thread all about you, Uri. What a
trooper you are!
------------------------------
Date: Mon, 07 Sep 2009 21:07:32 -0400
From: "Uri Guttman" <uri@StemSystems.com>
Subject: Re: Why does "$v = @ARGV[0]" work ?
Message-Id: <87eiqiqm5n.fsf@quad.sysarch.com>
>>>>> "NK" == Nathan Keel <nat.k@gm.ml> writes:
NK> Uri Guttman wrote:
>>
>> uri
NK> PS: Congrats on making yet another thread all about you, Uri. What a
NK> trooper you are!
pot meet kettle. you started it! nyah nyah nyah!! so's your old man!
your momma codes in python!! your sister is a lisper!!
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.sysarch.com --
----- Perl Code Review , Architecture, Development, Training, Support ------
--------- Gourmet Hot Cocoa Mix ---- http://bestfriendscocoa.com ---------
------------------------------
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 2587
***************************************