Event-Driven Architecture with Spring Boot and KafkaIntroduction Event-driven architecture (EDA) is a powerful approach to building scalable, decoupled, and reactive applications. Unlike traditional request-response models, EDA revolves around events that propagate through the system asynchronously, e...Feb 17, 2025·3 min read·198
First Spring Boot App at Azure Spring App and GitHub ActionIn this tutorial, we will look at deploying our app at Spring Azure app. Spring Azure App is an Azure offering to seamlessly deploy Spring boot microservices at Azure. For this article, we hope you have an active Azure subscription. At the time of wr...Dec 23, 2022·4 min read·178
378. Kth Smallest Element in a Sorted MatrixLet's discuss today the problem 378. Kth Smallest Element in a Sorted Matrix at leetcode. Problem link https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix/ The example in question has following Input: matrix = [ [1,5,9] [10,11,13] ...Aug 16, 2022·2 min read·38
235. Lowest Common Ancestor of a Binary Search TreeLet's discuss problem no 235 at leetcode i.e 235. Lowest Common Ancestor of a Binary Search Tree. Problem Link: https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/ Here we are supposed to find the lowest common ancestor in ...Aug 12, 2022·1 min read·113
Quarkus - Demo ApplicationQuarkus - Demo Application Creating first Quarkus app Let's create an App which will recommend random quotes from a database. To start , let us generate an app using maven CLI . mvn io.quarkus.platform:quarkus-maven-plugin:2.10.0.Final:create \ ...Jun 30, 2022·3 min read·137
Why & How I automated WordleWordle has taken over the world trend. I feel the simple interface and no extra advertisement have made it successful. Without advertisements, you can focus on the problem, and each answer you give acts as a clue for the next one. More than being an...Feb 6, 2022·3 min read·218
Kubernetes and Spring BootKubernetes with Spring Tutorial Introduction to Kubernetes Kubernetes (k8s) is an open-source system for automatic management, scaling, and deployment of containerized applications. With the rise of microservices, we required a tool to deploy these ...Jan 29, 2022·10 min read·482