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

Node.js loop through files in directory [SOLVED]

Explore a comprehensive guide to reading files in a directory using Node.js. Discover how to use various methods such as fs.readdir(), fs.readdirSync(), …

By stevealila · 7 min read · programming

How to parse multiple inputs from user in Golang

The following are functions used to read or parse users' inputs in Golang:- fmt.Scanln(), fmt.Scanf(), bufio.NewReader(). These functions can parse single or …

By admin · 5 min read · programming

Golang length of map [2 Easy Methods]

use two different methods to get golang length of map. Using len() function or iterate over the map elements and count each occurence to get the length.

By tuannguyen · 2 min read · programming

Golang iterate over Array [2 Methods]

There are two possible methods in golang to iterate over an array using for loop with range function or with len(array) function

By tuannguyen · 4 min read · programming

Golang print type of an object [SOLVED]

In this tutorial we covered golang print type of an object using string formatting, go reflect package and type assertions

By tuannguyen · 4 min read · programming