Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 653 - 682 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
653 Oliver Manickum
oliver@... Send Email
Aug 8, 2000
4:45 pm
Hey Guys, I am trying to track the amount of connections that are made to ODBC via Perl Script. Not only the connections that are made with the script itself, ...
654 proshop@... Send Email Aug 9, 2000
1:25 am
Are there any regularly scheduled chats? I am new to this group. Thanks Paul...
655 Oliver Manickum
oliver@... Send Email
Aug 9, 2000
11:16 am
Only when people try to determine the best perl editor :O) hehehe - Oliver ... From: proshop@... [mailto:proshop@...] Sent: 09 August...
656 Steve Milov
slavik914@... Send Email
Aug 9, 2000
3:56 pm
Hi my name is Steve, I'm a UNIX shell programmer I use mostly perl. Alot of the things I've learned I've done so on my own. I've had trouble grasping the ...
657 Smith, Sheldon
sheldon.smith@... Send Email
Aug 10, 2000
4:25 pm
An array is a vector accessed by an integer offset A hash (previously called an associative array) is a vector indexed by *anything* (read arbitrary string). ...
658 Andrew Johnson
andrew-johnson@... Send Email
Aug 10, 2000
5:36 pm
! Hi my name is Steve, I'm a UNIX shell programmer I use ! mostly perl. Alot of the things I've learned I've ! done so on my own. I've had trouble grasping...
659 Javier Hernandez
fjherna@... Send Email
Aug 11, 2000
5:38 am
... Hi Steve M, I started to learn Perl three months ago so take my explanation with that in mind. ... In perl you have different data type: scalar= a simple...
660 root
tpbiazus@... Send Email
Aug 11, 2000
2:06 pm
Well, I started programming PERL some days ago, and trying to create a WEB page on-the-fly, but I got the following error into my browser, ... Internal Server...
661 Dan Boger
dan@... Send Email
Aug 11, 2000
2:54 pm
... [snip] ... There's your problem... it's looking for an "EOF" at the begining of a line, and not for " EOF"... Dan...
662 Digo Mello
digomello@... Send Email
Aug 11, 2000
4:41 pm
How can I create a process (in Perl) that is activated, for example, each 5 minutes and don't waste much computation. Don't become a heavy job to computer. ...
663 Smith, Eric - WPAFB/Y...
eric.smith@... Send Email
Aug 11, 2000
4:56 pm
... A few options... - on *nix, can use "cron" to schedule the script - on Win32, can use AT/WinAT (results vary - it sucks accross domains) - can use cron.pl...
664 Smith, Sheldon
sheldon.smith@... Send Email
Aug 14, 2000
2:33 am
Oh, cool! I did not know about the "-q" option....
665 Nathan Rimmer
perlcgi2000@... Send Email
Aug 14, 2000
6:19 am
I amn having troublt splitting lines in a file. I am trying to split the contents of the lines by the blank space(s) in them using: ...
666 Andrew Johnson
andrew-johnson@... Send Email
Aug 14, 2000
6:53 am
! I amn having troublt splitting lines in a file. ! ! I am trying to split the contents of the lines by the ! blank space(s) in them using: ! !...
667 Oliver Manickum
oliver@... Send Email
Aug 14, 2000
6:54 am
Elo.... try .... ($ipaddress,@errornote) = split (/\s/,$errorpingresult); - Olly..... ... From: Nathan Rimmer [mailto:perlcgi2000@...] Sent: 14 August...
668 Gamaliel G. Lagman
gamie@... Send Email
Aug 14, 2000
9:39 am
Hi, try this one: ($ipaddress,@errornote) = split (/ +/,$errorpingresult); Hope this helps, ~gams...
669 Luke Metcalfe
luke@... Send Email
Aug 15, 2000
3:53 am
Hi! I'm having trouble retrieving individual values within in array within an associative array. $rec-> {emails} = @tmp; # Attempt 1: print join "\n",...
670 Andrew Johnson
andrew-johnson@... Send Email
Aug 15, 2000
5:46 am
! Hi! I'm having trouble retrieving individual values within in array ! within an associative array. ! ! $rec-> {emails} = @tmp; OK -- $rec holds a reference...
671 Marcelo Pham
marcelopham@... Send Email
Aug 16, 2000
10:37 pm
Hi! I recently found out that cookies are not the best solution... I have a problem now that I've decided to use them. I have an html form with fields. The...
672 Shane43@... Send Email Aug 17, 2000
3:10 pm
I have experienced that problem before myself. What is happening is that the computer waits a couple seconds before it writes the cookie. The second script is...
673 Steve Milov
slavik914@... Send Email
Aug 17, 2000
3:59 pm
Hi, I dont want to go into too much detail as to what I had tried to do to accomplish what I'm about to ask. I'll just explain what I've tried to accomplish. I...
674 Marcelo Pham
marcelopham@... Send Email
Aug 17, 2000
4:07 pm
Hi Shane, thanks for your quick response! I was kind of frustrated and I was about to break the keyboard... The thing is that I was going to use hidden fields,...
675 Tom Barron
tbarron@... Send Email
Aug 17, 2000
4:19 pm
... So, load the .def file into a hash, with field1 as the key and field3 as the value: open (IN, "< DOT.def"); while ($line = <IN>) { chomp $line; ($f1, $f2,...
676 Nancy Pettigrew
nancy@... Send Email
Aug 17, 2000
4:27 pm
I am using Net::SMTP to send a message. After sending the EHLO command, I would like to be able to get the SIZE value returned by the server, but I'm not sure...
677 Luke Metcalfe
luke@... Send Email
Aug 18, 2000
5:30 am
Thanks Andrew! I'm able to pass arrays around pretty confidently now.. Hashes on the other hand.. $e{123} = "asdf"; $e{4321} = "fdsa"; &f ([@e], 123); sub f { ...
678 Dan Boger
dan@... Send Email
Aug 18, 2000
12:44 pm
... you're passing the ARRAY e and not the HASH e - try replacing &f ([@e], 123); with &f (%e, 123); (untested though, it's too early in the morning...) ... ...
679 Shane43@... Send Email Aug 18, 2000
3:24 pm
I am not aware of a pause function, although I am not an expert on perl either. Your best bet would be to make a page that is the output of the script that...
680 Andrew Johnson
andrew-johnson@... Send Email
Aug 18, 2000
4:49 pm
! I'm able to pass arrays around pretty confidently now.. Hashes on the ! other hand.. ! ! $e{123} = "asdf"; ! $e{4321} = "fdsa"; ! ! &f ([@e], 123); ! ! sub f...
681 tjwomble@... Send Email Aug 19, 2000
5:27 pm
I am trying to install Perl 5 on a Redhat 5.0 system. After I go throught the configuration questionair, I run the make command. This runs for a while, then...
682 Ingenue
nikita@... Send Email
Aug 19, 2000
7:04 pm
Use the rpm to install. That's what it is for. ... From: <tjwomble@...> To: <perl-beginner@egroups.com> Sent: Saturday, August 19, 2000 10:27 AM Subject:...
Messages 653 - 682 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help