Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 26030 - 26064 of 26385   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26030
I'm working on a perl blog. I've published it on sourceforge. It's GPL'd but... it just don't work. I got an error while editing: Insecure dependency in open...
David Francos
yo.orco@...
Send Email
Mar 1, 2008
1:31 pm
26031
... That means you're using open() in an insecure manner. It would have helped if you showed us line 136, but I'm guessing you're opening a file and the ...
Jeff Pinyan
evilffej
Offline Send Email
Mar 1, 2008
2:36 pm
26032
... I'm Sorry, yes that was what I tough but I didn't get what I was looking for on google, next time I'll remember perlsec. The code in question is tainted:...
David Francos
yo.orco@...
Send Email
Mar 1, 2008
3:46 pm
26033
... Untainting isn't a matter of removing the bad, it's a matter of extracting the good. my $file = $cgi->param('newid'); # $file is tainted because it comes...
Jeff Pinyan
evilffej
Offline Send Email
Mar 1, 2008
4:50 pm
26036
How many elements can be stored in an array? I mean, is there any maximum limit for an array? If anybody knows, please answer. Thanks in advance Vijay...
Vijaya Kumar
mp_vijayakumar
Offline Send Email
Mar 6, 2008
7:01 am
26037
... Vijaya> How many elements can be stored in an array? I mean, is there any Vijaya> maximum limit for an array? If anybody knows, please answer. Perl imposes...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 6, 2008
8:00 am
26038
From: merlyn@... ... I kinda doubt it. The index of an array is an integer so I'd expect the maximum limit to be your size of integers. Which means ...
Jenda Krynicky
jendaperl
Offline Send Email
Mar 6, 2008
9:42 am
26039
... Jenda> From: merlyn@... ... Vijaya> How many elements can be stored in an array? I mean, is there any Vijaya> maximum limit for an array? If...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 6, 2008
3:13 pm
26040
I am trying to write a perl program to print out just the summaries of poker hand histories. These are text files.The problem I seem to have is that it prints...
mike97739
Offline Send Email
Mar 6, 2008
11:07 pm
26041
Hi MIke, Try to use elsif if ($_ =~ /SUMMARY ) {bla; } elsif ($counter==0) {bla; } elsif ($_ =~ /d+) { bla; last; } with last it should jump out of the loop ...
Piroska Devay
piroskadevay@...
Send Email
Mar 7, 2008
12:10 am
26042
How do you set a UNIX system variable from inside Perl? ... Don Dukelow e-mail: dukelow@......
Dukelow, Don
dondukelow
Offline Send Email
Mar 10, 2008
8:02 pm
26043
first hit to search: "perl unix system variable" ...
Ozgur Ozturk
htbr
Offline Send Email
Mar 10, 2008
8:08 pm
26044
... Dukelow,> How do you set a UNIX system variable from inside Perl? I've been using Unix for 30 years. I have never heard the term "Unix system variable"....
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 10, 2008
8:12 pm
26045
Hello All: I was wondering whether it is possible to have arrays as hash keys. For example: %hash = { ["a", "b"] => ["c", "d"] }; I came across hash slices...
aditi gupta
aditi9783
Offline Send Email
Mar 11, 2008
10:28 pm
26046
... aditi> I was wondering whether it is possible to have arrays as hash keys. For example: No. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. -...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 11, 2008
11:09 pm
26047
To: perl-beginner@yahoogroups.com From: aditi gupta <aditi9783@...> Date sent: Tue, 11 Mar 2008 22:28:11 +0000 (GMT) ...
Jenda Krynicky
jendaperl
Offline Send Email
Mar 12, 2008
2:04 pm
26048
I am learning network programming. My current I idea is to create an application to benchmark multicast performance. I am having trouble enabling a socket to...
jed111
Offline Send Email
Mar 12, 2008
6:40 pm
26050
Hi All I am quite new to perl. I am trying write a perl script to 1. retrieve records from an MS sql 2000 database. 2. display it in perl Gui(i have got a book...
Nathan
osariel
Offline Send Email
Mar 13, 2008
3:17 pm
26051
... Hashes (and arrays) can only hold scalars, that is, a string, a number or a reference. So in your example the hash will look like (if dumped with...
Alexander Saydakov
sandy_saydakov
Online Now Send Email
Mar 13, 2008
7:30 pm
26052
... You really need to spend some time with Perl Tk. It will do what you want with ease. If your Tk book is "Mastering Perl Tk" from Oreilly then everything...
kenshail2003
Offline Send Email
Mar 13, 2008
8:11 pm
26053
Hi; What is the perl equivalent of a #!/bin/bash -xv? I'd like to have verbose (print each line prior to execution) and expand each variable prior to execution...
Kenneth Wolcott
kwolcott
Offline Send Email
Mar 13, 2008
11:09 pm
26054
Thank you very much for your quick reply, yes the book i have is Mastering Perl/Tk, I need some form of guide and heads-on, I am not sure how to put the codes...
Nathan
osariel
Offline Send Email
Mar 13, 2008
11:15 pm
26055
... Kenneth> How do I get the answers to either or both of these questions using Kenneth> perldoc? By searching the perlfaq. "perldoc perldoc" will tell you...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 14, 2008
12:05 am
26057
Hye all visit following link to get basic knowledge of smarty template engine resource ...
Arafatul Islam
doneara
Offline Send Email
Mar 15, 2008
5:33 am
26058
Hye friends Visit following link to get code to intregate Google map!! http://www.codelinkage.com/index.php?option=com_content&task=view&id=21&Itemid=9 Thanks...
Arafatul Islam
doneara
Offline Send Email
Mar 16, 2008
1:39 pm
26059
Friends, I would like to run another (.exe) program from my perl main program without any interrupting my main program. Right now I am using ...
joshypy
Offline Send Email
Mar 16, 2008
4:29 pm
26060
... In other words, you want to fork off a child process. perldoc -f fork perldoc perlfork /sandy http://myperlquiz.com/...
Alexander Saydakov
sandy_saydakov
Online Now Send Email
Mar 16, 2008
8:39 pm
26062
In perl, how to find date after 5 days, if they have given todays date....
srikanth_kovur
Offline Send Email
Mar 17, 2008
5:57 am
26063
Thanks Sandy, Its working for me. But I am struggling to kill the child process later from the main program. The following is the code I used: $| = 1; if ($pid...
joshypy
Offline Send Email
Mar 17, 2008
6:00 am
26064
... srikanth> In perl, how to find date after 5 days, if they have given todays date. my $in_5_days = localtime (time + 5 * 86400); If you want it as values...
merlyn@...
merlynstoneh...
Online Now Send Email
Mar 17, 2008
2:14 pm
Messages 26030 - 26064 of 26385   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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