The Logging Conspiracy It was a cold, misty morning at the Jade Palace. The silence was broken not by combat… but by a mysterious glitch in the logs.Po (rushing in): "Shifu! The logs… they're missing timestamps!"Shifu (narrowing...
Home » Posts filed under java
Code of Shadows:Mastering Decorator Pattern in Java – Po & Shifu’s Thriller Story of Clean Code
in
Clean Code,
Decorator pattern,
design pattern,
Design Patterns,
Functional Interfaces,
functional programming,
java,
Java Best Practices,
Kung Fu Panda Story,
Lambda Expressions
- on June 17, 2025
- No comments
Kung Fu Code: Master Shifu Teaches Strategy Pattern to Po – the Functional Way!
in
design pattern,
design patterns in java,
functional programming,
java,
Java Design Patterns,
Java Lambda,
Java Lambdas,
Java Strategy,
strategy pattern,
Strategy Pattern with Functional Interface
- on May 29, 2025
- No comments

"There is no good or bad code . But how you write it… that makes all the difference.”-- Master ShifuThe sun had just touched the tips of the Valley of Peace. Birds chirped, the wind whispered tales of warriors, and Po—the Dragon Warrior—was busy...
Clean code Tips1:: Urge to put comments? refrain to do it.
in
cleancodetips,
code smell,
design pattern,
java
- on November 16, 2020
- No comments

While you are writing code, assume you are writing a novel and your fellow coders is a reader of your novel, so anytime you think you have to put comment that means something wrong, you cant express yourselves through code. A real clean code does not...
Bounded Context in my view
in
DDD,
design pattern java,
design principles in java,
java,
Microservice
- on April 28, 2018
- No comments

In this article, I will share my view about Bounded Context,
What does it mean,?
Why is it required?
The connection between Bounded context and Microservices.
I will try to keep it simple, and this article targeted to that audience who will hear the...
Change Method Call On the Fly:: CallSite
in
java,
java interview questions for experienced
- on March 12, 2018
- No comments

In my previous article, I talked about invokeDynamic, In this article, I will show you the coding how you can leverage the power of invokedynamic.
We all know that to load a class dynamically and call a method at runtime we use Java Reflection, Framework developers are often used...