[9330] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 2925 Volume: 8

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Jun 21 05:07:20 1998

Date: Sun, 21 Jun 98 02:00:32 -0700
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, 21 Jun 1998     Volume: 8 Number: 2925

Today's topics:
    Re: --- Is there a way to run Perl scripts from my Win9 (Martin Vorlaender)
        CGI.pm without warnings? (Tom Mornini)
    Re: CGI.pm without warnings? <rootbeer@teleport.com>
        Dave Roth's AdminMisc (Steve Sulman)
    Re: Error log processing <sdh1@anchor.hotmail.com>
    Re: first language (Mark-Jason Dominus)
    Re: first language <rra@stanford.edu>
    Re: first language (Will Rose)
    Re: Flames.... <ljz@asfast.com>
    Re: Flames.... <tchrist@mox.perl.com>
    Re: Flames.... <rootbeer@teleport.com>
    Re: Flames.... <ljz@asfast.com>
    Re: Flames.... <ljz@asfast.com>
    Re: Flames.... <rootbeer@teleport.com>
        Help with standalone checkbox perl/cgi script newuser@anonymouce.net
    Re: Help with standalone checkbox perl/cgi script <rootbeer@teleport.com>
    Re: mail script w/ attachments <wcjones@fccj.org>
        Module to parse DER encoded X509 certificates <dfh@yahoo.com>
        Organizational software for managing web pages SusanSouthard@my-dejanews.com
    Re: Problem with space in front of each line of text. (Larry Rosler)
        sendmail problems <webmaster@dragonslist.com>
    Re: sendmail problems <rootbeer@teleport.com>
        traveling portable <sdh1@anchor.hotmail.com>
    Re: traveling portable <rootbeer@teleport.com>
        Digest Administrivia (Last modified: 8 Mar 97) (Perl-Users-Digest Admin)

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

Date: Sun, 21 Jun 1998 07:42:57 +0200
From: martin@RADIOGAGA.HARZ.DE (Martin Vorlaender)
Subject: Re: --- Is there a way to run Perl scripts from my Win95 machine?
Message-Id: <358c9d61.524144494f47414741@radiogaga.harz.de>

Webcruiser (none@all.com) wrote:
: I am new to Perl, and would like to be able to test my scripts before
: ftping them to my host site. What is involved in doing this?

The first test (provided you are using CGI.pm) should be running them from
the command line. CGI.pm will take care of form input here. For this you'll
only need the standard perl distribution.

For the other test, you must run them under the control of a web server;
the best way to do that would be to install the same one as the one
that runs on your site. If that's not Apache, Apache will do.

cu,
  Martin
--
                          | Martin Vorlaender | VMS & WNT programmer
 Ceterum censeo           | work: mv@pdv-systeme.de
 Redmondem delendam esse. |       http://www.pdv-systeme.de/users/martinv/
                          | home: martin@radiogaga.harz.de


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

Date: Sun, 21 Jun 1998 06:12:38 GMT
From: tmornini@netcom.com (Tom Mornini)
Subject: CGI.pm without warnings?
Message-Id: <tmorniniEuw192.9JH@netcom.com>

I've been developing an app with CGI.pm and have learned
a great deal about it. I recently got down to some actual
control code that decides what to do based upon multiple
Submit buttons with different names with code that looks
like this:

