Skip to content

Instantly share code, notes, and snippets.

View AvgustPol's full-sized avatar
💪
I am challenging you to follow my code quality standards.

Emily (formerly Anton) Vlasiuk AvgustPol

💪
I am challenging you to follow my code quality standards.
View GitHub Profile
@AvgustPol
AvgustPol / README.md
Created December 5, 2019 10:26 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@AvgustPol
AvgustPol / remove-all-from-docker.sh
Created November 8, 2018 14:24 — forked from beeman/remove-all-from-docker.sh
Remove all from Docker
# Stop all containers
docker stop `docker ps -qa`
# Remove all containers
docker rm `docker ps -qa`
# Remove all images
docker rmi -f `docker images -qa `
# Remove all volumes