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 perform Soft Delete in Laravel [Tutorial]

This tutorial covers implementing Laravel soft deletes, handling and testing soft deleted records, addressing common pitfalls, and best practices for …

By stevealila · 10 min read · programming

Secure API Auth using Laravel Sanctum [Tutorial]

This tutorial will guide you through setting up Laravel Sanctum for API authentication using Breeze, covering installation, creating authentication controllers, …

By stevealila · 8 min read · programming

Laravel Nova [In-Depth Tutorial]

Laravel Nova is an administration panel designed to make the process of building administrative dashboards easier. It provides a modern, powerful, and

By stevealila · 17 min read · programming

Laravel Livewire [In-Depth Tutorial]

Laravel Livewire is an open-source PHP framework that allows developers to quickly and easily create dynamic, reactive user interfaces (UIs) without writing

By stevealila · 8 min read · programming

Truffle In Laravel [In-Depth Tutorial]

Truffle is a package manager for Laravel, the popular PHP web development framework. It simplifies the process of managing and installing packages, while also

By stevealila · 13 min read · programming

How to fill an Array in JavaScript? [SOLVED]

Are you looking to fill an array with a specific value in JavaScript? The fill method is a handy tool that allows you to do just that.

By olorunfemiakinlua · 6 min read · programming

How to copy array in JavaScript? [SOLVED]

In JavaScript, arrays are a powerful data type that allows you to store and manipulate collections of items. Sometimes, you may need to create a copy of an

By olorunfemiakinlua · 7 min read · programming

How to add arrays in JavaScript? [SOLVED]

In JavaScript, arrays are a powerful data type that allow you to store and manipulate collections of items. The Array.prototype.concat() method is a useful

By olorunfemiakinlua · 4 min read · programming

How to sort array in JavaScript? [SOLVED]

Sorting arrays in JavaScript is a common task that can be accomplished using a variety of methods. In this article, we'll take a look at some of the different

By olorunfemiakinlua · 10 min read · programming

Master Promise.reject() - Dummies Guide on JavaScript

Unlock the potential of JavaScript’s Promise.reject() method to enhance your asynchronous code. Dive deep into robust error handling strategies, practical …

By olorunfemiakinlua · 9 min read · programming

How to show calendar on hover? [SOLVED]

The most common ways to show calendar on hover are using JavaScript's mouseenter event and jQuery's hover and focus functions.

By stevealila · 5 min read · programming

Learn Laravel Authentication with Practical Example

This tutorial explores Laravel Authentication and shows how to create a secure login for admins in a Laravel app, including setting up databases, protecting …

By stevealila · 13 min read · programming

Learn Laravel Migrations [In-Depth Tutorial]

This tutorial will guide you through Laravel Migration, covering setup, creating and running migrations, managing columns and tables, advanced features like …

By stevealila · 10 min read · programming

Laravel Eloquent WhereHas [In-Depth Tutorial]

Eloquent WhereHas is a powerful feature of Laravel's ORM (Object-Relational Mapping) tool. It allows developers to query related models and retrieve data from

By stevealila · 16 min read · programming