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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 27369 - 27398 of 27465   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
27369 Ken Shail
shailken Send Email
Aug 6, 2012
5:02 pm
... Have you tried adding the following repositories in ppm? http://www.bribes.org/perl/ppm/ or http://www.bribes.org/perl/ppm64/ if you are using 64 bit...
27370 ivy_hikaru2009 Send Email Aug 8, 2012
4:17 am
Dear All, Thanks for the help....
27371 timmarkus498 Send Email Aug 18, 2012
12:38 am
Dear, I am beginning and Ive been trying to compare lines between two files by one specify column in two files and put in other file (output) lines common by...
27372 Shlomi Fish
shlomif2 Send Email
Aug 18, 2012
10:01 am
Hi timmarkus, Let me review your code. On Fri, 17 Aug 2012 22:28:04 -0000 ... It's great that you're using strict and warnings. ... "my $file3 = " what...
27373 Shawn H Corey
shawnhcorey@... Send Email
Aug 18, 2012
12:17 pm
On Sat, 18 Aug 2012 13:01:38 +0300 ... No, the he said he wanted the second column, which is indexed by 1. -- Just my 0.00000002 million dollars worth, Shawn ...
27374 Charles K. Clarkson
charlesclarkson Send Email
Aug 18, 2012
6:39 pm
You are writing this solution from the top down. You do not have to write it in that order. Write the core algorithm first, then add the UI and I/O after that...
27375 Markus Tim
timmarkus498 Send Email
Aug 23, 2012
12:11 am
Thank you for help and suggestion! [Non-text portions of this message have been removed]...
27376 timmarkus498 Send Email Aug 23, 2012
12:11 am
27377 andy_bach@...
afbach1 Send Email
Aug 23, 2012
4:52 pm
Just a note - there is at least one established bio-perl list http://lists.perl.org/list/bioperl-l.html not that more isn't merrier ... a ... Andy Bach Systems...
27378 Noah
noah@mci.net Send Email
Aug 28, 2012
3:18 am
I want to remove elements from an array by comparing the elements for the first array to the elements of a second array. So in the example below if an element...
27379 Shlomi Fish
shlomif2 Send Email
Aug 28, 2012
7:15 am
Hi Noah, On Mon, 27 Aug 2012 19:21:19 -0700 ... You should do: my %routers_lookup = (map { $_ => 1 } @ignore_routers); @devices = grep {...
27380 Alan Haggai Alavi
alan_haggai Send Email
Aug 28, 2012
7:15 am
Hello Noah, I want to remove elements from an array by comparing the elements for the ... use List::Util qw( first ); @devices = grep { my $device = $_; !first...
27381 merlyn@...
merlynstoneh... Send Email
Aug 28, 2012
9:05 am
... Noah> I want to remove elements from an array by comparing the elements for Noah> the first array to the elements of a second array. Noah> So in the...
27382 merlyn@...
merlynstoneh... Send Email
Aug 29, 2012
9:24 am
... Alan> use List::Util qw( first ); Alan> @devices = grep { Alan> my $device = $_; Alan> !first { $device eq $_ } @ignore_routers; ...
27383 perl-beginner@yahoogr... Send Email Sep 1, 2012
8:13 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27384 johnlikeglass Send Email Sep 10, 2012
6:57 pm
Ran into this problem which caused a bit of gray hair and took about a month to resolve. Though I would pass this along. Basically, for years I have hosted...
27385 ponni
pons_84 Send Email
Sep 12, 2012
6:39 am
Hi Experts, I am a beginner, i have strucked to print the alphabet letters one below one using perl. Can anybody give suggestion on this! Thanks Pon ilavarasu...
27386 David Precious
bigpresh Send Email
Sep 12, 2012
6:58 am
... print join "\n", ('a'..'z&#39;); '..' is the useful range operator. It works for numbers too. There are of course other ways to write the above. Another could...
27387 BhavinP
mail4bhavin Send Email
Sep 20, 2012
4:46 pm
... my @arr = (1..100); my $start = 0; my $end = 0; my $incr = 25; sub get25{ $end = $start + $incr; my @retarr = @arr[$start..$end]; $start = $end; return...
27388 Joe Pepersack
joe@... Send Email
Sep 23, 2012
6:26 pm
There are a couple problems with the solution provided by BhavinP, not the least of which is that it doesn't duplicate Jana's requirements. The subroutine is...
27389 BhavinP
mail4bhavin Send Email
Sep 24, 2012
4:03 pm
well, my code was just to point in the right direction. a module that will give you chunks of 25 elements from the array each time its invoked. the last...
27390 johnlikeglass Send Email Sep 27, 2012
12:46 am
Take a look at the simple script below. $c should never show up, right? On FastCGI servers it often does! Try loading it, calling it, and hitting F5 enough,...
27391 Joe Pepersack
joe@... Send Email
Sep 27, 2012
1:02 am
In FastCGI, your program does not exit after it runs; the perl interpreter and your script stay in memory until the fastcgi server kills it. This is why...
27392 Joe Pepersack
joe@... Send Email
Sep 27, 2012
4:55 am
My example below may not be entirely clear. Let's modify it to be: use CGI::Fast; use CGI::Carp; $SIG{PIPE} = sub { carp "caught SIGPIPE" }; $SIG{USR1} = sub {...
27393 Shlomi Fish
shlomif2 Send Email
Sep 27, 2012
9:01 am
Hi John, a few comments on your code: On Thu, 27 Sep 2012 00:46:13 -0000 ... Always add "use strict;" and "use warnings;": ...
27394 gaurav.pandey789@...
gaurav.pande... Send Email
Sep 28, 2012
8:18 am
perl code for finding the radiality centrality of a graph or a network...
27395 Joe Pepersack
joe@... Send Email
Sep 29, 2012
4:54 pm
... Your first stop for questions like this should always be CPAN. http://search.cpan.org/search?query=graph+centrality There are a few modules present which...
27396 perl-beginner@yahoogr... Send Email Oct 1, 2012
7:57 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27397 gaurav.pandey789@...
gaurav.pande... Send Email
Oct 3, 2012
6:13 am
thanks...
27398 Md. Musfique Anwar
newton897 Send Email
Oct 21, 2012
11:06 am
Deal All, Hope all of you are fine. I am a beginner in Perl programming. I got this error when I tied a hash to a dbm file: sdbm store returned -1, errno 19,...
Messages 27369 - 27398 of 27465   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