|
|
|
|
LEADER |
00000cam a2200000 a 4500 |
001 |
OR_on1194001258 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cnu|||||||| |
008 |
060920s2020 xxu ob 000 0 eng |
040 |
|
|
|a AU@
|b eng
|e pn
|c AU@
|d EBLCP
|d LQU
|d UPM
|d GW5XE
|d GZM
|d OCLCF
|d NLW
|d UKAHL
|d SFB
|d UMI
|d K6U
|d LVT
|d OCLCQ
|d OCLCO
|d COM
|d OCLCQ
|
019 |
|
|
|a 1197840381
|a 1198391251
|a 1198732461
|a 1204663978
|a 1249445589
|a 1302276813
|
020 |
|
|
|a 9781484261095
|q (electronic bk.)
|
020 |
|
|
|a 1484261097
|q (electronic bk.)
|
020 |
|
|
|z 9781484261088
|
020 |
|
|
|z 1484261089
|
024 |
7 |
|
|a 10.1007/978-1-4842-6109-5
|2 doi
|
024 |
8 |
|
|a 9781484261095
|
024 |
8 |
|
|a 9781484261088
|
024 |
8 |
|
|a 10.1007/978-1-4842-6
|
029 |
0 |
|
|a AU@
|b 000067907345
|
029 |
1 |
|
|a AU@
|b 000068073276
|
029 |
1 |
|
|a AU@
|b 000068649948
|
035 |
|
|
|a (OCoLC)1194001258
|z (OCoLC)1197840381
|z (OCoLC)1198391251
|z (OCoLC)1198732461
|z (OCoLC)1204663978
|z (OCoLC)1249445589
|z (OCoLC)1302276813
|
037 |
|
|
|a CL0501000166
|b Safari Books Online
|
050 |
|
4 |
|a QA76.76.A65
|
072 |
|
7 |
|a UMX
|2 bicssc
|
072 |
|
7 |
|a COM051010
|2 bisacsh
|
072 |
|
7 |
|a UMX
|2 thema
|
072 |
|
7 |
|a UMC
|2 thema
|
082 |
0 |
4 |
|a 005.13
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Lenz, Moritz,
|e author.
|
245 |
1 |
0 |
|a Raku fundamentals :
|b a primer with examples, projects, and case studies /
|c Moritz Lenz.
|
250 |
|
|
|a 2nd edition.
|
264 |
|
1 |
|a [United States] :
|b Apress,
|c 2020.
|
300 |
|
|
|a 1 online resource (193 pages)
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
347 |
|
|
|a text file
|
490 |
0 |
|
|a ITpro collection
|
520 |
|
|
|a Gain the skills to begin developing Raku applications from the ground up in this hands-on compact book, which includes a foreword from Larry Wall, creator of Perl. You'll learn enough to get started building with Raku, using Raku's gradual typing, handy object orientated features, powerful parsing capabilities, and human-usable concurrency. This book has been updated to include the latest version of Raku based upon the Perl 6.d major version which includes over 3,400 new commits in its specification. After a short introduction, each chapter develops a small example project, explaining the Raku features used. When the example is done, you'll explore another aspect, such as optimizing further for readability or testing the code. Along the way you'll see Raku basics, such as variables and scoping; subroutines; classes and objects; regexes; and code testing. When you've mastered the basics, Raku Fundamentals moves onto more advanced topics to give you a deeper understanding of the language. You'll learn, amongst other things, how to work with persistent storage, how to generate good error messages, and how to write tricky applications such as a file and directory usage graph and a Unicode search tool. What You Will Learn Get coding with latest version of Raku Work on several hands-on examples and projects Integrate Python libraries into your Raku-based programs Parse INI files using regexes and grammars Build a date-time converter Carry out refactoring and other automated tests Who This Book Is For If you already know one or more programming languages, and want to learn about Raku, then this book is for you.
|
542 |
|
|
|f © Copyright 2020 Moritz Lenz.
|g 2020
|
550 |
|
|
|a Made available through: Safari, an O'Reilly Media Company.
|
588 |
|
|
|a Online resource; Title from title page (viewed September 5, 2020)
|
505 |
0 |
|
|a Intro -- Table of Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Foreword -- Chapter 1: What Is Raku? -- 1.1 Intended Audience -- 1.2 Perl 5: The Older Sister -- 1.3 Library Availability -- 1.4 Why Should I Use Raku? -- 1.5 Summary -- Chapter 2: Running Rakudo -- 2.1 Installers -- 2.2 Docker -- 2.3 Building from Source -- 2.4 Testing Your Rakudo Star Installation -- 2.5 Documentation -- 2.6 Summary -- Chapter 3: Formatting a Sudoku Puzzle -- 3.1 Making the Sudoku Playable -- 3.2 Shortcuts, Constants, and More Shortcuts -- 3.3 I/O and Other Tragedies
|
505 |
8 |
|
|a 3.4 Get Creative! -- 3.5 Summary -- Chapter 4: Datetime Conversion for the Command Line -- 4.1 Libraries to the Rescue -- 4.2 DateTime Formatting -- 4.3 Looking the Other Way -- 4.4 Dealing with Time -- 4.5 Tighten Your Seat Belt -- 4.6 MAIN Magic -- 4.7 Automated Tests -- 4.8 Summary -- Chapter 5: Testing say() -- 5.1 Summary -- Chapter 6: Silent-Cron: A Cron Wrapper -- 6.1 Running Commands Asynchronously -- 6.2 Implementing Timeouts -- 6.3 More on Promises -- 6.4 Possible Extensions -- 6.5 Refactoring and Automated Tests -- 6.5.1 Refactoring -- 6.5.2 Mocking and Testing
|
505 |
8 |
|
|a 6.5.3 Improving Reliability and Timing -- 6.5.4 Installing a Module -- 6.6 Summary -- Chapter 7: Stateful Silent-Cron -- 7.1 Persistent Storage -- 7.2 Developing the Storage Back End -- 7.3 Using the Storage Back End -- 7.4 Room for Expansion -- 7.5 Summary -- Chapter 8: Review of the Raku Basics -- 8.1 Variables and Scoping -- 8.2 Subroutines -- 8.3 Classes and Objects -- 8.4 Concurrency -- 8.5 Outlook -- Chapter 9: Parsing INI Files Using Regexes and Grammars -- 9.1 Regex Basics -- 9.1.1 Character Classes -- 9.1.2 Quantifiers -- 9.1.3 Alternatives -- 9.2 Parsing the INI Primitives
|
505 |
8 |
|
|a 9.3 Putting Things Together -- 9.4 Backtracking -- 9.5 Grammars -- 9.6 Extracting Data from the Match -- 9.7 Generating Good Error Messages -- 9.7.1 Failure Is Normal -- 9.7.2 Detecting Harmful Failure -- 9.7.3 Providing Context -- 9.7.4 Shortcuts for Parsing Matching Pairs -- 9.8 Write Your Own Grammars -- 9.9 Summary -- Chapter 10: A File and Directory Usage Graph -- 10.1 Reading File Sizes -- 10.2 Generating a Tree-Map -- 10.3 Flame Graphs -- 10.4 Functional Refactorings -- 10.5 More Language Support for Functional Programming -- 10.6 More Improvements -- 10.7 Explore! -- 10.8 Summary
|
505 |
8 |
|
|a Chapter 11: A Unicode Search Tool -- 11.1 Code Points, Grapheme Clusters, and Bytes -- 11.2 Numbers -- 11.3 Other Unicode Properties -- 11.4 Collation -- 11.5 Summary -- Chapter 12: Creating a Web Service and Declarative APIs -- 12.1 Getting Started with Cro -- 12.2 Expanding the Service -- 12.3 Testing -- 12.4 Adding a Web Page -- 12.5 Declarative APIs -- 12.6 Summary -- Chapter 13: What's Next? -- 13.1 Scaling Your Code Base -- 13.2 Packaging Your Application -- 13.2.1 Packaging As a Traditional Raku Module -- 13.2.2 Deploying with Docker -- 13.2.3 Windows Installers -- 13.3 Closing Thoughts
|
504 |
|
|
|a Includes bibliographical references.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a Application software
|x Development.
|
650 |
|
0 |
|a Perl (Computer program language)
|
650 |
|
0 |
|a Programming languages (Electronic computers)
|
650 |
|
0 |
|a Computer programming.
|
650 |
|
0 |
|a Open source software.
|
650 |
|
6 |
|a Logiciels d'application
|x Développement.
|
650 |
|
6 |
|a Perl (Langage de programmation)
|
650 |
|
6 |
|a Programmation (Informatique)
|
650 |
|
6 |
|a Logiciels libres.
|
650 |
|
7 |
|a computer programming.
|2 aat
|
650 |
|
7 |
|a Computer programming
|x software development.
|2 bicssc
|
650 |
|
7 |
|a Programming & scripting languages: general.
|2 bicssc
|
650 |
|
7 |
|a Computers
|x Programming
|x General.
|2 bisacsh
|
650 |
|
7 |
|a Computers
|x Programming
|x Open Source.
|2 bisacsh
|
650 |
|
7 |
|a Computers
|x Programming Languages
|x General.
|2 bisacsh
|
650 |
|
7 |
|a Application software
|x Development.
|2 fast
|0 (OCoLC)fst00811707
|
650 |
|
7 |
|a Computer programming.
|2 fast
|0 (OCoLC)fst00872390
|
650 |
|
7 |
|a Open source software.
|2 fast
|0 (OCoLC)fst01046097
|
650 |
|
7 |
|a Perl (Computer program language)
|2 fast
|0 (OCoLC)fst01058226
|
650 |
|
7 |
|a Programming languages (Electronic computers)
|2 fast
|0 (OCoLC)fst01078704
|
710 |
2 |
|
|a Safari, an O'Reilly Media Company.
|
776 |
0 |
|
|z 1484261089
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781484261095/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH37890039
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL6340313
|
994 |
|
|
|a 92
|b IZTAP
|