[23438] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 5653 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Oct 13 21:05:47 2003

Date: Mon, 13 Oct 2003 18:05:10 -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, 13 Oct 2003     Volume: 10 Number: 5653

Today's topics:
    Re: Advise on drawing charts in Perl <mgjv@tradingpost.com.au>
        App getting bigger and bigger <nobody@nowhere.com>
    Re: CGI.pm File Upload doesn't work (blocks) on my Serv <bjoern_p1@gmx.net>
    Re: CGI.pm File Upload doesn't work (blocks) on my Serv <flavell@ph.gla.ac.uk>
    Re: chmod files on ISP's server <kalinaubears@iinet.net.au>
    Re: Counting device reboots <krahnj@acm.org>
    Re: Extracting specific info from a string <nobody@nowhere.com>
    Re: Extracting specific info from a string (Tad McClellan)
        GD PIE 3D: Alter Projection Angle (Chad Thomson)
    Re: Help: Install DBI-Oracle on cygwin with Perl 5.8.0 <slaven@rezic.de>
        help: need suggestion on an IDE for learning perl... <orbii@hotmail.com>
    Re: help: need suggestion on an IDE for learning perl.. <usenet@dwall.fastmail.fm>
    Re: help: need suggestion on an IDE for learning perl.. <orbii@hotmail.com>
        Isogest 3.1.1 New release <l.ortolani@ecosystemspa.com>
    Re: Named Pipe Permissions Question <grazz@pobox.com>
    Re: Named Pipe Permissions Question <mooseshoes@gmx.net>
    Re: Named Pipe Permissions Question <tony_curtis32@_SPAMTRAP_yahoo.com>
    Re: Named Pipe Permissions Question <mooseshoes@gmx.net>
    Re: Named Pipe Permissions Question (Tad McClellan)
    Re: Named Pipe Permissions Question <mooseshoes@gmx.net>
    Re: Named Pipe Permissions Question <kkeller-usenet@wombat.san-francisco.ca.us>
    Re: Named Pipe Permissions Question (Tad McClellan)
        perl 5.8.1, Mac OS, and locales (Jim Anderson)
    Re: perl 5.8.1, Mac OS, and locales (Jon Bell)
    Re: perl 5.8.1, Mac OS, and locales <lusol@cube0.CC.Lehigh.EDU>
    Re: Reply every combination of letters <tom@nosleep.net>
    Re: Reply every combination of letters <jorge.b@rrios.com>
    Re: Reply every combination of letters (Tad McClellan)
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

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

Date: 13 Oct 2003 22:50:10 GMT
From: Martien Verbruggen <mgjv@tradingpost.com.au>
Subject: Re: Advise on drawing charts in Perl
Message-Id: <slrnbomb13.fma.mgjv@verbruggen.comdyn.com.au>

On 13 Oct 2003 00:34:38 -0700,
	Ahmad <eng_ak@link.net> wrote:
> Hi all,
> 
>   Can anyone advise me whether to use the Chart module or GD::Graph,
> to draw graphs in perl??

Use the one that best matches your requirements. You're not limited to
those two, BTW.

Martien
-- 
                        | 
Martien Verbruggen      | I took an IQ test and the results were
Trading Post Australia  | negative.
                        | 


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

Date: Mon, 13 Oct 2003 15:23:09 -0400
From: "Yannick Turgeon" <nobody@nowhere.com>
Subject: App getting bigger and bigger
Message-Id: <pan.2003.10.13.19.23.09.447821@nowhere.com>

Hello all,

I just make a program in perl. My first one in fact. Which use some WWW
packages to start a http session, log to a site, download some pages and treat
these data.

The problem I have now it's that while executing, my program is taking
more and more memory. What should I look for to solve this? Perl has a
garbagge collector so I did not worry freing anything. Should I?

The program is a endless loop (while(1)...). At each iteration it creates
objects inside the only function called:

Create my objects Obj
while(1){
    Obj->CallMyFunction();
    sleep(60);
}

I supposed every object and variable created inside CallMyFunction() were
freed from memory after quiting the function. Inside this function, I
create another type of object which has "Obj" has member variable. Could it
cause a problem. I do not store anything in Obj at each iteration. It has
its initial variables and they don't change.

