life is too short for a diary

Most popular




Understanding Liskov Substitution Principle

The Liskov Substitution Principle, named after Barbara Liskov who introduced it in 1987, is one of the five SOLID principles of object-oriented design and programming. It states that..

Continue reading → Tags : oop java






Sunscreen for Dummies

When it comes to selecting sunscreen, the options might seem overwhelming. With an array of brands and SPF numbers on the shelves, it's essential to understand what these numbers mean and the importance of using sunscreen. Let's delve into the science behind it...

Continue reading → Tags : sunscreen health






Delving into CommandLineRunner in Spring Boot

Spring Boot provides a range of functionalities that allow developers to run specific code blocks during the application's lifecycle. One such feature is the CommandLineRunner interface. This interface is specifically designed to execute a code block just once, right after the Spring Boot application has initialized. This can be particularly useful for tasks like database seeding, running sanity checks, or any other initialization logic you want to run before your application begins processing...

Continue reading → Tags : spring boot