Skip to content

Instantly share code, notes, and snippets.

View rap0so's full-sized avatar
🖥️
Code. Laugh. Commit. Repeat.

William Godoy rap0so

🖥️
Code. Laugh. Commit. Repeat.
View GitHub Profile
@juanbrujo
juanbrujo / PlayStationBIOSFilesNAEUJP.md
Last active June 18, 2024 14:30
Files for PlayStation BIOS Files NA-EU-JP
@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