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

960 articles

How to get file size in Python? [SOLVED]

There are multiple methods to get file size in python using os.path.getsize(), os.stat(), file.seek(), Path().stat()

By bashiralam · 5 min read · programming

What does echo -n do in Linux? [SOLVED]

Use echo -n in Linux to remove trailing new line character from any sentence. use this inside shell script or from terminal

By omercakmak · 3 min read · programming

Top 6 Golang Web Frameworks with Examples in

In today's article, I will introduce some web development frameworks in Go. The Google Go language (also known as Golang) has become one of the top choices

By tuannguyen · 8 min read · programming

Golang AWS Lambda Example [In-depth Tutorial]

In this series, we will learn how to set up a serverless framework example for Golang and AWS Lambda. First of all, we are going to walk through how to create

By tuannguyen · 11 min read · programming

Is it possible to copy string in Python? [SOLVED]

Python strings are immutable, which means that it cannot be changed but there are ways to copy strings in Python. In this tutorial we will cover different …

By admin · 12 min read · programming

Sort short_names in reverse alphabetic order [SOLVED]

In this article we will study how we can sort short_names in reverse alphabetic order in python using built in functions with a little modification to them.

By azkaiftikhar · 3 min read · programming

Remove element from array JavaScript [SOLVED]

The 7 typical methods to remove element from array JavaScript are pop() method shift() method splice() method Custom function and a for-of loop delete keyword …

By stevealila · 7 min read · programming

JavaScript forEach vs forIn Explained

This tutorial clarifies JavaScript foreach vs forin using practical examples. It explains the necessary concepts before highlighting the similarities and

By stevealila · 6 min read · programming