VSCode Extensions 8 Must Have VSCode Plugins in 2021

VSCode Extensions: 8 Must-Have VSCode Plugins in 2021

Hey, Tea Lovers! Today we will look at the Visual Studio Code aka VSCode extensions that every programmer needs to improve his or her productivity 10 folds. The VSCode, hands down, is the best and most flexible code editor in the market now, and being open-source is the cherry on top. To be honest, I don’t like to call it a code editor as it’s more than that. For web and Nodejs or Python developers, it’s a full-fledged IDE. Taken, we need to customize it ourselves to work like an IDE. ...

September 4, 2021 Â· 10 min Â· Imran Shaikh
You Must have these IntelliJ IDEA Plugins

Every Programmer Needs these IntelliJ IDEA Plugins

Hey, Tea Lovers! Today we will talk about the top IntelliJ IDEA plugins every programmer should have. These IntelliJ plugins help us, programmers, to be more productive and make our life easy. This post is one of the series on Plugins or Extensions every Programmer needs for their IDE. We already discussed these for Eclipse IDE and VSCode. Please check them out. A few of the plugins are for some fun and some are dependent on what you do. This post is an addition to our post series to improve your productivity through IDEs. We already have written posts like, " You Only Need These 7 IntelliJ IDEA Shortcuts to Skyrocket Your Productivity" and " Eclipse IDE Shortcuts to Skyrocket Your Productivity". We will be uploading the must-have plugins for Eclipse. ...

October 3, 2020 Â· 5 min Â· Imran Shaikh
Be more Functional with Java's Functional Interfaces

Monitor Your Java Memory with these Tools

Hey Tea lovers! Today, we will talk about Java memory monitoring tools. You will need them when you want to see how well or worst your code is performing, or if you don’t know what’s going on in there. I have added not only the information about them but also videos showing how to use them in brief. It is the continuation of the post series This is the continuation of the post series “Get Ready to Deep Dive Java Memory Management”. ...

July 3, 2020 Â· 4 min Â· Imran Shaikh
StackHeapvarbleRef-2

Get Ready to Deep Dive in Java Memory Management: Garbage Collector

Hey Tea lovers! This post is about garbage collectors in Java. This is the continuation of the post series “Get Ready to Deep Dive Java Memory Management”. In Java memory management, a Garbage collector is the process by which Java programs perform automatic memory management. This is a more complicated process than just garbage collecting and freeing up memory. The garbage collector is expensive to process which leads to a stop-the-world event. ...

July 2, 2020 Â· 8 min Â· Mahesh More
Project Lombok (1)

Say Good-Bye to Boilerplate Code with Lombok: Part 1-Installation

Hey! Tea lovers! Before talking about Lombok, what are the things that irritate us Java Developers the most? Well yes, hearing “Java is dying” from a Python developer is irritating but it is the second thing. The first one is the boilerplate code. We write it almost every time. Setters and getters, constructors, toString, and many others for simple POJO classes. Of course, IDE can generate this code for you but again, your simple POJO class then becomes redundant. And the only things that matter in the POJO are the fields, so why not write fields only and let the compiler handles the rest of the things? And that’s where Project Lombok comes into the picture. ...

June 19, 2020 Â· 4 min Â· Imran Shaikh