Articles

Unlocking New Frontiers in Mobile Development with React Strict DOM (RSD)
#1274Published

Unlocking New Frontiers in Mobile Development with React Strict DOM (RSD)

In the dynamic landscape of mobile development, innovation is the key to staying ahead. React Strict DOM (RSD), an experimental offering from Meta (formerly Facebook), is poised to revolutionize the way we approach mobile app development. With its web-first API and unification of React and React Native, RSD promises to unlock a new realm of […]

Asian Girl AvatarNiyaz25/02/2024
Building Efficient Production-Ready Apps : Best Tech Stacks for Today’s Challenges
#1251Published

Building Efficient Production-Ready Apps : Best Tech Stacks for Today’s Challenges

These are some excellent technology stacks for developing production-ready applications with a focus on performance, efficiency, and developer experience. Below, I’ve provided a brief overview of each stack and its key components: Stack #1: Laravel Backend Framework: Laravel (PHP) Frontend Framework: Livewire (for interactive components) Database: MySQL CSS Framework: Tailwind CSS Stack #2: Symfony Backend […]

Asian Girl AvatarNiyaz28/09/2023
How to install and configure JWT (Json Web Token) in Laravel Applications
#1175Published

How to install and configure JWT (Json Web Token) in Laravel Applications

JWT installation & Settings Before we get into this JSON Web Token tutorial, what exactly is a JWT?In modern web trends, Popularity of single page applications, mobile applications, and RESTful API services, We are no longer spending much time building markup, instead we are building APIs that our front-end applications consume.Back-end is more about business […]

Asian Girl AvatarNiyaz12/06/2021
Alpine.js v3
#1138Published

Alpine.js v3

Alpine.js version 3.0 will be released soon! There is going to be an Alpine Day online event where the creator, Caleb Porzio, will be talking about some new things coming to Alpine as well as pushing the new version live! In this quick post, let us go through some of the new features and how […]

Asian Girl AvatarNiyaz03/06/2021
How to install Laravel & using Laravel Valet?
#1115Published

How to install Laravel & using Laravel Valet?

Here in the video for the demonstration using #Laravel 8x in #Tamil.

Asian Girl AvatarNiyaz04/04/2021
Alpine.js, a tiny JavaScript framework
#1098Published

Alpine.js, a tiny JavaScript framework

Today i’m writing about the new minimal js library Alpine.js, A rugged, minimal framework for composing JavaScript behaviours in the Html markup. Think of it like Tailwind for JavaScript. Alpine.js is a tiny JavaScript framework that makes declarative rendering super easy, without the weight of larger frameworks like Vue or React. If you’re looking for […]

Asian Girl AvatarNiyaz11/03/2021
Useful Laravel Snippets
#1065Published

Useful Laravel Snippets

How to check current installed version of Laravel ?  Last executed queries in Laravel 5 Getting all tables inside a database using Laravel  Injecting data With Blade ********** Named Route Groups // view  // view  *************** Get table column names as array from Eloquent model  ************** Show All Validation Errors in Laravel’s Blade View  

Asian Girl AvatarNiyaz09/01/2021
Building web with React, Next.js, Tailwind, Vercel
#1039Published

Building web with React, Next.js, Tailwind, Vercel

Recently I have updated my personal website blog from wordpress to next.js. Next.js plays as a frontend as wordpress uses as a backend service. The site is built with React, Next.js and Tailwind css, and it’s hosted on Vercel. The site is hosted in vercel. Please visit the following links for more details. http://niyaz.vercel.app

Asian Girl AvatarNiyaz20/09/2020
10 Things To Know As A Fullstack Developer
#1034Published

10 Things To Know As A Fullstack Developer

1. Frontend first Mastering client side (frontend) before server side (backend) is a good strategy. You will see your actions getting manifested in real time on the browser. This will keep you motivated to build more. 2. Fundamentals It’s VERY important to know the fundamentals of any framework by heart. If you claim to know […]

Asian Girl AvatarNiyaz03/09/2020
How to truncate a foreign key constrained table in mysql?
#1022Published

How to truncate a foreign key constrained table in mysql?

You cannot TRUNCATE a table that has FK constraints applied on it (TRUNCATE is not the same as DELETE). To work around this, use either of these solutions. Both present risks of damaging the data integrity. Option 1: Remove constraints Perform TRUNCATE Delete manually the rows that now have references to nowhere Create constraints Option […]

Asian Girl AvatarNiyaz12/06/2020