Elixir Blog Posts

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

Just bookmarked this whole thread. Hope I have time to get back to it :slight_smile:

2 Likes

yea I was thinking something in the likes of https://github.com/zipmark/rspec_api_documentation for rails but for phoenix :slight_smile:

1 Like

Introduction to Elixir Processes - blog.songsaboutsnow.com

Elixir debugging techniques - Plataformatec

1 Like

Combining an Ecto Model with an Arc Uploader in Elixir by @Joseph_Kain

1 Like

I published the following blog post on some pattern matching basics and a generalized use case. Would love to hear comments!:

Bringing Sanity to your Data Structures With Elixir Pattern Matching by @vikram7

4 Likes

https://dockyard.com/blog/2016/04/13/til-elixir-can-pattern-match-at-multiple-depths-in-a-single-statement

3 Likes