Jump to content

Advanced Perl Programming: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
add infobox
Improved Article
Line 1: Line 1:
{{italic title}}
{{italic title}}
'''Advanced Perl Programming''' is a technical book on the [[Perl|Perl programming language]], authored by '''Sriram Srinivasan''' and first published in '''1997''' by '''[[O'Reilly Media]]'''.<ref name=":0">{{Cite web |last=Srinivasan |first=Sriram |date=1999-07-02 |title=Advanced Perl Programming |url=https://docstore.mik.ua/orelly/perl/advprog/index.htm |access-date=2025-04-20 |website=1-56592-220-4 |language=en-US}}</ref> The book focuses on advanced concepts and techniques used in production-level Perl development<ref>{{Cite web |title=Examples from Advanced Programming Perl |url=https://www.cs.ait.ac.th/~on/O/oreilly/perl/advprog/examples/index.htm |access-date=2025-04-20 |website=www.cs.ait.ac.th}}</ref>, offering insight into the design and implementation of real-world Perl applications.<ref name=":1">{{Cite web |title=Advanced Perl Programming, 2nd Edition[Book] |url=https://www.oreilly.com/library/view/advanced-perl-programming/0596004567/ |access-date=2025-04-20 |website=www.oreilly.com |language=en}}</ref>
'''''Advanced Perl Programming''''' is a 1997 book by Sriram Srinivasan which covers complex techniques needed in production level [[Perl]].


{{Infobox book
{{Infobox book
Line 6: Line 6:
| pub_date = 1997
| pub_date = 1997
| language = English
| language = English
| genre = Non-fiction
| genre = Computing
| isbn = 1-56592-220-4
| publisher = [[O'Reilly]] Media
| subject = [[Perl]] Programming
| country = United States
}}
}}


The second edition, by Simon Cozens and edited by [[Allison Randal]], was published in 2005. It contains a different set of high-level programming techniques intended for practical use, and is described at [http://www.oreilly.com/catalog/advperl2/ www.oreilly.com].
A '''second edition''' of the book was published in '''2005''', authored by '''Simon Cozens''' and edited by '''Allison Randal'''<ref name=":1" />. Unlike the first edition, the second edition features a different set of advanced programming techniques, with a stronger emphasis on practical use cases in modern Perl development<ref name=":1" />.

Both editions are independent in content and are intended to serve experienced Perl programmers seeking to deepen their understanding of the language.<ref name=":0" />


Related books include ''[[Programming Perl]]'', ''[[Perl Cookbook]]'', and ''Perl Hacks''.
Related books include ''[[Programming Perl]]'', ''[[Perl Cookbook]]'', and ''Perl Hacks''.


==Reception==
== Impact and Reception ==
Upon its release, ''Advanced Perl Programming'' was recognized for its in-depth exploration of Perl's advanced features. Eric S. Raymond, writing for ''[[Linux Journal]]'', described the book as "an astonishingly sustained tour de force" and praised its insightful commentary on Perl's design and internals. He noted that the author "illuminates Perl by connecting it to an impressively broad range of issues in computer science and programming language design" <ref name=":2">{{Cite web |title=Sriram Srinivasan - Advanced Perl |url=https://www.malhar.net/sriram/book.html |access-date=2025-04-20 |website=www.malhar.net}}</ref>

The book achieved commercial success, selling over 120,000 copies and being translated into seven languages, including Simplified Chinese, Czech, French, Japanese, Polish, German, and Traditional Chinese <ref name=":2" />

The second edition, released in 2005, was well-received for updating the content to reflect the evolving Perl landscape. Simon Cozens, the author of the second edition, aimed to address the shift in Perl programming practices, focusing on integrating existing modules from [[CPAN]] rather than building components from scratch . Reviewers appreciated the practical approach; Rocco Caputo, lead developer of POE, commended the book for guiding readers through Perl's extensive module ecosystem, enabling them to apply the best tools for various tasks<ref>{{Cite web |date=2006-01-01 |title=More Advancements in Perl Programming |url=https://www.perl.com/pub/2006/01/26/more_advanced_perl.html |access-date=2025-04-20 |website=Perl.com |language=en-us}}</ref>

[[Charles Stross]] called ''Advanced Perl Programming''{{'s}} sections on [[computer network|networking]] and [[object-oriented programming]] "well-nigh indispensable".{{R|stross}} [[Eric S. Raymond]] called Sriram Srinivasan's commentary on the Perl language "uniformly intelligent, incisive and tasteful".{{R|raymond}} Donald Bryson of Network Computing magazine called the book "full of useful information, well written, beautifully set, and technically accurate".{{R|bryson}}
[[Charles Stross]] called ''Advanced Perl Programming''{{'s}} sections on [[computer network|networking]] and [[object-oriented programming]] "well-nigh indispensable".{{R|stross}} [[Eric S. Raymond]] called Sriram Srinivasan's commentary on the Perl language "uniformly intelligent, incisive and tasteful".{{R|raymond}} Donald Bryson of Network Computing magazine called the book "full of useful information, well written, beautifully set, and technically accurate".{{R|bryson}}


Line 55: Line 67:
[[Category:O'Reilly Media books]]
[[Category:O'Reilly Media books]]
[[Category:Books about Perl]]
[[Category:Books about Perl]]


{{compu-book-stub}}

Revision as of 15:54, 20 April 2025

Advanced Perl Programming is a technical book on the Perl programming language, authored by Sriram Srinivasan and first published in 1997 by O'Reilly Media.[1] The book focuses on advanced concepts and techniques used in production-level Perl development[2], offering insight into the design and implementation of real-world Perl applications.[3]

Advanced Perl Programming
AuthorSriram Srinivasan
LanguageEnglish
SubjectPerl Programming
GenreComputing
PublisherO'Reilly Media
Publication date
1997
Publication placeUnited States
ISBN1-56592-220-4

A second edition of the book was published in 2005, authored by Simon Cozens and edited by Allison Randal[3]. Unlike the first edition, the second edition features a different set of advanced programming techniques, with a stronger emphasis on practical use cases in modern Perl development[3].

Both editions are independent in content and are intended to serve experienced Perl programmers seeking to deepen their understanding of the language.[1]

Related books include Programming Perl, Perl Cookbook, and Perl Hacks.

Impact and Reception

Upon its release, Advanced Perl Programming was recognized for its in-depth exploration of Perl's advanced features. Eric S. Raymond, writing for Linux Journal, described the book as "an astonishingly sustained tour de force" and praised its insightful commentary on Perl's design and internals. He noted that the author "illuminates Perl by connecting it to an impressively broad range of issues in computer science and programming language design" [4]

The book achieved commercial success, selling over 120,000 copies and being translated into seven languages, including Simplified Chinese, Czech, French, Japanese, Polish, German, and Traditional Chinese [4]

The second edition, released in 2005, was well-received for updating the content to reflect the evolving Perl landscape. Simon Cozens, the author of the second edition, aimed to address the shift in Perl programming practices, focusing on integrating existing modules from CPAN rather than building components from scratch . Reviewers appreciated the practical approach; Rocco Caputo, lead developer of POE, commended the book for guiding readers through Perl's extensive module ecosystem, enabling them to apply the best tools for various tasks[5]

Charles Stross called Advanced Perl Programming's sections on networking and object-oriented programming "well-nigh indispensable".[6] Eric S. Raymond called Sriram Srinivasan's commentary on the Perl language "uniformly intelligent, incisive and tasteful".[7] Donald Bryson of Network Computing magazine called the book "full of useful information, well written, beautifully set, and technically accurate".[8]

References

  1. ^ a b Srinivasan, Sriram (1999-07-02). "Advanced Perl Programming". 1-56592-220-4. Retrieved 2025-04-20.
  2. ^ "Examples from Advanced Programming Perl". www.cs.ait.ac.th. Retrieved 2025-04-20.
  3. ^ a b c "Advanced Perl Programming, 2nd Edition[Book]". www.oreilly.com. Retrieved 2025-04-20.
  4. ^ a b "Sriram Srinivasan - Advanced Perl". www.malhar.net. Retrieved 2025-04-20.
  5. ^ "More Advancements in Perl Programming". Perl.com. 2006-01-01. Retrieved 2025-04-20.
  6. ^ Stross, Charles (June 2001). "More information on Perl/CGI Programming". Linux Format. Future Publishing.
  7. ^ Raymond, Eric (1998-02-01). "The Essential Perl Books". Linux Journal. Belltown Media, Inc. Retrieved 2011-06-30.
  8. ^ Bryson, Donald (December 1998). "Advanced Perl Programming". Network Computing. UBM TechWeb. Archived from the original on 2008-10-08. Retrieved 2011-06-27.