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

How to return an Array in Java [Practical Examples]

There are three different ways to return an array from a function in Java as listed below: Return an array of primitive type, Return an array of objects, Return …

By Deepak Prasad · 7 min read · programming

How to convert Set to list in Java [Practical Examples]

There are several ways to convert the set to list in java as listed below. Using looping, ArrayList Constructor, LinkedList Constructor, List.addAll() Method, …

By Deepak Prasad · 7 min read · programming

6 ways to add column to existing DataFrame in pandas

In this tutorial we covered following methods which can be used to add column to existing dataframe using [] with None value, [] with Constant value, [] with …

By Deepak Prasad · 6 min read · databases

6 ways to select columns from pandas DataFrame

Select column using column name with "." operator or []. Get all column names using columns method or using info() method. Describe the column statistics using …

By Deepak Prasad · 7 min read · databases

4 ways to drop columns in pandas DataFrame

Following methods can be used to drop columns in pandas dataframe: Using drop() method, using drop() with columns method, using drop() with loc[] method, using …

By Deepak Prasad · 6 min read · databases

7 ways to filter pandas DataFrame by column value

Learn how to filter pandas dataframe by column using various methods. Dive into Boolean indexing, the query method, string operations, lambda functions, and …

By Deepak Prasad · 11 min read · databases

10+ lvcreate command examples in Linux [Cheat Sheet]

lvcreate command is used to create different types of Logical Volumes in Linux. You can create linear, striped, mirrored logicla volumes. You can also create …

By Rohan Timalsina · 8 min read · cheatsheet

SQL LIMIT Usage Explained

We have covered practical examples of SQL LIMIT starts with simple example LIMIT with number of rows , order by clause, left outer join , where clause

By Falguni Thakker · 7 min read · databases