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 Call Function from Another File

Learn how to call a function from another Python file using import, from import, package imports from a different directory, importlib, and fixes for …

By Deepak Prasad · 5 min read · programming

Getting started with NodeJS [Beginners Tutorial]

Getting started with NodeJS the right way empowers you to exploit the potential of NodeJS. This tutorial walks you through NodeJS overview, mainly focusing on

By Steve Alila · 7 min read · programming

Python Check if File Exists

Learn how to check if a file exists in Python using pathlib Path.exists(), Path.is_file(), os.path.exists(), and os.path.isfile(), with examples for …

By Deepak Prasad · 7 min read · programming

Nodejs write file simplified with 4 easy examples

Apart from knowing the structure of the fs module, you need to comfortably Nodejs write files ending in .txt, .html, .js, and .json extensions. That calls for

By Steve Alila · 7 min read · programming

Implementing NodeJS CMS with express and MongoDB

Implementing NodeJS CMS with Express and MongoDB will enable you to debug popular CMSs, get a template to customize when building applications with NodeJS,

By Steve Alila · 6 min read · programming

Deploy Heroku Node.js from Scratch - Tutorial

You are just getting started with app hosting on Heroku Node.js, and you need a straightforward tutorial to guide you from scratch. Or you have a challenge

By Steve Alila · 7 min read · programming

Complete Tutorial on Node.js Passport

Node.js passport simplifies user authentication and authorization when building web applications. Despite the usefulness of passport.js, you may fail to

By Steve Alila · 10 min read · programming

SOLVED: How to do Nodejs Base64 Encode & Decode

Failure to understand the Nodejs base64 encode process could hinder you from maximizing the runtime environment's potential in data transfer.

By Steve Alila · 8 min read · programming

How to implement 3 stacks in an array

A Stack is a Last in First out(LIFO) data structure. Push and pop operations are used for insertion and deletion of a value from the stack respectively. In

By Deepak Prasad · 6 min read · programming