AstonJ
Update:
How to use the blogs section
You can post in one of the Official Blog Posts threads (like this one), or, via Devtalk and a new thread will be posted in our #learning-resources:blogs section here for each blog post so long as you have an account with the same primary email address on both forums (if you don’t, it will be cross-posted to our general catch all thread).
Please see this announcement for details: Calling all BEAM Bloggers!
![]()
We have a number of official-blog-posts-thread /s so let’s add another for Erlang Blog Posts ![]()
Please feel free to post any Erlang blog posts you come across that you think may be of interest to the community ![]()
Trending in Blog Posts
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Hey everyone! :waving_hand:
I’ve published Part 7 of the Building Distributed Systems in Elixir series, where we build core distributed ...
New
An educational side project in Elixir, Phoenix, and Tauri. I share what I learned while wiring Automerge into the BEAM, including how I s...
New
Process labels are useful for visualization and debugging. Here’s why you should use them.
New
What happens if you design tools for LLMs instead of letting LLM use human tools ?
Wrote a blog on why and what that enables.
As I see ...
New
Somewhere, right now, a senior engineer is on the verge of a nervous breakdown because his company will not let him switch from Claude to...
New
:pencil: Phoenix’s built-in LiveView test helpers require you to hand-build the form payload and start a fresh pipe after every click. Wo...
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
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
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
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ferd
I wrote a blog post about my ten years in Erlang, hype phases, adoption, things that changed, and I believe some of the content in there will be relevant to Elixir folks trying to boost adoption: Ten Years of Erlang
elbrujohalcon
I’ve been posting the ones on Erlang-Battleground on this thread, lately.
Not sure if I should add them here as well.
AstonJ
Generally it’s best to stick to one thread - either your blog’s dedicated thread, or one of the main ones like this one
(As a side note, I am not completely happy with how we deal with blog posts on the forum atm, so we will be tweaking this at some point - watch this space
)
StefanHoutzager
Nice post! Heads to the ground; in the spirit of the erlang creators.
peerreynders
Which companies are using Erlang, and why? #MyTopdogStatus by Francesco Cesarini
peerreynders
Article:
ostera
Hi folks!
Building Caramel is teaching me a lot about Erlang and OCaml, so I figured I’d share some of these learnings with y’all
I’ll start with some thoughts on Why Typing Erlang is Hard (and what we can do about it).
Here’s part 1:
lud
Sorry for the off topic question, I did not read the article yet, but I’ve just found about Caramel thanks to your post, I read the github README and I wonder why you chose to compile to .erl instead of compiling directly to .beam.
ostera
No problem
I just thought it’d be a good starting point since:
it is trivial to inspect that the outputs are correct, which makes it easy to see what’s going on, and that’s especially important when learning
it is less of a hassle to just drop a little .ml into an existing project
Eventually I want to enable Core Erlang outputs, so you still get a shot at picking your compiler, but we can do some optimizations on the generated sources.
Providing .beam outputs would mean reimplementing parts of
erlcthat I’m not that familiar with yet. But I’m open to the idealud
That makes sense, thank you.