Last Updated: February 11, 2026
By downloading, installing, or using GoToAppleMaps ("the App"), you agree to be bound by these Terms of Use. If you do not agree, do not use the App.
Last Updated: January 12, 2026
We do not collect any personal information. All data is stored locally on your device.
Contact: dautov.ruslan@icloud.com
| #!/usr/bin/env python3 | |
| import base64 | |
| import re | |
| import binascii | |
| import sys | |
| import urllib.parse | |
| from datetime import datetime | |
| from dataclasses import dataclass | |
| from typing import List, Optional |
| # List all buckets | |
| aws s3 ls | |
| # List content of a bucket | |
| aws s3 ls s3://<bucket> | |
| # Create a bucket | |
| aws s3 mb s3://<bucket> | |
| # Copy into bucket | |
| aws s3 cp <path> s3://<bucket> | |
| # Copy from bucket | |
| aws s3 cp s3://<bucket> <path> |
| #!/bin/bash | |
| # Delete all containers | |
| docker rm $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi $(docker images -q) |