Elixir Blog Posts

Update:

How to use the blogs section

You can post links to your blog posts either in one of the Official Blog Posts threads (like this one), or, via Devtalk.com. If you post via Devtalk we will automatically cross-post your blog post here in our Blog Posts section for each blog post (so one thread for each blog post) so long as you have an account with the same username and primary email address on both forums. We also remove the rel-nofollow attribute when your link appears on our homepage on Devtalk, so great for your SEO! :wink:

If posting via Devtalk be sure to:

  • Ensure your account on Devtalk.com has the same username and primary email as your account here
  • Initiate thread creation in one of the Blog Posts sections (for Elixir/Phoenix that may be in the Back End category, or for LiveView it could be the Front End category).
  • On thread creation paste the URL of your blog post in the TITLE field (once the URL appears in the body field below you can then change the title to whatever you like)
  • Include a short summary of your blog post then post the link on a separate line (here’s an example)
  • Include the Elixir and blog-post tags (as well as Phoenix, Nerves, LiveView etc if applicable)

It will then create a thread on Devtalk and then automatically cross-post here under your account :003:

Please see this announcement for the full details: Calling all BEAM Bloggers!

:nerd_face:


This thread exists to aggregate learning resources about Elixir.

Feel free to add links to blog posts, articles, screencasts, etc. to the Wiki (this post) as well as in a new post in the thread (so everyone else is alerted as well) :023:

Introductions to Elixir

Elixir - First steps · trydis
The Elixir of Concurrency
Thoughts on ElixirConf 2016
Why we choose Elixir as the main technology for our startup?

Elixir in comparison to

Functional Programming is not weird: you just need some new patterns — Medium
Why I’m betting on Elixir — Medium
How Elixir’s Ecto differs from Ruby’s ActiveRecord
Why We Choose Elixir To Power Our SMS Infrastructure - PortaText
Elixir: The most Object-Oriented Language
Two million web servers
Beyond functional programming with Elixir and Erlang

Data Structures

Elixir Arc with a single module

Design Patterns

CQRS with Elixir and Phoenix
The Most Object-Oriented Language

Concurrency & OTP

Introduction to Elixir Processes
Ramblings of a Geek: Let’s Build Something: Elixir, Part 1 - A Simple GenServer
Ramblings of a Geek: Let’s Build Something: Elixir, Part 2 - Supervising Our GenServer
Understanding State with Elixir Agents — Automated Solutions
Pub/Sub in 30 Lines of Elixir — NoRedInk Tech
Creating Elixir libraries as OTP applications
Understanding Exit Signals in Erlang/Elixir
Pi Calculation with Elixir

:ets

Taming :ets for High-Performance Software

Metaprogramming/Macros

Getting Started with Elixir Metaprogramming
The Erlangelist - Understanding Macros

Testing

Ramblings of a Geek: Let’s Build Something: Elixir, Part 3 - Getting Started with ExUnit for Testing
Ramblings of a Geek: Let’s Build Something: Elixir, Part 4 - Better Tests, TypeSpecs, and Docs

Debugging

Debugging techniques in Elixir « Plataformatec Blog
How to trace Elixir nodes with Erlyberly « Plataformatec Blog

Elixir+Elm

note: We have a special place for Elm-related resources here.

Are Elixir and Elm the Perfect Couple?
Tomasz Kowal - Elixir and Elm - the perfect couple (Lambda Days 2016) - YouTube

Elixir Internals

Elixir RAM and the Template of Doom
The Erlang Garbage Collector

Web

note: We have a special place for Phoenix-related resources here.

Simple Web Servers with Plug and Cowboy
Ways to use Elixirscript Today
Ecto - the Past, the Present, the Future
Increasing SSL Security in Erlang/Elixir
Elixir Application with Ecto “Mix Elixir project with Ecto” @prio_mahabub

Artificial Intelligence

Coding A.I. Techniques in Elixir: The Generate and Test Algorithm — Automating The Future

Mix

Elixir 1.1 mix profile.fprof command

Ecto

How to use data spanning multiple data sources in Elixir

Deployment

How Honeybadger Uses Elixir To Monitor Heroku
Continuous Delivery for Elixir, Part 1: Introduction

Integration with 3rd party applications

Building a bot for Facebook Messenger, using Elixir
Setting up simple Live Chat in a Phoenix project using Planga

Short Tips

HMAC in Elixir and Python · My Random Thoughts
TIL: Elixir can pattern match at multiple depths in a single statement
Using Functions in Elixir Guard Clauses

Types

Type Checking in Elixir
Type-checking and spec-testing with TypeCheck

89 Likes

HMAX in Elixir and Python - saratchandra.in

5 Likes

Ha, found a thread.

“How Elixir’s Ecto differes from Ruby’s ActiveRecord”

5 Likes

Functional Programming is not weird: you just need some new patterns

4 Likes

A post was merged into an existing topic: Phoenix Blog Posts

Great write-up! Although I wish he explained more of the last step of the algorithm, as it seemed to be the most critical. His experience inspires me to finish up these exercism.io exercises and find some more after that :slight_smile:

1 Like
1 Like

My first encounter with Elixir: https://trydis.github.io/2016/03/07/elixir-string-calculator/

4 Likes
4 Likes

Thank you for sharing this link. I’m going to use it as part of my subversive plan to move Elixir into my organization.

4 Likes

Understanding State with Elixir Agents - Quentin Thomas

4 Likes

Simple Web Servers with Plug and Cowboy - m.alphasights.com

If you want to build an Elixir web application there’s no doubt that the Phoenix framework is the most full featured option out there. However, if you’re looking for something a little simpler, like an endpoint for web hooks, then there are some alternatives. In this post we’re going to look at how to use Cowboy and Plug. Cowboy is a small web server written in Erlang. It’s fast and built to be modular. Plug is very similar to Rack (if you’re coming from Ruby).

3 Likes

1 post was split to a new topic: Two million web servers

Elixometer and InfluxDB - John P. Daigle

1 Like

I started a blog series, walking through the process of starting a new Elixir project. I’m not sure how far I’ll make it, but I’d like to explore some of the key features of Elixir while working toward a minimally functional time series database.

Feel free to check it out and throw me some feedback. :slight_smile:

Parts 1 and 2 are available:
Let’s Build Something: Elixir, Part 1 - A Simple GenServer
Let’s Build Something: Elixir, Part 2 - Supervising Our GenServer

5 Likes

@Strofcon, sharing this is highly appreciated. Thanks! Though can’t read it thoroughly for now, I will definitely bookmark it. :thumbsup:

2 Likes

AI: Generate and Test in Elixir

2 Likes

@greyhwdnz, glad to hear it!

Part 3 is up now as well: Getting Started with ExUnit for Testing

2 Likes

Wow pounding hard @Strofcon! Thanks! :thumbsup:
What are the best way to test and document Elixir/Phoenix JSONAPIs?

1 Like

I’m curious about that myself, haven’t gotten that far yet. I’m hoping to get a simple JSON API in place in the next couple of weeks, and will hopefully come across some useful bits then. :slight_smile:

1 Like