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

How to Parse CSV Data in NodeJS [Practical Examples]

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 admin · 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 admin · 5 min read · linux

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 admin · 6 min read · programming

SQL OUTER JOIN Explained [Practical examples]

SQL OUTER JOIN is used to preserve all of the records that have values in either the left or right table, In the SQL OUTER JOIN all the content of both tables …

By falgunithakker · 12 min read · databases

Java DecimalFormat Explained [Practical Examples]

The java DecimalFormat class is used to apply decimal formats that are user- defined, to apply java DecimalFormat we use the class java.text.DecimalFormat.

By azkaiftikhar · 7 min read · programming