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

SQL Exists Explained in Detail

We have covered the overview of the SQL Exists operator, define the use of SQL Exists, Syntax of how to use SQL Exist with an explanation of each syntax …

By Falguni Thakker · 9 min read · databases

vgcreate command examples in Linux [Cheat Sheet]

The vgcreate command in Linux is used to create a volume group. The best part of using volume groups to create partitions is that you can runtime increase or …

By Rohan Timalsina · 5 min read · cheatsheet

8 ways to convert long to String in Java

The list below shows eight different ways in which we can convert long to string in Java. Using + operator, String.valueOf(), Long.toString(), DecimalFormat …

By Deepak Prasad · 7 min read · programming

6 ways to implement Hashing in Java

In this tutorial we cover following 6 different methods to implement hashing in java. Using Hashtable Class, HashMap Class, LinkedHashMap Class, …

By Deepak Prasad · 8 min read · programming

7 Robust Methods to Convert Long to Integer in Java

Explore the insightful guide on how to convert long to integer in Java. Discover various methods, each detailed with thoughtful techniques and considerations, …

By Deepak Prasad · 7 min read · programming

Let's explore pandas.DataFrame.resample with Examples

In this tutorial we explain usage of pandas resample using multiple methods and examples. Frequency conversion provides basic conversion of data using the new …

By Deepak Prasad · 12 min read · databases

5 ways you can create histogram using pandas DataFrame

In this tutorial we learned to create histogram in Pandas with following parameters, with specific size, with number of bins, Histogram with specific color, …

By Deepak Prasad · 6 min read · databases

Learn to use pandas.unique() with Series/DataFrame

unique() function is used to get the distinct / unique data from Series/DataFrames. It can be applied on the columns in the dataframe. The unique() method …

By Deepak Prasad · 4 min read · databases

Pandas DataFrame.rolling() Explained

Pandas rolling() function is used to provide the window calculations for the given pandas object. By using rolling we can calculate statistical operations like …

By Deepak Prasad · 7 min read · databases

Currying Function in Java Explained

In Java, currying function is the mechanism of breaking down a multi-argument function to form the multiple functions with single arguments such that the output …

By Deepak Prasad · 6 min read · programming

How to get sublist from a list in Java

In order to get sublist either in an ArrayList or LinkedList, we have to use the sublist() method which is a method of AbstractList class.

By Deepak Prasad · 7 min read · programming

How to split String into Array

In this tutorial we will cover multiple examples to understand how to split string into array for different scenarios

By Deepak Prasad · 6 min read · programming

4 ways to convert char to int in Java

In this tutorial, we covered four different approaches to convert char to int in Java, Using ASCII Values, Integer.parseInt() method, …

By Deepak Prasad · 7 min read · programming