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 remove duplicates from slice with Examples

remove duplicates in slice golang, find unique elements in array golang, golang count occurrences in slice, find duplicates in array golang, Remove duplcate …

By admin · 5 min read · programming

How to Become a Mobile App Developer

The 21st century is the era of multifunctional gadgets. Today, it is difficult to find a person who uses a push-button telephone. Smartphones have long since

By admin · 6 min read · devops

Golang sha256 Hashing Examples

golang sha256 hashing examples to hash a string of text or an entire file using sha256 function

By tuannguyen · 3 min read · programming

Convert Golang Interface to String [7 Methods]

golang interface to string conversion is not supported directly but we can use type assertion or fmt.Sprintf to do the type casting

By tuannguyen · 16 min read · programming

Golang generate random string Examples [SOLVED]

Multiple examples covering golang generate random string using rand function. Generate alphanumeric, special characters, uppercase, lowercase strings

By tuannguyen · 7 min read · programming

GO Import struct from another file [SOLVED]

You can use import to import the package and then reference the struct using package.StructName wherein the name of Struct must start with Capital letters to …

By tuannguyen · 6 min read · programming

GO environment variables [Best Practices]

Go environment variables include os.Setnev(), os.Getenv(), os.LookupEnv(), os.Unsetenv(), godotenv (.env) file.

By antonyshikubu · 5 min read · programming

How to loop through array in Node.js [6 Methods]

6 different methods to loop through an array in node.js. Using while loop, do- while loop, 1for loop, forEach method, for-of loop and for-in loop

By stevealila · 6 min read · programming

Node.js Error Handling Best Practices with Examples

Learn about node.js error handling in synchronous and asynchronous (callback and promised-based) code using Node.js process module, try-catch block, and then- …

By stevealila · 6 min read · programming

Golang panic handing [capture, defer, recover, log]

We will cover the following scenarios in detail: How to capture a panic message FROM stderr to log file, Using defer with panic, Handling golang panics using …

By admin · 8 min read · programming