Skip to content

Instantly share code, notes, and snippets.

@alexccc333
alexccc333 / front-end-guidelines.md
Created January 2, 2021 11:04 — forked from stowball/front-end-guidelines.md
Front-End Guidelines
@alexccc333
alexccc333 / front-end-guidelines.md
Created January 2, 2021 11:04 — forked from stowball/front-end-guidelines.md
Front-End Guidelines
@alexccc333
alexccc333 / mysql-docker.sh
Created April 16, 2020 09:37 — forked from spalladino/mysql-docker.sh
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