You can search all my notes here
When I write React-Components in Typescript, I typically do something like this: import React from ‘react’ export type ExampleProps =…
Sometimes it happens that eslint-times seems to get extremly long without any apparent reason. To the point where the command…
When your react-native app starts feeling very sluggish and it takes huge delays before it responds to user input, your…
Parsley.js is a very helpful library to help you validate forms in the frontend. To use this library with a…
const shuffleArray = arr => arr.sort(() => Math.random() – 0.5)