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 Padding String, Int or Float [SOLVED]

In this tutorial we have covered different examples for golang padding or formatting of string and integer values. We can perform formatting using whitespace or …

By tuannguyen · 5 min read · programming

SQL select first row in GROUP [SOLVED]

In this tutorial we will cover different methods and examples to select first row in GROUP BY clause group in SQL. But before that let us create a sample

By falgunithakker · 5 min read · databases

How to pass multiple values into URL in GO? [SOLVED]

When building an HTTP server and client, we might need to pass multiple strings as parameters to an HTTP URL. In this tutorial, we will introduce some methods

By tuannguyen · 4 min read · programming

How to use go get specific version in GO? [SOLVED]

In this tutorial, we will show you how to import a package on a specific version. Your code may occasionally require extra functions not available in your

By tuannguyen · 4 min read · programming

How to set golang HTTP client timeout? [SOLVED]

In this tutorial, we will explain some methods to set timeout for HTTP requests. A Request Timeout header is defined for Hypertext Transfer Protocol (HTTP).

By tuannguyen · 5 min read · programming

Subtract time.Duration from time in GO [SOLVED]

In Golang, we usually have to deal with time management, we do need to do some operations such as adding, and subtracting a duration from time. We will walk

By tuannguyen · 4 min read · programming

Cannot find package even if GOPATH is set [SOLVED]

Sometimes you will encounter the "Cannot find package" error (even though GOPATH is set) when building a Golang module. In this article, we will explain why

By tuannguyen · 4 min read · programming

How to disable firewall in Rocky Linux? [SOLVED]

A firewall is a must for every server system but there are times when for debugging purpose we would like to stop and disable the firewalld service. In this

By omercakmak · 5 min read · linux

Browser-in-the-Browser Attack [Step-by-Step]

A browser-in-the-browser attack is an exploit that involves an attacker using a malicious browser to gain access to a target system. This type of attack is

By kennedymuthii · 4 min read · security