mchean
By @emadb
OVERVIEW
Author Emanuele DelBono guides readers along the first steps of mastering the Elixir programming language in Elixir Succinctly . Providing a brief overview of Elixir’s history and purpose and clear instructions to create an app with Elixir, DelBono makes it easy for developers who wish to add a new language to their repertoire.
TABLE OF CONTENTS
- The Language
- The Platform
- Sample Application
Syncfusion has a series of free books on various subjects. In their recent contest, this Elixir book came in 2nd along with a book on Business Flow.
Book URL: Elixir Succinctly® | Free Ebook | Syncfusion®
Contest link: Syncfusion® : 2020 Succinctly® Readers Awards
Trending in Books
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New
I have a sharing session about the Elixir ecosystem for Erlang developers. I feel that people are still confused about the differences be...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
AstonJ
Ah nice! I had no idea @emadb was writing an Elixir book! Congrats Emanuele!
Seems like a nice length too - I think I might read it as a refresher as it’s been a while since I read Programming Elixir and Elixir in Action.
Let’s make this the official thread for the book and move it to our books section
emadb
Hi @AstonJ Thank you.
The book is really an introduction to the language and the OTP.
I’m very happy to be one of the contest winner and I hope that this would help Elixir to gain traction and to increase its usage among more and more developers!
mindriot
Awesome, congratulations @emadb, I’m sure this has introduced Elixir to some new people and clearly has been well received. I was completely unaware of this series all together so will have to check it out and possibly some of the other titles.
alvesgabriel
Hello, @emadb. How are you?
I’m reading your book and I’m liking. But I’m having a problem in the code of the rover in the chapter 3. In the page 68 you used a function
mod/2but when a run the tests I receive the followed messagewarning: undefined function mod/2. My Erlang/OTP is 23 and Elixir is 1.11.2. My question is: this is the correct function or this function in my Elixir version does not exist more?Since now, thank you for your attention.
APB9785
It should be
Integer.mod/2now.emadb
HI @alvesgabriel!
The book is quite old but most of that is still valuable.
Like @APB9785 said you should use
Integer.mod/2. Sorry for the error!bye.
alvesgabriel
@APB9785 , thank you. That worked.
alvesgabriel
No problem. Thank you for your answer and the book that is helping me understand Elixir better.