Top 5 Tailwind Component Libraries

Top 5 Tailwind Component Libraries
Introduction Why might you want to use a tailwind based component library instead of a something like MUI, Chakra UI, and Mantine? If you are using tailw…
Read more »

React Native Display Default Source Image While Loading Main Image

React Native Display Default Source Image While Loading Main Image
Hi everyone, In this tutorial we will learn how to use defaultSource={} in Image component. This prop should show a placeholder image from local resource unti…
Read more »

Saga Pattern Made Easy

Saga Pattern Made Easy
Trip planning with sagas but without the baggage So the last time your family went to the local park everyone was talking about the Saga Design Pattern, a…
Read more »

The difference between traditional functions and arrow functions in javascript

The difference between traditional functions and arrow functions in javascript
Arrow functions are a new way to write function expressions in Javascript. They use ES6 ( ECMAScript 6 ) and have a shorter and nicer syntax. But they are not …
Read more »

Quickly learn how new-to-you code works using sequence diagrams

Quickly learn how new-to-you code works using sequence diagrams
Sequence diagrams are a type of interaction diagram that show how objects interact with each other in a sequence of events. They are useful for modeling the be…
Read more »

Building a bidding system with NextJS

Building a bidding system with NextJS
TL;DR NextJS introduced its new server actions components in version 13.4 as an alpha feature. They enable server-side data mutations, reduced client-side Jav…
Read more »

How to Use AI to Create Your Own 'Super Macro' VS Code Extensions

How to Use AI to Create Your Own 'Super Macro' VS Code Extensions
ChatGPT is an advanced AI that makes it super easy to create custom Visual Studio Code extensions. You can use it to add any functionality you need to y…
Read more »

An E-Commerce project, developed by Nextjs and typescript

An E-Commerce project, developed by Nextjs and typescript
An E-commerce site template, implemented with Next.js and TypeScript . Styled with TailwindCSS . This is one of my portfolios, but I would be pleased if the…
Read more »

Styling Astro Apps with Tailwind CSS

Styling Astro Apps with Tailwind CSS
Tailwind CSS is a utility-first CSS framework that makes UI development a breeze for developers. It lets developers styl…
Read more »

JSDoc 101

JSDoc 101
JSDoc has been my go-to tool for documenting JavaScript code for a while, and with the recent buzz around Svelte migration, I decided to share some tips and t…
Read more »

React Render Lifecycle and useEffect Hook

React Render Lifecycle and useEffect Hook
Let me tell you something you already know: React Class Components are history 💀 In this post, we'll explore how functional components handle the react …
Read more »

Future of CSS: Popover API

Future of CSS: Popover API
Are you ready for some CSS magic? In this post, we'll explore two amazing features that will make your web pages pop: the Popover API and Anchor positionin…
Read more »

Writing Integration Tests that Run Inside a Unit-testing Framework like Jest

Writing Integration Tests that Run Inside a Unit-testing Framework like Jest
What are Integration Tests and Why are they Important? Integration tests are a kind of software testing that check how well different parts of the codebase w…
Read more »

Dev News: Trouble in npm, Vue 3.3 and Cloudflare Updates

Dev News: Trouble in npm, Vue 3.3 and Cloudflare Updates
ReversingLabs researchers find more malware in the npm. In other news, there's a new release of Vue and AI updates from Cloudflare. Photo by RealTo…
Read more »

How to Come Back From Burnout

How to Come Back From Burnout
Burnout is a common problem for many programmers . It can make you lose interest and motivation in coding, and affect your well-being. I know this because I ex…
Read more »

How to Use React Server Components – A Beginner's Guide

How to Use React Server Components – A Beginner's Guide
Read more »

Cybercrime gang pre-infects millions of Android devices with malware

Cybercrime gang pre-infects millions of Android devices with malware
A large cybercrime enterprise tracked as the "Lemon Group" has reportedly pre-installed malware known as 'Guerilla' on almost 9 million An…
Read more »

Export Data to Excel with React Native

Export Data to Excel with React Native
Learn how to export JSON data from your React Native application to Excel using react-native-fs and xlsx.
Read more »

Slide menu responsive CSS jQuery

Slide menu responsive CSS jQuery
Read more »

5 Front-End Web Frameworks to Consider Other Than React

5 Front-End Web Frameworks to Consider Other Than React
Modern web development requires developers to focus on creating complex logic, improving performance, and serving users on different networks across the globe …
Read more »

Malicious Microsoft VSCode extensions steal passwords, open remote shells

Malicious Microsoft VSCode extensions steal passwords, open remote shells
Cybercriminals are starting to target Microsoft's VSCode Marketplace, uploading three malicious Visual Studio extensions that Windows developers down…
Read more »

Tailwind CSS for Beginners: Build a Social Link Project

Tailwind CSS for Beginners: Build a Social Link Project
Tailwind CSS is a utility-first CSS framework that lets you build modern websites without ever leaving your HTML. It's fast, flexible, and reliable — with…
Read more »

How to add an element to a javascript object?

How to add an element to a javascript object?
In JavaScript, the object is a collection of related data and functions that can represent a real-world entity or concept. An object has properties, which are …
Read more »