How to add extra log context with loguruNovember 7, 2023Loguru is a Python library that provides a neat logging API, and I recently learned how to add extra context to the logs.Continue reading ⇾
How to call fluidsynth C API from ZigNovember 5, 2023I find quite cool how quickly you can start using a C library from Zig! No need to write bindings or to fiddle with a FFI, it provides direct integration with C libraries.Continue reading ⇾
How to define a healthcheck for a Docker containerNovember 1, 2023Today I learned that you can define a health check for a Docker container, directly on the Dockerfile.Continue reading ⇾
How to avoid BOM issues with CSV files created on WindowsOctober 27, 2023When loading CSV files in Python that were created on Windows, you can get some weird errors because the Microsoft tools usually add a BOM.Continue reading ⇾