if ($query->param('Submit') eq 'Button 1') {#code here}

if ($query->param('Submit') eq 'Button 2') {#code here}

If Submit Button 1 or 2 is pressed, the opposite conditional
complains about "Use of uninitialized value at line #" since
I have -w (warnings) turned on (and use strict, too!).

I'd like this code to be picture perfect. How can I avoid
this?

-- Tom Mornini
-- InfoMania


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

Date: Sun, 21 Jun 1998 07:40:36 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: CGI.pm without warnings?
Message-Id: <Pine.GSO.3.96.980621003419.4272F-100000@user2.teleport.com>

On Sun, 21 Jun 1998, Tom Mornini wrote:

> if ($query->param('Submit') eq 'Button 1') {#code here}
> 
> if ($query->param('Submit') eq 'Button 2') {#code here}
> 
> If Submit Button 1 or 2 is pressed, the opposite conditional
> complains about "Use of uninitialized value at line #" 

I suspect that your code doesn't really look quite as you've shown; you
probably are passing different strings to param(). But you may want
something like this, although you may have different names for your
parameters: 

    if ($query->param('Button 1')) {
	# handle that
    } elsif ($query->param('Button 2')) {
	# handle that
    } else {
	# Maybe something else?
    }

Hope this helps!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



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

Date: Sun, 21 Jun 1998 08:19:18 GMT
From: sulmans@ihug.co.nz (Steve Sulman)
Subject: Dave Roth's AdminMisc
Message-Id: <358cbfcc.33862241@news.wgtn.ihug.co.nz>

I've been struggling with the above for a few days now.  We have an NT
domain with around 60 NT servers, with 8 BDCs.  I need to do some
updates to selected groups of user profiles for which the above
functions would be a Godsend.

However, I cannot get them to return a successful return value unless
the functions (primarily UserSet/GetMiscAttirbutes) address the PDC
directly (i.e. none of the BDCs nor using the domain name returns a
successful value).  Also, whilst the GET versions of the functions
work successfully on the PDC, the SET versions, whilst returning a
TRUE value, do not actually change any user profile details.

I am executing small test scripts as a domain admin, and using the
lates version of AdminMisc from Dave's web site with the 5.004_2
bindist of Perl.

Has anyone had any similar experiences, or know why this may be
happening?

If this is not the correct forum (apologies!), are there any more
suitable groups or mailing lists that I can try?

All suggestions (of a positive nature!) gratefully received.

Steve S.



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

Date: Sat, 20 Jun 1998 23:42:26 -0400
From: "Scott" <sdh1@anchor.hotmail.com>
Subject: Re: Error log processing
Message-Id: <6mhvik$1gl$1@camel15.mindspring.com>

true, but if this is a standalone script, it's going to print out 10 blank
lines if it
can't find the log.

Besides, that's about the best I can come up with after mowing the lawn in
90 degree
weather.

but, if you insist:

open (FILE, "log") || die "can't open the log file, you stupid human!  I
will overtake you within 7 years";

Perl is close to becoming omnipotent, after all......

Either that, or:
`su root -c touch log`;
`su root -c chmod 777 log`;
open (FILE,"log");

Although this would only work under unix, and would pester you for the root
password twice...

More than one way to skin a cat...

-Scott



Tom Phoenix wrote in message ...
>On Sat, 20 Jun 1998, Scott wrote:
>
>> open (FILE,"log");
>
>Even when your script is "just an example" (and perhaps especially in that
>case!) you should _always_ check the return value after opening a file.
>Thanks!
>
>--
>Tom Phoenix       Perl Training and Hacking       Esperanto
>Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/
>




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

Date: 21 Jun 1998 01:13:25 -0400
From: mjd@op.net (Mark-Jason Dominus)
Subject: Re: first language
Message-Id: <6mi4pl$fi$1@monet.op.net>


In article <MPG.ff5e8a7393af52f9896b1@nntp.hpl.hp.com>,
Larry Rosler <lr@hpl.hp.com> wrote:
>Sample of one, unfortunately.  My kids started with Basic, which (as 
>Dijkstra says) is a terminal disease.  


I am happy to report that Dijkstra is wrong again.  I started with
Basic, and was eventually able to eradicate it. 

It wasn't easy, thought, and since the remedy was injections of APL, one
could argue that the cure was worse than the disease.



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

Date: 20 Jun 1998 22:59:16 -0700
From: Russ Allbery <rra@stanford.edu>
Subject: Re: first language
Message-Id: <m3u35f2t3f.fsf@windlord.Stanford.EDU>

In comp.lang.perl.misc, Mark-Jason Dominus <mjd@op.net> writes:
> Larry Rosler <lr@hpl.hp.com> wrote:

>> Sample of one, unfortunately.  My kids started with Basic, which (as
>> Dijkstra says) is a terminal disease.

> I am happy to report that Dijkstra is wrong again.  I started with
> Basic, and was eventually able to eradicate it.

> It wasn't easy, thought, and since the remedy was injections of APL, one
> could argue that the cure was worse than the disease.

Funny, I started with BASIC and it proved to be an excellent introduction
to Pascal and a way to get me to appreciate Perl's statement modifier if.

But then I learned on VMS BASIC, not on some line-number-driven brain-dead
monstrosity.  :)

-- 
#!/usr/bin/perl -- Russ Allbery, Just Another Perl Hacker
$^=q;@!>~|{>krw>yn{u<$$<[~||<Juukn{=,<S~|}<Jwx}qn{<Yn{u<Qjltn{ > 0gFzD gD,
 00Fz, 0,,( 0hF 0g)F/=, 0> "L$/GEIFewe{,$/ 0C$~> "@=,m,|,(e 0.), 01,pnn,y{
rw} >;,$0=q,$,,($_=$^)=~y,$/ C-~><@=\n\r,-~$:-u/ #y,d,s,(\$.),$1,gee,print


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

Date: 21 Jun 1998 08:38:50 GMT
From: cwr@cts.com (Will Rose)
Subject: Re: first language
Message-Id: <898418456.642748@optional.cts.com>

Larry Rosler (lr@hpl.hp.com) wrote:
[...]
: Sample of one, unfortunately.  My kids started with Basic, which (as 
: Dijkstra says) is a terminal disease.  They are *not* professional 
: programmers. :-)

Well, maybe.  I started with HP Technical Basic, writing fairly large
programs which I then had to maintain; it taught me a lot about coding
standards pretty quickly.  OTOH, I was reading Software Tools at the
same time, which gave me some idea of how things might be better
arranged.


Will
cwr@crash.cts.com




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

Date: 20 Jun 1998 23:12:40 -0400
From: Lloyd Zusman <ljz@asfast.com>
Subject: Re: Flames....
Message-Id: <ltu35fv45z.fsf@asfast.com>

Tom Phoenix <rootbeer@teleport.com> writes:

> On Sun, 21 Jun 1998 dgris@rand.dimensional.com wrote:
> 
> > Perhaps posting perltoc once or twice a month would be worthwhile.
> 
> If they won't read it when it's already on their computer, why would they
> read it when it's on Usenet? 
> 
> But I regularly post a message containing a URL which will lead interested
> readers to perltoc (among other places). So far, I don't think it's helped
> anyone, though. :-)

I see your smiley, but I still wonder whether you're at least partly
serious about believing that your URL reference isn't helping anyone.
If so, what would make you think that this isn't effective?  After
all, most of the people who receive it from you are first-time posters
 ... how many of them come back a second time with another FAQ after
reading your reply to them?

-- 
 Lloyd Zusman   ljz@asfast.com
 perl -e '$n=170;for($d=2;($d*$d)<=$n;$d+=(1+($d%2))){for($t=0;($n%$d)==0;
 $t++){$n=int($n/$d);}while($t-->0){push(@r,$d);}}if($n>1){push(@r,$n);}
 $x=0;map{$x+=(($_>0)?(1<<log($_-0.5)/log(2.0)+1):1)}@r;print"$x\n"'


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

Date: 21 Jun 1998 03:24:34 GMT
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: Flames....
Message-Id: <6mhudi$11v$1@csnews.cs.colorado.edu>

 [courtesy cc of this posting sent to cited author via email]

In comp.lang.perl.misc, 
    Lloyd Zusman <ljz@asfast.com> writes:
:And from a purely pragmatic point of view, the number of irate,
:indignant responses from new users will decrease if these people are
:politely and kindly referred to the docs instead of being insulted,
:and this can only have a positive effect on the signal-to-noice ratio
:here.

They *are* sent a polite and helpful response: everyone gets it when they
first post here.  Of course, now that think they should screw up their
addresses and suffer for it by not *letting* us send them that autoanswer.

--tom
-- 
 Unix is supported by IBM, like a hanging man is supported by rope
		 - _Life With Unix_  Don Libes & Sandy Ressler


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

Date: Sun, 21 Jun 1998 03:44:22 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: Flames....
Message-Id: <Pine.GSO.3.96.980620203431.20995P-100000@user2.teleport.com>

On 20 Jun 1998, Lloyd Zusman wrote:

> Tom Phoenix <rootbeer@teleport.com> writes:

> > But I regularly post a message containing a URL which will lead interested
> > readers to perltoc (among other places). So far, I don't think it's helped
> > anyone, though. :-)
> 
> I see your smiley, but I still wonder whether you're at least partly
> serious about believing that your URL reference isn't helping anyone.
> If so, what would make you think that this isn't effective?

I haven't seen any significant drop off in the frequency of Frequently
Asked Questions and other questions which can be quickly answered from
that resource. Alas. (On the other hand, I haven't done any quantative
analysis, since that would probably be nearly meaningless anyway.)

> After all, most of the people who receive it from you are first-time
> posters

You seem to be confusing my frequent _posting_ with the auto _email_ sent
to first-time posters to this newsgroup.

> ... how many of them come back a second time with another FAQ after
> reading your reply to them?

But it seems too frequent that this newsgroup sees a newcomer who, having
asked a question and been directed to the appropriate resources, follows
up with another question which can be answered by the same resources. 

Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



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

Date: 21 Jun 1998 00:23:32 -0400
From: Lloyd Zusman <ljz@asfast.com>
Subject: Re: Flames....
Message-Id: <ltpvg3v0vv.fsf@asfast.com>

Tom Phoenix <rootbeer@teleport.com> writes:

> On 20 Jun 1998, Lloyd Zusman wrote:
> 
> > Tom Phoenix <rootbeer@teleport.com> writes:
> 
> [ ... ]
>
> > I see your smiley, but I still wonder whether you're at least partly
> > serious about believing that your URL reference isn't helping anyone.
> > If so, what would make you think that this isn't effective?
> 
> I haven't seen any significant drop off in the frequency of Frequently
> Asked Questions and other questions which can be quickly answered from
> that resource. Alas. (On the other hand, I haven't done any quantative
> analysis, since that would probably be nearly meaningless anyway.)

My contention is that almost all of the frequently asked questions you
see here are coming from first-time posters to c.l.p.m, and if this is
the case, few of these people are likely to have any knowledge of your
URL reference ... and therefore, they couldn't possibly be affected by
it.  But I haven't done any quantitative analysis of my assumption,
either, so this boils down to my gut-level feeling about the nature
and motivation of the FAQ posters versus your own gut-level feeling
about them.

> > After all, most of the people who receive it from you are first-time
> > posters
> 
> You seem to be confusing my frequent _posting_ with the auto _email_ sent
> to first-time posters to this newsgroup.

No ... I'm not confusing those two things.  Even though modern
netiquette states that new users are *supposed* to read the group for
a week or so before posting, there are plenty of brand new posters who
don't know about this convention and just pop in to c.l.p.m right off
the bat and leave a message consisting of one or more frequently asked
questions.  In my opinion, most of the time when you submit your own
frequent posting, it's in response to these kinds of first-time
posters.  These folks will also receive the auto email in addition to
your posting.

And in case I'm getting one of your frequent postings mixed up with
another, I assume that the quote I enclosed at the end of this message
(a complete quote of a recent, representative message of yours to
c.l.p.m) is an example of what we're talking about here.  Please
correct me if I'm wrong.

> > ... how many of them come back a second time with another FAQ after
> > reading your reply to them?
> 
> But it seems too frequent that this newsgroup sees a newcomer who, having
> asked a question and been directed to the appropriate resources, follows
> up with another question which can be answered by the same resources. 

I haven't seen many people who do that here.  Perhaps less than ten
different people every week (out of maybe 1500-2000 c.l.p.m posts
during that same period).  But maybe I'm overlooking a lot of these
second-time-or-beyond FAQ posters, and I'd be happy to be shown some
evidence of a larger number of these people than I have stated here.

And finally, here's the representative message of yours that I
referred to above:

> Newsgroups: comp.lang.perl.misc
> From: Tom Phoenix <rootbeer@teleport.com>
> Subject: Re: Help with standalone checkbox perl/cgi script
> In-Reply-To: <358C741C.67A7@anonymouce.net>
> Message-ID: <Pine.GSO.3.96.980620204435.20995Q-100000@user2.teleport.com>
> References: <358C741C.67A7@anonymouce.net>
> Organization: Society for the Elimination of Unwarranted Excess Superfluous Text
>  in Internet Header Lines
> MIME-Version: 1.0
> Content-Type: TEXT/PLAIN; charset=US-ASCII
> Lines: 19
> Date: Sun, 21 Jun 1998 03:45:08 GMT
> NNTP-Posting-Host: 192.108.254.19
> NNTP-Posting-Date: Sat, 20 Jun 1998 20:45:08 PDT
> Xref: Supernews70 comp.lang.perl.misc:130945
> 
> On Sat, 20 Jun 1998 newuser@anonymouce.net wrote:
> 
> >     If anyone could help me out it sure would be appreciated.
> 
> When you're having trouble with a CGI program in Perl, you should first
> look at the please-don't-be-offended-by-the-name Idiot's Guide to solving
> such problems. It's available on CPAN.
> 
>    http://www.perl.com/CPAN/
>    http://www.perl.org/CPAN/
>    http://www.perl.org/CPAN/doc/FAQs/cgi/idiots-guide.html
>    http://www.perl.org/CPAN/doc/manual/html/pod/
>
> Hope this helps!
> 
> -- 
> Tom Phoenix       Perl Training and Hacking       Esperanto
> Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/

-- 
 Lloyd Zusman   ljz@asfast.com
 perl -e '$n=170;for($d=2;($d*$d)<=$n;$d+=(1+($d%2))){for($t=0;($n%$d)==0;
 $t++){$n=int($n/$d);}while($t-->0){push(@r,$d);}}if($n>1){push(@r,$n);}
 $x=0;map{$x+=(($_>0)?(1<<log($_-0.5)/log(2.0)+1):1)}@r;print"$x\n"'


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

Date: 21 Jun 1998 00:32:01 -0400
From: Lloyd Zusman <ljz@asfast.com>
Subject: Re: Flames....
Message-Id: <ltn2b7v0hq.fsf@asfast.com>

Tom Christiansen <tchrist@mox.perl.com> writes:

>  [courtesy cc of this posting sent to cited author via email]
> 
> In comp.lang.perl.misc, 
>     Lloyd Zusman <ljz@asfast.com> writes:
> :And from a purely pragmatic point of view, the number of irate,
> :indignant responses from new users will decrease if these people are
> :politely and kindly referred to the docs instead of being insulted,
> :and this can only have a positive effect on the signal-to-noice ratio
> :here.
> 
> They *are* sent a polite and helpful response: everyone gets it when they
> first post here.  Of course, now that think they should screw up their
> addresses and suffer for it by not *letting* us send them that autoanswer.

But there always has to be a *first* post here before the
auto-mini-FAQ can be sent ... even in the case of people who don't use
a munged address.  I contend that most of the insulting responses here
are in reply to these first-time messages.  Therefore, it seems to me
that if someone is taking it upon him- or herself to steer a
first-time poster to the docs, that this first-time steering should be
done in as polite a fashion as in the auto-mini-FAQ.

In my opinion, only if there is evidence that the user has ignored
previous suggestions to go to the docs should a somewhat sterner or
more pointed response be given (but even then, not insulting).

-- 
 Lloyd Zusman   ljz@asfast.com
 perl -e '$n=170;for($d=2;($d*$d)<=$n;$d+=(1+($d%2))){for($t=0;($n%$d)==0;
 $t++){$n=int($n/$d);}while($t-->0){push(@r,$d);}}if($n>1){push(@r,$n);}
 $x=0;map{$x+=(($_>0)?(1<<log($_-0.5)/log(2.0)+1):1)}@r;print"$x\n"'


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

