Rating:  Summary: Valuable for its _clarity_ Review: After reading this book I rewrote a pretty massive postscript pasrsing and munging system that I was having a lot of trouble with and felt like I did it the _right_ way. If you follow the author through his examples and actually read the book (which I was able to read almost straight through) I think that you will find yourself with a more long-view approach. And I think that makes this book valuable. And admit it, every time you read throgh a regex chapter you get a little more in the old noggin...
Rating:  Summary: Valuable for its _clarity_ Review: After reading this book I rewrote a pretty massive postscript pasrsing and munging system that I was having a lot of trouble with and felt like I did it the _right_ way. If you follow the author through his examples and actually read the book (which I was able to read almost straight through) I think that you will find yourself with a more long-view approach. And I think that makes this book valuable. And admit it, every time you read throgh a regex chapter you get a little more in the old noggin...
Rating:  Summary: Stop this man before he reveals everything! Review: Dave Cross's new book, published by Manning, which means it has a figure from an old guide to native dress of the peoples of the world on the cover instead of some kind of animal, tells everything you need to know about using Perl for what it is most suited for: manipulating data.Starting with the source/filter/sink theory of data manipulation and demonstrating every tip and technique with clear and efficient examples, without severe digressions into mythological whimsy, this book would make an excellent second text on the Perl language, or a suitable first for someone who is good with programming languages. Many of the techniques contained in it are of "trade secret" quality; they are the sort of write-the-number-of-gallons-of-paint-it-took-to-paint- the-room-on-the-back-of-the-light-switch-cover practices that until now had to be learned or happened upon by every programmer, alone, or by example, rather than in the context of a coherent theory. The theoretical side, in which "munging" is defined and most software activity is described in terms of it, is clear enough that the book might be an interesting read for management, to answer the question "Just what is it about Perl that makes those who use it regularly so confoundedly fanatical?" If you've ever been mystified by a Perl wizard who found it easier to export the records from the fancy GUI database into a comma delimited text file and then sort and display the data with mysterious little programs rather than use the GUI's native report generator, and want to find out why, or if you would like to become such a person yourself, or if you already are such a person but would like to get better at it, this book is for you.
Rating:  Summary: 7 years ago this would have been good. Review: I was hoping this book would provide some valuable routines for processing data, but instead it has proved virtually useless in my day to day job as a UNIX data center adminstrator. I work with XML a great deal (as well as relational databases), but the author's coverage of XML is week (2 pages on the DOM)-- and no coverage of dealing with record sets. This is a good text if you have reams of old fashioned columnar data that you need to text process. Hmm, I did that 7 years ago.
Rating:  Summary: An apt description of Perl Review: I was perusing the shelves at my local bookstore, when this title jumped out and grabbed me. Not only is it a unique and interesting title (Something uncommon for computer books), but it is also the most succinct description of my job, and of Perl for that matter, that I have ever seen. I am an avid reader, and in the interest of furthering my career most of my reading is work related. Normally, it takes me more than a month to read a book, though I am in the process of reading a half dozen or so at a time. I finished this book in less than a week. I couldn't put it down. The thing that is so great about this book, is that it delves into the heart of what Perl does best (And was designed to do). Nine out of ten (more like ninety-nine out of one-hundred) jobs in Perl involve taking some sort of raw data, munging it, and spitting it out to some other process. This book is about doing that, many of the different forms that that can take, and some of the many techniques that perl (and a pragmatic approach) make available to do that. While I hesitate to say that this is the best Perl book I've ever read (It's got some good competition), I can say that there is no application of Perl that I am aware of where this book and the principles it explores would not be of value. In my opinion this book belongs on every serious Perl programmer's bookshelf right next to the "Camel" and the "Cookbook".
Rating:  Summary: Good for data-processing *beginners* Review: It's a guide. David takes you through the different "data munging" tasks ( record oriented data ? binary data ? fixed-width data ? XML ? ) and shows you his proper ways of dealing with them ( or, at least, thinking about them ). It's not an encyclopedia of "data munging", the book is 300 pages and many of them ( too many, may be ) are detailed descriptions of useful CPAN modules ( which I wasn't reading as careful as the rest of the book, since POD was always enough ), so it covers only a usual data processing tasks letting you to go deeper by yourself for more advanced topics. After you'll finish it much less "data sources" will scare you - the solutions and references are inside. As I said, it may be good for data-processing beginners, but Perl experts will hardly find lot's of new information in it. P.S. I trust him and therefore follow his advices in every script I start to think of ( especially the one about "UNIX filter model" ).
Rating:  Summary: Good for data-processing *beginners* Review: It's a guide. David takes you through the different "data munging" tasks ( record oriented data ? binary data ? fixed-width data ? XML ? ) and shows you his proper ways of dealing with them ( or, at least, thinking about them ). It's not an encyclopedia of "data munging", the book is 300 pages and many of them ( too many, may be ) are detailed descriptions of useful CPAN modules ( which I wasn't reading as careful as the rest of the book, since POD was always enough ), so it covers only a usual data processing tasks letting you to go deeper by yourself for more advanced topics. After you'll finish it much less "data sources" will scare you - the solutions and references are inside. As I said, it may be good for data-processing beginners, but Perl experts will hardly find lot's of new information in it. P.S. I trust him and therefore follow his advices in every script I start to think of ( especially the one about "UNIX filter model" ).
Rating:  Summary: Belongs on every sysadmin's desk Review: This book isn't about arcane corners of Perl theory. It's about how to write Perl programs that perform the "simple" task of converting data from one format to another. Need to get every headline from an RSS feed? Or report the three users with the most processes running, as listed by `ps`? Or extract the first paragraph from each of a thousand HTML files? Or make a .tsv file based on all the "From:" and "Subject:" lines in your mailbox file? If those sorts of tasks sound familiar to you, then this is the book you've been looking for. It has working code for doing these sorts of things, involving lots of different common kinds of formats. By tech book standards, this book is short (300 pages), but it's clear and direct and to the point -- no bloat here. Every page tells you something you need to know, with useful examples for every idea that it explains.
Rating:  Summary: Belongs on every sysadmin's desk Review: This book isn't about arcane corners of Perl theory. It's about how to write Perl programs that perform the "simple" task of converting data from one format to another. Need to get every headline from an RSS feed? Or report the three users with the most processes running, as listed by `ps`? Or extract the first paragraph from each of a thousand HTML files? Or make a .tsv file based on all the "From:" and "Subject:" lines in your mailbox file? If those sorts of tasks sound familiar to you, then this is the book you've been looking for. It has working code for doing these sorts of things, involving lots of different common kinds of formats. By tech book standards, this book is short (300 pages), but it's clear and direct and to the point -- no bloat here. Every page tells you something you need to know, with useful examples for every idea that it explains.
Rating:  Summary: Belongs on every sysadmin's desk Review: This book isn't about arcane corners of Perl theory. It's about how to write Perl programs that perform the "simple" task of converting data from one format to another. Need to get every headline from an RSS feed? Or report the three users with the most processes running, as listed by `ps`? Or extract the first paragraph from each of a thousand HTML files? Or make a .tsv file based on all the "From:" and "Subject:" lines in your mailbox file? If those sorts of tasks sound familiar to you, then this is the book you've been looking for. It has working code for doing these sorts of things, involving lots of different common kinds of formats. By tech book standards, this book is short (300 pages), but it's clear and direct and to the point -- no bloat here. Every page tells you something you need to know, with useful examples for every idea that it explains.
|