Hope it's clear and thanks for your help.

Yannick


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

Date: Mon, 13 Oct 2003 20:52:34 +0200
From: Bjoern <bjoern_p1@gmx.net>
Subject: Re: CGI.pm File Upload doesn't work (blocks) on my Server (but works on my Desktop)
Message-Id: <bmes61$lapjm$1@ID-142197.news.uni-berlin.de>

mike wrote:

> "Bjoern" <bjoern_p1@gmx.net> wrote in message
> news:bmcjs3$l8nhd$1@ID-142197.news.uni-berlin.de...
> 
>>Hello,
>>
>>my script handles file uploads (using CGI.pm) fine
> 
> How?  Posting code would be a good start.

OK, made a short version now, and it seems as if CGI.pm is not at fault. 
I don't think the script is even ever called, as even if I point the 
upload form to a non-existant script, it still blocks forever.

So you'll probably tell me to go away. But for what it's worth, here the 
  test page and code:

---------- page -----------------

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/transitional.dtd">
<html> <head>
<link rel="stylesheet" type="text/css" href="../../arcus.css">
<title>Arcus Investment</title>
</head>
<body>
<form name="upload" action="cgi-bin/uploadTest.pl" method="post" 
enctype="multipart/form-data">
test:
<input type=file size="40" name="test">
<input type="submit" value="submit">
</form>
</body>
</html>


----------- Script -----------

#!/usr/bin/perl

use CGI;                             # load CGI routines
$q = new CGI;

print $q->header(-type  =>  'text/html');

my $test = $q->upload('test');

while(<$test>){
     print;
}

print "perl cgi test ok";



-- 


Let's not weep for their evil deeds,
but for their lack of imagination
(Nick Cave)



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

Date: Mon, 13 Oct 2003 20:28:09 +0100
From: "Alan J. Flavell" <flavell@ph.gla.ac.uk>
Subject: Re: CGI.pm File Upload doesn't work (blocks) on my Server (but works on my Desktop)
Message-Id: <Pine.LNX.4.53.0310132011350.20945@ppepc56.ph.gla.ac.uk>

On Mon, 13 Oct 2003, Bjoern wrote:

> OK, made a short version now, and it seems as if CGI.pm is not at fault.
> I don't think the script is even ever called, as even if I point the
> upload form to a non-existant script, it still blocks forever.
>
> So you'll probably tell me to go away.

If you think that you don't primarily have a Perl language problem
here, you're probably right.  If you think that you'd get a better
answer to your HTML authoring and/or web server configuration problems
on a more appropriate group, you'd probably be right.  If you think
that we don't care whether you succeed or not, you're probably wrong.
We _do_ like to see folks getting good results, but we're happier when
we see them going about it in the right way.

[snip]

> <form name="upload" action="cgi-bin/uploadTest.pl" method="post"
> enctype="multipart/form-data">

Looks promising, but are you sure what absolute URL that relative
URLpath "cgi-bin/uploadTest.pl" is going to resolve to?

> ----------- Script -----------
>
> #!/usr/bin/perl

Guess who isn't paying proper attention to this group's posting
guidelines?  The regulars hate that.  It's demeaning for a human being
to be asked to do the job of a machine.

I don't see anything obvious that leaps out at me.

What you've omitted to tell us is what you observed when you tried it.

Take a look at those guidelines - use strict and warnings - in this
context I'd also recommend making use of CGI::Carp to get any
diagnostics back to the browser while testing (take it out again
before opening the web site to the public - no need to expose internal
details to hackers...)

good luck


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

Date: Tue, 14 Oct 2003 08:26:46 +1000
From: Sisyphus <kalinaubears@iinet.net.au>
Subject: Re: chmod files on ISP's server
Message-Id: <3f8b275b$0$23613$5a62ac22@freenews.iinet.net.au>

Matthias Weckman wrote:

> 
> The Net::FTP module offers support for this through the 'site' method:
> try
>     $ftp->site( 'chmod 755 ' . $filename);
> 

I can (now) see no reason that wouldn't work either.

> 
> I don't think web browsers offer this possibility. Have you considered 
> using an ftp client to access an ftp server?
> 

