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.
How to create social media app with GetStream and Node.JS 📅 Apr 7, 2019 · ☕ 7 min read · ✍️ Iskander Samatov Let's go over using the GetStream API with Node.JS to build your social media app components and make the development faster.
JavaScript: Write your asynchronous code linearly 📅 Feb 23, 2019 · ☕ 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.
How to connect Gmail Add-on to your non-google service 📅 Feb 15, 2019 · ☕ 7 min read · ✍️ Iskander Samatov Tutorial on how to connect your Gmail add-on to your non-google services and set up a proper authentication system for the user.
Node.JS: Busboy, reading file and text parameters 📅 Jan 24, 2019 · ☕ 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.