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

Building a CRUD REST API using Redis DB in GO

Go or Golang is an open source programming language developed and supported by Google. It is mostly used to build backend applications where it interacts with

By antonyshikubu · 10 min read · programming

Building a CRUD REST API using Postgresql DB in GO

CRUD is a common abbreviation when it comes to getting started with any framework or programming language. CRUD basically stands for Create, Read, Update and

By antonyshikubu · 10 min read · programming

Building a CRUD gRPC API using Postgresql DB in GO

CRUD is an acronym that refers to operations that are considered necessary to implement in a persistent storage application: Create, Read, Update and Delete.

By antonyshikubu · 15 min read · programming

Laravel Group Routes And Array Parameters Explained

Laravel route group array parameters provide a convenient way for developers to organize and define their route groups in a structured manner. By grouping

By stevealila · 14 min read · programming

How to use Promise.race() in JavaScript? [SOLVED]

In JavaScript, the Promise.race() method returns a promise with the outcome of the first promise that either fulfils or rejects, with the value or reason from

By olorunfemiakinlua · 4 min read · programming

Create array of numbers in range JavaScript [SOLVED]

Unlike other programming languages like Python, JavaScript doesn’t have a built- in function that can create array of numbers within a range. Say, we want to

By olorunfemiakinlua · 3 min read · programming

How to take screenshot in Ubuntu? [SOLVED]

Taking screenshots is a feature that the end user needs in every operating system. They probably started offering the take a screenshot feature after the OS

By omercakmak · 3 min read · linux

How to install Google Drive Ubuntu? [SOLVED]

Google Drive is a file storage and synchronization service created and managed by Google. Users who log in with their Google account benefit from these

By omercakmak · 3 min read · linux

Convert srt to text with regex JavaScript [SOLVED]

The srt format, which stands for SubRip Subtitle, is a common format for storing subtitles in a text file. In this article, we will show you how to convert

By olorunfemiakinlua · 4 min read · programming

How to use/avoid JavaScript infinite loop? [SOLVED]

In JavaScript, an infinite loop is a loop that continues to run indefinitely without ever terminating. This can happen when the condition that is being tested

By olorunfemiakinlua · 3 min read · programming

JavaScript Math.toRadians | Convert Degrees to Radians

In JavaScript, we have a Math object that provides tons of methods to achieve certain mathematical operations. Unlike Java, there is no math.toradians method

By olorunfemiakinlua · 2 min read · programming

How to Install Laravel on Ubuntu [100% Working]

This tutorial will guide you through complete steps to install Laravel on Ubuntu, covering web server setup with Apache, PHP and its extensions, database …

By stevealila · 7 min read · programming