Date: Sun, 21 Jun 1998 05:01:00 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: Flames....
Message-Id: <Pine.GSO.3.96.980620214828.4272A-100000@user2.teleport.com>

On 21 Jun 1998, Lloyd Zusman wrote:

> My contention is that almost all of the frequently asked questions you
> see here are coming from first-time posters to c.l.p.m, and if this is
> the case, few of these people are likely to have any knowledge of your
> URL reference ... and therefore, they couldn't possibly be affected by
> it.  

And, by the same token, they wouldn't be helped by posting of _any_
previous posting, no matter how frequent or helpful.

The best we can do for those folks is to try to persuade them to better
themselves before asking their next question.

> In my opinion, most of the time when you submit your own frequent
> posting, it's in response to these kinds of first-time posters. 

No, it's a cron task. It would run automatically whether anyone posted to
c.l.p.misc or not. I'm pretty sure you're thinking of my replies to
posters in the newsgroup, but that's not what I was talking about. (My
replies may be boilerplate, but they're not automatic.) The autopost is
cross-posted to c.l.p.announce; you should be able to find it there. 

> > But it seems too frequent that this newsgroup sees a newcomer who, having
> > asked a question and been directed to the appropriate resources, follows
> > up with another question which can be answered by the same resources. 
> 
> I haven't seen many people who do that here.  Perhaps less than ten
> different people every week

