Monthly Archives: January, 2021
React
Using the useCallback React hook
The useCallback React hook is a useful hook that can help in optimizing the rendering performance of our functional React components. It...
Software Architecture
Load balancing and its different types
As our application scales to multiple users, we need to start thinking about scaling our servers and applications with it. Load balancing...
React
Understanding the useRef React hook
Continuing our React hooks series, we will learn about the useRef React hook in this blog post.The useRef...
JavaScript
How to cancel an HTTP fetch request
JavaScript promises have been a huge catalyst for asynchronous coding in the language. They have vastly improved the performance and experience for...
React
Use redux-like middleware for useReducer in React
If you have used Redux before, you would be aware of the concept of middlewares. Now that useReducer has become a commonly...
React
How to write your own custom React hooks
If you have been using react for a while, chances are you have come across the need to extract some logic into...
Algorithms and Data Structures
Palindromic Substrings: Demystifying Programming Interview
Wisdom Geek - 0
This is the second post in the Demystifying Programming Interview series, which aims at helping students and professionals who are planning to...
Data Science
Converting a business problem to a machine learning problem
Businesses these days are generating and consuming a huge amount of data. This data varies in variety, volume, velocity, and veracity (4Vs...