Skip to content

Instantly share code, notes, and snippets.

View marloeleven's full-sized avatar

Marlo Dela Torre marloeleven

View GitHub Profile
@marloeleven
marloeleven / mysql-docker.sh
Created January 10, 2023 05:59 — 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
@marloeleven
marloeleven / review-checklist.md
Created October 9, 2018 05:40 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?