How to undo a commit in GIT

Committing an unwanted file to the repository is one of the common mistakes made by most of the developers. Let’s…

add comment

7 tips to become a better programmer

Everyone wants to be good at what they do, especially in what you do for a living. It’s not an…

add comment

Enums in java are more useful than you think.

Enums in java is a widely used feature and the common use case of Enum is to use it as…

add comment

Functional interfaces in java

What is a functional interface? Functional interfaces in java is an interface where you have only one abstract method. It…

add comment

Preview Language Features in java

In this article i will be discussing the preview features in java Bit of history Java is now releasing a…

add comment

Default methods in java 8

From Java 8 onward, it’s allowed to have methods in an interface with specifying the type as default. Prior to…

add comment