Not really .... I've used CuteFTP in the past ... using perl would suit 
my purposes so much better .... once I come to grips with what's going 
on :-)

Thanks Matthias.

Cheers,
Rob

-- 
To reply by email u have to take out the u in kalinaubears.



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

Date: Mon, 13 Oct 2003 21:48:09 GMT
From: "John W. Krahn" <krahnj@acm.org>
Subject: Re: Counting device reboots
Message-Id: <3F8B1D83.A1800728@acm.org>

Mista_Blista wrote:
> 
> I know this must be amazingly easy but I am a perl amateur. I want to use
> perl to analyze the log file info shown below, and count the number of times
> each IP address appears. I also want it to show me the range of dates and
> times of the first and last time the IP address appears in the log file.
> 
> Oct 6 17:15:38 172.16.21.101
> 
> [snip]
> 
> Oct 6 18:09:04 172.16.21.104
> 
> The output would be similar to this below
> 
> Date Range                   Device                        # of Reboots
> Oct.2 - Oct. 6               172.16.21.104            10

Here is one way to do it:

#!/usr/bin/perl
use warnings;
use strict;

use Socket;

my %mons = qw/ Jan 0 Feb 1 Mar 2 Apr 3 May 4 Jun 5 Jul 6 Aug 7 Sep 8 Oct 9 Nov 10 Dec 11 /;
my @mons = qw/ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec /;
my $mon  = qr/@{[ join '|', @mons ]}/;

my %data;
while ( <> ) {
    next unless /^($mon) \s+ (\d+) \s+ \d+:\d+:\d+ \s+ (\d+\.\d+\.\d+\.\d+)/x;

    my $date = sprintf '%02d%02d', $mons{ $1 }, $2;
    my $ip = inet_aton $3;

    $data{ $ip }{ count }++;

    $data{ $ip }{ max } = $date if not exists $data{ $ip }{ max } or $data{ $ip }{ max } lt $date;
    $data{ $ip }{ min } = $date if not exists $data{ $ip }{ min } or $data{ $ip }{ min } gt $date;
    }

printf "%-20s %-20s %s\n", 'Date Range', 'Device', '# of Reboots';

for my $ip ( sort keys %data ) {

    my $range = sprintf '%s %d - %s %d',
        $mons[ substr $data{ $ip }{ min }, 0, 2 ],
        substr( $data{ $ip }{ min }, 2 ),
        $mons[ substr $data{ $ip }{ max }, 0, 2 ],
        substr( $data{ $ip }{ max }, 2 );

    printf "%-20s %-20s %s\n", $range, inet_ntoa( $ip ), $data{ $ip }{ count };
    }

__END__



John
-- 
use Perl;
program
fulfillment


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

Date: Mon, 13 Oct 2003 14:47:23 -0400
From: "Yannick Turgeon" <nobody@nowhere.com>
Subject: Re: Extracting specific info from a string
Message-Id: <pan.2003.10.13.18.47.14.751509@nowhere.com>


Ted

My limited english does not allow me to know what you mean by "to be
widely killfiled"... and to chose a different one that is not if I'd like! 

Thanks for the precision on the "s" option. It's clear now.

Yannick

> Yannick Turgeon <nobody@nowhere.com> wrote:
>                         ^^^^^^^^^^^
> 
> I suggest using some other form of munging.
> 
> That particular one is likely to be widely killfiled...
> 
>> One more thing. I use the "s" option but I don't undestand it quite well.
> 
> The "s" option makes dot match a newline.


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

Date: Mon, 13 Oct 2003 16:06:56 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Extracting specific info from a string
Message-Id: <slrnbom4vg.1sp.tadmc@magna.augustmail.com>


[ time-reversed text reversed back to actual time order ]

Yannick Turgeon <nobody@nowhere.com> wrote:

[ attribution (to me) missing here somewhere ]

>> Yannick Turgeon <nobody@nowhere.com> wrote:
>>                         ^^^^^^^^^^^
>> 
>> I suggest using some other form of munging.
>> 
>> That particular one is likely to be widely killfiled...


> My limited english does not allow me to know what you mean by "to be
> widely killfiled"... and to chose a different one that is not if I'd like! 


