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
GO nil detection [interface, slice, pointer, struct, map]
How to detect nil in golang pointers, structs, interface, map, slice with examples
Can functions be passed as parameters GO? [SOLVED]
In this tutorial, we will learn how to pass functions as a parameter to another function in Golang. Since Golang functions are first-order variables so it has
How install Boost on Ubuntu? [SOLVED]
Boost is a set of libraries for the C++ programming language (includes 164 separate libraries as of version 1.76) that provides support for tasks and
How to install Conda on Ubuntu? [SOLVED]
Conda is an open source (BSD licensed), language-independent package manager and environment management system that runs on different operating systems
How to install NVM on Ubuntu? [SOLVED]
Node Version Manager (NVM) is a tool for managing Node versions on servers. NVM allows to install different versions of Node. It allows you to switch between
JSON.stringify() Pretty Examples
You can achieve the JSON stringify pretty effect using the stringify() method.
How to verify if checkbox is checked in jQuery? [SOLVED]
It can be challenging to hide or show an element using jQuery checkbox checked. This tutorial teaches you how to toggle an element after checking a checkbox.
Cannot set headers after they are sent to the client [SOLVED]
Learn the most possible causes for error "Cannot set headers after they are sent to the client" in Express.js and how to solve them with proper examples
Convert byte slice to io.Reader in Golang [SOLVED]
In this post, we'll examine how to translate a byte slice into an io.Reader in Golang. In Go, a byte slice is a dynamic array (slice) of bytes, which can
GO capture ctrl+c signal & run cleanup function? [SOLVED]
In this tutorial, we will answer the question "Is it possible to capture a Ctrl+C signal (SIGINT) and run a cleanup function, in a "defer" fashion" in Golang.
How to import private Github Repos in GO? [SOLVED]
Creating libs and sharing them among applications is one strategy to shorten the time needed to develop a new project and make your team's work easier. Each
What is the zero value for time.Time in GO? [SOLVED]
The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC. The IsZero() method returns whether a time has a zero value or not.
How to set default values in GO structs? [SOLVED]
There are multiple ways to set default values in go struct. We have explored some of the possible ways such as using an init function, using a separate …
Laravel Validation and Error handling Tutorial
This tutorial will guide you through Laravel Validation, covering basic rules, advanced techniques, custom rule creation, error handling, and practical examples …
Remove fields from struct or hide them in JSON [SOLVED]
Learn how to remove fields from struct in golang or hide them.
