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
Function Composition in Javascript
Published:In this article we`ll deep dive into function composition, pipes, currying and partial applications with examples from real world.
Handling Logged-in User in React/Firebase App
Published:Best way to handle logged-in users in the Firebase/React app is to use custom hook and a context api built with Typescript.
Introduction to Custom Hooks
Published:In this article we will learn how to setup our first custom hook. We will convert axios into re-usable hook with typescript and generics.
Must Know Types in Typescript
Published:In this article we will talk about types we use in our everyday lives to ease development process. And, discover some tricks that can be used with Typescript types.
Testing a React/Redux Toolkit app with Typescript
Published:In this article we will test our React/Redux Toolkit app. Testing specifically slices and component that connected to react with Typescript and React Router.
Up & Running with React, Redux Toolkit, Typescript and React Router
Published:All React apps need a state management library such as Redux Toolkit and type-safety with Typescript. Today we will learn how to use them together.
Dealing With Binaries in Javascript
Published:Dealing with binaries in Javascript requires the knowledge of bitwise operators, bits, bytes, hexadeciamls. Those operators often come in handy when manipulating bits and bytes.
Speeding Up Your Website
Published:Techniques to speed up your website and improve the user experience that specifically aiming to React and Next.js sites. We'll discuss things like bundles, fonts, unicode-ranges, webpack.
Build a Custom React Router From Scratch
Published:Have you ever wondered how react router works under the hood? If that's the case best way to explore is to build a custom react router from scratch.
Debounce and Throttle Comprehensive Guide
Published:Every web developer must aware of Debounce and Throttle to maximize client performance.