This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Inspect image metadata | |
exiftool IMG_4487.JPG | |
## convert apple .HEIC to .jpg | |
find . -type f -name "*.HEIC" -exec heif-convert {} \; | |
## scale the images by half size(Reduce the Image size) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
namespaces="${NAMESPACES}" | |
if [ -z "$NAMESPACES" ]; then | |
namespaces="default" | |
fi | |
if [ -z "$SECRET_NAME" ]; then | |
SECRET_NAME=regcred | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker rm -vf $(docker ps -aq) | |
docker rmi -f $(docker images -aq) | |
docker volume prune -f | |
docker system prune |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tf init | |
# tf apply | |
terraform { | |
required_providers { | |
linode = { | |
source = "linode/linode" | |
} | |
} | |
} |
OlderNewer