Re: How to make a resource intensive script less intensive.

2001-07-08 Thread Jim Conner
I decided to go ahead and use File::Tail. it works like a champ. However, writing my own was quite helpful (or atleast tweaking my own ;)) Thanks all. - Jim At 04:31 PM 7/8/2001 -0400, Walt Mankowski wrote: >On Sun, Jul 08, 2001 at 02:20:40PM -0400, Jim Conner wrote: > > I am writing a scrip

Concurrency

2001-07-08 Thread Ryan Boder
Hi, I am very new to perl. In fact, I am trying to write my first perl app ever. I would like it to do peer to peer networking. I have always been a C programmer and if I wanted to do this in C I would use threads and have one accepting connections and one initiating connections. Well, I rea

Re: foreach examples/usage

2001-07-08 Thread mcrawley
Sounds interesting. Please verify this link. -- Original Message -- From: "Jos I. Boumans" <[EMAIL PROTECTED]> Date: Sun, 8 Jul 2001 11:19:21 +0200 > >you might find the loops/block tutorial i wrote on >www.sharemation.com/~perl/tut helpfull > >regards, >

Re: How to make a resource intensive script less intensive.

2001-07-08 Thread Jim Conner
Excellent! I will check that out! - Jim At 04:31 PM 7/8/2001 -0400, Walt Mankowski wrote: >On Sun, Jul 08, 2001 at 02:20:40PM -0400, Jim Conner wrote: > > I am writing a script that is quite cool imo once I get it done. But > > already I am seeing that it takes a ton of system resources. Simp

RADIUS

2001-07-08 Thread Ryan Gralinski
Is there anything out there to authenticate a user with a perl script from a radius server? Ryan

Re: How to make a resource intensive script less intensive.

2001-07-08 Thread Jim Conner
Ok. So you are thinking it might be the loop then too? TIA - Jim At 11:48 AM 7/8/2001 -0700, Sandor W. Sklar wrote: >you might want to look at "swatch", by Todd Atkins, to see how it is done >there ... > > > >There is a File::Tail module which might work

Re: How to make a resource intensive script less intensive.

2001-07-08 Thread Walt Mankowski
On Sun, Jul 08, 2001 at 02:20:40PM -0400, Jim Conner wrote: > I am writing a script that is quite cool imo once I get it done. But > already I am seeing that it takes a ton of system resources. Simply put, > the script watches a log file (like tail -f) and then reacts to certain > things that

Re: How to make a resource intensive script less intensive.

2001-07-08 Thread Sandor W. Sklar
you might want to look at "swatch", by Todd Atkins, to see how it is done there ... There is a File::Tail module which might work for you as well, or, at least show you another way to do it. -s- At 2:20 PM -0400 7/8/01, Jim Conner wrote: >I am writing

Re: Executing Remote Script with parameters

2001-07-08 Thread Luke Bakken
I would investigate using rsh or (peferably) ssh to execute the remote script. if you had an account on machine 'foo', you can use RSA or DSA authentication to avoid needing a password to execute a script on foo, but this isn't an SSH group, so if you need more info, email me. there's also a Net

How to make a resource intensive script less intensive.

2001-07-08 Thread Jim Conner
I am writing a script that is quite cool imo once I get it done. But already I am seeing that it takes a ton of system resources. Simply put, the script watches a log file (like tail -f) and then reacts to certain things that occur. I am thinking that the loop that it is in might be taking

Re: foreach examples/usage

2001-07-08 Thread Jos I. Boumans
link works.. but it's on a free server (sharemation) so sometimes the server is down... i should have my own up shortly, at japh.nu... just have to fiddle with the dns entry... =) Jos - Original Message - From: "mcrawley " <[EMAIL PROTECTED]> To: "Evan Panagiotopoulos" <[EMAIL PROTECTED]

Re: Module to Parse MIME-encoded Email?

2001-07-08 Thread M.W. Koskamp
- Original Message - From: Mike Miller <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 07, 2001 6:08 PM Subject: Module to Parse MIME-encoded Email? > > Gurus: > > As a learning exercise I'm writing my own web-based POP3 client, and > wish to be able to handle emails wh

Re: foreach examples/usage

2001-07-08 Thread Jos I. Boumans
you might find the loops/block tutorial i wrote on www.sharemation.com/~perl/tut helpfull regards, Jos Boumans I am trying to learn the foreach loop. Is there a place on the web where there are examples for the foreach? Basically I have an array of X elements and I want to go from the first e