light
Hey guys! I would like to take this opportunity to say that I am in awe of how awesome and supportive the Elixir community is.
I am fairly new to programming and I have decided to start learning Elixir as my first language using the book Joy of Elixir.
I wonder if there are more books like that so that I could use them in my journey of learning Elixir,
and I would also appreciate any tip for learning in general!
Thanks again and I hope you all have an amazing day ![]()
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
Hello and welcome! I hope you enjoy it here.
I am not sure if you want to stick to books only but Elixir’s official tutorial is very solid, one of the best I ever stumbled upon.
That, plus the Exercism.IO Elixir track will make you more than ready to read and write Elixir.
Of course, things like Ecto and Phoenix are universes in themselves but they are very approachable and the community here is supportive and helps people get into them as well.
APB9785
The book Elixir in Action was very helpful to me when I was learning Elixir. The Pragmatic Studio is also great for video tutorials + sample projects.
And don’t underestimate the HexDocs for Elixir, Ecto, Phoenix, LiveView, and any other libraries you might be using. You’ll often find full tutorials for common use cases right there in the docs.
crispinb
Welcome @light . You say you’re ‘fairly new to programming’, so (depending on how new exactly) it’s worth being aware that Elixir is (I’m pretty sure) most often picked up by people with a fair bit of experience in other languages. This isn’t because it’s notably difficult (it’s really not!), but just a matter of its not being as well known as more common ‘beginner’ languages like python and javascript (the latter, by the way, is a much more difficult language to learn well than Elixir).
I point this out just so you’re aware that many of the resources available, and that people may point you to, could seem to be pitched above your level. If that’s so, move on to something else, or (if you’re someone willing to head-butt your way through more difficult material), keep asking questions. I’m also new (to Elixir, not to programming), but from what I’ve seen the Elixir community is largely kind & helpful.
To any others reading this - are you aware of any Elixir resources beyond Joy of Elixir pitched at newish programmers?
joaoevangelista
Welcome!
The greatest tip for learning anything in programming and computers is to always build stuff and tinker around, does not matter how big or small, just do it!
I would also like to add the ElixirSchool and Learn With Me: Elixir.
The Exercism is a great place to pratice the language while solving problems!
light
Hey!
I actually ordered about 4 books related to Elixir just yesterday,
the books are: Programming Elixir ≥ 1.6: Functional |> Concurrent |> Pragmatic |> Fun, Elixir in Action, Designing Elixir Systems With OTP: Write Highly Scalable, Self-healing Software with Layers, Learn Functional Programming with Elixir: New Foundations for a New World (The Pragmatic Programmers)
Sebb
Welcome and have fun!
If this is really your first language, you should not read “Elixir in Action” and “Designing Elixir Systems” yet, the last book I do not know.
Be aware that you are learning a functional language, I do not know of anyone that picked a functional language as their first language, but I think that could be a really good thing. I regret that it took me decades to really use a functional language.
The main difference to “normal” languages is, that you can not mutate data at will anywhere in memory. You can only transform data incoming to a function and return sth different. With this you obviously have less power, but you get the benefit of easier to understand and easier to test code (you can read a line of code, knowing that nothing magic happens somewhere else).
But: if you search for solutions to problems (on stackoverflow eg) you will most of the time find solutions that use mutable data. You can’t apply them directly in Elixir.
light
Hi Sebb,
As far as I have read the last book is aimed towards juniors-intermediate levels so it seems like an okay resource to study from as well, on top of my Joy of Elixir copy and other sites that people had mentioned here
I was told by a few that because I was not exposed to any OOP principals and languages in general it may be a benefit for me to wrap my head around FP faster.
Also, if you are referring by “can not mutate data at will” to the immutability part of Elixir then I was already sort of exposed to that, however, I must say that it seems to have it’s use cases.
Sebb
for sure!
Just be aware that most of the world is OOP and mutable.