Chakra UI: React library built for speed π Feb 14, 2021 · β 3 min read · βοΈ Iskander Samatov Chakra UI is gaining traction in React community. The library makes it that much easier and faster to prototype and build React components.
Demystifying the scary detached HEAD in Git π Feb 6, 2021 · β 4 min read · βοΈ Iskander Samatov In this post I'll go over the worrying detached HEAD message in Git. I'll cover the solution and the reasoning behind it.
Iterators and generators work great together π Jul 24, 2019 · β 6 min read · βοΈ Iskander Samatov Let's brush up on our understanding of the generators and iterators, and see how we can combine them to write elegant JavaScript code.
Essential JavaScript patterns (pt1) π Jul 14, 2019 · β 6 min read · βοΈ Iskander Samatov This is the first part of the two-part series about the design patterns, where we'll go over the Factory, Proxy, and Strategy patterns.
Scale your app better with Scaling Cube π Jul 7, 2019 · β 6 min read · βοΈ Iskander Samatov In this post weβll go over the basic principles behind the Scaling Cube and why you should consider it when trying to scale your project.
Node.js advanced pattern: Dependency Injection Container π Jun 29, 2019 · β 7 min read · βοΈ Iskander Samatov Dependency Injection Container, an advanced module wiring pattern used by the majority of applications and libraries in Node.js.
Webpack explained simply β plugins, loaders and Babel π Jun 22, 2019 · β 7 min read · βοΈ Iskander Samatov Webpack plays a major part in web development today. So in this post, I'm explaining Webpack in the simplest way possible.
Node.js Build scalable architecture with plugins π Jun 15, 2019 · β 6 min read · βοΈ Iskander Samatov In this short blog post, I want to go over the benefits and reasons for separating your reusable Node.js code into plugins.
Node.js: Module wiring and dependencies explained π Jun 1, 2019 · β 9 min read · βοΈ Iskander Samatov In this post, let's explore the behind-scenes of the Node.js module system and how it's wired together in a way that flexible and scalable.
Different ways to achieve encapsulation in JavaScript(ES6): π May 18, 2019 · β 6 min read · βοΈ Iskander Samatov In this post, I'm going over various techniques you can use to achieve encapsulation in JavaScript(ES6).
Book Review: John Sonmez -The Complete Software Developerβs Career Guide π Apr 29, 2019 · β 4 min read · βοΈ Iskander Samatov In this post, I'm writing a short review of the book "The Complete Software Developer's Career Guide" by John Sonmez.
Avoid long If/else with a Strategy Pattern π Apr 21, 2019 · β 5 min read · βοΈ Iskander Samatov In this post, let's cover Strategy Pattern. This pattern will help you write loosely coupled code and avoid long if/else statements.
Node.JS: Composable factory functions over classes π Apr 14, 2019 · β 6 min read · βοΈ Iskander Samatov Composable Factory Functions let you create objects that combine multiple features without creating a tightly coupled class hierarchy.