That's too frequent, in my book. One who knows better and yet errs is in a
state of sin. :-) 

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



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

Date: Sat, 20 Jun 1998 19:46:52 -0700
From: newuser@anonymouce.net
Subject: Help with standalone checkbox perl/cgi script
Message-Id: <358C741C.67A7@anonymouce.net>

Hello,
    After reading a couple of perl/cgi book and following this
newsgroup for a couple of weeks I finally am trying my first
script. As you guess it is have a couple of errors that I need
some help fixing them. What this script is basically suppose to
do is if a person chooses to click on the check box then if any
one response to one of his/her response he/she will get the response
via email (email notification script)
    If anyone could help me out it sure would be appreciated.

			Thank you


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

Date: Sun, 21 Jun 1998 03:45:08 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: Help with standalone checkbox perl/cgi script
Message-Id: <Pine.GSO.3.96.980620204435.20995Q-100000@user2.teleport.com>

On Sat, 20 Jun 1998 newuser@anonymouce.net wrote:

>     If anyone could help me out it sure would be appreciated.

When you're having trouble with a CGI program in Perl, you should first
look at the please-don't-be-offended-by-the-name Idiot's Guide to solving
such problems. It's available on CPAN.

   http://www.perl.com/CPAN/
   http://www.perl.org/CPAN/
   http://www.perl.org/CPAN/doc/FAQs/cgi/idiots-guide.html
   http://www.perl.org/CPAN/doc/manual/html/pod/

