• Wyszukiwanie zaawansowane
  • Kategorie
  • Kategorie BISAC
  • Książki na zamówienie
  • Promocje
  • Granty
  • Książka na prezent
  • Opinie
  • Pomoc
  • Załóż konto
  • Zaloguj się

Raku Recipes: A Problem-Solution Approach » książka

zaloguj się | załóż konto
Logo Krainaksiazek.pl

koszyk

konto

szukaj
topmenu
Księgarnia internetowa
Szukaj
Książki na zamówienie
Promocje
Granty
Książka na prezent
Moje konto
Pomoc
 
 
Wyszukiwanie zaawansowane
Pusty koszyk
Bezpłatna dostawa dla zamówień powyżej 20 złBezpłatna dostawa dla zamówień powyżej 20 zł

Kategorie główne

• Nauka
 [2946600]
• Literatura piękna
 [1856966]

  więcej...
• Turystyka
 [72221]
• Informatyka
 [151456]
• Komiksy
 [35826]
• Encyklopedie
 [23190]
• Dziecięca
 [619653]
• Hobby
 [140543]
• AudioBooki
 [1577]
• Literatura faktu
 [228355]
• Muzyka CD
 [410]
• Słowniki
 [2874]
• Inne
 [445822]
• Kalendarze
 [1744]
• Podręczniki
 [167141]
• Poradniki
 [482898]
• Religia
 [510455]
• Czasopisma
 [526]
• Sport
 [61590]
• Sztuka
 [243598]
• CD, DVD, Video
 [3423]
• Technologie
 [219201]
• Zdrowie
 [101638]
• Książkowe Klimaty
 [124]
• Zabawki
 [2473]
• Puzzle, gry
 [3898]
• Literatura w języku ukraińskim
 [254]
• Art. papiernicze i szkolne
 [8170]
Kategorie szczegółowe BISAC

Raku Recipes: A Problem-Solution Approach

ISBN-13: 9781484262573 / Angielski / Miękka / 2020 / 402 str.

J. J. Merelo
Raku Recipes: A Problem-Solution Approach J. J. Merelo 9781484262573 Apress - książkaWidoczna okładka, to zdjęcie poglądowe, a rzeczywista szata graficzna może różnić się od prezentowanej.

Raku Recipes: A Problem-Solution Approach

ISBN-13: 9781484262573 / Angielski / Miękka / 2020 / 402 str.

J. J. Merelo
cena 230,54 zł
(netto: 219,56 VAT:  5%)

Najniższa cena z 30 dni: 229,28 zł
Termin realizacji zamówienia:
ok. 16-18 dni roboczych
Bez gwarancji dostawy przed świętami

Darmowa dostawa!
Kategorie:
Informatyka, Programowanie
Kategorie BISAC:
Computers > Programming - Open Source
Computers > Internet - Web Programming
Computers > Languages - General
Wydawca:
Apress
Język:
Angielski
ISBN-13:
9781484262573
Rok wydania:
2020
Ilość stron:
402
Waga:
0.73 kg
Wymiary:
25.4 x 17.78 x 2.21
Oprawa:
Miękka
Wolumenów:
01
Dodatkowe informacje:
Glosariusz/słownik
Wydanie ilustrowane

  1. How do I start to put (Perl 6|Raku|Camelia) to use in a real world environment.
    1. Get your tools ready.
    2. Put concepts from other languages to use in Perl 6.
    3. Get involved in the community.
    4. Install some external and useful modules.
    5. Detect OS environment and change program behavior according to it.
  2. Input and output
    1. Read files handled as arguments
    2. Read and process files asynchronously
    3. Connect input and output of external utilities and files.
    4. Read and process binary files.
    5. Watch a file for changes
  3. Data science and data analytics
    1. How do I extract unique email addresses/user names from several files.
    2. How do I create a weighted random number generator.
    3. How do I work with a spreadsheet, filtering by row or column, or sorting, or converting row into columns or the other way round.
    4. How do I apply a series of transformations to a group of elements and then extract a single quantity from them.
    5. How do I create a random data generator
    6. How do I process big, structured files.
  4. Math
    1. How can you generate mathematical sequences and extract random elements from it.
    2. Program a divide-and-conquer algorithm.
    3. Work with matrices.
    4. Compute Mandelbrot’s and Julia’s set
    5. Look for pairs of integers with a certain property, such as friendly numbers or contiguous primes, to use infinite precision integers.
    Configuration and execution of programs.
    1. Configure a program using JSON/YAML/.ini files.
    2. Configure a command line command with flags and arguments.
    3. Use shell environment variables in my program.
    4. Advanced/distributed configuration with etcd
    5. Create a Docker container for an application to distribute it easily
  5. Automation of system tasks.
    1. Check log for certain events.
    2. Check logs interactively on the console.
    3. Check git commits for patterns, metadata, or store them.
    4. Clean up your Docker image store.
    5. Process the last persons logged to our system
  6. Perl 6 modules
  7. Design classes, roles and modules in Perl 6.
  8. Document your module.
  9. Test your module.
  10. Release it as an open source module for every one.
  11. Use multiple dispatch to speed up applications.
