Published inJavarevisited·Jul 3SQS With SpringBoot: Some hiccups and their remediesOn a rainy day, when the pitter-patter of raindrops orchestrates a symphony against the windowpane, I find solace in the realm of coding. I have embarked on countless coding journeys, each accompanied by its own set of challenges and triumphs. …Spring Boot11 min readSpring Boot11 min read
Feb 2Generics in real life: Paginating API responseToday I will share a real life scenario where I was able to use Java generics for a real life use case. I was tasked with a portal, suppose that it was a student portal. Nothing fancy, just some CRUD’s. So when I was working on it, I found some…Java5 min readJava5 min read
Published inJavarevisited·Apr 9, 2022Getting started with RabbitMQ in Spring BootRabbitMQ is the most widely deployed open source message broker. It gives you some nice features to help you make your application asynchronous and off-load some crux logic so that you can focus on your business code. …Java11 min readJava11 min read
Published inGeek Culture·Feb 21, 2022How To Use Monaco Editor In VueJS: The missing guideIf you know what you looking for or see some code immediately check this git repo. With the boom of eduTech platforms it’s no surprise that one day you might land a gig on a website where someone wants to teach coding. Teaching coding is an interactive process. …Vuejs7 min readVuejs7 min read
Published inGeek Culture·Oct 24, 2021Docker Cheat-Sheet: Very Basic Terms and CommandsDocker has been around for a while. Most of the people in the dev community already must’ve heard about it. Many of them have already using it for various use cases. I’ve been using it for a while too, mostly for setting up dependencies of a project like database, cache…Docker3 min readDocker3 min read
Published inJavarevisited·Jun 14, 2021Caching made easy in Spring BootCaching is a common practice to improve your system in many ways. It helps to make your system resilient, scalable, fast, and even save some bucks depending on your use case. If in your database some values are read often then it’s a good idea to cache them. This could…Java5 min readJava5 min read
Published inCodeX·Mar 5, 2021How to use vee-validate with bootstrap-vue and TypeScript.In a web app forms are the most easy and well known way of taking input from user. But with forms, comes validation. There are many ways of incorporating validation with forms. …Vuejs7 min readVuejs7 min read
Published inJavarevisited·Dec 31, 2020How to use Cloud Firestore in Spring Boot.Firestore is a managed, scalable document storage available in Firebase platform. Why I like it? You can start using it and get 20K reads and writes per day whithout paying a dime event without sharing your credit card info. …Java3 min readJava3 min read
Nov 30, 2020How to Customize Feign’s Retry MechanismIn micro-service architecture it is common that one micro-service communicates with another by consuming REST APIs. In the spring ecosystem a popular REST client is Feign because of its declarative style and DRY approach for adding different configuration. In this post I will talk about enabling retry mechanism for feign…Feign4 min readFeign4 min read
Nov 25, 2020Setting up request response logs in DjangoDjango was the first web framework that I’ve learned. It helped me to land my first job. So I have a special place for Django in my heart. …Django3 min readDjango3 min read