Skip to main content
photo bio

This is personal blog by Eduard Miskov

I write about front-end, creative field, and stuff I recently discovered.

8 ways to center DIV. Conventional approaches and unusual ones
"How to center div?" is the question I get asked the most in the interviews. Lets have some fun and take a creative approach to answer it!
Web Workers in JavaScript for beginners and How to use them
Web workers are scripts that run in the background and make your web app faster and more responsive. In this article, you'll learn how to use them and why they are so cool.
Box Shadow Gradient with glowing effect: single-property and pseudo-element
While CSS doesn't provide a native way to create box shadow gradients, there are some nice CSS tricks you can use to achieve the effect.
Understanding the Script Tag, Async, and Deferred in JavaScript
How to use the script tag, and some magic attributes like async and defer to make your web page load faster and smoother.
REST API: A friendly introduction
This is a short, summarizing article, that introduces the basic concepts of REST API, such as resources, response codes, requests, and responses, and shows how to make them in JavaScript and PHP
Recursion and Tail recursion. What's the difference
Today, I want to share with you some cool concepts about recursion and tail recursion in JavaScript. You will learn how this helps to write elegant and efficient code, and how the JavaScript engine handles them with the call stack.
Memoization in JS: Simple but good optimization technique
Memoization is a technique that can help you speed up your applications by caching the results of expensive, heavy function calls. This article will show you how to implement memoization in JavaScript using closures and higher-order functions, and when to use it wisely.