In your command-line run the following commands:
brew doctor
brew update
watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn install && yarn start -- --reset-cache |
In your command-line run the following commands:
brew doctor
brew update
# DO NOT RESPOND TO REQUESTS OTHER THAN yourdomain.com | |
server { | |
listen 80 default; | |
server_name _; | |
return 444; | |
} | |
# FILE UPLOADS | |
server { | |
listen 80; |
- TechStacks/Language | |
- Javascript | |
- https://github.com/ganqqwerty/123-Essential-JavaScript-Interview-Questions | |
- https://www.toptal.com/javascript/10-most-common-javascript-mistakes | |
- https://www.toptal.com/javascript/interview-questions | |
- https://medium.com/javascript-in-plain-english/js-engine-and-optimization-dac1f7fcb87d | |
- https://www.freecodecamp.org/news/javascript-essentials-why-you-should-know-how-the-engine-works-c2cc0d321553/ | |
- https://github.com/yangshun/front-end-interview-handbook | |
- lexical scoping | |
- React 16 |
Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. Just like above, the bad commit remains there, but it no longer affects the the current master and any future commits on top of it.
git revert {commit_id}'
Deleting the last commit is the easiest case. Let's say we have a remote origin with branch master that currently points to commit dd61ab32. We want to remove the top commit. Translated to git terminology, we want to force the master branch of the origin remote repository to the parent of dd61ab32: