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

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

By tuannguyen · 3 min read · programming

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

By omercakmak · 4 min read · linux

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

By omercakmak · 6 min read · linux

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

By omercakmak · 4 min read · linux

JSON.stringify() Pretty Examples

You can achieve the JSON stringify pretty effect using the stringify() method.

By stevealila · 4 min read · programming

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

By tuannguyen · 3 min read · programming

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

By tuannguyen · 4 min read · programming

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 …

By tuannguyen · 3 min read · programming

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 …

By stevealila · 15 min read · programming