Skip to content

Instantly share code, notes, and snippets.

View faisalsayed10's full-sized avatar
🤖
404_Not_Found

fayd faisalsayed10

🤖
404_Not_Found
View GitHub Profile
@faisalsayed10
faisalsayed10 / remove-node-modules.md
Created September 24, 2020 12:43 — forked from lmcneel/remove-node-modules.md
How to remove node_modules after they have been added to a repo

How to remove node_modules

  1. Create a .gitignore file in the git repository if it does not contain one

touch .gitignore

  1. Open up the .gitignore and add the following line to the file

**/node_modules

@faisalsayed10
faisalsayed10 / style.css
Created August 4, 2020 02:20
CSS uploaded by scrapbook.hackclub.com/customizer
body {
background-image: url('https://doggo.ninja/ey2BHD.jpg')
}
section:hover {
background-color: yellow;
cursor: crosshair;
}
article {
transition: transform 0.5s;
@faisalsayed10
faisalsayed10 / style.css
Created August 1, 2020 07:18
CSS uploaded by scrapbook.hackclub.com/customizer
body {
background-image: url('https://doggo.ninja/ey2BHD.jpg')
}
section:hover {
background-color: yellow;
cursor: crosshair;
}
article {
transition: transform 0.5s;