Articoli correlati a Perl Hacks: Tips & Tools for Programming, Debugging,...

Perl Hacks: Tips & Tools for Programming, Debugging, And Surviving - Brossura

 
9780596526740: Perl Hacks: Tips & Tools for Programming, Debugging, And Surviving
Vedi tutte le copie di questo ISBN:
 
 

With more than a million dedicated programmers, Perl has proven to be the best computing language for the latest trends in computing and business. While other languages have stagnated, Perl remains fresh, thanks to its community-based development model, which encourages the sharing of information among users. This tradition of knowledge-sharing allows developers to find answers to almost any Perl question they can dream up.



And you can find many of those answers right here in Perl Hacks. Like all books in O'Reilly's Hacks Series, Perl Hacks appeals to a variety of programmers, whether you're an experienced developer or a dabbler who simply enjoys exploring technology. Each hack is a short lesson--some are practical exercises that teach you essential skills, while others merely illustrate some of the fun things that Perl can do. Most hacks have two parts: a direct answer to the immediate problem you need to solve right now and a deeper, subtler technique that you can adapt to other situations. Learn how to add CPAN shortcuts to the Firefox web browser, read files backwards, write graphical games in Perl, and much more.



For your convenience, Perl Hacks is divided by topic--not according toany sense of relative difficulty--so you can skip around and stop at any hack you like. Chapters include:



  • Productivity Hacks
  • User Interaction
  • Data Munging
  • Working with Modules
  • Object Hacks
  • Debugging


Whether you're a newcomer or an expert, you'll find great value in Perl Hacks, the only Perl guide that offers somethinguseful and fun for everyone.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore:

chromatic manages Onyx Neon Press, an independent publisher. His areas of expertise include agile software development, language design, and virtual machines for dynamic languages. He is also a published novelist. His books include The Art of Agile Development and Masterminds of Programming.

Dr. Damian Conway is a Senior Lecturer in Computer Science and Software Engineering at Monash University (Melbourne, Australia), where he teaches object-oriented software engineering. He is an effective teacher, an accomplished writer, and the author of several popular Perl modules. He is also a semi-regular contributor to the Perl Journal. In 1998 he was the winner of the Larry Wall Award for Practical Utility for two modules (Getopt::Declare and Lingua::EN::Inflect) and in 1999 he won his second "Larry" for his Coy.pm haiku-generation module.

Curtis (Ovid) Poe is a CPAN author, a TPF Steering Committee Member, and the TPF Grant Committee Secretary. He likes long walks on the beach and single malt scotch, but hates writing bios. Ovid writes for Perl.com too.

Curtis (Ovid) Poe is a CPAN author, a TPF Steering Committee Member, and the TPF Grant Committee Secretary. He likes long walks on the beach and single malt scotch, but hates writing bios. Ovid writes for Perl.com too.

