Blog

Latest Articles

Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.

Explore the latest tutorials and guides across Linux, DevOps, programming, and more.

You can also browse content by category below:

  • Linux: Commands, administration, troubleshooting, and system operations
  • DevOps: CI/CD, Kubernetes, containers, and automation
  • Programming: Coding tutorials, scripting, and development concepts
  • Security: Ethical hacking, system security, and best practices
  • Databases: MySQL, MariaDB, PostgreSQL, and database management
  • Networking: Network setup, troubleshooting, and protocols
  • Storage: Disk management, file systems, and storage solutions
  • System Administration: User management, services, and system-level tasks
  • Tools: Useful tools and utilities for productivity
  • Cheat Sheet: Quick reference guides for commands and tools
  • Interview Questions: Common interview questions with answers

2076 articles

HackerRank Solution: Maximize it [Python Itertools]

Note that you need to take exactly one element from each list, not necessarily the largest element. You add the squares of the chosen elements and perform the

By bashiralam · 5 min read · programming

How to PROPERLY stop goroutine? [SOLVED]

In today's article, I will guide you on how to stop a goroutine in Golang. A goroutine is a very lightweight thread that is managed by the Go runtime. Every

By tuannguyen · 4 min read · programming

How to change int to int64 in Golang? [SOLVED]

In Golang, it is very simple to convert an int to int64. In today's post, we will show you some simple examples of converting an int to int64. Depending on

By tuannguyen · 3 min read · programming

Golang iterate over slice in reverse? [SOLVED]

In Golang, iterating over a slice is surprisingly straightforward; In this article, we will learn how to iterate over a slice in reverse in Go.

By tuannguyen · 3 min read · programming

Golang search for an element in slice [SOLVED]

In this tutorial, we will try to implement some algorithms to search for an element in a slice. Go before version 1.18 does not provide any built-in methods

By tuannguyen · 6 min read · programming

How to compare strings in JavaScript? [5 Methods]

Comparing strings in JavaScript is a common task that is frequently performed in web development. There are a few different ways to compare strings in

By olorunfemiakinlua · 6 min read · programming

JavaScript Pattern Matching Examples

In JavaScript, pattern matching is a powerful tool that allows you to search, replace, and manipulate strings using regular expressions. Regular expressions,

By olorunfemiakinlua · 4 min read · programming

Using JavaScript Subclass [In-Depth Tutorial]

As a developer, you may often find yourself in a situation where you need to create a class that shares properties and methods with another class. This is

By olorunfemiakinlua · 4 min read · programming

How to use JavaScript Optional Parameters? [SOLVED]

As a developer, there are situations where the function we create have parameters that might have default values we can. In such situations, JavaScript allows

By olorunfemiakinlua · 5 min read · programming

How to use JavaScript Nested Function? [SOLVED]

JavaScript allows developers to define functions within other functions, a technique known as nested functions. Nested functions can be useful in a variety of

By olorunfemiakinlua · 6 min read · programming

JavaScript Iterator and Generator [In-Depth Tutorial]

In JavaScript, an iterator is an object that defines a sequence and a return value for that sequence. It allows you to iterate over a collection of values,

By olorunfemiakinlua · 6 min read · programming

How to use JavaScript instanceof operator? [SOLVED]

As a developer, you may often find yourself in a situation where you need to determine the type of an object in your JavaScript code. This is where the

By olorunfemiakinlua · 5 min read · programming