life is too short for a diary

Most popular




Using kcat with Kafka and SASL Authentication

kcat (formerly known as kafkacat) is a versatile command-line tool for Apache Kafka. It allows you to consume and produce Kafka messages and interact with Kafka clusters efficiently. This guide will help you set up and use kcat with SASL authentication to consume and produce messages...

Continue reading → Tags : kafka






Handling Multiple Beans of the Same Type in Spring with Qualifier

In Spring application, it's common to have multiple beans of the same type. However, this can lead to issues when Spring tries to autowire these beans, as it doesn't know which bean to inject. This problem can be resolved using Qualifier annotation...

Continue reading → Tags : spring boot spring






Git Stash Tutorial

git stash is a powerful and nifty feature in Git that allows you to temporarily set aside changes you've made to your working directory. This can be incredibly useful when you need to switch branches but aren't ready to commit your changes. Here’s a comprehensive guide on how to use git stash effectively...

Continue reading → Tags : git