Contenuti:
Credits; About the Authors; About the Contributors; Acknowledgments; Preface; Why Perl Hacks?; How To Use This Book; How This Book Is Organized; Conventions Used in This Book; Using Code Examples; Safari Enabled; We'd Like to Hear from You; Chapter 1: Productivity Hacks; 1 Add CPAN Shortcuts to Firefox; 2 Put Perldoc to Work; 3 Browse Perl Docs Online; 4 Make the Most of Shell Aliases; 5 Autocomplete Perl Identifiers in Vim; 6 Use the Best Emacs Mode for Perl; 7 Enforce Local Style; 8 Don't Save Bad Perl; 9 Automate Checkin Code Reviews; 10 Run Tests from Within Vim; 11 Run Perl from Emacs; Chapter 2: User Interaction; 12 Use $EDITOR As Your UI; 13 Interact Correctly on the Command Line; 14 Simplify Your Terminal Interactions; 15 Alert Your Mac; 16 Interactive Graphical Apps; 17 Collect Configuration Information; 18 Rewrite the Web; Chapter 3: Data Munging; 19 Treat a File As an Array; 20 Read Files Backwards; 21 Use Any Spreadsheet As a Data Source; 22 Factor Out Database Code; 23 Build a SQL Library; 24 Query Databases Dynamically Without SQL; 25 Bind Database Columns; 26 Iterate and Generate Expensive Data; 27 Pull Multiple Values from an Iterator; Chapter 4: Working with Modules; 28 Shorten Long Class Names; 29 Manage Module Paths; 30 Reload Modified Modules; 31 Create Personal Module Bundles; 32 Manage Module Installations; 33 Presolve Module Paths; 34 Create a Standard Module Toolkit; 35 Write Demos from Tutorials; 36 Replace Bad Code from the Outside; 37 Drink to the CPAN; 38 Improve Exceptional Conditions; 39 Search CPAN Modules Locally; 40 Package Standalone Perl Applications; 41 Create Your Own Lexical Warnings; 42 Find and Report Module Bugs; Chapter 5: Object Hacks; 43 Turn Your Objects Inside Out; 44 Serialize Objects (Mostly) for Free; 45 Add Information with Attributes; 46 Make Methods Really Private; 47 Autodeclare Method Arguments; 48 Control Access to Remote Objects; 49 Make Your Objects Truly Polymorphic; 50 Autogenerate Your Accessors; Chapter 6: Debugging; 51 Find Compilation Errors Fast; 52 Make Invisible Characters Apparent; 53 Debug with Test Cases; 54 Debug with Comments; 55 Show Source Code on Errors; 56 Deparse Anonymous Functions; 57 Name Your Anonymous Subroutines; 58 Find a Subroutine's Source; 59 Customize the Debugger; Chapter 7: Developer Tricks; 60 Rebuild Your Distributions; 61 Test with Specifications; 62 Segregate Developer and User Tests; 63 Run Tests Automatically; 64 See Test Failure Diagnostics ― in Color!; 65 Test Live Code; 66 Cheat on Benchmarks; 67 Build Your Own Perl; 68 Run Test Suites Persistently; 69 Simulate Hostile Environments in Your Tests; Chapter 8: Know Thy Code; 70 Understand What Happens When; 71 Inspect Your Data Structures; 72 Find Functions Safely; 73 Know What's Core and When; 74 Trace All Used Modules; 75 Find All Symbols in a Package; 76 Peek Inside Closures; 77 Find All Global Variables; 78 Introspect Your Subroutines; 79 Find Imported Functions; 80 Profile Your Program Size; 81 Reuse Perl Processes; 82 Trace Your Ops; 83 Write Your Own Warnings; Chapter 9: Expand Your Perl Foo; 84 Double Your Data with Dualvars; 85 Replace Soft References with Real Ones; 86 Optimize Away the Annoying Stuff; 87 Lock Down Your Hashes; 88 Clean Up at the End of a Scope; 89 Invoke Functions in Odd Ways; 90 Glob Those Sequences; 91 Write Less Error-Checking Code; 92 Return Smarter Values; 93 Return Active Values; 94 Add Your Own Perl Syntax; 95 Modify Semantics with a Source Filter; 96 Use Shared Libraries Without XS; 97 Run Two Services on a Single TCP Port; 98 Improve Your Dispatch Tables; 99 Track Your Approximations; 100 Overload Your Operators; 101 Learn from Obfuscations; Colophon;|
  • Credits
  • Preface
  • Chapter 1: Productivity Hacks
  • Chapter 2: User Interaction
  • Chapter 3: Data Munging
  • Chapter 4: Working with Modules
  • Chapter 5: Object Hacks
  • Chapter 6: Debugging
  • Chapter 7: Developer Tricks
  • Chapter 8: Know Thy Code
  • Chapter 9: Expand Your Perl Foo
  • Colophon

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreOreilly & Associates Inc
  • Data di pubblicazione2006
  • ISBN 10 0596526741
  • ISBN 13 9780596526740
  • RilegaturaCopertina flessibile
  • Numero di pagine273
  • Valutazione libreria

