What is reduce and why should I care?
When working with functional programming the word reduce and reducer isn't uncommon. Here we go through the concept to understand the value of reduce.
When working with functional programming the word reduce and reducer isn't uncommon. Here we go through the concept to understand the value of reduce.
With the contexts of phoenix 1.4 it might become hard to figure out where to put schemas that are being used by multiple contexts. Here I'll talk a bit about how we can get around that
Deploying software is boring, it's basically just following the same steps over and over again. That's where continuous delivery comes in. This is how I did it with elixir on Circle CI
Learn how elixir processes work by looking at a simple implementation of GenServer.
Slow CI suites can be quite frustrating. Here is I used workflows in Circle CI 2.0 to make my suite for elixir as fast as possible
For some reason I always end up failing to connect label elements with radio buttons or checkboxes using the `for` attribute while generating the inputs dynamically. Here is two ways that makes this extremely easy.
Sometimes things are harder than they have to be. Here is how to get the app version defined in mix.exs from your terminal with mix.
When running elixir in production your priv/ folder resides in the built app and that can sometimes cause issues if you're storing your static files in it. Here is how to make it work regardless of environment
Running jobs in the background without any dependencies is quite easy in elixir. Here is how you can do it concurrently.