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

NumberFormat Class in Java Explained

Some of the task performed by the NumberFormat class in Java are Formatting Numbers, Setting number of Digits in Fraction part, Rounding Numbers, Formatting …

By Deepak Prasad · 6 min read · programming

5 Methods to perform String Interpolation in Java

In Java, We can perform String Interpolation in Java using several ways such as Using + operator, format function, MessageFormat class, StringBuilder class, …

By Deepak Prasad · 7 min read · programming

How to Parse CSV Data in NodeJS

In this article, you learned how to parse CSV data in three ways. The first method reads the whole string then splits it into rows and columns.The second method …

By Deepak Prasad · 6 min read · programming

Top 5 Best Practices for Containerized Deployments

Even though containers are valuable in the current software development trends, realizing containerized deployments in organizations is not easy. This article

By Deepak Prasad · 5 min read · linux

9 Important differences between Integer and Int in Java

The knowledge of difference between Integer and int in java is very important for a developer to know so that he can use both int and Integer classes properly …

By Deepak Prasad · 15 min read · programming

Return Multiple Values in Java [5 Different Methods]

We can use any of the five shown approaches as per the program requirement to return multiple values in Java. Return an array of specific type or object, Return …

By Deepak Prasad · 7 min read · programming