When you assume an alias, you get whatever reputation goes with it.

Addresses at nowhere.com have posted here before (try looking some
up at groups.google.com) and I, at least, have that whole domain 
scored down a bunch.


( killfiled is when someone instructs their newsreader to delete
  _automatically_ some articles so that the human user never even
  sees them.

  a score file assigns "scores" based on rules, then deletes
  articles over some threshhold score set by the user.

  in other words: many experienced people will not see articles
  that have "nowhere.com" in their address, so you'll get less
  answers to your questions if you use it.
)


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

Date: 13 Oct 2003 14:24:23 -0700
From: chad_thomson18@hotmail.com (Chad Thomson)
Subject: GD PIE 3D: Alter Projection Angle
Message-Id: <ebe52c7.0310131324.4b00d395@posting.google.com>

Hey,

I'm using Perl 5.8.0 with modules: GD 1.41 (?), and pie3d 0.63.

I've been fairly successful at getting all the functionality to work
for most of the different types of graphs.

My current problem is: with pie3d I need to change the "attitude" of
the pie chart.  I'd like to be able to have it almost stand straight
up, or have it lay down (get me? I want to rotate the graphic on it's
axis). I've seen PHP examples of this, and tried to dig in and figure
out how to get Perl to do it.

Any suggestions?

Chad.


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

Date: 13 Oct 2003 21:04:35 +0200
From: Slaven Rezic <slaven@rezic.de>
Subject: Re: Help: Install DBI-Oracle on cygwin with Perl 5.8.0
Message-Id: <874qydj6ws.fsf@vran.herceg.de>

James Willmore <jwillmore@remove.adelphia.net> writes:

> On Mon, 13 Oct 2003 07:15:00 -0400
> "James Hull" <jameshull@comcast.net> wrote:
> 
> > I am new in the Perl world. So far I have installed cygwin and Perl
> > 5.8.0 along with Perl DBI and DBD::Oracle modules. NowI am trying to
> > install Perl Tk on my PC (Windows 2K). I have tried both Tk804.025
> > and Tk804.025_beta2. However, both versions failed with following
> > errors. It appeared that the command "perl Makefile.PL" ran
> > successfully, but the "make" command failed. I also ran "perl -Mblib
> > demos/widget". It was complaining it "Can't locate Tk/Event.pm in
> > @INC" (See following enclosed error message).
> > 
> > BTW, what is "@INC"?
> > 
> <snip>
> 
> If you're trying to compile Tk and getting errors, you may want to try
> version 804.024.  Version 804.25 is still beta.

No. The current stable version is 800.025.

>  If you continue to
> have issues, you may far better posting to comp.lang.perl.tk - you
> posted to evry other newsgroup but the one where you may find an
> answer :-)
> 
> And change your subject line - the one you have is very mis-leading. 
> Your question relates to Tk, not DBD::Oracle.  At least, that's what I
> got out of your post.
> 
> The answer to your @INC question can be found by typing the command:
> perldoc perlvar
> 

Regards,
	Slaven

-- 
Slaven Rezic - slaven@rezic.de

    tknotes - A knotes clone, written in Perl/Tk.
    http://ptktools.sourceforge.net/#tknotes


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

Date: Mon, 13 Oct 2003 22:34:07 GMT
From: <orbii@hotmail.com>
Subject: help: need suggestion on an IDE for learning perl...
Message-Id: <zLFib.10897$ZH4.10793@twister.socal.rr.com>

thanks in advance...

i currently have vs.net & codewarrior, i'm a student learning programming,
and just picked up perl cd bookshelf.  and having a color syntax ide helps a
lot.  i can't afford buying komodo anymore after spending it on vs.net.
plus komodo crashes lots when i do search/replace.  for those who uses their
common ide to code perl/tk with, please be generous and point me a direction
on which ide you're using and how to add extension to that ide for a proper
color syntax of perl? or is that even possible?

thx a ton,
orbii




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

Date: Mon, 13 Oct 2003 22:38:28 GMT
From: "David K. Wall" <usenet@dwall.fastmail.fm>
Subject: Re: help: need suggestion on an IDE for learning perl...
Message-Id: <Xns9413BD9FA9694dkwwashere@63.240.76.16>

