Making some basic animations with box-shadows. No extra elements or even pseudo elements required.
Check out my button collection for more.
| Extruder: | |
| - Nozzle Diameter: 0.40mm | |
| - Extrusion Multiplier: 1.00 (can fiddle with this: if you get holes in top layers - increase, if you get blobs and the head digs into the current layer - decrease) | |
| - Extrusion Width: auto | |
| - Retraction: | |
| - Distance: 4-6mm or less even | |
| - Extra Restart Dist: 0.5 | |
| - Vertical Lift: 0 | |
| - Retraction Speed: 3000 | |
| - Coast at end - enabled - 0.1mm |
| # 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 | |
| #!/bin/bash | |
| # | |
| # Generates client and server certificates used to enable HTTPS | |
| # remote authentication to a Docker daemon. | |
| # | |
| # See http://docs.docker.com/articles/https/ | |
| # | |
| # To start the Docker Daemon: | |
| # | |
| # sudo docker -d \ |