Ever feel like your day ends and you can’t quite remember what you actually accomplished? Or do you...
Let’s face it—TypeScript’s type safety is amazing, but there are times when you know more about your...
Prettier Prettier is an opinionated code formatter with support for multiple languages....
To be honest, "The best…" for anything is hard to argue and in most cases not true. Nevertheless, I...
When I started web development, I wrote pure CSS, then I moved on to BEM (Block, Element, Modifier)...
In React applications, conditional rendering often leads to verbose and repetitive code. For this...
Maintaining a consistent development environment in team projects, such as sharing recommended VSCode...
Most of the time, I find myself forgetting the snippets I've set up just a week later. However, there...
I'm excited to share my experience in setting up GitHub Actions for automatically publishing a...
Sometimes it can be useful to divide the exports of a package into groups. This can help to avoid...
I just had to split up an array of items into chunks with alternating one and two elements. Here are...
I switched to VS Code recently and had an issue that really bogged me: Often Functions/Components did...
Image shrinker image-shrinker is a simple, easy to use open source tool for shrinking...
I would like to keep track of new things that I randomly discover while working on my projects. And...
dev.to supports linking to subheadings by appending #your-sub-heading to your post link. This...
Destructuring objects is handy and often code is easier to read when it looks simpler. But...
Naming (in programming) is a topic that fascinates me. It is so simple and yet sometimes so...
Recently I had to parse a SemVer string. The first Regex I found was not able to deal with labels, so...
In early January, my cousin asked me to join him doing the One Punch Man workout for a month. It was...
If you are managing multiple React applications and want consistency across your user interfaces,...
1. Early first commit Committing regularly is a very good habit. And there is one point in...
Recently I found that it is possible to automatically sort imports in VS Code when saving a file. To...
Do you know the situation when you are in the middle of your code and want to import an image to use...
I use editors like Figma or Sketch to edit and export SVG. But there are two SVG features I find...
This is my take on a persistent state hook. The interface is similar to useState and I prefixed the...
This is how I set up Vite to meet my requirements for building a Web Extension for Google Chrome,...
Sometimes I need to run a side effect in React when a certain value in the state changes. I do this...
There are two ways to display an SVG graphic on a webpage: by creating an img tag that points to the...
I have to implement this component and have a hard time naming it. Does anyone have an...
My ongoing journey of creating form components for my design system.