<orbii@hotmail.com> wrote:

> i currently have vs.net & codewarrior, i'm a student learning
> programming, and just picked up perl cd bookshelf.  and having a color
> syntax ide helps a lot.  i can't afford buying komodo anymore after
> spending it on vs.net. plus komodo crashes lots when i do
> search/replace.  for those who uses their common ide to code perl/tk
> with, please be generous and point me a direction on which ide you're
> using and how to add extension to that ide for a proper color syntax of
> perl? or is that even possible? 

This is a FAQ:

perldoc -q editor

There are lots of editors that do syntax highlighting for Perl.  Pick one you 
like and use it.



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

Date: Mon, 13 Oct 2003 22:43:10 GMT
From: <orbii@hotmail.com>
Subject: Re: help: need suggestion on an IDE for learning perl...
Message-Id: <2UFib.10901$ZH4.2325@twister.socal.rr.com>

woah, it is a big list, THX MATE!!!!

"David K. Wall" <usenet@dwall.fastmail.fm> wrote in message
news:Xns9413BD9FA9694dkwwashere@63.240.76.16...
> <orbii@hotmail.com> wrote:
>
> > i currently have vs.net & codewarrior, i'm a student learning
> > programming, and just picked up perl cd bookshelf.  and having a color
> > syntax ide helps a lot.  i can't afford buying komodo anymore after
> > spending it on vs.net. plus komodo crashes lots when i do
> > search/replace.  for those who uses their common ide to code perl/tk
> > with, please be generous and point me a direction on which ide you're
> > using and how to add extension to that ide for a proper color syntax of
> > perl? or is that even possible?
>
> This is a FAQ:
>
> perldoc -q editor
>
> There are lots of editors that do syntax highlighting for Perl.  Pick one
you
> like and use it.
>




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

Date: Tue, 14 Oct 2003 00:46:42 +0200
From: Dante Ortolani <l.ortolani@ecosystemspa.com>
Subject: Isogest 3.1.1 New release
Message-Id: <bmfa0m$ggv$3@lacerta.tiscalinet.it>

Hi,
You can try on-line my web-based groupware suite written in perl absolutely
freeware.
Send me feed-back!
LucaS

http://isogest.sourceforge.net


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

Date: Mon, 13 Oct 2003 19:42:50 GMT
From: Steve Grazzini <grazz@pobox.com>
Subject: Re: Named Pipe Permissions Question
Message-Id: <_eDib.6692$fv4.134@nwrdny02.gnilink.net>

mooseshoes <mooseshoes@gmx.net> wrote:
> It appears to be a pure permissions issue,

Indeed it is!  Unfortunately, this means that it's not a Perl
issue, and that the Perl newsgroups are the wrong place to ask
for help in dealing with it.  Try the links suggested in this
FAQ:

  $ perldoc -q 500

-- 
Steve


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

Date: Mon, 13 Oct 2003 20:09:05 GMT
From: mooseshoes <mooseshoes@gmx.net>
Subject: Re: Named Pipe Permissions Question
Message-Id: <BDDib.801$wT.462@newssvr27.news.prodigy.com>


Problem resoloved.

It wasn't a permissions problem but rather "mknod" needed to be
"/bin/mknod".

And Mr. Grazzini, if you don't have the answer to a question, your best
contribution would be silence.

Moose


-----
Look for decreasing temperatures this winter with the likelihood of warmer
weather in the spring.


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

Date: Mon, 13 Oct 2003 15:28:44 -0500
From: Tony Curtis <tony_curtis32@_SPAMTRAP_yahoo.com>
Subject: Re: Named Pipe Permissions Question
Message-Id: <87k778vq4j.fsf@limey.hpcc.uh.edu>

>> On Mon, 13 Oct 2003 20:09:05 GMT,
>> mooseshoes <mooseshoes@gmx.net> said:

> Problem resoloved.

> It wasn't a permissions problem but rather "mknod"
> needed to be "/bin/mknod".

In that case, the CGI setup must really be stripping the
environment hard.

Why shell out?  Use perl's built-in mknod.

> And Mr. Grazzini, if you don't have the answer to a
> question, your best contribution would be silence.