Dealing with errors
  1. Design an exception hierarchy.
  2. Deliver meaningful error messages to the user.
  3. Catch and deal with errors in your program.
  4. Debug your application in CommaIDE.
  5. Make grammars fail graciously with pretty errors.
  • Web and microservices on the client side
    1. Query a GeoIP database
    2. Download and extract information from a web site.
    3. Use a web API to get information from a site.
    4. Check IP and addresses by querying Internet services.
  • Text processing
    1. Scrape markdown documents.
    2. Generate a set of static web pages
    3. Create a dictionary and do fast searches over it
    4. Compute differences in plain texts
    Microservices
    1. Create a microservice.
    2. Work with web sockets, connecting to a client.
    3. Respond to web hooks.
    4. Create a mini-bot for Telegram or Slack.
    5. Test your microservice.
  • Work with data sources.
    1. Work with relational databases.
    2. Interface with Redis.
    3. Use an ORM for hight-level data description and access.
    4. Work with MongoDB.
    5. Extract information from WikiData
  • Create a desktop/console application
    1. Use full-console UI.
    2. Create an application that uses system windows.
    3. Package your application for release.
    4. Make it work with other desktop applications by using service buses.
    5. Use a common desktop application framework.
    Interface with libraries and code in other languages
    1. Embed Python programs.
    2. Embed Perl programs.
    3. Run external programs and capture output.
    4. Wrap external libraries in C with NativeCall.
    5. Work with image processing libraries.
  • Speed up processing
    1. Use data parallelism with hyper/race.
    2. Work with asynchronous input/output
    3. Work with concurrency using channels and threads.
    4. Create powerful concurrent programs
    5. Monitor concurrency using CommaIDE.
  • Create mini-languages
    1. Use mini-languages that show off their possibilities
    2. Create and process a mini-language for recipes.
    3. Process recipes and generate reports.
    4. Resume common language patterns.
    5. Convert grammar into a full recipe-processing application that generates HTML or other external format.
  • Fun one-liners
  • How do I write a guessing name in a single line of code.
  • How do I compute the nth element in a sequence with a single line.
  • How do I perform system administration task repeatedly using a single line of code.

    J.J. Merelo is a professor at the university of Granada, where he has been teaching since 1988. He has been using Perl since 1994, and Perl 6/Raku intensively since December 2016. He trains, teaches, and consults on Perl and Raku projects.  





    Explore Raku problems and solutions using the latest version of the Raku programming language. In Raku Recipes, the emphasis is on applying Raku code to various important tasks and applications including data science, analytics, microservices, and desktop/console applications. There are also fun one-liner script recipes and instructions on how to create mini-languages of your very own.    

    All in all, over 70 recipes cover a broad range of the tasks and problems encountered by a modern Raku developer. You’ll be able to solve problems starting from basics such as input/output and math, to more complex domains such as microservices web sockets, web hooks, and mini-bots. 

    You will:

    • Put Raku to use in a real world environment.
    • Work with Raku modules, including design classes, roles, and more
    • Query a GeoIP database and extract information from the web
    • Carry out text processing such as creating a dictionary with fast searches over it and scraping markdown documents
    • Work with MongoDB, WikiData, and other data sources
    • Build data science and analytics applications using Raku
    • Integrate with Python, C, and other languages and libraries
    • Create mini-languages and shell scripting languages 



    Udostępnij

    Facebook - konto krainaksiazek.pl



    Opinie o Krainaksiazek.pl na Opineo.pl

    Partner Mybenefit

    Krainaksiazek.pl w programie rzetelna firma Krainaksiaze.pl - płatności przez paypal

    Czytaj nas na:

    Facebook - krainaksiazek.pl
    • książki na zamówienie
    • granty
    • książka na prezent
    • kontakt
    • pomoc
    • opinie
    • regulamin
    • polityka prywatności

    Zobacz:

    • Księgarnia czeska

    • Wydawnictwo Książkowe Klimaty

    1997-2025 DolnySlask.com Agencja Internetowa

    © 1997-2022 krainaksiazek.pl
         
    KONTAKT | REGULAMIN | POLITYKA PRYWATNOŚCI | USTAWIENIA PRYWATNOŚCI
    Zobacz: Księgarnia Czeska | Wydawnictwo Książkowe Klimaty | Mapa strony | Lista autorów
    KrainaKsiazek.PL - Księgarnia Internetowa
    Polityka prywatnosci - link
    Krainaksiazek.pl - płatnośc Przelewy24
    Przechowalnia Przechowalnia