Deepak Prasad

Deepak Prasad

R&D Engineer

at · 1018 articles published

Founder of GoLinuxCloud with over a decade of expertise in Linux, Python, Go, Laravel, DevOps, Kubernetes, Git, Shell scripting, OpenShift, AWS, Networking, and Security. With extensive experience, he excels across development, DevOps, networking, and security, delivering robust and efficient solutions for diverse projects.

Areas of expertise

Certifications & credentials

  • Red Hat Certified System Administrator in Red Hat OpenStackID: 180-246-001
  • Certified Kubernetes Application Developer (CKAD)
  • Red Hat Certified Specialist in Ansible Automation
  • Go: Data Structures, Algorithms and Design Patterns With Go

Articles by Deepak Prasad

6 ways to select columns from pandas DataFrame

Select column using column name with "." operator or []. Get all column names using columns method or using info() method. Describe the column statistics using …

7 min readdatabases

4 ways to drop columns in pandas DataFrame

Following methods can be used to drop columns in pandas dataframe: Using drop() method, using drop() with columns method, using drop() with loc[] method, using …

5 min readdatabases

7 ways to filter pandas DataFrame by column value

Learn how to filter pandas dataframe by column using various methods. Dive into Boolean indexing, the query method, string operations, lambda functions, and …

11 min readdatabases

Pandas Iterate Over Rows with Best Practices

We can iterate over rows in the Pandas DataFrame using the following methods, Using index attribute, Using loc[] function, Using iloc[] function, Using …

9 min readdatabases

Top Open-source intelligence (OSINT) Tools

OSINT aka Open source Intelligence is the data and information that is retrieved from all kinds of sources like Social media , Search engines , Domains , DNS …

13 min readsecurity

How to Compare Characters in Java

There are several ways to compare characters in java as listed below, Using Relational Operators, Using Character.compare(), Using Character.hashCode(), Using …

6 min readprogramming

How to Compute Square in Java

There are four different ways to compute square of a number in Java, Using multiplication operator *, Using Math.pow() function, Using BigInteger.pow() …

7 min readprogramming

How to Copy a File in Java [Practical Examples]

The list below shows five different ways in which we can copy a file in Java. Using FileInputStream and FileOutputStream Using Paths and Files Using …

6 min readprogramming

Convert double to String in Java

The list below shows eight different ways in which we can convert double to string in Java. Using + operator Using String.valueOf() Using Double.toString() …

11 min readprogramming

How to get Current Date in Java

The list below shows eight different ways to get current date in Java Using java.util.Date, java.util.Calendar, java.time.LocalDateTime, java.time.LocalDate, …

6 min readprogramming