In the growing world of web development, managing state in React applications is a difficult aspect. As applications grow in complication, developers often find themselves grappling with the encounters of state management. Enter Zustand, a lightweight st ...
Optimized SQL query writing
Tips and Tricks 1. Remove * (Star) from queries Try not to use *(Star) short hand syntax in SELECT statement specially when a table containing large column list. What SQL do internally? If we use *(Star) t ...
Separation of Concerns in React
What is it? A human behavior we generally separate everything to make it easy to work with. Like in kitchen we usually put spoons, forks, knife, plate, bowl, cooker, and cup in a group. We can also see the grouping in various places like supermarket, ...