Category

Programming Tutorials and Coding Guides

Explore programming tutorials with practical examples across multiple languages, scripting, and development concepts for beginners and advanced users.

Welcome to the Programming tutorials section, where you will learn coding concepts with real-world examples across multiple languages and platforms.

This category includes beginner to advanced guides covering scripting, automation, and application development. Whether you are learning programming for system administration or building applications, these tutorials will help you gain practical experience.

Programming plays a crucial role in modern infrastructure and DevOps workflows. You can also explore related topics such as DevOps and Linux to understand how programming integrates with system-level operations.

What you will learn

  • Core programming concepts and logic building
  • Writing scripts for automation and system tasks
  • Debugging and optimizing code
  • Practical use cases in real environments

Who should read this

  • Beginners starting with coding
  • System administrators learning scripting
  • Developers looking for practical examples

957 articles

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

How to Setup and Use Laravel Task Scheduler Like a PRO

This tutorial will guide you through setting up and utilizing Laravel Task Scheduler, covering task creation, scheduling frequencies, preventing overlaps, …

By Steve Alila · 13 min read · programming

How Laravel Eager Loading solves N+1 Query Problem?

This tutorial will explore Laravel Eager Loading, addressing the N+1 query problem, defining Eager Loading, its benefits, and how to use it for optimizing …

By Steve Alila · 13 min read · programming

Building an Image Gallery with Laravel and Intervention

This tutorial is going to guide you in the most perplexing of ways. Trust me. It’s about creating an image gallery using Laravel and an Intervention Image …

By Steve Alila · 11 min read · programming

How to Recursively Search Arrays in Laravel?

Sometimes you want to add custom methods to a Laravel collection, especially if you lack a predefined method for a goal. For example, when doing a Laravel

By Steve Alila · 6 min read · programming