Skip to content
Scan a barcode
Scan
Added to your cart
Paperback Perl Best Practices: Standards and Styles for Developing Maintainable Code Book

ISBN: 0596001738

ISBN13: 9780596001735

Perl Best Practices: Standards and Styles for Developing Maintainable Code

Select Format

Select Condition ThriftBooks Help Icon

Recommended

Format: Paperback

Condition: Good

$4.79
Save $35.20!
List Price $39.99
Almost Gone, Only 1 Left!

You Might Also Enjoy

Object Oriented Perl: A Comprehensive Guide to Concepts and Programming Techniques
Object Oriented Perl: A Comprehensive Guide to Concepts and Programming Techniques
Damian Conway

from: $6.19

Perl Hacks: Tips & Tools for Programming, Debugging, and Surviving (Hacks)
Perl Hacks: Tips & Tools for Programming, Debugging, and Surviving (Hacks)
chromatic, Curtis 'Ovid' Poe, Damian Conway, Curtis Poe, Curtis "Ovid" Poe

from: $4.19

Perl Cookbook
Perl Cookbook
Tom Christiansen, Nathan Torkington, Nathan Christiansen, Tom; Torkington

from: $5.19

Intermediate Perl
Intermediate Perl
Randal L. Schwartz, Tom Phoenix, Brian D. Foy

from: $5.79

Learning Perl
Learning Perl
Randal L. Schwartz, Tom Phoenix, Tom Christiansen, Brian D. Foy

from: $4.79

Mastering Regular Expressions
Mastering Regular Expressions
Jeffrey E.F. Friedl

from: $4.79

Perl for System Administrators
Perl for System Administrators
David N. Blank-Edelman

from: $6.79

Minimal Perl: For UNIX and Linux People
Minimal Perl: For UNIX and Linux People
Tim Maher

from: $6.29

Programming Perl
Programming Perl
Jon Orwant, Larry Wall, Tom Christiansen, Brian D. Foy, Brian D Foy

from: $5.59

Wicked Cool Perl Scripts: Useful Perl Scripts That Solve Difficult Problems
Wicked Cool Perl Scripts: Useful Perl Scripts That Solve Difficult Problems
Steve Oualline, Steve Ouallire

from: $8.09

Data Crunching: Solve Everyday Problems Using Java, Python, and more.
Data Crunching: Solve Everyday Problems Using Java, Python, and more.
Greg Wilson

from: $9.79

Advanced Perl Programming
Advanced Perl Programming
Simon Cozens

from: $4.89

Programming Python
Programming Python
Mark Lutz

from: $11.49

Web Database Applications with PHP & MySQL, 2nd Edition
Web Database Applications with PHP & MySQL, 2nd Edition
Hugh E. Williams, David Lane

from: $5.09

Advanced Perl Programming
Advanced Perl Programming
Sriram Srinivasan

from: $5.49

Designing Web Interfaces: Principles and Patterns for Rich Interactions
Designing Web Interfaces: Principles and Patterns for Rich Interactions
Bill Scott, Theresa Neil

from: $6.59

Design Patterns: Elements of Reusable Object-Oriented Software (Addison-Wesley Professional Computing Series)
Design Patterns: Elements of Reusable Object-Oriented Software (Addison-Wesley Professional Computing Series)
Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides

from: $17.19

The C++ Programming Language
The C++ Programming Language
Bjarne Stroustrup

from: $5.19

sed & awk
sed & awk
Arnold Robbins, Dale Dougherty

from: $4.39

The Elements of Artificial Intelligence Using Common Lisp
The Elements of Artificial Intelligence Using Common Lisp
Steven L. Tanimoto

from: $5.59

Book Overview

