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

Remove Last Character from String in JavaScript

Learn how to remove the last character from a string in JavaScript using slice(), substring(), replace(), and Unicode-safe Array.from() examples.

By Olorunfemi Akinlua · 3 min read · programming

How to change Timezone in Laravel?

In this tutorial, we discussed different methods to change timezone in Laravel, an essential aspect of developing applications that cater to users worldwide.

By Steve Alila · 5 min read · programming

How to Use Gates and Policy in Laravel?

In this tutorial, we will explore the concepts of Gates and Policies in Laravel, two powerful features designed to simplify the process of implementing

By Steve Alila · 8 min read · programming

How to make Laravel Eloquent IN Query?

In this tutorial, we will explore how to construct "IN" queries in Laravel using the Eloquent ORM. Eloquent, Laravel's built-in ORM, simplifies the process of

By Steve Alila · 5 min read · programming

How to create timesince feature in Laravel?

There is no built-in method called timesince in Laravel 8. However, you can create a custom function or use Carbon class' diffForHumans() method to achieve

By Steve Alila · 6 min read · programming

How to customize auth route Laravel 8?

By following this tutorial on how to customize auth route Laravel 8, you will have a clear understanding of how to modify the authentication routes in Laravel

By Steve Alila · 9 min read · programming

Serialization and Deserialization in Java [Explained]

Serialization and deserialization are common techniques used in software development for data persistence and communication between applications. In Java,

By Bashir Alam · 11 min read · programming

Private Vs Protected in Java [In-Depth Tutorial]

In Java, methods are the building blocks of classes, which allow us to encapsulate functionality within an object-oriented paradigm. Java provides several

By Bashir Alam · 9 min read · programming

Java RegEx Explained [In-Depth Tutorial]

Regular expressions are a powerful tool used to match and manipulate text. They are a sequence of characters that define a search pattern, which can be used

By Bashir Alam · 11 min read · programming

Master Java Constructors: A Comprehensive Guide

Uncover the intricacies of Java Constructors with our comprehensive guide. Whether you're a beginner or an expert, we dissect the essentials and advanced …

By Bashir Alam · 15 min read · programming