Re: Learning perl libraries

2014-02-07 Thread Octavian Rasnita
From: rakesh sharma Hi I am a new to perl. Wanted to know how to master some of the daily used perl libraries. Most of the examples are different in usage, some are OO and others are scalar. Some of the Perl modules offer just a functional interface, so no OOP, some of them are jus

Re: Learning perl libraries

2014-02-07 Thread Shlomi Fish
Hi rakesh, thanks for your message. See below for my response. On Sat, 8 Feb 2014 10:53:21 +0530 rakesh sharma wrote: > Hi > I am a new to perl.Wanted to know how to master some of the daily used perl > libraries. I hope (and assume) that by “libraries” you mean the Perl modules (.pm/etc.) ava

Re: Learning perl, understanding the basics.

2013-01-01 Thread Zachary Bornheimer
The information given to you on this is sufficient to explain that the repetition operator (x) takes a string on the left and a number on the right (specifically a positive integer). As you can tell, perl does not make you say that a $foo is an integer or $foo is a string, but rather just allows y

Re: Learning perl, understanding the basics.

2013-01-01 Thread Goke Aruna
Hello Singh, Chomp the $string and test again. Really sorry I cannot bottom post with BBerry phone. Regards On 12/29/12, Om Prakash Singh wrote: > Hi All, > > I am new to perl and while going through the chapters of Learning perl, > i just came through one excessive, while i was able to complete

Re: Learning perl, understanding the basics.

2012-12-29 Thread Om Prakash Singh
Hi Shlomi, On Saturday 29 December 2012 10:23 PM, Shlomi Fish wrote: Hi Omps, On Sat, 29 Dec 2012 22:12:14 +0530 Om Prakash Singh wrote: Hi All, I am new to perl and while going through the chapters of Learning perl, i just came through one excessive, while i was able to complete it, i just

Re: Learning perl, understanding the basics.

2012-12-29 Thread timothy adigun
Hi Om Orakash, but, when i use > $result = $number x $string; > I don't get any output at all, just wondering why this happens, any help > would be highly appreciable. > Binary "x" is the repetition operator. To get more please see this link http://perldoc.perl.org/perlop.html#Multiplicative-Ope

Re: Learning perl, understanding the basics.

2012-12-29 Thread Shlomi Fish
Hi Omps, On Sat, 29 Dec 2012 22:12:14 +0530 Om Prakash Singh wrote: > Hi All, > > I am new to perl and while going through the chapters of Learning perl, > i just came through one excessive, while i was able to complete it, i > just came across something that didn't work and i couldn't find a

Re: Learning perl, understanding the basics.

2012-12-29 Thread Danny Gratzer
That's because in this case the 'x' is acting as an operator which takes in a string on the left side, a number on the right side, and returns the string replicated as many times as the number. When you flip them, it tries to treat the string as a number, which is a problem. So it returns undef or

Re: Learning CPAN

2012-10-15 Thread Leo Lapworth
Hi Danny, On 5 October 2012 03:03, Danny Gratzer wrote: > However I feel like I'm missing most of Perl with CPAN, sure I > know the basic modules but is there any mailing list or website that > regularly features useful modules? > https://metacpan.org/module/Task::Kensho is a good if not the be

Re: Learning CPAN

2012-10-06 Thread shawn wilson
besides news, you can also check out some of the perl mongers communities / lists. and you can get on irc - on freenode, there's #perl-help, and on the perl irc server, there's tons of different channels - even if you don't have anything to ask, sometimes it's good / fun to read the scroll every on

Re: Learning CPAN

2012-10-06 Thread John Delacour
On 05/10/2012 04:14, Hal Wigoda wrote: Who uses newsgroups anynore? What reader application is the best for reading news groups? If your ISP doesn’t provide a news feed then you can read usenet groups in Google: If y

RE: Learning CPAN

2012-10-05 Thread Bob McConnell
> From: Jim Gibson > > On Oct 4, 2012, at 8:14 PM, Hal Wigoda wrote: > > > Who uses newsgroups anymore? > > I do. There are lots of people still using Usenet. > > > What reader application is the best for reading news groups? > > It depends upon your platform. I use Thoth on a Mac. There are l

Re: Learning CPAN

2012-10-04 Thread Jim Gibson
On Oct 4, 2012, at 8:14 PM, Hal Wigoda wrote: > Who uses newsgroups anymore? I do. There are lots of people still using Usenet. > What reader application is the best for reading news groups? It depends upon your platform. I use Thoth on a Mac. There are lots of choices. As for groups, see 'pe