So it wasn't a perl problem at all then.  Steve G. was
correct in that assessment.

t


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

Date: Mon, 13 Oct 2003 20:36:14 GMT
From: mooseshoes <mooseshoes@gmx.net>
Subject: Re: Named Pipe Permissions Question
Message-Id: <21Eib.9918$Qk4.9024@newssvr29.news.prodigy.com>

<snip>
 
> Why shell out?  Use perl's built-in mknod.

<<< A good thought.  I'll give it a try.
 
<snip>

> So it wasn't a perl problem at all then.  Steve G. was
> correct in that assessment.


<<< Due to the fact the code is a Perl script, it, by definition, includes
the possibility that the trouble was Perl-related, via syntax error, or
otherwise.  The OP (me) couldn't be sure.  Therefore, Steve G. was correct
only due to the fact that in the end the problem was not Perl-related, but
incorrect for not believing the post was relevant in this forum.

Thanks, t.

Moose

 
-----
Look for decreasing temperatures this winter with the likelihood of warmer
weather in the spring.


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

Date: Mon, 13 Oct 2003 16:15:18 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Named Pipe Permissions Question
Message-Id: <slrnbom5f6.1v1.tadmc@magna.augustmail.com>

mooseshoes <mooseshoes@gmx.net> wrote:

> And Mr. Grazzini, if you don't have the answer to a question, your best
> contribution would be silence.


You'll get a lot of that now.

*plonk*


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

Date: Mon, 13 Oct 2003 22:25:42 GMT
From: mooseshoes <mooseshoes@gmx.net>
Subject: Re: Named Pipe Permissions Question
Message-Id: <GDFib.826$IG1.106@newssvr27.news.prodigy.com>

<snip>

> *plonk*

<<< Quesque c'est "plonk?"



-----
Look for decreasing temperatures this winter with the likelihood of warmer
weather in the spring.


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

Date: Mon, 13 Oct 2003 15:54:55 -0700
From: Keith Keller <kkeller-usenet@wombat.san-francisco.ca.us>
Subject: Re: Named Pipe Permissions Question
Message-Id: <vfafmb.tde.ln@goaway.wombat.san-francisco.ca.us>

-----BEGIN xxx SIGNED MESSAGE-----
Hash: SHA1
NotDashEscaped: You need GnuPG to verify this message

On 2003-10-13, mooseshoes <mooseshoes@gmx.net> wrote:
>
><<< Quesque c'est "plonk?"

It's the noise someone's newsreader makes when it's set to ignore posts
by selected authors, such as those who ask what a plonk is without doing
some basic research.

--keith

-- 
kkeller-usenet@wombat.san-francisco.ca.us
(try just my userid to email me)
AOLSFAQ=http://wombat.san-francisco.ca.us/cgi-bin/fom

-----BEGIN xxx SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj+LLT0ACgkQhVcNCxZ5ID/lRwCgnQ+hWLywd4TbSsV2PeJ9Raxq
12IAoJ0H5xMTJAmYZFFXSn05vHV/ANIR
=wFfK
-----END PGP SIGNATURE-----


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

Date: Mon, 13 Oct 2003 19:15:40 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Named Pipe Permissions Question
Message-Id: <slrnbomg1c.27l.tadmc@magna.augustmail.com>

mooseshoes <mooseshoes@gmx.net> wrote:


>> *plonk*
> 
><<< Quesque c'est "plonk?"


Since you presume to instruct regular posters on how to behave
on Usenet, I assumed that you had some experience with Usenet.

But I must have been mistaken, since you don't know that
common term, nor how to go lookup common terms.

You've now confirmed my decision.  :-(


   http://catb.org/esr/jargon/html/P/plonk.html


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

Date: 13 Oct 2003 11:27:10 -0700
From: james.h.anderson@ssmb.com (Jim Anderson)
Subject: perl 5.8.1, Mac OS, and locales
Message-Id: <2cfb060a.0310131027.7823b9e7@posting.google.com>

I don't know if this is a perl issue or a Mac OS issue. I just
installed perl5.8.1 and I getting the following error msgs each time I
run any perl script:

