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.
Create HTTPS Server with Node.js [Simple Steps]
Step by step instructions to create HTTPS Server with Node.js with example web server
Error: Cannot find module X in JavaScript [8 Reasons]
We can solve Error: Cannot find module by installing the missing module. We can use npm tool to install the mising module.
SQL add column with default value to an existing table [SOLVED]
SQL ALTER TABLE statement is used to make changes in the existing SQL table and can be used to add column with default values
How to store values in struct using for loop in GO
In this solution we will learn how to store the values into struct using for loop in golang
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
Golang Math Package Examples [Tutorial]
golang math package examples to perform calculations in go code using math sub packages
Golang read multiple lines from stdin [SOLVED]
We can use fmt.Scan(), bufio.Reader(), bufio.Scanner() function in golang to read multiple lines from STDIN input with examples.
Golang concatenate or merge two or more slices [SOLVED]
We can use copy() and append() function to merge or concatenate two or more slices in Golang.
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
Golang Escape Backslash [100% Working]
We can either use additional backslash to escape backslash or raw string literals to convert entire text to string.
Go Prompt - Create Interactive CLI prompts with Examples
To read input from users in Go and create an interactive CLI based go prompt, we use the fmt, bufio, and os packages.
Update key with new value in JavaScript [SOLVED]
We can either use foreach loop of maps function to update key with new value in Javascript
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 …
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 …
