dino (dot) codes
Thoughts and opinions on Software Development and Music Production.
Home
Posts
About
Tags
Posts
09
Mar 2020
Tail Call Optimization in Elixir
Explains what Tail Call Optimization is and shows how you can use it to reduce the memory consumption of Elixir applications.
18
Feb 2020
Mocking Asynchronous Functions In Python
Post on how to mock asynchronous (asyncio) functions in Python.
07
Jan 2020
How to make Twitter preview your website links
Blogpost on how to update your website so that whenever you tweet about it Twitter displays a preview of the content.
23
Dec 2019
Python Tuple Syntax Is Confusing
Post about how Python's tuple syntax can make you run around trying to fix bugs that are easily avoided.
24
Jul 2019
Elixir Findings: Asynchronous Task Streams
Blogpost documenting how to use Task.async_stream/2 to run tasks in parallel using Elixir