Latest #erlang Threads 
Hi everyone! :waving_hand:
I just published my first Hex package, erli18n — a GNU gettext–compatible internationalization library for Er...
New
Hi,
I am building BeamTrail, a small BEAM library for durable business processes: retries, timers, signals, approval deadlines, operator...
New
Igor Ostaptchenko, Detroit MI — Senior/Staff Elixir Engineer, 13 years on the BEAM (Remote US, UTC-5)
About me
I have been shipping Elixi...
New
Hi everyone,
I’m happy to introduce Crank, a library that makes modelling complex stateful logic in Elixir much more enjoyable and maint...
New
Code BEAM Europe 2026 – Call for Talks is Open!
We’re excited to announce that Code BEAM Europe 2026 is now open for talk submissions :t...
New
Hello :slight_smile:
I am Kinga, originally from Hungary, currently livigng in Greater London.
Since university I have been in love wit...
New
Because it runs on the BEAM, you inherit Erlang/Elixir distribution for free.
Run Python on any node:
# Execute on remote node
:rpc.cal...
New
Hey everyone!
I wanted to share Nova, a web framework built on Erlang/OTP that works natively with Erlang, Elixir, and LFE. If you’ve ev...
New
I am on a Macbook M1 chip running Sequoia 15.7.4. I want to be able to use “observer” from Elixir. I installed wxwidgets with --enable-co...
New
Enum.sort([[3, -999], [3], [2, 999]])
# => [[2, 999], [3], [3, -999]]
Enum.sort([{3, -999}, {3}, {2, 999}])
# => [{3}, {2, 999}, {3...
New
This Week's Trending
Hi everyone! :waving_hand:
I just published my first Hex package, erli18n — a GNU gettext–compatible internationalization library for Er...
New
This Month's Trending
Code BEAM Europe 2026 – Call for Talks is Open!
We’re excited to announce that Code BEAM Europe 2026 is now open for talk submissions :t...
New
Hi,
I am building BeamTrail, a small BEAM library for durable business processes: retries, timers, signals, approval deadlines, operator...
New
This Year's Trending
So I am trying to install Erlang 24.2.2 and 24.3.2 but the build keeps failing, this is my first time using a Mac so I have minimal knowl...
New
I have asdf installed with the all the dependencies mentioned on the site. I am able to successfully installed and use different versions...
New
Hello,
I made the switch recently from an x86 MacBook to Apple silicon (M3) and it seems to fail my Docker/Minikube workflow that perfec...
New
New to Elixir, I’m trying to compile the default project in the getting started guide and get this error:
mix compile
Compiling 1 file (...
New
Is anyone aware of a guide that describes the optimal, or even just recommended, VM configuration options for specific deployments?
Sche...
New
I’ve multiple api instances installed on the on premise servers that are sometimes offline. I’d like to setup one master admin node that ...
New
A short and personal history of the book
I, Erik Stenman (Happi), started writing this book back in 2013. At first I was thinking of sel...
New
Hi,
I’m the author of the Domo library that validates struct’s data against its @type spec and would like to upgrade it to support in-me...
New
First announced on the Erlang Forum, BEAMup is a tool for installing a managing the active instance of BEAM languages. It has support for...
New
Hi, after searching a lot here, on Google and Github I couldn’t find any Dicom Library like PyDicom (Python) or DCMTK (C++) for Erlang/El...
New
Hello!
To save some time when switching projects or development machines, I glued together an asdf plugin that uses Erlang precompiled b...
New
Thinking about how Contexts on Phoenix 1.3 are beautiful in the simplicity, elegance and minimalism, coalesced in the smallest unity of E...
New
Join the major European event for Erlang and Elixir users 2 days of talks, discussions and networking for the BEAM community, a conferenc...
New
Currently, Elixir relies on :timer from Erlang’s stdlib. However, in every company I’ve worked at, I’ve noticed developers manually calcu...
New
Join us for the FIRST EVER Code BEAM Lite Vancouver and share your expertise with the West Coast BEAM community! :canada:
Be part of thi...
New
Last Three Year's Trending
Hello all!
I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
I tried installing
elixir 1.11.2
erlang 23.3.4
via asdf in my zsh shell. Enabled the versions locally and globally.
When I list them ...
New
What is the way to convert
[ %{id: 7, name: "A", count: 1}, %{id: 8, name: "B", count: 1}, %{id: 9, name: "C", count: 0} ]
to
[ ...
New
I commented on this Elixir lang GitHub issue:
I just observed this error today. I hadn’t seen it before. I installed both Erlang and El...
New
According to the stock example cited in elixir Ecto 3.4.6 docs …
post = MyRepo.get!(Post, 42)
post = Ecto.Changeset.change post, title: ...
New
I just got my new M2 macbook pro in the mail! Excited to get going with it but am having trouble installing Erlang…
I installed asdf thr...
New
I’m running Phoenix 1.3 with Elixir 1.6 and Erlang OTP 20 in a docker container.
I use comeonin ~> 4.0 and bcrypt_elixir ~> 1.0
W...
New
I’ve just released stable versions of my Prometheus Elixir libs:
Elixir client [docs];
Ecto collector [docs];
Plugs instrumenter/Export...
New
I’m working on an ejabberd project but I’m having an issue with login through xmpp client. Here’s a gist for the ejabberd.yml
Environm...
New
Hello, I've tried 2 libraries for parsing XML: sweet_xml and quinn, and both rely on the Erlang package xmerl.
They both work great, bu...
New
I want to use the observer program for my elixir apps.
Off late I am shown this warning when I try to install erlang using asdf
APPLICA...
New
I have this code, i want to stop_clock right now with erlang :timer. How can I do this ? Is it possible ?
def handle_event("start_clock...
New
Hi,
I am new to the Phoenix, but I have some experience in Ruby so I am learning Phoenix to build my chat application.
I like to know i...
New
Summary
I am trying to create a media streaming server in Elixir, with an initial focus on RTMP publishing and playback. I chose Elixir...
New
Is it still not possible to specify Erlang compatibility in mix.exs?
Erlang/OTP is a dependency of Elixir, so it is an indirect dependen...
New
Trending Over Three Years
Got a question about when to concat vs. prepending items to list then reversing to achieve appending.
So i know lists boil down to [1 | ...
New
I have followed this StackOverflow post to install the specific version of Erlang.
And When I am running mix ecto.setup then getting fol...
New
can someone please explain to me how Enum.reduce works with maps
New
Rust has a very nice semantics for Option<T> and Result<T,E> These two have similar uses but have a clear distinction about e...
New
I’m trying to install erlang otp 22.x. I have installed elixir and erlang using asdf and I have set the global version as otp 23 and elix...
New
Currently I am writing a small macro which adds authorization functionality to a function. Rewrite ‘def’ to ‘defprot’ and add the rules t...
New
I want to convert “3” to “11”, and then “11” to “00000011” in elixir.
But I don’t know any ways to do it.
Help me!
New
A new Erlang news item has been posted!
Link: Release OTP 24.0 · erlang/otp · GitHub
Posted via Devtalk.
New
Hello there,
I’m trying to generate a checksum using :crypto.hash/2, I want to hash the first 8 characters only of my string and get the...
New
I’m trying to run a shell command with a pipe operator in it. For example “sleep 0.1 | echo foo”. At first I tried to do this with System...
New
Is there any significant difference in the runtime speed of programs written in erlang vs. elixir? What (if any) advantages are there to...
New
First time posting on this forum so yay! I am new to Elixir and decided to post a question I been struggling on.
So there is a list and ...
New
Hi everyone, im working on find best language/framework/system for
high concurrency, high performance and stable performance
after wor...
New
Hi everyone,
I was thinking of resources like images, XML files or documents in other text formats. Is there something similar to the r...
New
I’ve got some requests misbehaving, and processes handling them suddenly allocate a lot of memory, which can crash my Beam VM.
I can mon...
New
Latest on Elixir Forum
Get money off!
The Pragmatic Bookshelf
35% off any eBook
Manning Publications
45% off any item
ElixirCasts
10% off for life
The Pragmatic Studio
20% off any course
AppSignal
10% off for 12 months
Honeybadger
10% off for 12 months
Simply use coupon code "devtalk.com" or "elixirforum" at checkout!
Filter by Type:
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #exunit
- #elixirconf
- #discussion
- #javascript
- #podcasts
- #code-sync
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #api
- #processes
- #forms
- #metaprogramming
- #security
- #performance
- #hex







