The most fascinating part of creating a website from scratch is coding the technical part - that's what developers usually like the most. But aside from that, there are a few other important steps that should be taken before your website goes live. These include...Read more
Bots have become increasingly popular in recent years because they make it possible to automate many things that previously had to be done manually by humans. This way, we can save an enormous amount of time and focus on the most important tasks instead of doing...Read more
Unit tests are crucial - they help to confirm that the individual parts of applications work as intended. On the one hand, without them you are never sure that everything works correctly, whether after refactoring or adding a new feature. On the other hand...Read more
Let's clarify one thing before we start - code duplication is not necessarily a bad thing. In some cases, it's much better to duplicate code than to create a reusable component that accepts tons of props for handling all edge cases because it's very likely to...Read more
Growing a business requires a lot of effort, including working on social media to attract attention and promote your product to end users. Therefore, it is necessary to automate as much as possible so that you do not have to spend all your time...Read more
The most basic task any developer has when working with Git on a daily basis is adding files to be committed. Probably the vast majority of us use **git add -A** without knowing exactly what is going on behind the scenes when we use the **\-A** flag, and whether there are no other...Read more
Redux is one of the most popular state management libraries available for React applications. It provides us with the store that contains the entire state of the application, actions that describe what happens in the application, and reducers that create a new state object from the...Read more
If you work with Typescript of a regular basis, you know that it provides developers with a large feature list that is frequently updated with new stuff. One of the things from that list that you may have been using for years without realizing it are Type Guards...Read more
In modern web applications, lists are everywhere and knowing how to render them properly is one of the first things every developer should learn. Transforming lists into React elements is typically done using the map() method. It runs on an array of...Read more