Understanding Web Storage: Sessions, Cookies, and LocalStorage
- Ahmed Shaltout
- September 20, 2024
- Front-End Development
- web development
When building web applications, it’s essential to manage user data effectively. Session, cookies, and LocalStorage offer different data storage and retrieval mechanisms. Let’s explore their key differences and when to use each
Read MoreScreen Recording Using Javascript And Vue.js Tutorial
- Ahmed Shaltout
- July 19, 2024
- Vuejs
We will use MediaDevices Web APIs to screen record and preview the video, downloading and uploading it using Vue 3 and Javascript.
Read MoreHow To Setup Socket.IO with Express Application Generator
- Ahmed Shaltout
- January 21, 2024
- Node.js
- WebSockets
Let’s have WebSockets for Node.js and Express.js framework. One of the confusing things is to add Socket.IO to the Express application When you use the Express application generator.
Read MoreWeb Scraping IMDB With Node & cheerio
- Ahmed Shaltout
- December 10, 2023
- cheerio
- database
- mysql
- Node.js
- Web scraping express
Let’s get movies from IMDb using Cheerio and save the data in the Mysql database using Sequelize.
Read MoreVue 3 Multi Steps Form Using Pinia Store
- Ahmed Shaltout
- November 25, 2023
- Vuejs
Let’s code a multi-step registration form with validation using Vue.js 3. We will use Vueladite for validation and Pinia store as a state management system to store the form data and steps.
Read MoreHow To Share Data With Multiple Views In Laravel 10.
- Ahmed Shaltout
- September 17, 2023
Learn How to use Service Providers and View Composers of Laravel to share data with multiple views or specific views. Avoid repeating your code and write better clean maintainable code.
Read MoreService Providers & Dependency Injection In Laravel Explained With Examples.
- Ahmed Shaltout
- September 14, 2023
- Laravel
In this tutorial, we will explain everything about Service Providers in Laravel and dependency injection,
Read MoreEverything you need to know About PHP Ternary operator ?:
- Ahmed Shaltout
- September 1, 2023
- PHP
The ?: operator is a ternary operator in PHP, The PHP ternary operator is a conditional operator that can be used to replace an if-else statement with a single line of code. It is shorter and more concise, but it is not as flexible and can be more difficult to read. This article explains everything […]
Read MoreThe Most Used PHP Operators | Learn PHP #05
- Ahmed Shaltout
- September 1, 2023
Learn The most used PHP operators. There are a lot of operators in PHP but what you need to know for a start is a few. we will explain the most used in real-life php code unless you make something uncommon.
Read MorePHP Interfaces and Abstract Classes
- Ahmed Shaltout
- August 26, 2023
In PHP, interfaces and abstract classes are both used to define the structure of a class. However, they have different purposes.
Read More