Skip to content

Instantly share code, notes, and snippets.

View adarsh-chakraborty's full-sized avatar
💻
I'm probably learning something right now. wbu?

Adarsh Chakraborty adarsh-chakraborty

💻
I'm probably learning something right now. wbu?
  • Bilaspur, Chhattisgarh.
  • 11:54 (UTC +05:30)
  • X @adarshgq
View GitHub Profile
@adarsh-chakraborty
adarsh-chakraborty / Commig Signing GPG.md
Created April 22, 2022 14:46
Make verified commits on github.

Get your commits verified on github!

Step 1: Check if gpg installed

gpg --version

Step 2: Generate a key

gpg --full-gen-key
@adarsh-chakraborty
adarsh-chakraborty / remove.md
Last active April 10, 2022 09:18
Delete node_modules folder in one command
rm -rf node_modules
npm cache verify
 npm cache clean --force
@adarsh-chakraborty
adarsh-chakraborty / npm update.md
Last active May 6, 2022 12:27
Update all npm dependencies in two commands.
npx npm-check-updates -u
npm install

or even better

npm update