Skip to content

Instantly share code, notes, and snippets.

View chadidi's full-sized avatar
🌴
On vacation

Abdellah Chadidi chadidi

🌴
On vacation
View GitHub Profile
@chadidi
chadidi / Resources.md
Last active September 26, 2022 20:28
My favorite backend development resources ⭐️
@iamandrewluca
iamandrewluca / bookmarklets.md
Last active June 3, 2024 18:43
Collection of bookmarklets that I use day to day #bookmarklets
@spalladino
spalladino / mysql-docker.sh
Created December 22, 2015 13:47
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE