Web
Avoid long If/else with a Strategy Pattern
· ☕ 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.

JavaScript: Write your asynchronous code linearly
· ☕ 6 min read · ✍️ Iskander Samatov
This short article lists tips and tricks and explains how to structure and write your asynchronous code in a linear fashion in JavaScript.

Node.JS: Busboy, reading file and text parameters
· ☕ 4 min read · ✍️ Iskander Samatov
Recently, I implemented a solution to read both file and text parameters using Busboy and in this tutorial, I will show you how.