andre1sk
Being new to Elixir would be very valuable to learn what you guys consider to be the biggest gotchas in Elixir land?
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
Hello,
I wrote Stop My Hand, a Scattergories-like web application using Phoenix/LiveView as my learning project for Elixir (after readin...
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
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
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
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
- #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
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
muhifauzan
For me, it’s the functional programming. Elixir is not the first functional programming I learn. But it’s the first functional programming I learn by doing, not just by reading the books. Another things are like pattern matching, pipe operator, recursive call, etc.
gregvaughn
erlang charlists. Newbie exercises are bound to create a list of integers and iex will print it out in a surprising way. It’s a fundamental ambiguity that’s completely understandable, but it introduces itself to newcomers in a very surprising way.
karmajunkie
For me the trickiest thing has been new patterns for managing state. The BEAM ecosystem has extraordinarily powerful tools for this, but learning new abstractions for it like the proper use of genservers and supervision trees has been a road with some missteps for me.
Onor.io
Yep–that’s one of those questions that keeps coming up again and again.
Onor.io
Allowing rebinding of values leads people new to Elixir to think we allow mutation.
Perfectly legal and people think it means that someone is mutating x–which they’re not. But this seems to be one of those things that people inevitably see and say “Hey waitaminute–I thought Elixir doesn’t allow mutation? WTF?”
I don’t know that I’d call this a “gotcha” but it does seem to confuse new folks on a fairly regular basis.
andre1sk
For me so far syntax for piping into anonymous function was a bit surprising:
|> (&(&1)).()
sotojuan
I’d say most gotchas are related to OTP and state management—it’s really a whole different beast from the language itself.
Language-level gotchas and common pitfalls include:
=is not assignmentifinstead of function pattern matchingrvirding
Erlang charlists can be confusing but it is not restricted to just erlang charlists. You have exactly the same issue with elixir strings:
It’s a result of the erlang system only having a fixed set of datatypes and not being able to define your own datatypes, and there is no character or string base type. This means choosing an existing type to use as strings: erlang chose lists which was common in the functional world, while elixir has chosen binaries.
Robert
josevalim
I think Elixir may actually make it slightly more confusing because a lot of folks coming from other language expect
'foo' == "foo". That’s why one of the proposals I want to send after v1.3 is out is to deprecate the use of'foo'in the long-term (and I really mean long-term) in favor of the sigil~c"foo". It is going to be more explicit and I find using sigils for char lists in Elixir at this point more idiomatic.gregvaughn
I like that. The experienced developers needing to interact with erlang libs will be comfortable with sigils, and the newcomers won’t have to learn it until later. Brilliant!