Hi everybody, I was using gedit as a text editor for perl programming,, but what IDE do you recommend me to install in my linux machine? I would appreciate any...
Andrés Flórez
andrewflorez@...
Feb 1, 2008 4:26 pm
25999
... Hash: SHA1 ... Andres, That's one of those kind of questions that often starts religious wars. Myself personally I've never bothered with an IDE to write...
I never used one before and then I found out Eclipse had a Perl plugin. Now with the Perl plugin, database development / debugger and JBoss tools added to the...
Ward.P.Fontenot@...
Feb 1, 2008 4:38 pm
26001
Hi Andrès, komodo edit from Active State is also really also suited for the job, especially if you do it for scripting or the web... its an IDE specialised in...
Louis-Philippe
l0u1sph1l1ppe@...
Feb 1, 2008 5:23 pm
26003
Can anyone point me to a practical example of how to use and implement session variables? Some may think that session variables are not exactly perl-beginner. ...
Hi All, I have written a perl script using Tk module. In that my requirement is, if a user select a folder from list of the first "OptionMenu" then in the...
Hi, I have an oracle database that stores sample_id as BINARY, 16 Bytes. Whoever knows how to translate this binary data to ascii character with perl? Thanks! ...
jiqiang yao
jiqiang123@...
Feb 13, 2008 7:24 pm
26010
Hi, does anyone know a Perl module that calculates McNemar and returns p- values? Thanks Piroska...
Piroska Devay
piroskadevay@...
Feb 13, 2008 11:28 pm
26011
I m a beginner i dnt have any idea of perl. i searched different sites and tutorial bt m not getting wot exactly perl is wot r advantages of using perl over...
I'd suggest "Learning Perl (Fourth edition) by Randal L Schwartz and others. Not only does it answer the questions you are asking, but it's a great step by...
Hi all, currently I am using GNUPLOT to plot graphs. Gnuplot takes input in form of a file. ex- If a file has 3 columns i.e first column is date and 2nd and...
http://search.cpan.org/search?query=gnuplot&mode=all ... "As democracy is perfected, the office represents, more and more closely, the inner soul of the...
Hi, I am a Java programmer, who is picking up Perl. Though I have figred out how to use a Java class online, I do need to know how I can access individual...
hi,list! my platform is : redhat AS 4 I have installed gd lib and gd module for perl, and also i update cpan from 1.7 to 1.9xx£¬ but when i use cpan command...
auser
iloveyunxuan@...
Feb 22, 2008 1:43 pm
26020
Hi, I am completely new to perl and have been trying to read tutorials I can find, doing the examples they contain, and trying to write a bit of code on my...
... viktor> The program I want to start out with should be easy enough and should viktor> show me a lot of the basics of writing future programs. What I want ...
... I can assure you its not homework, I haven't been anywhere near a school in many years. I am however interested in learning perl. I just came up with the...
... viktor> I can assure you its not homework, I haven't been anywhere near a viktor> school in many years. I am however interested in learning perl. I ...
Viktor, In just about any programming discussion group I've seen, specific questions are much more likely to get answers than general ones. If you try to...
hi - can't find something, hoping someone can help :( Have a record that can be really long (it has reached 10G in the past...) and I need to parse it. here's...
as usually happens, I realized a flaw to my question right after I asked it; I can't pop off the last record, because I won't know what it is when the script...
... The simplest solution is just to read one record first and then enter your loop: open my($fh), "<", $filename or die "can't read $filename: $!"; <$fh>; #...
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@...
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 ...
... 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@...
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...
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...