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 clone an Object in JavaScript? [7 Methods]

In JavaScript, objects are used to store and manipulate collections of data. When working with objects, it is often necessary to create copies or clones of

By olorunfemiakinlua · 7 min read · programming

Remove last character from string in JS [5 Methods]

Therefore, to remove last character from string, we can select all the character element of a string aside from the last character and create a new string

By olorunfemiakinlua · 6 min read · programming

How to make JavaScript Array Unique? [4 Methods]

To make a JavaScript array unique, you can use various techniques and methods available in JavaScript. Some of these methods include using the Set object, the

By olorunfemiakinlua · 5 min read · programming

Python Anonymous Function [In-Depth Tutorial]

In Python, a lambda function is an anonymous function, meaning it's a function without a name. Unlike named functions defined with the def keyword, lambda

By admin · 18 min read · programming

How to change Timezone in Laravel? [3 Methods]

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

By stevealila · 5 min read · programming

How to Use Gates and Policy in Laravel? [SOLVED]

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 stevealila · 8 min read · programming

How to make Laravel Eloquent IN Query? [SOLVED]

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 stevealila · 5 min read · programming

How to create timesince feature in Laravel? [SOLVED]

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

How to customize auth route Laravel 8? [SOLVED]

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 stevealila · 9 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 bashiralam · 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 bashiralam · 11 min read · programming