Many programmers code by instinct, relying on convenient habits or a "style" they picked up early on. They aren't conscious of all the choices they make, like how they format their source, the names they use for variables, or the kinds of loops they use. They're focused entirely on problems they're solving, solutions they're creating, and algorithms they're implementing. So they write code in the way that seems natural, that happens intuitively, and that feels good. But if you're serious about your profession, intuition isn't enough. Perl Best Practices author Damian Conway explains that rules, conventions, standards, and practices not only help programmers communicate and coordinate with one another, they also provide a reliable framework for thinking about problems, and a common language for expressing solutions. This is especially critical in Perl, because the language is designed to offer many ways to accomplish the same task, and consequently it supports many incompatible dialects. With a good dose of Aussie humor, Dr. Conway (familiar to many in the Perl community) offers 256 guidelines on the art of coding to help you write better Perl code--in fact, the best Perl code you possibly can. The guidelines cover code layout, naming conventions, choice of data and control structures, program decomposition, interface design and implementation, modularity, object orientation, error handling, testing, and debugging. They're designed to work together to produce code that is clear, robust, efficient, maintainable, and concise, but Dr. Conway doesn't pretend that this is the one true universal and unequivocal set of best practices. Instead, Perl Best Practices offers coherent and widely applicable suggestions based on real-world experience of how code is actually written, rather than on someone's ivory-tower theories on how software ought to be created. Most of all, Perl Best Practices offers guidelines that actually work, and that many developers around the world are already using. Much like Perl itself, these guidelines are about helping you to get your job done, without getting in the way. Praise for Perl Best Practices from Perl community members: "As a manager of a large Perl project, I'd ensure that every member of my team has a copy of Perl Best Practices on their desk, and use it as the basis for an in-house style guide." -- Randal Schwartz "There are no more excuses for writing bad Perl programs. All levels of Perl programmer will be more productive after reading this book." -- Peter Scott "Perl Best Practices will be the next big important book in the evolution of Perl. The ideas and practices Damian lays down will help bring Perl out from under the embarrassing heading of "scripting languages". Many of us have known Perl is a real programming language, worthy of all the tasks normally delegated to Java and C++. With Perl Best Practices, Damian shows specifically how and why, so everyone else can see, too." -- Andy Lester "Damian's done what many thought impossible: show how to build large, maintainable Perl applications, while still letting Perl be the powerful, expressive language that programmers have loved for years." -- Bill Odom "Finally, a means to bring lasting order to the process and product of real Perl development teams." -- Andrew Sundstrom "Perl Best Practices provides a valuable education in how to write robust, maintainable Perl, and is a definitive citation source when coaching other programmers." -- Bennett Todd "I've been teaching Perl for years, and find the same question keeps being asked: Where can I find a reference for writing reusable, maintainable Perl code? Finally I have a decent answer." -- Paul Fenwick "At last a well researched, well thought-out, comprehensive guide to Perl style. Instead of each of us developing our own, we can learn good practices from one of Pe This description may be from another edition of this product.

Customer Reviews

5 customer ratings | 5 reviews

Rated 5 stars
This book has changed my life

This is a must-read for any Perl programmer. You are only as good as the teachers you have, and if your teachers use stuff like $|++, you are screwed. In this case, Conway would tell you to Use English;, and then you'd know what a $| is. A sampling of other tips: Don't modify via $_ (too easy to screw things up) Use hashes for arguments if arguments > 3 (trackability) <br />Use Croak instead of die (Croak gives more info,...

0Report

Rated 5 stars
If only there were more books as good as this

This book is probably one of the best tech books I've read. The topics he covers range quite a bit starting from the very beginning with programming style through documentation and error handline. Style is a contentious topic, if ever there was one, but he argues convincingly for each of the points he makes and gives practical reasons why it benefits you to code in a certain way. We've all heard many of these things before,...

0Report

Rated 5 stars
THE BEST OF PERL

It's almost a certainty that you won't like all of the suggestions that follow if you're an experienced developer. Author Damian Conway has done an outstanding job of designing a book to help you write better Perl code. Conway begins by explaining why it might be worth reassessing your current coding practices. Next, the author tackles the many contentious issues of code layout. Then, he presents a series of guidelines that...

0Report

Rated 5 stars
Gutsy, well researched and written

I love this book, and I'm impressed with the guts it took to write it. Perl is a "there are many ways to do it" language, and Perl programmers are adamant about finding clever solutions in the language. This book sets down a set of guidelines for the most professional way to do it. And in so doing pays Perl a lot more respect than it's paid in other books. I strongly recommend that anyone writing Perl professionally should...

0Report

Rated 5 stars
If you program in Perl, you need this book

What a great book. If you have experience programming in Perl you will truely appreciate the hard won insights of the author. As I read through the author's tips and guidelines for Perl programming I would constantly find myself thinking 'what a great idea' or 'why didn't I think of that'. We are always told in programming 'don't reinvent the wheel', as advice to find code already written to solve our problem. Well, with this...

0Report

Copyright © 2025 Thriftbooks.com Terms of Use | Privacy Policy | Do Not Sell/Share My Personal Information | Cookie Policy | Cookie Preferences | Accessibility Statement
ThriftBooks ® and the ThriftBooks ® logo are registered trademarks of Thrift Books Global, LLC
GoDaddy Verified and Secured