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

8 ways to convert long to String in Java

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

7 min readprogramming

6 ways to implement Hashing in Java

In this tutorial we cover following 6 different methods to implement hashing in java. Using Hashtable Class, HashMap Class, LinkedHashMap Class, …

8 min readprogramming

Pandas DataFrame.rolling() Explained

Pandas rolling() function is used to provide the window calculations for the given pandas object. By using rolling we can calculate statistical operations like …

7 min readdatabases

Currying Function in Java Explained

In Java, currying function is the mechanism of breaking down a multi-argument function to form the multiple functions with single arguments such that the output …

6 min readprogramming

How to get sublist from a list in Java

In order to get sublist either in an ArrayList or LinkedList, we have to use the sublist() method which is a method of AbstractList class.

7 min readprogramming

How to split String into Array

In this tutorial we will cover multiple examples to understand how to split string into array for different scenarios

6 min readprogramming

4 ways to convert char to int in Java

In this tutorial, we covered four different approaches to convert char to int in Java, Using ASCII Values, Integer.parseInt() method, …

7 min readprogramming

Pandas concat() Function Tutorial

Discover the ultimate guide to mastering pandas concat in Python. Whether you're a beginner or an experienced professional, our comprehensive guide offers …

18 min readdatabases

Mastering pandas.read_csv() [Basics to Advanced]

read_csv() with first row as header, with custom index, with new column names, with skip rows, Read first N rows from csv to pandas DataFrame, Import specific …

13 min readdatabases