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

Golang URL Encode & Decode Practical Examples

In this tutorial we will explore golang url encode and decode using url.QueryEscape, url.PathEscape, url.QueryUnescape and url.PathUnescape with examples

By tuannguyen · 6 min read · programming

Exponentiation (**) Examples in JavaScript [Tutorial]

There are two ways to achieve exponentiation in JavaScript, the ** operator and the pow method. With the ** operator, you can work with both Numbers and BigInt …

By olorunfemiakinlua · 3 min read · programming

How to shuffle two NP arrays together [SOLVED]

In this article we learned how we can shuffle two np arrays together using permutations or randomize function from np module. We also learned a bit about the np …

By azkaiftikhar · 3 min read · programming

JavaScript Array pop Method Examples

If you want to delete an element in the last position within an array, you can use the javascript array pop method

By olorunfemiakinlua · 3 min read · programming

Delete elements from slice in GO [SOLVED]

Delete elements from slice in golang, first n elements, last n elements, without maintaining the order, maintain the order, delete random elements

By admin · 7 min read · programming