PinnedPublished inAWS TipBuilding AWS Lambda Function in Java with Dagger InjectionIn this article, we’ll explore how to create an AWS Lambda function in Java using Dagger for dependency injection. We’ll walk through the…Feb 10Feb 10
How to Secretly Show You’re In the Know — Without Spoiling the SurpriseEver wanted to prove you knew a friend’s secret before they told you, but without ruining the moment? Whether it’s a friend’s crush or a…Nov 41Nov 41
Achieving Lightning-Fast Data Manipulation for Millions of Records with S3 Batch Operations and…Imagine you have millions of records residing in an S3 bucket, and you need to perform various operations on them, such as data structure…Aug 6, 2023Aug 6, 2023
Mock server standalone setup using Gradle (with Docker)Generate a gradle project using spring initializer, and add below gradle file.May 7, 2023May 7, 2023
Load Testing Made Simple: Redirecting API Calls to a Mock Server in Spring BootAre you tired of making real API calls during load testing?Look no further, because the MockRequestInterceptor class is here to save the…Apr 29, 2023Apr 29, 2023
Simplify Conditional Validation in Spring Boot using @Group (Nested Objects)Validating input data is an essential aspect of building any software application. Spring Boot provides a built-in validation framework…Mar 14, 2023Mar 14, 2023
Storing GeoLocation data and finding range in POSTGRES — Node JS (Nest)The following code will store geo location data in the DB and finds the locations within the rangeAug 25, 20222Aug 25, 20222
Java Streams: The Dynamic Grouping Solution You’ve Been Waiting ForGrouping data is a common task when working with streams in Java. It allows us to group elements in a stream based on certain criteria, and…May 28, 20221May 28, 20221
Clean code : Why you should avoid using Mockito.verify ()As per clean code testing , you should the test the function , not the implementation.. To understand this better, let me give an exampleMay 28, 20221May 28, 20221