Deliver to Romania
IFor best experience Get the App
Modern Perl
L**L
Fantastic if you already know how to program
Lots of books teach you basic computer science and programming as they teach you the language. "Modern Perl" doesn't; the author assumes you know what variables and operators are. That saves you a lot of time and lets you dive into *why* Perl does this or that. I've been doing Perl for a while and I learned a lot. I've done other languages as well, and "Modern Perl" gave me a deeper appreciation of Perl in the language ecosystem.Very much in the same vein as "The Well Grounded Rubyist" (Black, Leo) and "Python 3 Object Oriented Programming" (Phillips). If Perl is useful for your task load, "Modern Perl" is a great learning tool.
R**E
A Reunion with an Old Friend
This book was enjoyable, informative, and it reacquainted me with my old friend Perl.Perl and I used to have so much fun together. Back in the day (2000-2010), Perl was my right hand man. I used C/C++ and SQL to write project code, and Perl to analyze, automate, simulate, emulate, innovate, prototype, test, and generally blast obstacles out of the way. Some of my colleagues and managers were frightened of Perl - it was voodoo as far as they were concerned. A manager who clearly didn't get it chided me for bringing this Unix thing into his cozy little Windows shop, "Why would you use this Perl thing when you have Visual Basic available to you?" Yes, such a question can make one wince. However, Perl got results, quickly, and Perl culture was a blast.I switched jobs, and found PowerShell had become the socially-acceptable scripting language for the Windows side, Python was the lingua franca for the Linux side, and Ruby was de rigeur for Chef for both sides. Absent a role, my old friend faded from view. Such is life in DevOps.As it turns out, my old friend is now even more muscular, and still quite the party animal. However, this book shows that Perl has gotten some nice new features.To be quite clear - this is NOT a book to use to learn Perl. Stick with the Llama book for that. This book assumes that you are using it to get reacquainted, and it succeeds wonderfully at that.
A**R
Great Way to Learn or Freshen Up on Perl
This is a great book to learn Perl or to freshen up on Perl. Great style! Reads easily. Very up to date. I suggest this book along with a good modern reference on Perl. There are classics like "Learning Perl", "Programming Perl", "Intermediate Perl", "Perl Cookbook", "Perl Best Practices", "Mastering Perl", etc. This book is a manageable length, comprehensive enough to get you programming (again), but short enough to get you going. I am reading "Higher Order Perl", and I highly recommend it if you want to learn about functional programming in Perl.
M**C
Great For Catching Up With New Features!
I've been using Perl for about 25 years and haven't kept up with the latest additions to the language. In a recent interview, the interviewer recommended this book. It's been great! A really enjoyable read, well organized, great examples, and easy to understand. The other recommended book is Perl Best Practices, which I am also finding very useful.
M**A
Five Stars
excellent concise book with a lot of references to external sources.
S**C
A good reference book. Tremedous amount of material in 300 pages. Suffers from overcomplexity
Item Description: A good reference book.Review Synopsis: Suffers from overcomplexityIt is very difficult or impossible to write a good book on Perl, because it is such a large and complex scripting language with various application domains. Also Perl is a very large language. Chromatic managed to do an excellent job in this respect covering all the language with its modern enhancements in relatively small book. Of course, you can't provide a lot of details for each feature in 300 pages, but he managed to cover most major areas important for programmers. This is what determined my rating of the book.But such approach is not without problems. While the book is a usable reference (it's intended purpose) that covered almost all the most recent Perl enhancements and new features up to Perl 5.14 it is not suited for studying Perl language (this is not a drawback as intended purpose of the book is to be a language reference).Still it might be beneficial to any seasoned Perl programmer who wish to update his knowledge of latest and greatest language features.For those purposes most material that is covered is covered well, with the distinct approach that "newer is better". I did not found any new feature that chromatic did not like :-). For beginners old Simon Cozen's book(2000) might be better for studying the "basic" subset of the Perl language and can (and probably should) be used along with this book to see what changed in the language in 17 years since its publishing.Again, if you use this book as the only book to learn programming in Perl. It's a bad book for this purpose. Clearly it is a "language junkie" written book. which is fine for reference, but bad for learning the language. It does not distinguish between important and superficial/esoteric things in the language. Everything is, kind of, "treated equally" independent of complexity and the level of abstraction that a particular feature introduces: Ohh we have this great feature. Here it is ;-) This "Schwartzian" approach is a very bad idea for beginners, even if they know some other language really well. And not so good for accomplished programmers either, although they suffer less from it and can benefit from delving into most recent esoteric staff (sometimes :-). All-in-all the book suffers from "over-complexity for the sake of over-complexity" approach to Perl. Which was typical for O'Reilly books, but which I do not support or approve.I also noticed two rather obvious problems with the book: (1) Looks like it does not cover Perl debugger. At all, as if it does not exists. (2) It does not contains adequate coverage of built-in functions such as index (mentioned only in passing in index), substr (not in the index), tr, to name a few.Also regex searching on long strings with newlines is an important topic (modifiers s and m) for modern Perl usage, coverage of which can be improved and expanded. This is a pretty minor point but it is important for me.As for advocacy of Moose, this was a very questionable decision on the part of the author. Many organizations prohibit installation of SPAN modules for security reasons. In such cases you need to deal with modules included in the Perl distribution that comes with OS, or jump through the hoops to get permission for "non-core" modules. Also quality of modules on CPAN varies greatly, many are unmaintained for years. Blank recommendation to use CPAN is a dangerous proposition.Perl 5 now is the language that most people use in rather limited subsets, the idea which is completely missing from the book. Nobody probably knows or uses the "full Perl language". It is the classic situation with blind men and elephant. It is also true about other languages such as Python and Ruby.Even using a very limited subset of Perl can be somewhat problematic as there are way too many special cases and gotchas. This is clearly non-orthogonal language and this has its strong and weak sides. How to avoid problem that arise from this is the topic that is very important for Perl programmers. Aside from advocating to put "use strict" and "use warnings" at the top of your script there are other relevant methods, such as switching to IDE usage, that are also missing from the book. For example, Padre or Pycharm can be used (Pycharm does support Perl, although this is not advertised).Any language is not just the language, but is the whole ecosystem which includes among other things the debugger and IDE.Please note that it does not make sense to adopt "Pythonista" approach to the same domain either, as it stands father from the spirit of "Classic Unix" than Perl to say nothing about related unhealthy infatuation with OO that Python promotes. OO actually is a pretty limited paradigm of programming suitable only in few (but important) areas; historically it came from languages oriented on simulation (Simula67), which is an important, but not all-encompassing domain; later it acquired some features of "compiler-complier" approach.But other approaches also exist. For example, coroutines can also can be viewed as a software development paradigm for certain type of programs (that allows structuring the problem into multiple semi-independent passes with intermediate representation produced in each) and I am not sure that it is not better approach for certain types of programs. Melvin Conway (famous for Conway law: "organizations which design systems ... are constrained to produce designs which are copies of the communication structures of these organizations.") initially proposed this paradigm for the construction of the compiler. Success of Unix pipes speaks volumes about power of this approach.Aside from overcomplexity, another problem with the book is that it presents Perl as unified "one-dimensional" language. In reality Perl exists at least on three distinct levels:1. Minimal Perl. Perl 4 subset of Perl 5 -- which surprisingly is adequate for many tasks; especially in Unix system administration area. This is the level of the language typically used in one-liners, small Unix-maintenance scripts, and such. This is a kind of "Perl as better bash, AWK and sed." level.2. Basic Perl 5 -- Perl 5 with modules and references, but without fancy staff (like closures, OO, exceptions). This probably the mostly widely used subset.3. Enhanced Perl 5 -- Perl feature level typical for people who speak at Perl conferences. That include OO, polymorphism, inheritance and other complex staff that is useful for example for writing interactive program with complex GUI and such.I think that any book that presents Perl only on level 3 (which is the case with this book) without mentioning of possibility of using Perl on levels 1 and 2, suffers from overcomplexity. I think a proper book on Perl should be like an onion with at least three layers of coverage outlined above. Of course, such a book is very difficult to write.
D**L
A great introduction to Modern Perl
Disclosure: I received an advance copy of the book and my praise quote appears in the book."Modern Perl" is phrase used to describe a style of Perl programming that uses modern tools and techniques to develop better Perl programs. Modern Perl the book is an excellent introduction to the ideas, tools, language and community of the "Modern Perl" way. Author chromatic draws on his expertise to deliver an opinionated and reasoned guide which is ideal for programmers new to Perl or returning after a hiatus. Terse and fast-moving, Modern Perl doesn't baby the reader and may not be ideal for absolute programming beginners. This edition from The Pragmatic Bookshelf is beautifully typeset and styled - I highly recommend it.
A**T
Great Book
Great book with a lot of topics to have it as a reference book when you are working.
User
Useful book
Great book.
C**R
Livre reçu rapidement en bon état!
Collection que j'adore! J'espère avoir le livre pour démarrer le langage PErl
Trustpilot
1 day ago
3 weeks ago