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

Learning AWS Cloud Development Kit with Hands On

In this tutorial, we are going to learn how to use AWS Cloud Development Kit. But before moving ahead let's have a quick overview of AWS Cloud Development Kit.

By mahnoormalik · 7 min read · devops

3 different ways to detect a loop in a Linked List

There are three ways to detect a loop in a linked list cycle. They are as listed below. Traversing through the list, Using HashSet, Using Floyd's Cycle …

By admin · 6 min read · programming

Python list extend() method [Practical Examples]

In Python, the list is an ordered and mutable container. The extend() method is used to add the items from other iterable to the existing list. In other words, …

By admin · 6 min read · programming

SQL RIGHT OUTER JOIN Explained [Practical Examples]

SQL RIGHT OUTER JOIN is one type of SQL OUTER JOIN used to retrieve all records from the right table of the join and match records from the left table side of …

By falgunithakker · 7 min read · databases

Confused what is git reflog? Let me help you!

Git reflog is crucial in restoring lost resources after committing them. For instance, we used it to restore lost files, commits and messages, and branches in …

By stevealila · 8 min read · devops