When writing code in any programming language, choosing the appropriate constructs is crucial for creating readable and maintainable code, and in Rust is no different.…
Writing for fun and food.
When writing code in any programming language, choosing the appropriate constructs is crucial for creating readable and maintainable code, and in Rust is no different.…
A few days ago I had to deflate some compressed content using Rust. I quickly found the flate2 crate, it is well maintained and has…
A while ago, I started working with GStreamer. I wasn’t familiar with the frameworkbefore, and took me a while to grasp how it works. I…
Today I was working on a project that uses GStreamer and reads content using the SRT protocol on my macOS. The SRT elements could not…
I quite frequently stumble upon people in the Python community being misled to think that using async Python code will make their APIs “run faster”.…