Natural debouncing using the useDeferredValue hook in React 18
July 7, 2022 — Oftentimes, when working with UIs, you may come across scenarios where you need to render something based on the user-entered input.
A blog on PHP, JavaScript, and more
July 7, 2022 — Oftentimes, when working with UIs, you may come across scenarios where you need to render something based on the user-entered input.
July 5, 2022 — How many times does this happens to you that when you’re building UIs, you add placeholders (“Lorem Ipsum”, “John Doe”, etc..) to the places where it needs data from database or external APIs?
June 28, 2022 — The useEffect hook in React.js is the one that you would be using to run side effects for a particular component.
June 26, 2022 — Working with strings can prove to be tricky in some scenarios. For instance, when building a cart for an eCommerce website, you may need to show the string “item” in singular/plural form based on how many items are there in the cart.
June 24, 2022 — When working with databases with web applications, you never know when some query, which used to work fine, starts slowing down in some scenarios.
June 21, 2022 — When working with states in React.js, there comes a time when you might need to differentiate between the current and previous “state” of a state.
June 16, 2022 — I’m pretty sure if you’re older enough to be working in the software development industry, the one format that you would be working with in a recurring manner is JSON.
June 10, 2022 — You know we have got a handy color picker in Chrome DevTools that let you pick colors anywhere from the browser window easily.
June 7, 2022 — When you have configured your web application development build using Vite, you might have set it up in your package.json
like so.
June 5, 2022 — Working with Git, the one thing that you would do more often is to checkout branches. The way to checkout to a branch is by using the git checkout
command.