Home :: Books :: Computers & Internet  

Arts & Photography
Audio CDs
Audiocassettes
Biographies & Memoirs
Business & Investing
Children's Books
Christianity
Comics & Graphic Novels
Computers & Internet

Cooking, Food & Wine
Entertainment
Gay & Lesbian
Health, Mind & Body
History
Home & Garden
Horror
Literature & Fiction
Mystery & Thrillers
Nonfiction
Outdoors & Nature
Parenting & Families
Professional & Technical
Reference
Religion & Spirituality
Romance
Science
Science Fiction & Fantasy
Sports
Teens
Travel
Women's Fiction
Perl: A Beginner's Guide

Perl: A Beginner's Guide

List Price: $29.99
Your Price:
Product Info Reviews

<< 1 >>

Rating: 5 stars
Summary: Excellent Introduction to Perl
Review: A lot of people write intoduction or beginning books for computer programming. But what most of these beginning books do is to very slowly introduce a few concepts then jump into advance topics without explaining how or why they got there. This book, although not perfect, is a quantum leap compared to other beginner books.

The book starts off with a brief history of Perl and then slowly introduces the language of Perl a step at a time. Then it goes to the next logical step without skipping over important topics. The book does a good job of helping the reader write Perl programs for the three major systems NT, Unix and Mac and even gives some advice on how to work your server settings and how to access Perl with html.

One of the areas the book could improve on is how you can apply the lesson you are learning about Perl for a problem. While the book does cover this a little bit, and anyone with some programming knowledge knows why or how, the authors could give a few real world reasons why you need such things as arrays in Perl.

This book is highly recommended. Reading through this book will give you an excellent base in learning the Perl language.

Rating: 4 stars
Summary: A gentle introduction to Perl
Review: For Perl beginners, this book is significantly more readable than the O'Reilly texts -- I would like to have seen even more exercises throughout, though.

Overall, a good springboard to a more in-depth text, such as the Wrox title "Beginning Perl". I deducted one point for a few minor (but annoying) typographical errors - this book needed one more pass by the technical editor. C programmers will quickly recognize the typos, but these could confuse some beginners.

Also, this book covers the Perl DBI using the PostgreSQL database. Installing PostgreSQL is awkward on Windows, yet many beginning Perl developers probably use Windows. The Wrox book "Beginning Perl" makes the more logical choice of using the MySQL database, which is simpler to install and use on Windows (and also runs on most Linux/Unix platforms).

Rating: 2 stars
Summary: good bad and ugly
Review: good: very simple treatment of the perl language. you can learn to program some relatively simple stuff if you haven't done any programming in 15 years (like me).

bad: the book is ATROCIOUSLY edited. i find at least one significantly confusing typo every few pages. if you look on the bright side, you can use these mistakes to hone your skills on finding scripting errors, but in general, it seems to reflect a lack of care in putting the book together.

ugly: this is for an absolute beginner who's willing to work through all of the typos. you will have to shell out additional $$ to begin to use perl in any productive manner.

Rating: 1 stars
Summary: Poor Examples, and Full of Typos
Review: I am always on the lookout for Perl books from sources other than O'Reilly & Associates. Since Larry Wall works for them, they are The Authorities on the language, no question. But I've often felt that they know the language perhaps too well; they are so familiar with its subtleties that they don't do as good a job of explaining the basics as they might.

I consider myself to be beyond the novice stage in Perl programming, but far from an expert, so I was very interested in what Perl: A Beginner's Guide had to say.

It is a maddening book. I really would like to say something positive about it, but it is so full of typos, and so haphazardly put together, that I just can't.

The slipshod feeling shows right from the beginning. After explaining how to run the traditional "Hello, World" program, the authors explain the chomp() function, which removes a newline character from the end of an input line. We're then given a Note, with a box around it, to clear up a key point:

"Perl also has a function called chomp(), which removes the last character of a string. Unlike chomp(), chomp() removes any character, no matter what it is, whereas chomp() only remove the character if it's a newline character. When you only need to remove a trailing newline character, you should always use chomp(), because it's safer."

Got that?

Sure, you know that they're talking about chop() versus chomp(), and this is only a typo. But how long will it take the beginner who's reading this book to figure that out?

On page 59 the authors introduce Perl's comparison operators, including the = = operator inherited from C, and the source of much confusion among novices and experts alike. Twenty-three pages later we finally get an example of one of these operators, and it's wrong:

$a = 20;
if( $a = 15){
print "a is equal to 15\n";
}
else....

This example, of course, will print "a is equal to 15" until the cows come home. Or until the reader throws the book aside in disgust.

I could go on, but you get the point. The problem is not only that the book is full of small errors like the ones I've cited; the problem is that their presence makes you mistrust everything the book says, even when it's correct.

