Edson Junior de Andrade

Edson Junior de Andrade @edsonjuniornarvaes

About: Front-end developer, Web e Mobile

Location:
Umuarama-PR, Brasil
Joined:
Apr 26, 2021

Edson Junior de Andrade
articles - 22 total

How to optimize SVG files for better use in projects?

We often come across large and complex SVG files full of redundancies, which can be a hassle....

Learn More 0 0Mar 26

MVVM for React Native

Understanding MVVM in React Native The MVVM (Model-View-ViewModel) pattern is widely used...

Learn More 7 0Aug 24 '24

Upgrade your Expo project

To upgrade your Expo project from version 48 to version 49, you will need to follow some specific...

Learn More 0 0Oct 10 '23

Update your libraries to the latest version with yarn

Wirely update your libraries to the latest version using below command yarn upgrade --latest ...

Learn More 0 0Jul 20 '23

XOrg in Fedora

I have been facing problems when sharing screen through fedora, either on discord or I encounter...

Learn More 0 0Jul 20 '23

Husky + lint-staged + commitlint

In this post, I'll show you how to improve your husky workflow, using pre-commit to trigger error...

Learn More 0 0Mar 21 '23

Adding a git commit message using vi on macOS

You must have already gone through the situation of having entered vi at the time of a commit and not...

Learn More 4 0Dec 9 '22

System limit for number of file watchers reached

If your linux hits the system watchers limit, solve it with the following command: echo...

Learn More 7 0Nov 21 '22

Basic setup for development

Development Make sudo apt-get update sudo apt-get install make Enter fullscreen...

Learn More 3 0Nov 17 '22

Axios interceptor token on first call

Just add the capture of the token in the local storage in the configuration inside the interceptors...

Learn More 2 0Sep 29 '22

Semantic commit messages

See how a minor change to your commit message style can make you a better programmer. Format:...

Learn More 1 0Sep 16 '22

Set default login and password for git requests

To not always need to tell git what your login and password are, enter the command below. git...

Learn More 1 0Sep 16 '22

Change the repository source

First check the source of your repository. git remote -v Enter fullscreen mode ...

Learn More 0 1Sep 16 '22

Generate SSH key

Run the following command, some questions will be displayed, in my case I just pressed enter until...

Learn More 0 0Sep 16 '22

Fixing 'VirtualizedLists should never be nested inside simple ScrollViews' warning [FlatList]

In some cases, we feel the need to use the scrollview along with the flatlist. Then we generate the...

Learn More 5 0Jul 12 '22

Your most productive terminal with Oh My Zsh and spaceship

Install Zsh sudo apt-get install zsh Enter fullscreen mode Exit fullscreen mode ...

Learn More 19 0Jun 17 '22

Updating the Node Version

Simple and fast way to update the node version on your machine, let's install package n...

Learn More 7 0Jun 10 '22

Your commits refined with Commitizen and Commitlint

Configure and install Commitizen + Commitlint tools What is Commitizen? commitizen...

Learn More 12 0Oct 26 '21

Configure the Prettier

Here we will install two dependencies to configure Prettier along with ESLint, the first disables the...

Learn More 1 0Sep 21 '21

Configure the ESLint

To start, we must use the following command: yarn add eslint -D Enter fullscreen mode ...

Learn More 1 0Sep 21 '21

Husky with commitlint and lint-staged

In this post, I'll show you how to improve your husky workflow, using pre-commit to trigger error...

Learn More 5 0Sep 21 '21

Your code more organized with Eslint and Prettier

The walkthrough below was reproduced in a next.js project To start, we must use the following...

Learn More 5 0Aug 30 '21