LCMr_music
What should I do if I feel, there is a book about elixir for the actual total beginner (to computer programming) to be written?
should I just Ignore the feeling coz there are already so many Interesting Books written about Elixir,
A great thank to all the people involved in creating Elixir THANK YOU VERY MUCH!
or perhaps I should just continue with this endeavor coz, I feel there isn’t something said, or it’s said but not quite as I think it should be.
What should I do? write another book about elixir or Learn on my own, and let other newcomers to functional programming with Elixir figure it o their own : as im doing?
I’m currently Learning Elixir, I have imperative programming experience, new to functional with Erlang and Elixir.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
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
I’m posting this in response to Jose’s recent tweet (Cr. link) :
People are sleeping on Elixir for a coding harness:
Hot-code swappi...
New
It would be helpful to have a list of companies worldwide that hire engineers without prior experience in Elixir. Often, it can be quite ...
New
Anyone running long-lived stateful processes on BEAM? We’re building an AI agent runtime and would love to compare notes.
We’re a small ...
New
This might be a bit disturbing for some but it’s happening - computers running on living human neurons. They’ve made them smart enough t...
New
Other Trending Topics
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mindriot
IMHO you should write blog articles or alternatively privately held drafts based on your learning experience working through existing materials then once you have reached a intermediate level then go back through your documentation of the things you struggled with and refine them to add clarity and correct mistakes. You can only understand what a beginner feels at the moment in time you are a beginner, so if you have managed to gather a book worthy collection of experience then perhaps make a book or if not perhaps another type of resource. The important thing is to do it as you learn and overcome struggles then refine with hindsight, hindsight alone will get you the same books we have, which are great but won’t capture the things you are struggling with now.
LCMr_music
Thank you very much, you have scratched my head.
Will certainly follow with what you say,
sfusato
Have you seen Joy of Elixir?
dponyatov
Maybe something about “Elixir for Pythonista”?
How to float up from classed OOP and Django to actor/functional network & DB programming.
c4710n
I think ‘Elixir in Action’ is the right book for beginner.
It introduces basic info about Elixir, then jump into concurrent programming which is the core of Erlang/OTP and Elixir.
c4710n
I wanna share my learning path to you.
At the first, I want to write a web application, so I learn:
After this, I learned something about Phoenix LiveView which can make my website more dynamic.
After gaining an understanding of these high-level usage, I want to go back to the origin. So I plan to read something in depth:
Then, I plan to read something about functional programming:
Then, I plan to learn more about Erlang/OTP:
Exadra37
I had the same struggles then you and the book that clicked for me to do the switch to functional programming was:
This book is from @pragdave, also one of the authors of the famous Pagramtic Programmer book
malloryerik
I also love Programming Elixir but it’s for people new to Elixir, not new to programming, and is even advertised as “intermediate to advanced.”
There is no PragProg Elixir that could be on the PragProg “For Beginners” page.
There’s Joy of Elixir, but on its own it’s not enough.
But can’t you start with Python and then come back to Elixir later? Does Elixir need beginners’ materials at all?
I imagine yes, much as Ruby does. Even if early programmers veer off to try out other languages, good beginners’ materials can create attachment and lead to return. And isn’t it possible that functional is one of the better and even easier styles for beginners?
Imagine someone with an idea for a business around a web app. They consider Phoenix. But first they must learn to program in another language with the goal of later throwing much of that away and rebooting in Elixir, whereas their goal isn’t to become a well-rounded programmer (“learn several languages”) but to bring the web app and business they’ve thought of into the world. Their fastest route at that point is a framework in whatever language they’ve learned first and that isn’t Elixir. Maybe they’ll arrive at Elixir later, but they’ll already be somewhat seasoned programmers.
Yet the Dockyard founder for example talks about a lack of junior and intermediate Elixir devs. He stresses that if your business chooses Elixir you can find fantastic senior devs. But junior devs? They skip Elixir. And at least for fledgling devs, some might also say that Elixir skips them.
dponyatov
What book describes in deep how can I move (emulate?) from Pythonic OOP with classes and shared memory to the Erlangish approach?
I found few posts, but don’t see anything usable – it looks like all of them are written by FP-minded people. The problem is computation models differ in their roots.