Re: Learning CPAN

2012-10-04 Thread Shlomi Fish
Hi all, On Fri, 5 Oct 2012 12:15:56 +1000 "Owen" wrote: > > > Hello, > > So I have been using perl for about 9 months and I understand the > > syntax > > fairly well. However I feel like I'm missing most of Perl with CPAN, > > sure I > > know the basic modules but is there any mailing list or w

Re: Learning CPAN

2012-10-04 Thread Hal Wigoda
Who uses newsgroups anynore? What reader application is the best for reading news groups? On Thu, Oct 4, 2012 at 9:15 PM, Owen wrote: > >> Hello, >> So I have been using perl for about 9 months and I understand the >> syntax >> fairly well. However I feel like I'm missing most of Perl with CPAN,

Re: Learning CPAN

2012-10-04 Thread Leo Susanto
I enjoyed Mark Fowler's presentation "CPAN modules every perl programmer should know" but I don't have the link to the presentation. or you just can browse through perl advent: http://perladvent.org/ On Thu, Oct 4, 2012 at 7:03 PM, Danny Gratzer wrote: > Hello, > So I have been using perl for ab

Re: Learning CPAN

2012-10-04 Thread Owen
> Hello, > So I have been using perl for about 9 months and I understand the > syntax > fairly well. However I feel like I'm missing most of Perl with CPAN, > sure I > know the basic modules but is there any mailing list or website that > regularly features useful modules? There is spam free ne

Re: Learning perl

2012-03-06 Thread 'lesleyb'
On Mon, Mar 05, 2012 at 07:42:24PM -0800, David Christensen wrote: > On 03/05/2012 07:19 AM, lina wrote: > >Which books are the best perl books you have ever read? > > 1. Learning Perl -- this book gets you up the initial learning > curve. Read it cover to cover, enter and play with the example c

Re: Learning perl

2012-03-05 Thread lina
Thanks for all of you. I will take time to do those things. Best wishes, lina -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Learning perl

2012-03-05 Thread David Christensen
On 03/05/2012 07:19 AM, lina wrote: Which books are the best perl books you have ever read? 1. Learning Perl -- this book gets you up the initial learning curve. Read it cover to cover, enter and play with the example code, and do the exercises: http://shop.oreilly.com/product/063692001

Re: Learning perl

2012-03-05 Thread Shawn H Corey
On 12-03-05 10:19 AM, lina wrote: Which books are the best perl books you have ever read? The latest version of Modern Perl has just come out. http://www.onyxneon.com/books/modern_perl/index.html -- Just my 0.0002 million dollars worth, Shawn Programming is as much about organization

Re: Learning perl

2012-03-05 Thread Shlomi Fish
Hi Rob, a few small corrections. On Mon, 5 Mar 2012 17:32:12 +0100 Rob Coops wrote: > On Mon, Mar 5, 2012 at 4:35 PM, Shawn H Corey wrote: > > > On 12-03-05 10:19 AM, lina wrote: > > > >> Is the books wrote before 2006 a bit older, are there much changes in > >> the last 10 years for perl? >

Re: Learning perl

2012-03-05 Thread Mike Burns
On Mon, Mar 5, 2012 at 12:22 PM, Mike Burns wrote: > On Mon, Mar 5, 2012 at 10:19 AM, lina wrote: > >> Hi, >> >> Which books are the best perl books you have ever read? >> >> How did you start learning perl? >> >> Is the books wrote before 2006 a bit older, are there much changes in >> the last 1

Re: Learning perl

