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

Automated web cache deception attack [Tutorial]

Many of the websites on the internet are still prone to a web cache deception attack. In this kind of attack, a bad actor will “fool” a webserver to serve

By kennedymuthii · 5 min read · security

Golang regexp Examples [In-Depth Tutorial]

In the Python section, we have introduced some examples of working with regex (regular expression). In Golang, the built-in package regexp implements regular

By tuannguyen · 7 min read · programming

Golang os.Stat Usage and Examples

golang os state Stat returns a FileInfo describing the named file. If there is an error, it will be of type *PathError.

By tuannguyen · 3 min read · programming

Golang seek Examples [Tutorial]

Golang seek from has three constant values as follows: SeekStart = 0: the file's starting point is used. SeekCurrent = 1: the seek is made in relation to the …

By tuannguyen · 4 min read · programming

Golang reflect Examples [Tutorial]

Golang reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.

By tuannguyen · 7 min read · programming

How to split string in Golang? [SOLVED]

Golang string Splitusing strings.Split(), SplitAfter(), Fields(), FieldsFunc() function. Perform Split string with regular expression

By tuannguyen · 5 min read · programming