Posts
Sketches
About
Posts
How Phoenix logs endpoint requests and responses
February 14, 2024
Find out how Phoenix leverages telemetry in order to log requests and response from your server.
Tail call optimization in Elixir
March 9, 2020
Explains 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, 2020
Post on how to mock asynchronous (asyncio) functions in Python.
How to make Twitter preview your website links
January 7, 2020
Blogpost 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, 2019
Post 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, 2019
Blogpost documenting how to use Task.async_stream/2 to run tasks in parallel using Elixir