2012-03-05 Thread Rob Coops
On Mon, Mar 5, 2012 at 4:35 PM, Shawn H Corey wrote: > On 12-03-05 10:19 AM, lina wrote: > >> Is the books wrote before 2006 a bit older, are there much changes in >> the last 10 years for perl? >> > > All changes to Perl are available via perldoc. > > `perldoc perl` and search for /delta/. > > `

Re: Learning perl

2012-03-05 Thread Shawn H Corey
On 12-03-05 10:19 AM, lina wrote: Is the books wrote before 2006 a bit older, are there much changes in the last 10 years for perl? All changes to Perl are available via perldoc. `perldoc perl` and search for /delta/. `perldoc pelrdelta` gives the latest. -- Just my 0.0002 million dolla

Re: Learning Perl ex8-5

2011-09-26 Thread Jim Gibson
At 9:57 PM -0500 9/26/11, Chris Stinemetz wrote: I am having some difficulty completing this exercise from llama book. Maybe someone can explain memory variables to me when working with regular expressions. The exercise: Modify the program from the previous exercise so that immediately follow

Re: learning perl scripting

2009-12-06 Thread Dermot
2009/12/6 Agnello George : > Hi Welcome > i am basically a  a system administrator, and i have just joined this new > company where my entire team are a group pf developers + system admins and i > am the only system admin with out programming knowledge . i know a little of > shell scripting from

Re: learning perl scripting

2009-12-06 Thread Shawn H Corey
Shlomi Fish wrote: > I agree that people are allowed to speak and write in sub-optimal or not > perfectly native English. It is assumed that if a post is not in proper English, then the poster's mother tongue is not English. Writing correctly in a language you are only vaguely familiar with is d

Re: learning perl scripting

2009-12-06 Thread Shlomi Fish
On Sunday 06 Dec 2009 13:10:58 Erez Schatz wrote: > 2009/12/6 Shlomi Fish : > > Hi Agnello! > > > > That put aside, you really should work on writing your English text > > better. While one can understand it, the style (punctuation, > > capitalisation, spelling, etc.) is horrible. > > Not as horri

Re: learning perl scripting

2009-12-06 Thread Shawn H Corey
Agnello George wrote: > Hi > > i am basically a a system administrator, and i have just joined this new > company where my entire team are a group pf developers + system admins and i > am the only system admin with out programming knowledge . i know a little of > shell scripting from my previous

Re: learning perl scripting

2009-12-06 Thread Erez Schatz
2009/12/6 Shlomi Fish : > Hi Agnello! > That put aside, you really should work on writing your English text better. > While one can understand it, the style (punctuation, capitalisation, spelling, > etc.) is horrible. Not as horrible as the tone of this comment. In Perl we accept that different l

Re: learning perl scripting

2009-12-06 Thread Shlomi Fish
Hi Agnello! On Sunday 06 Dec 2009 11:51:10 Agnello George wrote: > Hi > > i am basically a a system administrator, and i have just joined this new > company where my entire team are a group pf developers + system admins and > i am the only system admin with out programming knowledge . i know a

Re: learning perl scripting

2009-12-06 Thread Rene Schickbauer
Agnello George wrote: Hi but last one year i am trying to learn this language but dont seem to get a hold of it . sometimes i fell shell-scripting a is a lot more better and easier .. but my aim is to learn perl scripting ... i mean how does one get a real hold of this language ... !! As ment

Re: learning perl scripting

2009-12-06 Thread Parag Kalra
On Sun, Dec 6, 2009 at 3:21 PM, Agnello George wrote: > Hi > > Hi Agnello > stuff ... but last one year i am trying to learn this language but dont > seem > to get a hold of it . sometimes i fell shell-scripting a is a lot more > better and easier .. Even I struggled with the Perl for first

Re: Learning Perl Student Workbook

2009-11-04 Thread brian d foy
In article , raphael() wrote: > I just finished reading 'Learning Perl' & I was wondering if someone > could point me to the book "Perl Study Guide", > also called "Learning Perl Student Workbook". It's a companion book to > "Learning Perl" but is not available in my country. > > I was hopin

Re: Learning Perl Student Workbook

2009-11-02 Thread Telemachus
On Mon Nov 02 2009 @ 7:14, tom smith wrote: > use strict; > use warnings; > > $\ = "\n"; > > my @book_types = ('hard cover book', 'soft cover book', 'ebook'); > > if ('soft cover book' eq 'ebook') { > print 'yes'; > } else { > print 'no'; > } > > --output:-- > no Right. The original po

Re: Learning Perl Student Workbook

2009-11-02 Thread tom smith
On Mon, Nov 2, 2009 at 10:36 AM, Telemachus wrote: > On Mon Nov 02 2009 @ 9:33, Parag Kalra wrote: > > Hey Folks, > > > > This thread was about book - 'Learning Perl Student Workbook' and not the > > book - 'Learning Perl' > > > > So is there a way we can buy genuine/official/legal ebook version

Re: Learning Perl Student Workbook

2009-11-02 Thread Telemachus
On Mon Nov 02 2009 @ 9:33, Parag Kalra wrote: > Hey Folks, > > This thread was about book - 'Learning Perl Student Workbook' and not the > book - 'Learning Perl' > > So is there a way we can buy genuine/official/legal ebook version of > 'Learning Perl Student Workbook' from somewhere. > > If ye

Re: Learning Perl Student Workbook

2009-11-02 Thread Parag Kalra
Hey Folks, This thread was about book - 'Learning Perl Student Workbook' and not the book - 'Learning Perl' So is there a way we can buy genuine/official/legal ebook version of 'Learning Perl Student Workbook' from somewhere. If yes then please redirect us to the same. Cheers, Parag On Mon,

Re: Learning Perl Student Workbook

2009-11-02 Thread Peter Scott
On Mon, 02 Nov 2009 14:07:19 +0900, Raymond Wan wrote: > Perhaps the blame should be equally leveled at the web site and maybe it > should be brought to the attention of O'Reilly? You can bet O'Reilly knows about it. Those .ua sites have been going for years. Hard for a little US company to get

Re: Learning Perl Student Workbook

2009-11-02 Thread Shlomi Fish
On Monday 02 Nov 2009 07:19:30 Uri Guttman wrote: > > "RW" == Raymond Wan writes: > > RW> Uri Guttman wrote: > >>> "mb" == mahesh bhasme writes: > > mb> Hi, > mb> below link might help to u > > >> that is exactly what randal said he didn't want to see, a bootleg copy > >> o

Re: Learning Perl Student Workbook

2009-11-01 Thread Uri Guttman
> "RW" == Raymond Wan writes: RW> Uri Guttman wrote: >>> "mb" == mahesh bhasme writes: >> mb> Hi, mb> below link might help to u >> >> that is exactly what randal said he didn't want to see, a bootleg copy >> of his book. you won't be getting any more help from him and

Re: Learning Perl Student Workbook

2009-11-01 Thread Raymond Wan
Uri Guttman wrote: "mb" == mahesh bhasme writes: mb> Hi, mb> below link might help to u that is exactly what randal said he didn't want to see, a bootleg copy of his book. you won't be getting any more help from him and probably most of the experts here. that copy is illegal and takes i

Re: Learning Perl Student Workbook

2009-11-01 Thread Uri Guttman
> "mb" == mahesh bhasme writes: mb> Hi, mb> below link might help to u that is exactly what randal said he didn't want to see, a bootleg copy of his book. you won't be getting any more help from him and probably most of the experts here. that copy is illegal and takes income out of randa

Re: Learning Perl Student Workbook

2009-11-01 Thread mahesh bhasme
Hi, below link might help to u http://docstore.mik.ua/orelly/perl/learn/ On Sun, Nov 1, 2009 at 10:51 AM, raphael() wrote: > Hi, > >I just finished reading 'Learning Perl' & I was wondering if someone > could point me to the book "Perl Study Guide", > also called "Learning Perl Student Work

Re: Learning Perl Student Workbook

2009-11-01 Thread Parag Kalra
This is strange - If I am not wrong this book is published by O'Reilly publications but their site contains no information about it. Have a look - http://oreilly.com/pub/topic/perl? http://www.oreillynet.com/pub/au/1071 Cheers, Parag On Sun, Nov 1, 2009 at 5:34 PM, Telemachus wrote: > On Su

Re: Learning Perl Student Workbook

2009-11-01 Thread Telemachus
On Sun Nov 01 2009 @ 12:32, Parag Kalra wrote: > >>>google doesn't turn up any soft copies ?? Is any electronic copy of this > book even there? > > Even I am not sure if there is any soft copy available or not...Lets wait > till we get input from other members of the mailing list... > > Cheers, >

Re: Learning Perl Student Workbook

2009-11-01 Thread Telemachus
On Sun Nov 01 2009 @ 10:51, raphael() wrote: > Hi, > > I just finished reading 'Learning Perl' & I was wondering if someone > could point me to the book "Perl Study Guide", > also called "Learning Perl Student Workbook". It's a companion book to > "Learning Perl" but is not available in my cou

Re: Learning Perl Student Workbook

2009-11-01 Thread Parag Kalra
>>>google doesn't turn up any soft copies ?? Is any electronic copy of this book even there? Even I am not sure if there is any soft copy available or not...Lets wait till we get input from other members of the mailing list... Cheers, Parag On Sun, Nov 1, 2009 at 12:22 PM, raphael() wrote:

Re: Learning Perl Student Workbook

2009-10-31 Thread Parag Kalra
Hi Raphael, This is a good find. I was not knowing this. I have been posting from 1 forum to other forum for books on Perl exercises and today I came to know one from you. Thanks a lot. I am expecting it to be as good as the 'Learning Perl' book. Now even I am want to buy the soft copy of it. I

Re: Learning process How? & Why?

2008-09-26 Thread John W. Krahn
Jack Gates wrote: These first four lines are how every Perl script I write starts. #!/usr/bin/perl -T use strict; use warnings; use diagnostics -verbose; my ($oldfile) = $ARGV[0] =~ /^([-a-zA-Z0-9._\/]+)$/; die "bad old filename" unless $oldfile; my ($newfile) = $ARGV[1] =~ /^([-a-zA-Z0-9._\/]

RE: How to Read Files? [was: Re: learning perl 3rd vs 4th]

2008-05-25 Thread Thomas Bätzler
AndrewMcHorney <[EMAIL PROTECTED]> asked: > The spec does not allow for carriage returns or line feeds > making it a long line. Is there a way to read "x" number of bytes? $ perldoc -f read read FILEHANDLE,SCALAR,LENGTH,OFFSET read FILEHANDLE,SCALAR,LENGTH Attempts to read LENGTH

Re: How to Read Files? [was: Re: learning perl 3rd vs 4th]

2008-05-25 Thread AndrewMcHorney
Hello The spec does not allow for carriage returns or line feeds making it a long line. Is there a way to read "x" number of bytes? Andrew At 11:10 AM 5/25/2008, Rob Dixon wrote: Hi Andrew (If you are asking a new question of this group please make a fresh post with an appropriate subject

Re: How to Read Files? [was: Re: learning perl 3rd vs 4th]

2008-05-25 Thread Rob Dixon
Hi Andrew (If you are asking a new question of this group please make a fresh post with an appropriate subject line rather than replying to the end of an old thread. Many of us have email clients that correctly display the flow of threads, and using reply makes it look as if you have something mor

Re: learning perl 3rd vs 4th

2008-05-25 Thread Matthew Whipple
On Sun, 2008-05-25 at 10:07 -0700, AndrewMcHorney wrote: > Hello > > I have been reading files with the following command: > > @source_lines = (); > You'd want to use $source_line = to get a single record at a time from the handle > This has worked until I started reading some very large f

Re: learning perl 3rd vs 4th

2008-05-25 Thread AndrewMcHorney
Hello I have been reading files with the following command: @source_lines = (); This has worked until I started reading some very large files. Is there a better way to read files? The files I am trying to read now are about 300 megabytes in size. The bad news is that the spec has no carriage

Re: learning perl 3rd vs 4th

2008-05-17 Thread Randal L. Schwartz
> "Jerald" == Jerald Sheets <[EMAIL PROTECTED]> writes: Jerald> On May 17, 2008, at 12:07 PM, Randal L. Schwartz wrote: >> >> ... and shuffle a bit of content between the >> llama and alpaca to reflect the corresponding changes we've made in our >> courseware. Jerald> Courseware... Jerald>

Re: learning perl 3rd vs 4th

2008-05-17 Thread Jerald Sheets
On May 17, 2008, at 12:07 PM, Randal L. Schwartz wrote: ... and shuffle a bit of content between the llama and alpaca to reflect the corresponding changes we've made in our courseware. Courseware... Do tell. I'm interested. --jms -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

Re: learning perl 3rd vs 4th

2008-05-17 Thread Randal L. Schwartz
> "Richard" == Richard Lee <[EMAIL PROTECTED]> writes: Richard> I was going to order 5th version in june but does anyone in here know Richard> the different between 3rd and 4th version? Is there a big Richard> difference? As I recall, the big changes between 3rd and 4th were to finally ackno

Re: learning perl 3rd vs 4th

2008-05-17 Thread Richard Lee
Rob Dixon wrote: Richard Lee wrote: Currently I own a 'learning perl' 3rd edition and I noticed that 5th version is coming out in june. What I didn't realize was that learning perl 4th edition's been out since 2005. I was going to order 5th version in june but does anyone in here know the

Re: learning perl 3rd vs 4th

2008-05-17 Thread Rob Dixon
Richard Lee wrote: > Currently I own a 'learning perl' 3rd edition and I noticed that 5th > version is coming out in june. > What I didn't realize was that learning perl 4th edition's been out > since 2005. > > I was going to order 5th version in june but does anyone in here know > the differen

Re: Learning Modules

2008-03-13 Thread Richard Lee
Randal L. Schwartz wrote: "Richard" == Richard Lee <[EMAIL PROTECTED]> writes: Richard> 2)and I just don't really understand OO modules. You have two issues rolled into one here. The properties of "OO" and "module" are orthogonal. There are OO programs that don't use modules. T

Re: Learning Modules

2008-03-13 Thread Randal L. Schwartz
> "Richard" == Richard Lee <[EMAIL PROTECTED]> writes: Richard> 2)and I just don't really understand OO modules. You have two issues rolled into one here. The properties of "OO" and "module" are orthogonal. There are OO programs that don't use modules. There are modules that don't use OO.

Re: Learning Modules

2008-03-13 Thread Gunnar Hjalmarsson
Richard Lee wrote: I would like someone's experince on learning modules. I have been avoiding learning modules for couple reasons 1)to learn and try to reinvent some of the wheels to learn the tricks 2)and I just don't really understand OO modules. It is very difficult for me to understand modul

Re: Learning Modules

2008-03-12 Thread yitzle
On Wed, Mar 12, 2008 at 11:41 PM, Richard Lee <[EMAIL PROTECTED]> wrote: > Well, the one of the reason that I have been avoding using the modules > was that I wanted to understand what the hell I am using. > > And I read somewhere that reading what others have wrote is among the > best way to l

Re: Learning Modules

2008-03-12 Thread R (Chandra) Chandrasekhar
Richard Lee wrote: Hello there, I would like someone's experince on learning modules. I have been avoiding learning modules for couple reasons 1)to learn and try to reinvent some of the wheels to learn the tricks 2)and I just don't really understand OO modules. It is very difficult for me to un

Re: Learning Modules

2008-03-12 Thread Richard Lee
yitzle wrote: I've been avoiding modules somewhat, too. However, you don't really need to be that familiar with OO to learn to use the modules. Are you trying to read the module's code to learn about them? Most people just use the documentation on CPAN. Well, the one of the reason that I have

Re: Learning Modules

2008-03-12 Thread yitzle
I've been avoiding modules somewhat, too. However, you don't really need to be that familiar with OO to learn to use the modules. Are you trying to read the module's code to learn about them? Most people just use the documentation on CPAN. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

RE: learning WWW::Mechanize

2007-11-12 Thread Dan Fish
Assuming what you are really looking for from this is the page returned by the search, then you need to move the line: print $mechObject -> content; to the end. -Dan --- #!/usr/bin/perl use strict; use warnings; use WWW::Mechanize; my $queryString = 'HelloWor

Re: learning WWW::Mechanize

2007-11-12 Thread Rob Dixon
newBee wrote: Hi after going over the FAQ and the examples I decided to write a small script to understand the WWW::Mechanize module. Since Google has one field and two buttons I thought this would be a straight forward one. So I wrote the fallowing script. At the end of the script I thought the

Re: Learning Perl

2007-10-11 Thread Paul Lalli
On Oct 11, 2:30 am, [EMAIL PROTECTED] (Jeff Pang) wrote: > 9 Oct 2007 17:59:42 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > > Another book that I've been using recently is Perl by Example 3rd > > Edition > > Perl by Example? do you mean the "perl cookbook"?. Uh. Call it a hunch, but I'm gues

Re: Learning Perl

2007-10-10 Thread Jeff Pang
9 Oct 2007 17:59:42 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > Another book that I've been using recently is Perl by Example 3rd > Edition Perl by Example? do you mean the "perl cookbook"?. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http

Re: Learning Perl

2007-10-10 Thread [EMAIL PROTECTED]
On Oct 9, 11:37 am, [EMAIL PROTECTED] (Francisco Valladolid) wrote: > Hi. > > On 10/9/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > > > > > > > On Oct 9, 9:17 am, [EMAIL PROTECTED] (Bob McConnell) wrote: > > > My experience was that "Learning Perl" was the introduction that > > > prepared me to tackl

Re: Learning Perl

2007-10-09 Thread Francisco Valladolid
Hi. On 10/9/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > > On Oct 9, 9:17 am, [EMAIL PROTECTED] (Bob McConnell) wrote: > > My experience was that "Learning Perl" was the introduction that > > prepared me to tackle "Programming Perl". That combination gave me a > > very good general understanding of

Re: Learning Perl

2007-10-09 Thread Paul Lalli
On Oct 9, 9:17 am, [EMAIL PROTECTED] (Bob McConnell) wrote: > My experience was that "Learning Perl" was the introduction that > prepared me to tackle "Programming Perl". That combination gave me a > very good general understanding of the language and how to apply it. > After that, there are a numb

RE: Learning Perl

2007-10-09 Thread Bob McConnell
> -Original Message- > From: kilaru rajeev [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 09, 2007 8:50 AM > To: Paul Lalli > Cc: beginners@perl.org > Subject: Re: Learning Perl > > I think "Learning perl" is a better choice as per my > know

Re: Learning Perl

2007-10-09 Thread kilaru rajeev
I think "Learning perl" is a better choice as per my knowledge. You can go for the remaining after this. Thanks, Rajeev Kilaru On 10/9/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > > On Oct 9, 7:28 am, [EMAIL PROTECTED] (Bhargav Purohit) wrote: > > Instead to of starting directly with Camel Book(L

Re: Learning Perl

2007-10-09 Thread Paul Lalli
On Oct 9, 7:28 am, [EMAIL PROTECTED] (Bhargav Purohit) wrote: > Instead to of starting directly with Camel Book(Learning Perl) The Camel Book is Programming Perl. It is a reference. Effectively a paper-back version of the perldoc documentation you mentioned. Learning Perl is known as the Llama

RE: Learning Perl

2007-10-09 Thread Purohit, Bhargav
Instead to of starting directly with Camel Book(Learning Perl) I would suggest to see the perldoc first and then move to book as perldoc gives more understanding in simple way (learning perl is nothing but just the rearrnaged form of perldoc) How to access perldoc Type perldoc from your l

Re: Learning Perl

2007-10-08 Thread Petra Vide Ogrin
Beginning Perl is my choice as well, very basic, just right for a person of humanist background like myself. It' s available online http://www.perl.org/books/beginning-perl/ hf petra [EMAIL PROTECTED] pravi: On Oct 7, 7:39 am, [EMAIL PROTECTED] (Dyana Wu) wrote: On 07 Oct 2007, at 8:27 P

Re: Learning Perl

2007-10-08 Thread [EMAIL PROTECTED]
On Oct 7, 7:39 am, [EMAIL PROTECTED] (Dyana Wu) wrote: > On 07 Oct 2007, at 8:27 PM, Kaushal Shriyan wrote: > > > Hi > > > I do not have any experience in programming at all. How do i start > > learning > > Perl language. Can some one here point me to the right direction to > > learn > > Perl Langu

Re: Learning Perl

2007-10-07 Thread Jeff Pang
Your message's subject has expressed the correct way.Buy the book "Learning Perl" for beginning. 2007/10/7, Kaushal Shriyan <[EMAIL PROTECTED]>: > Hi > > I do not have any experience in programming at all. How do i start learning > Perl language. Can some one here point me to the right direction t

Re: Learning Perl

2007-10-07 Thread Dyana Wu
On 07 Oct 2007, at 8:27 PM, Kaushal Shriyan wrote: Hi I do not have any experience in programming at all. How do i start learning Perl language. Can some one here point me to the right direction to learn Perl Language http://learn.perl.org HTH. dwu -- To unsubscribe, e-mail: [EMAIL PR

Re: learning perl llama if I have never programmed

2007-06-19 Thread gavino
On May 23, 8:32 am, Paul Lalli <[EMAIL PROTECTED]> wrote: > On May 22, 5:40 pm, gavino <[EMAIL PROTECTED]> wrote: > > > Is this book 4th ed for me if I have never programmed b4? > > I would not recommend it, no. Here's a direct copy from the Preface > of the book: > == > Though you don

Re: Learning Perl with shells operations

2007-03-28 Thread Rob Dixon
Rodrigo Tavares wrote: Hello, With this line the script run, no errors. system "su postgres -c '/usr/local/pgsql/bin/pg_ctl start -D /opt/@bancos[$i]'"; two things : I use of stricts and warnings, and come this error compilation when i wrote into my code. Global symbol "$x" requires explicit

Re: Learning Perl with shells operations

2007-03-28 Thread Alan
On Tuesday 27 March 2007 06:47, Rodrigo Tavares wrote: > Hello, [ . . ] > I use of stricts and warnings, and come this error > compilation when i wrote into my code. > > Global symbol "$x" requires explicit package name at > ./start-banco.pl line 7. > Global symbol "@word" requires explicit package

Re: Learning Perl with shells operations

2007-03-27 Thread Rodrigo Tavares
Hello, With this line the script run, no errors. system "su postgres -c '/usr/local/pgsql/bin/pg_ctl start -D /opt/@bancos[$i]'"; two things : I use of stricts and warnings, and come this error compilation when i wrote into my code. Global symbol "$x" requires explicit package name at ./start-

Re: Learning Perl with shells operations

2007-03-23 Thread John W. Krahn
Rodrigo Tavares wrote: > Hello, Hello, > My code is below: > > $aux = `ls /opt`; > @word = split /\s+/, $aux; That won't work very well if you have names with embeded spaces. A better option would be to assign the back-quote results to an array. > my @bancos = (); Why are you assigning noth

Re: Learning Perl with shells operations

2007-03-23 Thread Jeff Pang
Hello, > >$aux = `ls /opt`; This is not good since Perl has built-in function for read a dir. see: perldoc -f opendir perldoc -f readdir > su postgres -c "/usr/local/pgsql/bin/pg_ctl start -D >@bancos[$i]"; 'su' is not Perl's function.This is a unix shell command,you need to call it with sy

Re: Learning Perl books

2006-12-21 Thread Chad Perrin
On Thu, Dec 21, 2006 at 10:23:57AM -0500, Robert Hicks wrote: > Chad Perrin wrote: > >On Tue, Dec 19, 2006 at 09:08:11AM -0800, Randal L. Schwartz wrote: > >>"Learning Perl on Win32 Systems" is still being published only because it > >>sells. It was based on the second edition of Learning Perl, wh

Re: Learning Perl books

2006-12-21 Thread Robert Hicks
Chad Perrin wrote: On Tue, Dec 19, 2006 at 09:08:11AM -0800, Randal L. Schwartz wrote: "Learning Perl on Win32 Systems" is still being published only because it sells. It was based on the second edition of Learning Perl, which was clearly Unix-bias. For the third and fourth editions of Learnin

Re: Learning Perl books

2006-12-21 Thread Rob Dixon
Rob Dixon wrote: > With regard to 'Learning Perl' and 'Learning Perl on Win32 Systems', can anybody who has read either or both of these books comment on their usefulness for an inexperienced programmer wishing to use Perl on a Windows platform? I have read neither but know that Learning Perl is

Re: Learning Perl books

2006-12-19 Thread Larry Johnson
Chad Perrin <[EMAIL PROTECTED]> wrote: >Interesting. I don't think I'd heard of Strawberry Perl before now. Do >you recommend it over ActiveState? >I may have to give it a try the next time I boot a Windows machine >(which means it may be a few months before I try it out I hadn't heard of it ei

Re: Learning Perl books

2006-12-19 Thread Chad Perrin
On Tue, Dec 19, 2006 at 09:08:11AM -0800, Randal L. Schwartz wrote: > > "Learning Perl on Win32 Systems" is still being published only because it > sells. It was based on the second edition of Learning Perl, which was clearly > Unix-bias. For the third and fourth editions of Learning Perl, we've

Re: Learning Perl books

2006-12-19 Thread Randal L. Schwartz
> "Rob" == Rob Dixon <[EMAIL PROTECTED]> writes: Rob> With regard to 'Learning Perl' and 'Learning Perl on Win32 Systems', can Rob> anybody who has read either or both of these books comment on their Rob> usefulness for an inexperienced programmer wishing to use Perl on a Rob> Windows platform

Re: Learning Perl books

2006-12-18 Thread Chad Perrin
On Mon, Dec 18, 2006 at 12:04:27PM +, Rob Dixon wrote: > With regard to 'Learning Perl' and 'Learning Perl on Win32 Systems', can > anybody > who has read either or both of these books comment on their usefulness for > an > inexperienced programmer wishing to use Perl on a Windows platform? I

Re: Learning Perl books

2006-12-18 Thread Robert Hicks
Rob Dixon wrote: With regard to 'Learning Perl' and 'Learning Perl on Win32 Systems', can anybody who has read either or both of these books comment on their usefulness for an inexperienced programmer wishing to use Perl on a Windows platform? I have read neither but know that Learning Perl is

Re: Learning Perl : Exercices

2006-07-07 Thread Tom Phoenix
On 7/7/06, Monomachus <[EMAIL PROTECTED]> wrote: @ARGV = sort keys %do_these; while (<>) { Isn't working (in Windows)... I need to push Ctrl-C to stop the proccess. That sounds as if @ARGV ended up empty, by the time you got to the diamond operator, and your program is trying to

Re: Learning Perl : Exercices

2006-07-07 Thread John W. Krahn
Monomachus wrote: > Ok here I am at the 9th chapter ... > But here is a thing that isn't working at my computer : > > Exercices: > > Write a program to add a copyright line to all of your exercise answers so > far, by placing a line such as: > > ## Copyright (C) 20XX by Yours Truly > > > P

Re: Learning Perl

2006-04-11 Thread nishanth ev
#!/usr/bin/perl use strict; use diagnostics; my $month; print "\t Enter Month of a year \n"; chomp($month = <>); my %days_month = ( January => 31, February => 28, March => 31 ); print "\t Number of Days in month of $month is $days_month{$month} \n"; ___

  1   2   >