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

Golang Buffered Channel Tutorial [Practical Examples]

A buffered channel is a type of channel that has storage capacity within. Create and handle deadlock scenario, create lock and unlock code with buffered channel …

By admin · 9 min read · programming

How to pass parameters to function in GO [SOLVED]

In this tutorial we covered different scenarios to pass parameters to golang function. Pass int, string, float as parameter or pass map and channel as parameter …

By admin · 5 min read · programming

Golang Bool to String Type Casting [2 Methods]

There are 2 methods to convert golang bool to string type. We can use FormatBool() function or Sprintf() function for the type casting

By tuannguyen · 3 min read · programming

Is golang tuple possible? [SOLVED]

By design golang tuple is not possible but we can work around this by using interfaces and generics.

By tuannguyen · 4 min read · programming

Check if Key Exists in GO Map [6 Proven Methods]

We will explore following methods to check if key exists in map in golang. terate over map elements and look out for the key, Using index expression, Perform a …

By tuannguyen · 12 min read · programming