Google Cloud tips
https://cloud.google.com/sdk/gcloud
If terminal cannot open the brower, manually execute:
$ curl https://sdk.cloud.google.com | bash
$ gcloud auth login
$ gcloud compute zones list
$ gcloud config set compute/region europe-west1
$ gcloud config set compute/zone europe-west1-c
$ gcloud config list --all
$ gcloud compute instances create myinstance \
--machine-type n1-standard-1 \
--image ubuntu-19-00
$ gcloud compute ssh myinstance
$ gcloud compute images list