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
  • Tools: Useful tools and utilities for productivity

2233 articles

Python Tree Data Structure Explained

In this tutorial, we covered creation, insertion and traversal on python tree data structure with the sample code example. As per the requirement of an …

By Deepak Prasad · 6 min read · programming

How to find a height of a tree data structure in Java

The Tree is a non linear data structure consisting of nodes and edges. Depending upon the type of tree, it can have 0 or more child nodes. There are two ways to …

By Deepak Prasad · 6 min read · programming

HashMap vs Hashtable vs HashSet in Java

HashMap is hash table based implementation of Map interface, Hashtable class implements a hash table, which maps keys to values. HashSet is a hash table based …

By Deepak Prasad · 6 min read · programming

ArrayList vs LinkedList in Java

The ArrayList class implements a List Interface. So, this acts as a list. While the LinkedList class implements both List and Deque Interface. So, this acts as …

By Deepak Prasad · 6 min read · programming

SQL FULL OUTER JOIN Explained

Examples to use SQL Full Outer Join with two tables, three tables, multiple tables with Where Clause, multiple tables with Group by Clause, Using Union Clause, …

By Falguni Thakker · 8 min read · databases

Create Wireshark Configuration Profiles [Step-by-Step]

Step by step instructions to create wireshark configuration profiles with practical examples. Import and export the profile, use different coloring pattern in …

By Celal Dogan · 7 min read · networking

How to PROPERLY rename Logical Volume

Step by step instructions to rename logical volume i.e. both root and non- root. Update fstab, grub2 and generate initramfs to make sure the server reboots …

By Rohan Timalsina · 9 min read · cheatsheet

LinkedList in Java Explained [Complete Tutorial]

In Java, the LinkedList class is a member of Java Collections Framework present in java.util package. This class implements List interface along with other …

By Deepak Prasad · 12 min read · programming

3 ways to convert CHAR to INT in Java

There are 3 methods to convert char to int in java i.e ASCII values, getNumericalValue, ParseInt using ValueOf method.

By Azka Iftikhar · 8 min read · programming