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

960 articles

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

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 bashiralam · 15 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 stevealila · 13 min read · programming

10 Simple Steps to Build & Test Laravel GraphQL API

In this tutorial, we'll guide you through setting up a GraphQL API in Laravel, covering project initialization, model and migration creation, installing GraphQL …

By stevealila · 14 min read · programming