A more subtle issue, and one that's harder to get a handle on, is the fact that the book's examples are, for the most part, trivial. You get the feeling that the authors, faced with the need to come up with an example to illustrate the feature of the language they were discussing at the moment, just wrote down whatever popped into their heads. The examples illustrate the point, but they don't take on the more important job of helping the reader to begin to think like a Perl programmer.

For example, in the section on regular expressions, there are a series of examples that use this syntax:

if ($result = $string1 =~ /Hello/){

This example is used over and over, and yes, it works. But, since we never make use of $result anywhere else, a Perl programmer would simplify this to:

if ($string1 =~ /Hello/){

Moreover, in the real world, you'd be more likely to see something like:

if (/Hello/){

-- which makes use of the implied $_ variable. Although an awareness and understanding of the many $x variables are key to understanding Perl's often-cryptic syntax, references to them are sprinkled haphazardly throughout the book; nowhere are they laid out in a logical, orderly fashion.

As I said at the beginning, I really would like to like this book. The authors obviously have gone out of their way to try to write a manual that makes Perl approachable for beginners. What they've got here is a good first draft; but it's not ready for publication.

Rating: 1 stars
Summary: Poor Examples, and Full of Typos
Review: I am always on the lookout for Perl books from sources other than O'Reilly & Associates. Since Larry Wall works for them, they are The Authorities on the language, no question. But I've often felt that they know the language perhaps too well; they are so familiar with its subtleties that they don't do as good a job of explaining the basics as they might.

I consider myself to be beyond the novice stage in Perl programming, but far from an expert, so I was very interested in what Perl: A Beginner's Guide had to say.

It is a maddening book. I really would like to say something positive about it, but it is so full of typos, and so haphazardly put together, that I just can't.

The slipshod feeling shows right from the beginning. After explaining how to run the traditional "Hello, World" program, the authors explain the chomp() function, which removes a newline character from the end of an input line. We're then given a Note, with a box around it, to clear up a key point:

"Perl also has a function called chomp(), which removes the last character of a string. Unlike chomp(), chomp() removes any character, no matter what it is, whereas chomp() only remove the character if it's a newline character. When you only need to remove a trailing newline character, you should always use chomp(), because it's safer."

Got that?

Sure, you know that they're talking about chop() versus chomp(), and this is only a typo. But how long will it take the beginner who's reading this book to figure that out?

On page 59 the authors introduce Perl's comparison operators, including the = = operator inherited from C, and the source of much confusion among novices and experts alike. Twenty-three pages later we finally get an example of one of these operators, and it's wrong:

$a = 20;
if( $a = 15){
print "a is equal to 15\n";
}
else....

This example, of course, will print "a is equal to 15" until the cows come home. Or until the reader throws the book aside in disgust.

I could go on, but you get the point. The problem is not only that the book is full of small errors like the ones I've cited; the problem is that their presence makes you mistrust everything the book says, even when it's correct.

A more subtle issue, and one that's harder to get a handle on, is the fact that the book's examples are, for the most part, trivial. You get the feeling that the authors, faced with the need to come up with an example to illustrate the feature of the language they were discussing at the moment, just wrote down whatever popped into their heads. The examples illustrate the point, but they don't take on the more important job of helping the reader to begin to think like a Perl programmer.

For example, in the section on regular expressions, there are a series of examples that use this syntax:

if ($result = $string1 =~ /Hello/){

This example is used over and over, and yes, it works. But, since we never make use of $result anywhere else, a Perl programmer would simplify this to:

if ($string1 =~ /Hello/){

Moreover, in the real world, you'd be more likely to see something like:

if (/Hello/){

-- which makes use of the implied $_ variable. Although an awareness and understanding of the many $x variables are key to understanding Perl's often-cryptic syntax, references to them are sprinkled haphazardly throughout the book; nowhere are they laid out in a logical, orderly fashion.

As I said at the beginning, I really would like to like this book. The authors obviously have gone out of their way to try to write a manual that makes Perl approachable for beginners. What they've got here is a good first draft; but it's not ready for publication.

Rating: 5 stars
Summary: Excellent Introduction to Perl
Review: I didn't know anything about Perl until I read this. Very informative, thanks Guys!!

Rating: 4 stars
Summary: good reading
Review: I didn't know anything about Perl until I read this. Very informative, thanks Guys!!

Rating: 4 stars
Summary: Better than some reviews give it credit for
Review: I have the seond edition of Learning Perl and find that this book is not only far more accessible, but covers things that are useful for beginners that Learning Perl does not. The DBI for instance.

At the price this title is going for used it is a bargain.

Rating: 5 stars
Summary: Excellent book for the beginners
Review: This is the best book to learn basics of Perl programming. It makes really easy to learn everything you need to be able to write the simple programs or to have the good basis for the more advanced books.


<< 1 >>

© 2004, ReviewFocus or its affiliates