New blog

2022-09-18 | 1 min read

New blog to document and learn about the infamous Web3 world with a dynamic self-hosted blog...

Upgrading to Phoenix 1.7

2023-03-05 | 2 min read

Upgrading phoenix from 1.6 to 1.7...

Running a phoenix app in a multinode fashion in kubernetes

2024-02-24 | 3 min read

Running a phoenix app in a multinode fashion in kubernetes

Getting started with Wallaby integration tests

2024-03-16 | 8 min read

Wallaby is a concurrent feature testing library, also known as integration testing libraries, it can be configured with chromedriver, geckodriver, etc, to spin up a browser and interact with your site, run some assertions and also validate your application as a real user would do.

RSS is not dead yet

2024-03-19 | 4 min read

In this article we will see how to add an RSS feed to your Phoenix application, and how to render XML.

Remote iex session

2024-04-14 | 4 min read

In this article we will see how to connect to your production instances from a development machine, this can be useful for many different reasons, handle with care when doing so but know how in case you need to do some manual intervention.

Migrating from kubernetes cronjobs to quantum-core

2024-04-16 | 5 min read

In this article we will move our scheduled tasks away from kubernetes and instead we will use quantum-core to schedule and run these tasks, we can simplify some things in the tasks themselves as we won't need to boot our entire app before running our task.

Scheduled tasks in your elixir application

2024-04-16 | 6 min read

In this article we will see how to create and run tasks automatically with the help of kubernetes, in this particular scenario for the blog and also specifically for a phoenix web app, while the kubernetes part is general enough, there are some interesting things to learn about the elixir ecosystem as well.