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

How to use Node.js with Sublime Text IDE

Step by Step instructions to use node.js with sublime text IDE. Install Node.Js and Sublime Text IDE for the Integration.

By stevealila · 5 min read · programming

Golang return error and handle [Best Practices]

We can return errors in golanf func and then handle errors effectively using Casting Errors, Error wrapping mechanism, and Panic, defer and recover

By admin · 5 min read · programming

Golang remove backslash from string [SOLVED]

We can use strings.replace() and strings.replaceall() function to remove backslash from string in golang by replacing backslash with empty character

By tuannguyen · 3 min read · programming

Golang Escape Backslash [100% Working]

We can either use additional backslash to escape backslash or raw string literals to convert entire text to string.

By admin · 2 min read · programming

Error: cannot find module express [SOLVED]

Error: Cannot find module 'express' This error is quite common and exists because when your code ran, the express package or module wasn’t found within its …

By olorunfemiakinlua · 3 min read · programming

Node.js Child Process Tutorial [With Examples]

The exec() and spawn() methods are some of the frequently used Node.js child process module methods. Use the exec() method to run shell-like syntax commands on …

By stevealila · 6 min read · programming