Posts

How Phoenix logs endpoint requests and responses

February 14, 2024Find out how Phoenix leverages telemetry in order to log requests and response from your server.

Tail call optimization in Elixir

March 9, 2020Explains what Tail Call Optimization is and shows how you can use it to reduce the memory consumption of Elixir applications.

Mocking asynchronous functions in Python

February 18, 2020Post on how to mock asynchronous (asyncio) functions in Python.

How to make Twitter preview your website links

January 7, 2020Blogpost on how to update your website so that whenever you tweet about it Twitter displays a preview of the content.

Python tuple syntax is confusing

December 23, 2019Post about how Python's tuple syntax can make you run around trying to fix bugs that are easily avoided.

Elixir Findings: Asynchronous task streams

July 24, 2019Blogpost documenting how to use Task.async_stream/2 to run tasks in parallel using Elixir