Day 36: Learned about banned dependencies and how to ban transitive dependency in a maven or gradle project

Many 3rd party libraries can have vulnerable dependency like recently reported Log4j 2. so to ban them from getting resolved in your maven or gradle project you can use maven-enforcer plugin.

December 14, 2021 · 2 min

Day 35: Emulating Pair in java using AbstractMap.SimpleEntry<>() and new Object() {} implementation

Pair behavior in java

December 6, 2021 · 1 min

Advent of Code Day 02

Listed here are the solutions of AOC2021 Day02 in Java, Rust, Go

December 2, 2021 · 1 min

Advent of Code Day 01

Listed here are the solutions of AOC2021 Day01 in Java, Rust, Go

December 1, 2021 · 1 min

Day 26: Writing a method to retry another method execution

Writing a method to retry another method execution, using TimerTask’s schedule() and scheduleAtFixedRate to check availability

September 30, 2021 · 2 min