Posts
All the articles I've posted.
- asynchronous
- computerscience
- distributed
- functional_programming
- go
- javascript
- jotai
- microfrontend
- monorepo
- network_programming
- nextjs
- nodejs
- optimization
- react
- redux
- solidity
- ssr
- testing
- tutorial
- typescript
- webpack
Debounce and Throttle Comprehensive Guide
Published:Every web developer must aware of Debounce and Throttle to maximize client performance.
How to Setup a Bulletproof Next.js Project with Typescript, ESLint, Prettier, Babel and Husky
Published:In order to make your Next.js project robust and maintainable, you should be using ESLint, Typescript, Husky and Prettier.
Test your React components and APIs with React Testing Library, Jest, Typescript, and Axios
Published:Testing our UI components and API requests, using React Testing Library, Jest and Ts-Jest. And, of course, we`ll be using Typescript. Axios, RTL, Typescript
Frequently Asked React and Front-end Interview Questions
Published:Today, we are going to discuss most frequently asked interview question that I faced during interviews.
Binary Search In Javascript
Published:Learn how to perform a binary search in Javascript and talk a little about O notation.
Hash tables explained in Javascript
Published:Hash tables are incredibly powerful and versatile beasts. They let you store your data in a key-value
Quicksort In Javascript
Published:Have you ever wondered why Quicksort called quick? Because it's one of the fastest sorting algorithms out there. Tutorial in Javascript/Typescript.
Selection Sort In Javascript
Published:Today, we are going to discover how Selection Sort works and discuss its complexity using Big O Notat... Tagged with javascript, datastructures, computerscience, typescript.
Using Async/Await The right way
Published:Learn how to use async/await right way
Currying in Javascript with examples
Published:Currying is actually a process of linking functions together to reduce the number of arguments they take by utilizing lambda calculus.javascript, typescript, tutorial, functional.