Hope this helps!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



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

Date: Sat, 20 Jun 1998 15:35:41 -0400
From: Bill 'Sneex' Jones <wcjones@fccj.org>
Subject: Re: mail script w/ attachments
Message-Id: <358C0F0C.FA1C7755@fccj.org>

PMFJI:


> On Fri, 19 Jun 1998, rferr wrote:
>
> > Does anyone know how to invoke sendmail with attachments ?

These two (listed below) wrote something which works; but since it
recieved several flames, they must have done 'something' right  ;-)


# By Craig Dansie <http://www.dansie.net>
# and Andrew Starr <http://www.amherst.edu/~atstarr>
# 2/22/98
<Code snipped...>


HTH,    :P

-Sneex-
____________________________________________________________________________
Bill Jones | FCCJ Webmaster | Voice 1-904-632-3089 | Fax 1-904-632-3007
Florida Community College at Jacksonville | 501 W. State St. | Jax, FL 32202
mailto:webmaster@fccjmail.fccj.org | http://webmaster.fccj.org/Webmaster
____________________________________________________________________________
            "Be not the first by whom the new are tried,
             nor yet the last to lay the old aside..."





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

Date: Sun, 21 Jun 1998 01:12:18 -0400
From: Dan Hurley <dfh@yahoo.com>
Subject: Module to parse DER encoded X509 certificates
Message-Id: <6mi4qb$d5k@bgtnsc02.worldnet.att.net>

