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

Remove key from dictionary in Python

In this tutorial we explored multiple python programming codes to remove key from dictionary (one ore more number of keys) using multiple methods.

7 min readprogramming

Find merge point of two lists in Java

In this article we explored three different methods which can be used in Java to find merge point of two lists i.e Brute Force Approach, Marking Node as visited …

8 min readprogramming

How to convert List to Map in Java

In this tutorial, we covered three different approach to convert List to Map in Java i.e Using the put() method, Collectors.toMap() method and …

14 min readprogramming

Python Tree Data Structure Explained

In this tutorial, we covered creation, insertion and traversal on python tree data structure with the sample code example. As per the requirement of an …

6 min readprogramming

HashMap vs Hashtable vs HashSet in Java

HashMap is hash table based implementation of Map interface, Hashtable class implements a hash table, which maps keys to values. HashSet is a hash table based …

6 min readprogramming

ArrayList vs LinkedList in Java

The ArrayList class implements a List Interface. So, this acts as a list. While the LinkedList class implements both List and Deque Interface. So, this acts as …

6 min readprogramming

LinkedList in Java Explained [Complete Tutorial]

In Java, the LinkedList class is a member of Java Collections Framework present in java.util package. This class implements List interface along with other …

12 min readprogramming