AstonJ
How has Elixir blown (or expanded!) your mind? Please tell us here!
Can be something that’s unique to Elixir, or just something that it introduced to you. Can be something you discovered a while ago.. or something you just come across - whatever it is, please share ![]()
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
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
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
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Hi there! :wave:
@frigidcode and I (but mostly him) have been running an Elixir Book club, we’re almost done with Designing Elixir Syste...
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
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
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
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
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
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
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 40 to 31- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
namelos
Erlang/OTP is mind-blowing to me. However, if there’s no Elixir, I probably never actually take a serious look at them (although it was always on the todo list). I can raise some examples:
I realized the scheduling efficiency is much more important than execution speed:
Given Java is much faster than Erlang – Erlang is much faster than Java is most of the Web and other scenarios. The nature of most user-oriented scenarios is about unordered events and operations.
Erlang vs Java is more like agile vs waterfall. If the requirement never changes probably waterfall is better, just like scientific calculation or batch operations. But more scenarios are dynamic, react to change is far more important than personal efficiency.
I realized programming language is probably is not enough. We need operating systems. Processes. Applications. Isolation.
Typically most of the libraries run on your threads, in typical programming languages. If one of them crashes, everything crashes unless you handle them.
In typical language: two objects, one is saying ‘hi’ to another, and another responds with something the former does not understand. The whole world explodes. That’s crazy! And yet we’re so used to them.
In typical operating system, if there are some application crashes, people is not expecting the whole operating system crashes. They’ll be really pissed if it does.
Your database and your application could be the same thing.
Actor is similar to this philosophy, and riak_core / lasp / o(e)rleans are stepping toward this direction. It’s not popular or easy to handle right now, but we will eventually be there. The database is always ‘the’ problem that makes me really think ‘there should be a much better’ way. After I read these solutions, I believe there’s a bright future for this philosophy.
They are really mind-blowing.
SICP and Lisp blew my mind on how to write software.
Erlang/OTP blew my mind on how to run software. And running software properly is so important nowadays.
nico_amsterdam
Didn’t knew we had test coverage built-in.
Simply run:
mix test --cover
cjbottaro
reduceis god. Didn’t really sink in until I started using a functional language for real.Macros are fine, but macros calling other macros still makes my head hurt.
Pattern matching is the thing I miss most when working with other langs.
Eiji
Something like that:
btw. Last time I tried to properly remind my past, but I hit such error:
Looks like there is still lots of work for me!
csisnett
It blows my mind how much you can learn about good software practices by reading the debates here, watching Elixir conferences or taking a course on elixir.
snake117
There are a lot of features of Elixir that are great, but this is probably the first thing I would mention as well. It’s amazing how much code this feature alone can clear up.
Another thing that impresses me is how fast new versions of Elixir are released. I feel like it wasn’t even that long ago I got the Programming Elixir 1.2 book and now the 1.6 book is out, but 1.8 is the latest version
nico_amsterdam
Just discovered this one:
victorolinasc
One silly thing that really surprised me (coming from a Java World a while ago…) was this simple snippet:
Maybe this is common to Rubists and the like but it’s simple and I like it.
The first thing that shocked me on the BEAM was the fridge example in Learn You Some Erlang for Greater Good. It was that moment when light weight processes made sense and from there to
gen_servers was easy. This is still my recommendation when someone is new to the BEAM (although it is written in erlang, it is really well written and easy to follow…).Here is the final code that made me understand how to deal with mutable state using processes in an immutable language with recursion:
factoryd
I was already in love with pattern matching from other languages. That stuff is seriously addicting. Like no turning back addicting.
I started a new job and Elixir was the only language in a list of pre-approved languages to write new stuff in.
Honestly…what blew my mind the most was realizing that this is what Akka is emulating. Except this is the real deal. No more messing with
ExecutionContexts or defining huge nests of case classes. Or worrying about Haskellisms.I love Elixir. It’s scratching every itch.
imprest
Code maintainability and comprehension for decent multi-core performance on a stable VM.
I rarely get that sinking feeling of technical debt
i.e. oh crap why am I doing this… this is going to be hard to maintain or change 10 years from now.
As a part-time programmer and business manager, Elixir is incredibly refreshing to write and maintain systems with.