Skip to content

Instantly share code, notes, and snippets.

View soyHouston256's full-sized avatar
🏠
Working from home

Max Houston Ramirez Martel soyHouston256

🏠
Working from home
View GitHub Profile
@Klerith
Klerith / instalaciones-nestjs.md
Last active July 12, 2024 20:11
Instalaciones recomendadas para el curso de Nest.js
@juliencrn
juliencrn / gitignore.sh
Created May 30, 2019 13:37
Remove .idea files from PHPStorm with git & .gitignore
# Remove the file from the repository
git rm --cached .idea/
# now update your gitignore file to ignore this folder
echo '.idea' >> .gitignore
# add the .gitignore file
git add .gitignore
git commit -m "Removed .idea files"