light
New to Elixir
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 
Most Liked
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!
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.







