Articles by Deepak Prasad
Golang Garbage Collection Explained: GC, Tuning, Pause Time & Examples
Learn Golang garbage collection with practical examples, GC tuning using GOGC, force GC using runtime.GC, pause time behavior, stop-the-world phases, and …
List vs LinkedList in Java Explained
In Java, List is an interface in java.util package whereas LinkedList is a class in the java.util package. Both of this data structure is used to store the …
3 different ways to detect a loop in a Linked List
There are three ways to detect a loop in a linked list cycle. They are as listed below. Traversing through the list, Using HashSet, Using Floyd's Cycle …
Python append() vs extend() in list
In this tutorial we will cover multiple examples to understand the difference between list.append() vs list.extend() method. We will [erform a 1 to 1 comparison …
Python list extend() method
In Python, the list is an ordered and mutable container. The extend() method is used to add the items from other iterable to the existing list. In other words, …
Convert DataFrame to CSV in Python [With Best Practices]
In this tutorial we will cover multiple scenarios to convert pandas dataframe to csv file. with or without index, with oir without header, specifying column …
How to Rename File or Directory in Git (git mv Explained)
Learn how to rename a file or directory in Git using git mv and other methods. This guide covers renaming files, folders, and directories with practical …
Git Delete File or Directory (git rm, git clean) with Examples
Learn how to delete files and directories in Git using git rm, git clean, and other methods with practical examples. This guide explains removing tracked and …
How to set up Java with BlueJ IDE [Step-by-Step]
In this tutorial we will cover step by step instructions to set up Java with BlueJ IDE. We will also learn to write our very first Java Program using BlueJ IDE. …
How to set up Java with Visual Studio Code
Step by Step instructions to set up Java with Visual Studio Code. Create and compile your first Java Program using VSC.
How to set up Java with Eclipse IDE [Step-by-Step]
Step by step instructions to set up Java with Eclipse IDE. create your first Java program using Eclipse and execute the same.
8 different ways to use assert in Node.js [Practical Examples]
The purpose of the assert module in Node.js is to provide various ways of asserting functions. For instance, if the assertion. It is used to test the …
8 methods to get size of Pandas Series/DataFrame Object
In this tutorial we will cover different examples using multiple methods to get size of dataframe or series object in Pandas. Get column or rows count, entire …
How to use pandas.Series.map() [Practical Examples]
The pandas.Series.map() performs the mapping by first matching the values of the outer Series with the index labels of the inner Series. It then returns a new …
Add Empty Column(s) to Pandas DataFrame [6 Methods]
Discover methods to add empty columns to a pandas DataFrame with ease. From using bracket notation to the assign() method, delve into the various techniques and …
