Alex

Alex @asmyshlyaev177

About: Just another IT guy, 5+ years of coding on Frontend, Follow me on GitHub , appreciate it.

Location:
void 0
Joined:
Jun 27, 2019

Alex
articles - 19 total

React rendering quiz

A simple quiz to illustrate how React rendering works. import React from "react"; export default...

Learn More 0 0May 8

Breakpoints variables with pure CSS

In CSS can use variables most of the time. :root { --color-main: red; } Enter fullscreen...

Learn More 3 1May 1

Minification bugs

Today I learned that minification in JS is a double-edged sword. It was a weird bug, took me quite...

Learn More 0 0Apr 4

Next.js at refactor or extinct situation.

Next.js become a hype of the day (or year), but it's slowly suffocating under the weight of technical...

Learn More 3 2Dec 13 '24

Beyond console.log

intro As much as I hope that things will always work from first try, better to be prepared...

Learn More 2 0Nov 24 '24

First really useful AI tool - AI code review

Finally, I found at least 1 really useful AI service. The service It's called CodeRabbit,...

Learn More 2 0Nov 14 '24

Solving slow compilation in dev mode for Next.js

Noticed that Next.js dev server is really slow, annoying that it can't precompile pages in the...

Learn More 5 1Nov 8 '24

Dark side of Next.js - App Router

Today, I want to share the disappointing issue with Next.js - App router. About SSR I...

Learn More 68 26Nov 6 '24

Surprising benefit of GraphQL for long-term maintainability

When it comes to Frontend-Backend communication, there are few options: REST OpenAPI GraphQL. At...

Learn More 2 1Oct 30 '24

Why I don't specify pronouns

Can see preferred pronouns on some GitHub profiles. I want to discuss why I don't do it, why I...

Learn More 2 0Sep 30 '24

Automating npm package release with CI/CD

Intro For quite some time, I wanted to try to automate releasing NPM packages with GitHub...

Learn More 0 0Sep 13 '24

Reusing TailwindCSS styles

TailwindCSS got very popular, but one big disadvantage - bunch of inline classes clutter the...

Learn More 1 0Aug 26 '24

Use cases for `useInsertionEffect` React hook

Intro Everybody familiar with useEffect hook, sometimes useLayoutEffect is more...

Learn More 0 0Aug 21 '24

Exploring testing automation with AI tools

Intro I am skeptical about all this AI hype, I did try AI to generate the code, tried few...

Learn More 0 0Aug 14 '24

Clean code vs bad code

There are a lot of resources, books and opinions on how to write a good code. Let's investigate what...

Learn More 6 0Aug 10 '24

TS function overloading - real world example

Let's dive into less frequent Typescript feature - function overloading with a realistic example. ...

Learn More 1 0Aug 9 '24

Few useful VSCode extenstions for TS/JS

Want to share few useful extensions for WebDevs that you didn't heard of. 1....

Learn More 3 1Jul 22 '24

A library to sync state between Next.js components and URL

Can sync state between unrelated components and optionally save it to URL, difference from other...

Learn More 0 1Jul 16 '24

Sharing state between unrelated React components

Want to show how you can share any serializable data between React components, e.g. client components...

Learn More 2 0Jul 11 '24