Phoenix with Elm - part 2
Getting Phoenix and Elm to play together.
Phoenix with Elm - part 1
Installing prerequisites and generating a base Phoenix project
How to write a plug package and publish it on hex
This is a walkthrough on the process of creating a new plug package and getting it published on Hex.
How to add and test HTTP basic authentication in a Phoenix web application
Short tutorial on how to add basic authentication to a phoenix web app.
JSON Serialisation of Ecto Models in Phoenix Channels (and views)
This week I upgraded from 0.13.x to 0.15.0 (through 0.14.x) and hit problems with models that I'd been sending over channels to the Javascript client. Here's how it panned out.
How to set different layouts in Phoenix
Quick guide on setting alternative layouts within a phoenix web application.
Pseudo Random Number Generation in Elixir
I recently started learning Elixir and decided for my first "real" project to implement a basic genetic algorithm. I like to do this to kick the tyres on a new language because it's a non-trivial problem that gives you a good idea of what it's like to work with that language.