Author

Deepak Prasad

Deepak Prasad

R&D Engineer

at · 1296 articles published

Founder of GoLinuxCloud with more than 15 years 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
Author profile illustration for Deepak Prasad — technical writer at GoLinuxCloud

Articles by Deepak Prasad

linux

10 practical examples of tmux configuration with examples

In this tutorial I will use tmux.conf and show different examples to modify your tmux configuration such as define custom prefix key etc

Deepak Prasad7 min read
programming

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 class, String.format(), StringBuilder class, StringBuffer …

Deepak Prasad7 min read
security

Man In The Middle Attack | ARP Spoofing With arpspoof

A Man in the Middle attack is one of the most popular attacks carried on local networks. arpspoof use to perform ARP Spoofing

Deepak Prasad6 min read
devops

Beginners guide to Kubernetes Services with examples

A Kubernetes Service is a resource you create to make a single, constant point of entry to a group of pods providing the same service.

Deepak Prasad12 min read
linux

Reasons to migrate your app to AWS

If there is one thing that takes worldwide financial state, overseas supply chains and support professionals through the COVID-19 situation, it is cloud

Deepak Prasad4 min read
linux

Create Stratis File System (thin provision) with examples (CentOS/RHEL 8)

Stratis Architecture, Steps to create stratis file system with thin provision, create stratis pool, mounting stratis file system on rhel 8 linux with examples

Deepak Prasad10 min read
databases

Use SQL COUNT DISTINCT Like a PRO: Don't be a Rookie

Enhance your data management prowess by mastering SQL COUNT DISTINCT. Our comprehensive guide demystifies this powerful tool, empowering you to extract unique insights and overcome common data challenges with confidence

Deepak Prasad16 min read
databases

Use Triggers in SQL to avoid Database Disasters

Boost your database’s security by implementing Triggers in SQL effectively, ensuring safe and secure data management practices.

Deepak Prasad15 min read
system-administration

How to Disconnect Hung SSH Session [100% Working]

Steps to disconnect hung ssh session. Kill ssh session. Terminate stuck ssh session. Kill unresponsive ssh session. Disconnect pssh session in Linux

Deepak Prasad14 min read
programming

7 Robust Methods to Convert Long to Integer in Java

Explore the insightful guide on how to convert long to integer in Java. Discover various methods, each detailed with thoughtful techniques and considerations, ensuring a smooth, accurate, and efficient conversion …

Deepak Prasad7 min read
programming

Master the Best Techniques for Node.js Sleep

Explore the ins and outs of Node.js sleep methods. Dive into best practices, common mistakes, and powerful techniques to optimize performance and efficiency in your applications.

Deepak Prasad12 min read
devops

rendered manifests contain a resource that already exists

Facing the "Error: INSTALLATION FAILED: rendered manifests contain a resource that already exists" during Helm chart installation? This comprehensive article explores the causes behind the error and offers four effective …

Deepak Prasad5 min read
programming

5 Methods to perform String Interpolation in Java

In Java, We can perform String Interpolation in Java using several ways such as Using + operator, format function, MessageFormat class, StringBuilder class, formatted function

Deepak Prasad7 min read
programming

Dive Deep into Dart Lists: Best Practices Revealed

Dive into the versatile world of Dart Lists as we demystify its core functionalities, revealing the transformative power it holds in modern Dart development. From best practices to advanced techniques, explore how to …

Deepak Prasad14 min read
programming

Share Data Between Pages In PageView Flutter Like a PRO

Dive into the essentials of how to effectively Share Data Between Pages In PageView in Flutter. This comprehensive guide unveils the techniques and secrets, ensuring a seamless user experience in your applications.

Deepak Prasad8 min read
programming

Master Dart Sets: Comprehensive Guide for Developers

Dive deep into the realm of Dart sets, understanding their power and significance in modern coding. Explore techniques, best practices, and potential pitfalls to harness the full potential of Dart sets for efficient and …

Deepak Prasad12 min read
programming

Master the Powerful Switch Case Flutter: Ultimate Guide

Unlock the potential of the powerful switch case Flutter in development. Dive deep into best practices, common mistakes, and transformative techniques to supercharge your app logic.

Deepak Prasad10 min read
linux

Convert Decimal to Fraction [7 Programming Languages]

Discover the best techniques to convert decimal to fraction across multiple programming languages. Our comprehensive guide covers everything from basic to advanced methods, ensuring a failproof conversion.

Deepak Prasad8 min read
linux

A Deep Dive into TypeScript Map: Master the Essentials

Unlock the power and efficiency of using TypeScript Map in your applications. Our comprehensive guide covers everything from basic syntax to advanced topics, offering valuable insights for beginners and experienced …

Deepak Prasad13 min read
programming

Java Scheduler: The Unsung Hero of Backend Development

Unlock the full potential of scheduling in Java applications. From the basics to advanced techniques, our comprehensive guide covers everything you need to know about Java Scheduler.

Deepak Prasad12 min read
programming

Master Java Multiprocessing and Boost Your Skills

Unlock the full potential of Java Multiprocessing with our comprehensive guide. From beginner's basics to expert-level tips, discover how to maximize efficiency and avoid common pitfalls. Your one-stop resource for …

Deepak Prasad16 min read
databases

Master the Pandas Dropna() Method [In-Depth Tutorial]

Learn how to effectively use the Pandas dropna() method to eliminate NaN/Null values in your dataframe. Enhance your data cleaning skills now.

Deepak Prasad14 min read
databases

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 columns from csv to pandas DataFrame using read_csv(), …

Deepak Prasad12 min read
databases

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 name, convering only specific columns

Deepak Prasad14 min read
devops

Transforming Academic Support with Advanced Technology

In the digital era, where everything from grocery shopping to financial consulting is available online, education technology (EdTech) has also made

Deepak Prasad4 min read
databases

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 iterrows() method, Using itertuples() method

Deepak Prasad9 min read
programming

Arithmetic Operators in Java [In-Depth Tutorial]

In this tutorial, we covered all arithmetic operators supported in Java i.e. Addition Operator (+), Subtraction Operator (-), Multiplication Operator (*), Division Operator (), Modulo Operator (%)

Deepak Prasad17 min read
programming

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 Collectors.groupingBy() method

Deepak Prasad14 min read
databases

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 best practices for efficiently enhancing your DataFrame's …

Deepak Prasad13 min read
databases

Pandas to_datetime() Usage Explained [Practical Examples]

Learn about pandas to_datetime using multiple examples to convert String, Series, DataFrame into DateTime Index. Modify the output format of the to_datetime, Handle exceptions, access day, month and year field from the …

Deepak Prasad15 min read