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

Powerful Pattern Matching Techniques in Python Revealed

Discover the transformative power of pattern matching in Python with our comprehensive guide. Dive into advanced techniques, avoid common mistakes, and harness …

By Deepak Prasad · 20 min read · programming

5 ways to check if a string is an integer in Python

When operating with numbers and strings, many times while fetching the data from the text box, we fetch it as a string. Now, on back-end this data may be

By Deepak Prasad · 6 min read · programming

Using Node.js with Visual Studio Code

Knowing how to use Node.js with Visual Studio Code is easy. All you do is install your preferred Node.js version and Visual Studio Code for your operating

By Steve Alila · 7 min read · programming

How to use async for loop in Node.js

Node async for loop helps to fetch resources in a controlled environment. It would be best to understand the concepts of loops, iterables, and numerables,

By Steve Alila · 8 min read · programming

Golang struct Tutorial

When you declare a struct without field values, we say that it is a zero value struct. A zero value golang struct has its corresponding field values set to

By Antony Shikubu · 7 min read · programming

Learn async while loop in Nodejs from SCRATCH

This tutorial explains async while loop Nodejs without assuming you understand the concepts of promises, looping, and timers.

By Steve Alila · 7 min read · programming

Merge Dictionaries in Python: |, update(), **, and More

Learn how to merge dictionaries in Python using the | operator, update(), ** unpacking, copy(), ChainMap, and more, with duplicate key behavior and Python …

By Deepak Prasad · 7 min read · programming

Python Create Directory Recursively

Learn how to create directories recursively in Python using pathlib Path.mkdir(parents=True, exist_ok=True) and os.makedirs(), including create-if-not-exists …

By Deepak Prasad · 6 min read · programming