Anyone know of a module to parse DER-encoded x509 certificates?

Thanks,

Dan Hurley
dfh@yahoo.com



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

Date: Sun, 21 Jun 1998 03:31:15 GMT
From: SusanSouthard@my-dejanews.com
Subject: Organizational software for managing web pages
Message-Id: <6mhuq3$nd$1@nnrp1.dejanews.com>

I am looking for organizational software that we can use at the college I
attend, to organize our web pages on our server. The web pages are becoming a
hand full and we are looking for something that will tell us when they were
made and so that we can update them and what other pages they affect etc.
Please if you know of any e-mail me with the info thanks. 
spiper45@hotmail.com

-----== Posted via Deja News, The Leader in Internet Discussion ==-----
http://www.dejanews.com/   Now offering spam-free web-based newsreading


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

Date: Sat, 20 Jun 1998 21:57:58 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: Problem with space in front of each line of text.
Message-Id: <MPG.ff5952fe201dd99896db@nntp.hpl.hp.com>

In article <6mgrfc$tqt$1@ligarius.ultra.net>, Bob Trieger 
<sowmaster@juicepigs.com> says...
 ...
> map { $holdfile .= $_ } @holdfile;

$holdfile = join '', @holdfile;

is more idiomatic and may be more efficient.  (I haven't Benchmarked it, 
but I recall it is discussed in the Blue Camel section on efficiency.)

