In-Depth Look at TypeScript Generics: Part 1 — Intro to Generics 📅 Feb 14, 2022 · ☕ 5 min read · ✍️ Iskander Samatov Generics allows us to write a typesafe code that will work with a wide range of primitives and objects.
TypeScript Basics: Understanding The "never" Type 📅 Feb 6, 2022 · ☕ 5 min read · ✍️ Iskander Samatov The TypeScript 'never' keyword is a bit of a mystery to many developers. What does it do, and when should you use it?
React Performance: How to avoid redundant re-renders 📅 Jan 30, 2022 · ☕ 7 min read · ✍️ Iskander Samatov If not taken seriously, redundant re-renders can quickly worsen the performance of your application.
TypeScript Basics: Understanding How Variable Types are Determined 📅 Jan 20, 2022 · ☕ 4 min read · ✍️ Iskander Samatov In this post, we will cover how TypeScript infers variable's type. Knowing this is important to build a solid understanding of the language.
TypeScript schema validation with Zod 📅 Jan 17, 2022 · ☕ 7 min read · ✍️ Iskander Samatov Schema validation will help you ensure that your data is valid during runtime and Zod is the one of the best TypeScript libraries for it.
How to make your React components more reusable 📅 Jan 16, 2022 · ☕ 5 min read · ✍️ Iskander Samatov By keeping reusability in mind when building your React components, you will have an easier time maintaining your codebase and adding new features to your app.
Ambient Modules in TypeScript: What they are and how to work with them 📅 Jan 10, 2022 · ☕ 3 min read · ✍️ Iskander Samatov We will cover what ambient modules are, how to use them, and some caveats and tips when working with them.
Solve any external library error in TypeScript with module augmentation 📅 Jan 5, 2022 · ☕ 4 min read · ✍️ Iskander Samatov When you get stuck, use module augmentation to tweak the modules that you can't access otherwise.
Reclaiming Responsibility From Best Practices in Software Development 📅 Dec 27, 2021 · ☕ 6 min read · ✍️ Iskander Samatov This post explores some of the common best practices, why they don't always work, and what's a better approach.
5 Chrome DevTools tips that will make your life easier 📅 Dec 16, 2021 · ☕ 3 min read · ✍️ Iskander Samatov Most developers know about the basics, like how to inspect elements on the page, but there is much more hidden beneath the surface.
6 simple tips for working with React and TypeScript 📅 Dec 12, 2021 · ☕ 3 min read · ✍️ Iskander Samatov Common tips, suggestions, and techniques useful when building React applications with TypeScript.
Simple guide to JavaScript Decorators 📅 Dec 7, 2021 · ☕ 3 min read · ✍️ Iskander Samatov A short and simple tutorial on JavaScript decorators with examples and common use-cases.
How to review pull requests more quickly: practical tips 📅 Dec 5, 2021 · ☕ 6 min read · ✍️ Iskander Samatov This post contains some actionable tips on how you can start reviewing PRs faster.