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

Convert Array to String in JavaScript [SOLVED]

There are different methods available to convert array to string in Javascript using 1. Using the toString() method, 2. Using the join() method, 3. Using the …

By olorunfemiakinlua · 5 min read · programming

How to write logs to file in Golang? [SOLVED]

In this tutorial, we will learn how to write logs to file in Golang. We have several ways to save the application log to specific files: we can use the

By tuannguyen · 5 min read · programming

Golang Padding String, Int or Float [SOLVED]

In this tutorial we have covered different examples for golang padding or formatting of string and integer values. We can perform formatting using whitespace or …

By tuannguyen · 5 min read · programming

How to pass multiple values into URL in GO? [SOLVED]

When building an HTTP server and client, we might need to pass multiple strings as parameters to an HTTP URL. In this tutorial, we will introduce some methods

By tuannguyen · 4 min read · programming

How to use go get specific version in GO? [SOLVED]

In this tutorial, we will show you how to import a package on a specific version. Your code may occasionally require extra functions not available in your

By tuannguyen · 4 min read · programming