Category

Programming Tutorials and Coding Guides

Explore programming tutorials with practical examples across multiple languages, scripting, and development concepts for beginners and advanced users.

Welcome to the Programming tutorials section, where you will learn coding concepts with real-world examples across multiple languages and platforms.

This category includes beginner to advanced guides covering scripting, automation, and application development. Whether you are learning programming for system administration or building applications, these tutorials will help you gain practical experience.

Programming plays a crucial role in modern infrastructure and DevOps workflows. You can also explore related topics such as DevOps and Linux to understand how programming integrates with system-level operations.

What you will learn

  • Core programming concepts and logic building
  • Writing scripts for automation and system tasks
  • Debugging and optimizing code
  • Practical use cases in real environments

Who should read this

  • Beginners starting with coding
  • System administrators learning scripting
  • Developers looking for practical examples

957 articles

Python YAML to Dictionary

Learn how to read a YAML file into a Python dictionary using PyYAML safe_load(), access nested YAML values, load multiple YAML documents, handle errors, and …

By Deepak Prasad · 6 min read · programming

8 different Escape Sequence in Java with Examples

An escape sequence in java refers to a character proceeded by a backslash(), the escape sequences have special meanings. In java, while declaring a string, a

By Azka Iftikhar · 6 min read · programming

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.

By Deepak Prasad · 7 min read · programming

CopyOnWriteArrayList Class in Java [Complete Tutorial]

In this tutorial, we covered constructors and methods of CopyOnWriteArrayList class along with the important operations that can be performed using the built- …

By Deepak Prasad · 7 min read · programming

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 …

By Deepak Prasad · 8 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 …

By Deepak Prasad · 14 min read · programming

4 programs that shows how Java global variables work

A Java global variable is a variable that is declared outside a method or at the start of a code is a global variable, there are no access restrictions on a …

By Azka Iftikhar · 6 min read · programming

How to make HTTP GET Request in Node.js

In NodeJS, several methods that provide the functionalityto make HTTP GET request from the http module provided in the standard library. While the HTTP module …

By Steve Alila · 5 min read · programming

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 …

By Deepak Prasad · 6 min read · programming