Recent posts

Python Development in Windows with WSL2

less than 1 minute read

Hello, Iโ€™ve published a new video on my YouTube channel. Itโ€™s a short tutorial on how to develop Python project on Windows by setting the remote interpreter...

Python Singleton Pattern implementation with LRU

less than 1 minute read

Hello and happy new year! ๐Ÿฅณ๐Ÿ™Œ Iโ€™ve made a video on how to implement the singleton pattern in Python using the LRU cache. https://www.youtube.com/watch?v=Wzu...

Separate Audio from Video (with ffmpeg)

less than 1 minute read

Hello ๐Ÿ‘‹ In this short article I will show you how to split audio from video using ffmpeg. When I worked on my Udemy course I needed a way to process audio ...

Exec as root user in Kubernetes

1 minute read

Hi ๐Ÿ‘‹, In this short tutorial I will show you a way of getting a root shell in containers running inside a modern Kubernetes cluster. Prerequisites: Roo...

Using confluent-kafka-go on MacOS M1

1 minute read

Hello, TLDR; brew install librdkafka openssl@3 pkg-config export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig" go test -tags dynamic ./... I...