• Complain

Dave Thomas - Programming Elixir 1.6

Here you can read online Dave Thomas - Programming Elixir 1.6 full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. publisher: Pragmatic Bookshelf, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Dave Thomas Programming Elixir 1.6
  • Book:
    Programming Elixir 1.6
  • Author:
  • Publisher:
    Pragmatic Bookshelf
  • Genre:
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Programming Elixir 1.6: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Programming Elixir 1.6" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

This book is the introduction to Elixir for experienced programmers, completely updated for Elixir 1.6 and beyond. Explore functional programming without the academic overtones (tell me about monads just one more time). Create concurrent applications, butget them right without all the locking and consistency headaches. Meet Elixir, a modern, functional, concurrent language built on the rock-solid Erlang VM. Elixirs pragmatic syntax and built-in support for metaprogramming will make you productive and keep you interestedfor the long haul. Maybe the time is right for the Next Big Thing. Maybe its Elixir.

Functional programming techniques help you manage the complexities of todays real-world, concurrent systems; maximize uptime; and manage security. Enter Elixir, with its modern, Ruby-like, extendable syntax, compile and runtime evaluation, hygienic macro system, and more. But, just as importantly, Elixir brings a sense of enjoyment to parallel,functional...

Dave Thomas: author's other books


Who wrote Programming Elixir 1.6? Find out the surname, the name of the author of the book and a list of all author's works by series.

Programming Elixir 1.6 — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Programming Elixir 1.6" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Programming Elixir 16 Functional gt Concurrent gt Pragmatic gt Fun by - photo 1
Programming Elixir 1.6
Functional |> Concurrent |> Pragmatic |> Fun
by Dave Thomas
Version: P1.0 (May 2018)

Copyright 2018 The Pragmatic Programmers, LLC. This book is licensed to the individual who purchased it. We don't copy-protect it because that would limit your ability to use it for your own purposes. Please don't break this trustyou can use this across all of your devices but please do not share this copy with other members of your team, with friends, or via file sharing services. Thanks.

Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC.

Every precaution was taken in the preparation of this book. However, the publisher assumes no responsibility for errors or omissions, or for damages that may result from the use of information (including program listings) contained herein.

About the Pragmatic Bookshelf

The Pragmatic Bookshelf is an agile publishing company. Were here because we want to improve the lives of developers. We do this by creating timely, practical titles, written by programmers for programmers.

Our Pragmatic courses, workshops, and other products can help you and your team create better software and have more fun. For more information, as well as the latest Pragmatic titles, please visit us at http://pragprog.com.

Our ebooks do not contain any Digital Restrictions Management, and have always been DRM-free. We pioneered the beta book concept, where you can purchase and read a book while its still being written, and provide feedback to the author to help make a better book for everyone. Free resources for all purchasers include source code downloads (if applicable), errata and discussion forums, all available on the book's home page at pragprog.com. Were here to make your life easier.

New Book Announcements

Want to keep up on our latest titles and announcements, and occasional special offers? Just create an account on pragprog.com (an email address and a password is all it takes) and select the checkbox to receive newsletters. You can also follow us on twitter as @pragprog.

About Ebook Formats

If you buy directly from pragprog.com, you get ebooks in all available formats for one price. You can synch your ebooks amongst all your devices (including iPhone/iPad, Android, laptops, etc.) via Dropbox. You get free updates for the life of the edition. And, of course, you can always come back and re-download your books when needed. Ebooks bought from the Amazon Kindle store are subject to Amazon's polices. Limitations in Amazon's file format may cause ebooks to display differently on different devices. For more information, please see our FAQ at pragprog.com/frequently-asked-questions/ebooks. To learn more about this book and access the free resources, go to https://pragprog.com/book/elixir16, the book's homepage.

Thanks for your continued support,

Andy Hunt
The Pragmatic Programmers

The team that produced this book includes: Andy Hunt (Publisher) Janet Furlow (VP of Operations) Brian MacDonald (Managing Editor) Jacquelyn Carter (Supervising Editor) Candace Cunningham (Copy Editor) Potomac Indexing, LLC (Indexing) Gilson Graphics (Layout)

For customer support, please contact .

For international rights, please contact .

Table of Contents
  1. Assignment:
    I Do Not Think It Means What You Think It Means.
Copyright 2018, The Pragmatic Bookshelf.

Foreword

I have always been fascinated with how changes in hardware affect howwe write software.

A couple of decades ago, memory was a very limited resource. It madesense back then for our software to take hold of some piece ofmemory and mutate it as necessary. However, allocating this memory andcleaning up after we no longer needed it was a very error-pronetask. Some memory was never freed; sometimes memory was allocated overanother structure, leading to faults. At the time, garbage collectionwas a known technique, but we needed faster CPUs in order to use it inour daily software and free ourselves from manual memorymanagement. That has happenedmost of our languages are nowgarbage-collected.

Today, a similar phenomenon is happening. Our CPUs are not getting anyfaster. Instead, our computers get more and more cores. This means new software needs to use as many cores as it can if it is to maximizeits use of the machine. This conflicts directly with how we currently writesoftware.

In fact, mutating our memory state actually slows down our softwarewhen many cores are involved. If you have four cores trying to accessand manipulate the same piece of memory, they can trip over eachother. This potentially corrupts memory unless some kind ofsynchronization is applied.

I quickly learned that applying this synchronization is manual, errorprone, and tiresome, and it hurts performance. I suddenly realized thats nothow I wanted to spend time writing software in the next years of mycareer, and I set out to study new languages and technologies.

It was on this quest that I fell in love with the Erlang virtualmachine and ecosystem.

In the Erlang VM, all code runs in tiny concurrent processes, each with its own state. Processes talk to each othervia messages. And since all communication happens by message-passing,exchanging messages between different machines on the same network ishandled transparently by the VM, making it a perfect environment forbuilding distributed software!

However, I felt there was still a gap in the Erlang ecosystem. I missedfirst-class support for some of the features I find necessary in mydaily workthings such as metaprogramming, polymorphism, andfirst-class tooling. From this need, Elixir was born.

Elixir is a pragmatic approach to functional programming. It valuesits functional foundations and it focuses on developerproductivity. Concurrency is the backbone of Elixir software. Asgarbage collection once freed developers from the shackles of memorymanagement, Elixir is here to free you from antiquated concurrencymechanisms and bring you joy when writing concurrent code.

A functional programming language lets us think in terms of functionsthat transform data. This transformation never mutates data. Instead,each application of a function potentially creates a new, freshversion of the data. This greatly reduces the need fordata-synchronization mechanisms.

Elixir also empowers developers by providing macros. Elixir code isnothing more than data, and therefore can be manipulated via macros likeany other value in the language.

Finally, object-oriented programmers will find many of themechanisms they consider essential to writing good software, such aspolymorphism, in Elixir.

All this is powered by the Erlang VM, a 20-year-old virtual machinebuilt from scratch to support robust, concurrent, and distributedsoftware. Elixir and the Erlang VM are going to change how you writesoftware and make you ready to tackle the upcoming years inprogramming.

Jos Valim
Creator of Elixir
Tenczynek, Poland, October 2014
Copyright 2018, The Pragmatic Bookshelf.

A Vain Attempt at a Justification, Take Two
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Programming Elixir 1.6»

Look at similar books to Programming Elixir 1.6. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Programming Elixir 1.6»

Discussion, reviews of the book Programming Elixir 1.6 and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.