Trending This:
Latest
Extending Elixir with WebAssembly Components - Chris Nelson| ElixirConf US 2025
Comments welcome! View the <span class="h...
New
A year of Hologram releases in review (v0.5 through v0.8), then a deep dive into where it’s headed next: local-first.
Most of it is a to...
New
Building Careers, Balancing Life: Stories from the Elixir World and Beyond | ElixirConf US 2025
Comments welcome! View th...
New
With LiveView 1.2 you can move a surprising amount of client-side code back into Elixir. I refactored a trivia game to show how: server-c...
New
Managing Distributed Recorder Workers with Elixir-Misael Perez Chamorro | ElixirConf US 2025
Comments welcome! View the <...
New
This Week's Trending
With LiveView 1.2 you can move a surprising amount of client-side code back into Elixir. I refactored a trivia game to show how: server-c...
New
A year of Hologram releases in review (v0.5 through v0.8), then a deep dive into where it’s headed next: local-first.
Most of it is a to...
New
The Architecture Behind Deploying Livebook Apps w/ Livebook Teams-Hugo Baraúna | ElixirConf US 2025
Comments welcome! Vie...
New
Extending Elixir with WebAssembly Components - Chris Nelson| ElixirConf US 2025
Comments welcome! View the <span class="h...
New
Building Careers, Balancing Life: Stories from the Elixir World and Beyond | ElixirConf US 2025
Comments welcome! View th...
New
Managing Distributed Recorder Workers with Elixir-Misael Perez Chamorro | ElixirConf US 2025
Comments welcome! View the <...
New
This Month's Trending 
LT: The Elixir Hiring Paradox - Arjun Gillard | ElixirConf EU 2026
Comments welcome! View the <span class="hashtag-icon-p...
New
Update from the Phoenix Team - Steffen Deusch | ElixirConf EU 2026
Comments welcome! View the <span class="hashtag-icon-p...
New
LT: Telegram Bots with Elixir: Shipping Faster, Sleeping Better - Max Gorin | ElixirConf EU 2026
Comments welcome! View t...
New
LT: Sherlock: The truth is in the code - Aleksandr Lossenko | ElixirConf EU 2026
Comments welcome! View the <span class="...
New
LT: smithy beam: Contract first API Development - Frank Eickhoff | ElixirConf EU 2026
Comments welcome! View the <span cl...
New
LT: Skode: an ASCII shorthand for audio experimentation - Joseph Stewart | ElixirConf EU 2026
Comments welcome! View the ...
New
Keynote: DurableServer: Always Running Somewhere - Chris McCord | ElixirConf EU 2026
Comments welcome! View the <span cla...
New
LT: Your project is great! More people should know about it - Kamila Pokój | ElixirConf EU 2026
Comments welcome! View th...
New
Keynote: The Latest on Elixir Types - José Valim | ElixirConf EU 2026
Comments welcome! View the <span class="hashtag-ico...
New
LT: Gleaming Github Actions - Austin Ziegler | ElixirConf EU 2026
Comments welcome! View the <span class="hashtag-icon-pl...
New
LT: GraphQL Queries, No Drama: Compile - Time Validation and Formatting - Rock | ElixirConf EU 2026
Comments welcome! Vie...
New
Practical Mentorship for a Stronger Community - Jordan Miller | ElixirConf US 2025
Comments welcome! View the <span class...
New
Update from the Elixir Core Team - Andrea Leopardi | Code BEAM Europe 2025
Comments welcome! View the <span class="hashta...
New
Update from the Erlang Ecosystem Foundation - Dan Janowski | ElixirConf EU 2026
Comments welcome! View the <span class="h...
New
Starting a business on Phoenix LiveView & Event Sourcing in 2025 - Aaron Votre | ElixirConf US 2025
Comments welcome!...
New
This Year's Trending 
Hello everyone!
This year is going to be shorter, but the difficulty will grow faster. Today I already feel that this is not standard “D...
New
Hi everyone!
We just released the Elixir Language Tour guide – an interactive intro to Elixir.
The guide itself is written in Elixir an...
New
Joseph Koski
Series editor: Sophie DeBenedetto @SophieDeBenedetto
Developmental editor Adaobi Obi Tulton @aotulton
Combine advanced fu...
New
Well some of us wanted a difficulty spike - and today we got one :sweat_smile:
https://github.com/sevenseacat/advent_of_code/blob/main/l...
New
..or as and when you can think of one :icon_cool:
This thread my also be of interest: What took you way too long to figure out? :003:
New
Hologram Building Rich UIs with Elixir Running in the Browser - Bart Blast | ElixirConf EU 2025
Comments welcome! View th...
New
Observability is a key part of building scalable and maintainable applications. Today, I want to share how to set up one of the most powe...
New
A single packet to begin. The 1st of Goatcember.
Marc Laines - A Nerves Car
Also on YouTube.
New
Hey everyone :waving_hand:
I’ve just recently discovered Elixir, and honestly—it’s been mind-blowing so far (coming from a React backgro...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Authorization & Access Control: Case Studies and Practical Solutions using Elixir - Michał Buszkiew
Comments welcome!...
New
2025 Dec 03
Lobby
defmodule Joltage do
def parse_line(s) do
String.trim(s)
|> to_charlist()
|> Enum.map(fn ch -&g...
New
We were all waiting for a (more) complex problem, and here it is, finally! As of now, it’s the only problem that has 3x more people who o...
New
“When in doubt, use brute force.” – Ken Thompson
defmodule Day02 do
def part1(input) do
solve(input, &invalid_part1?/1)
end
...
New
This is a thread to organise resources while we wait for official posting of videos. I’ve committed to keeping this post updated, please ...
New
Trending Last Three Years
Recently we partitioned a table with 28 million rows by its ULID to improve query speeds and reduce query timeouts. To do this I ended up...
New
Nobody’s doing Advent of Code this year? :grinning_face_with_smiling_eyes:
I might do the first week or so.
For Day 1, first I solved i...
New
At https://elixir-phoenix-ash.com I publish training material for Elixir and Phoenix. Text base tutorials which start at zero. Recently I...
New
Here is my solution for day 2 of Advent of Code:
https://github.com/bjorng/advent-of-code/blob/main/2024/day02/lib/day02.ex
New
Setting this down for the night, as after a quick naive solve for quick part 1 I realize that part 2 is by design computationally expensi...
New
I recently got inertia-phoenix (an Inertia.js adapter for Phoenix) working with Svelte. Setting up the server-side rendering (SSR) with S...
New
Here is my solution for day 1 of Advent of Code:
defmodule Day01 do
def part1(input) do
all = parse(input)
{first, second} = E...
New
Today is a brute-force day: advent-of-code-2024/lib/advent_of_code2024/day6.ex at main · ibarakaiev/advent-of-code-2024 · GitHub
Takes a...
New
The second part of today’s puzzle is very misleading.
FYI, each of the ghosts has only one possible position that ends with a "Z" on its...
New
I tried to use combinatorial to solve today’s puzzles but failed (my brain burned out :exploding_head:). In the end I just used brute for...
New
ElixirConf: ElixirConf 2023 - German Velasco - Using DDD concepts to create better Phoenix Contexts
Comments welcome! View the <span cla...
New
Here’s my day 3 code
https://github.com/code-shoily/advent_of_code/blob/master/lib/2024/day_03.ex
This was quite easy. I was afraid Par...
New
Hello all,
I am still learning Elixir, then go into Phoenix, i am try search in google but find the programming phoenix 1.4, another for...
New
I spent 3 hours struggling in part 2, until I noticed a very basic mistake :joy:
Here’s my code:
https://github.com/Aetherus/advent-of-...
New
I said I was on a break, but I took a sneak peak and it looked fun so…
Part 1 completes in half a millisecond with a single pass of the ...
New
Trending Over 3 Years
Hi, this is for people who, like me, have had some friction using .html.heex templates in VSCode.
The solution seems to be, in a hyphena...
New
Manning 2016 Halloween weekend sale via Deal of the Day
Friday, October 28 - Half off all MEAPs - code WM102816LT
Saturday, October 29 ...
New
You’re a programmer, so you don’t need spoon feeding with the conventional drivel about “this is an integer.” No. You need to know what’s...
New
I would like to know that is there any online source for learning Phoenix Framework for building E-Commerce Store? Any advantage on build...
New
Hey :waving_hand:t3: Elixir community,
I’ve been learning Elixir, and working on some side projects. My editor of choice is VSCode, and ...
New
by Lance Halvorsen
Elixir and Phoenix are generating tremendous excitement as an unbeatable platform for building modern web application...
New
I couldn’t find any guides that worked well with Phoenix 1.6.0 and esbuild. I hope this helps people test the waters and eases you into t...
New
by Saša Jurić
Elixir in Action teaches you to apply the new Elixir programming language to practical problems associated with scalabilit...
New
pipe into case? I use that fairly frequently…unless I’m misunderstanding what you’re wanting…could be.. its still very early…
str = "Hel...
New
In case this is handy for other people, here is how you can run Elixir on Android:
Install https://termux.com/
apt update; apt upgrade ...
New
So, I’ve just finished Introducing Elixir. I did skip the last chapter on Using macros to extend Elixir as I will get to that when I get ...
New
Hello all!
For those wanting to try your hands at Elixir / Phoenix, I wrote a comprehensive tutorial on doing a simple JSON API with sai...
New
Please note: This course contains the use of inaccurate terminologies and may lead to confusion - see comments in the thread below for d...
New
Hey,
I am currently reading Programming Elixir and I am doing one of the exercises where you should write a solution to the “I’m thinkin...
New
Don’t forget you can get 35% off the ebook using the code ‘devtalk.com’ :023:
Current: Search
Original: Search
For those looking for ...
New
- Follow
- Join
- Shape
the conversation
Latest Jobs
Elixir Jobs
about 1 hour ago
Elixir Jobs
25 minutes ago
Elixir Jobs
1 day ago
Elixir Jobs
January 22, 2026
Elixir Jobs
January 21, 2026
Featured Book
Latest Learning Resources
Exploring LiveView 1.2
ScreencastsGet 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!
Our Community
We Support Global Peace
Filter by:
Sub Categories:
Saved Forums
-
None saved yet
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #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
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #hex
![[Erlang] Introducing Erlang (O'Reilly)](https://forum.elixirforum.com/uploads/default/original/3X/1/2/12b46cf1a907faf02edf9decb58a4f9c9797b3db.jpeg)