Altre edizioni note dello stesso titolo

9788184041385: PERL HACKS: TIPS & TOOLS FOR PROG DEBBUGGING & SURVIVING

Edizione in evidenza

ISBN 10:  8184041381 ISBN 13:  9788184041385
Brossura

I migliori risultati di ricerca su AbeBooks

Immagini fornite dal venditore

Conway, Damian; Poe, Curtis; Chromatic
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Brossura Quantità: 1
Da:
GreatBookPrices
(Columbia, MD, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Codice articolo 4161658-n

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 18,47
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 2,47
In U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

chromatic", "Damian Conway", "Curtis \"Ovid\" Poe"
Editore: O'Reilly Media (2006)
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Soft Cover Quantità: 10
Da:
booksXpress
(Bayonne, NJ, U.S.A.)
Valutazione libreria

Descrizione libro Soft Cover. Condizione: new. Codice articolo 9780596526740

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 21,01
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

Chromatic
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Paperback or Softback Quantità: 5
Da:
BargainBookStores
(Grand Rapids, MI, U.S.A.)
Valutazione libreria

Descrizione libro Paperback or Softback. Condizione: New. Perl Hacks: Tips & Tools for Programming, Debugging, and Surviving 0.91. Book. Codice articolo BBS-9780596526740

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 22,61
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

chromatic; Damian Conway; Curtis Ovid Poe
Editore: O'Reilly Media (2006)
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Brossura Quantità: > 20
Da:
Lakeside Books
(Benton Harbor, MI, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New! Not Overstocks or Low Quality Book Club Editions! Direct From the Publisher! We're not a giant, faceless warehouse organization! We're a small town bookstore that loves books and loves it's customers! Buy from Lakeside Books!. Codice articolo OTF-S-9780596526740

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 19,12
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,73
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Conway, Damian; Poe, Curtis; Chromatic
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Paperback Quantità: 1
Da:
GoldenWavesOfBooks
(Fayetteville, TX, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New. Fast Shipping and good customer service. Codice articolo Holz_New_0596526741

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 20,98
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,74
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Conway, Damian
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Paperback Quantità: 1
Da:
Wizard Books
(Long Beach, CA, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New. Codice articolo Wizard0596526741

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 25,04
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,27
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Conway, Damian
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Paperback Quantità: 1
Da:
GoldBooks
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New Copy. Customer Service Guaranteed. Codice articolo think0596526741

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 25,87
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,97
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Conway, Damian; Poe, Curtis; Chromatic
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Brossura Quantità: 1
Da:
Books Unplugged
(Amherst, NY, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Buy with confidence! Book is in new, never-used condition. Codice articolo bk0596526741xvz189zvxnew

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 29,93
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Conway, Damian
Editore: O'Reilly Media (2006)
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Brossura Quantità: 1
Da:
Front Cover Books
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: new. Codice articolo FrontCover0596526741

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 28,04
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 4,02
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Chromatic
ISBN 10: 0596526741 ISBN 13: 9780596526740
Nuovo Paperback / softback Quantità: 1
Da:
THE SAINT BOOKSTORE
(Southport, Regno Unito)
Valutazione libreria

Descrizione libro Paperback / softback. Condizione: New. New copy - Usually dispatched within 4 working days. With more than a million dedicated programmers, Perl has proven to be the best computing language in computing and business. This book contains chapters on productivity hacks, user interaction, data munging, working with modules, object hacks, and, debugging. It is aimed at experienced developer or a dabbler who simply enjoys exploring technology. Codice articolo B9780596526740

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 23,15
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 10,42
Da: Regno Unito a: U.S.A.
Destinazione, tempi e costi

Vedi altre copie di questo libro

Vedi tutti i risultati per questo libro