Skip to content

Instantly share code, notes, and snippets.

View eduardosacra's full-sized avatar

Eduardo Sacramento de Sousa eduardosacra

View GitHub Profile
@vmandic
vmandic / dotnet core .gitignore
Last active April 19, 2024 15:34
A default .NET Core project .gitignore file - or just type `dotnet new gitignore`
# From .NET Core 3.0 you can use the command: `dotnet new gitignore` to generate a customizable .gitignore file
*.swp
*.*~
project.lock.json
.DS_Store
*.pyc
# Visual Studio Code
.vscode
for containerId in `sudo docker ps -a | awk '{print $1}'`
do
echo ${containerId}
sudo docker rm $containerId
done
echo 'All cleaned pawn! :D'