Last Updated: January 12, 2026
Berlin Transport Map displays real-time public transport data for Berlin. The app:
- Does NOT collect personal information
- Does NOT require user accounts
- Does NOT track your location history
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) |
| df.select([count(when(isnan(c) | col(c).isNull(), c)).alias(c) for c in df.columns]).show() | |