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 …
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, …
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
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
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
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.
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
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
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
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 …
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.
maximum call stack size exceeded JavaScript [SOLVED]
The primary cause of the maximum call stack size exceeded error is a recursive function that never terminates. This tutorial takes a deeper dive into the
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 …
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 …
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