-- 
Larry Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com


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

Date: Sun, 21 Jun 1998 05:47:41 GMT
From: Sifu Hall <webmaster@dragonslist.com>
Subject: sendmail problems
Message-Id: <358C9CED.1BAA1B5A@dragonslist.com>

    I am attempting to use sendmail to send verification to a user when
they have submitted a form.  The form processes fine but the email
message is never sent.  If I copy the code to another pl file to attempt
to troubleshoot my sendmail section of code by itself, the code works
fine.  I am new to sendmail but the syntax works fine from my test
program.  Does the fact that it is being called from a form have
anything to do with it?




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

Date: Sun, 21 Jun 1998 06:02:59 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: sendmail problems
Message-Id: <Pine.GSO.3.96.980620230148.4272D-100000@user2.teleport.com>

On Sun, 21 Jun 1998, Sifu Hall wrote:

> The form processes fine but the email message is never sent. 

If you're using the proper commands to run another program from perl, but
the other program doesn't cooperate, then it's the other program's fault. 
If you're not using the proper commands, then it's your fault. If you
aren't sure about the proper commands, you should read the program's
documentation. If you've read it and you're still not sure, you should ask
in a newsgroup about the program. 

Hope this helps!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



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

Date: Sat, 20 Jun 1998 23:56:04 -0400
From: "Scott" <sdh1@anchor.hotmail.com>
Subject: traveling portable
Message-Id: <6mi0c5$iqk$1@camel15.mindspring.com>

I travel around the country with my laptop, and I was wondering if there was
some way in perl that I could make the changes to windows 95:

1) the IP address
2) the netmask
3) gateway
4) dns
5) dynamic/static ip
6) ip server
7) the timezone

Trust me, I'm not using it for spamming.  I think I'll shoot myself before
sending (or answering an ad of)
spam.

I just want some sort of profile set up for the different client sites I
visit, so I can print out documents and transfer files without having to
keep a log of ones that have been assigned.  It's a real pain the way it is
now.

drop the 'anchor' if you wish to reply by e-mail, but I monitor the
newsgroup fairly often

Thanks...
  -Scott, member of Atlanta PUG...





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

Date: Sun, 21 Jun 1998 04:12:33 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: traveling portable
Message-Id: <Pine.GSO.3.96.980620210903.20995U-100000@user2.teleport.com>

On Sat, 20 Jun 1998, Scott wrote:

> I travel around the country with my laptop, and I was wondering if there
> was some way in perl that I could make the changes to windows 95: 
> 
> 1) the IP address
> 2) the netmask
> 3) gateway
> 4) dns
> 5) dynamic/static ip
> 6) ip server
> 7) the timezone

Almost certainly, if you can change those via any language, you can do it
with Perl. First, though, you'll need to find out whether there's a
programmable interface to those settings. (Perhaps you need to edit some
file, perhaps you need to make some system call or run some external
program.)

Once you've determined that interface, if you're not sure how to implement
that from Perl, feel free to post again. Good luck!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



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

Date: 8 Mar 97 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 8 Mar 97)
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.misc (and this Digest), send your
article to perl-users@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.

The Meta-FAQ, an article containing information about the FAQ, is
available by requesting "send perl-users meta-faq". The real FAQ, as it
appeared last in the newsgroup, can be retrieved with the request "send
perl-users FAQ". Due to their sizes, neither the Meta-FAQ nor the FAQ
are included in the digest.

The "mini-FAQ", which is an updated version of the Meta-FAQ, is
available by requesting "send perl-users mini-faq". It appears twice
weekly in the group, but is not distributed in the digest.

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 V8 Issue 2925
**************************************

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