perl: warning: Setting locale failed.
perl: warning: Please check that your locale setting:
         LC_ALL = (unset),
         LANG = "en_US"
     are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

I ran perl -V:d_setlocale and, in addition to the above warnings, got
d_setlocale='define';

The system locale info is in /usr/share/locale.

Any idea what's going on?


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

Date: Mon, 13 Oct 2003 22:10:10 +0000 (UTC)
From: jtbellq2f@presby.edu (Jon Bell)
Subject: Re: perl 5.8.1, Mac OS, and locales
Message-Id: <bmf7s2$75t$1@jtbell.presby.edu>

In article <2cfb060a.0310131027.7823b9e7@posting.google.com>,
Jim Anderson <james.h.anderson@ssmb.com> wrote:
>I don't know if this is a perl issue or a Mac OS issue. I just
>installed perl5.8.1 and I getting the following error msgs each time I
>run any perl script:
>
>perl: warning: Setting locale failed.
>perl: warning: Please check that your locale setting:
>         LC_ALL = (unset),
>         LANG = "en_US"
>     are supported and installed on your system.
>perl: warning: Falling back to the standard locale ("C").

It's a Mac OS X issue.  See

<http://developer.apple.com/internet/macosx/perl.html>.

-- 
Jon Bell <jtbellap8@presby.edu>                     Presbyterian College
Dept. of Physics and Computer Science        Clinton, South Carolina USA


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

Date: 13 Oct 2003 22:24:11 GMT
From: Steve Lidie <lusol@cube0.CC.Lehigh.EDU>
Subject: Re: perl 5.8.1, Mac OS, and locales
Message-Id: <bmf8mb$hl0@fidoii.CC.Lehigh.EDU>

Jim Anderson <james.h.anderson@ssmb.com> wrote:
> I don't know if this is a perl issue or a Mac OS issue. I just
> installed perl5.8.1 and I getting the following error msgs each time I
> run any perl script:
> 
> perl: warning: Setting locale failed.
> perl: warning: Please check that your locale setting:
>         LC_ALL = (unset),
>         LANG = "en_US"
>     are supported and installed on your system.
> perl: warning: Falling back to the standard locale ("C").
> 
> I ran perl -V:d_setlocale and, in addition to the above warnings, got
> d_setlocale='define';
> 
> The system locale info is in /usr/share/locale.
> 
> Any idea what's going on?

No ;), but a fix ia to unset the environment variable LANG.  For
bash/sh and the likes:

EXPORT LANG=



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

Date: Sat, 11 Oct 2003 17:18:20 -0700
From: "Tom" <tom@nosleep.net>
Subject: Re: Reply every combination of letters
Message-Id: <3f889d0f$1@nntp0.pdx.net>

> >I'm not looking for someone to do this for me, I'm looking for advice
> >on how do I go about trying every possible combination of letters. It
> >sounds pretty easy on the surface but as I think about it more it
> >seems to get messier and messier.

as with the majority of job assignments you will 'possibly' take on 'on the
job'.
That is why Engineers make such good $$ :)






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

Date: Mon, 13 Oct 2003 22:06:31 GMT
From: Jorge Barrios <jorge.b@rrios.com>
Subject: Re: Reply every combination of letters
Message-Id: <m3ismssw1f.fsf@www.drakonis.com>

"Tom" <tom@nosleep.net> writes:

> > >I'm not looking for someone to do this for me, I'm looking for advice
> > >on how do I go about trying every possible combination of letters. It
> > >sounds pretty easy on the surface but as I think about it more it
> > >seems to get messier and messier.
> 
> as with the majority of job assignments you will 'possibly' take on 'on the
> job'.
> That is why Engineers make such good $$ :)

We make good money? :) Why didn't anyone tell me?
-- 
Jorge Barrios


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

Date: Mon, 13 Oct 2003 19:20:31 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Reply every combination of letters
Message-Id: <slrnbomgaf.27l.tadmc@magna.augustmail.com>

Jorge Barrios <jorge.b@rrios.com> wrote:
> "McCarthy" <tom@nosleep.net> writes:


>> That is why Engineers make such good $$ :)
                                        ^^
                                        ^^
> We make good money? 


We make good PID?


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

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.  

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 5653
***************************************


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