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 use JavaScript toFixed() Method? [SOLVED]

The toFixed() method in JavaScript is used to convert a number to a string, rounding the number to a specified number of decimal places. This method takes a

By olorunfemiakinlua · 4 min read · programming

How to create JavaScript Timed Events? [SOLVED]

JavaScript Timed Events are a type of event that can trigger a function after a set amount of time has passed. We can use Timed Events to create things like

By olorunfemiakinlua · 4 min read · programming

Parse CSV to Array in JavaScript [10 Methods]

In the world of data manipulation and analysis, the need to convert CSV to array formats is increasingly common. Whether you're building a data visualization

By olorunfemiakinlua · 21 min read · programming

What is JavaScript equivalent to C# HashSet? [SOLVED]

A HashSet is a data structure that stores data in an unordered fashion, using a hash function to map each data item to a unique key. This allows for fast

By olorunfemiakinlua · 3 min read · programming

Check if String is Number in JavaScript [10 Methods]

Discover the essentials to proficiently check if string is number in JavaScript. Dive into a comprehensive guide filled with various methods, tips, and best …

By olorunfemiakinlua · 9 min read · programming

How to get width of element in JavaScript? [SOLVED]

In web development, JavaScript is the go-to language to interact, manipulate or work with HTML elements or more broadly, the Document Object Model (DOM) that

By olorunfemiakinlua · 4 min read · programming

JavaScript Equality (==) Explained

It would be best to understand how JavaScript equals attempts to convert operands before deciding to settle for loose or strict equality.

By stevealila · 5 min read · programming

How to slice dictionary in Python? [SOLVED]

In this article, we will see one of the most asked and confusing problems: slicing a dictionary in Python. Slicing a dictionary means obtaining the subsets of

By admin · 4 min read · programming

How to get current directory in Golang? [SOLVED]

There are 4 different methods to get current directory in golang. Method-1: The os package and Executable() function Method-2: file/filepath and the Abs() …

By tuannguyen · 4 min read · programming

How to make Golang POST JSON request? [SOLVED]

In the previous chapter, we have shown you some examples of working with the HTTP server and client in Golang. The built-in package net/http in Go provides

By tuannguyen · 4 min read · programming