- Install Docker Desktop
Because we already have an official CockroachDB docker image, we will use that in our docker-compose.yml file. We recommend you use one of the current tags instead of latest.
Because we already have an official CockroachDB docker image, we will use that in our docker-compose.yml file. We recommend you use one of the current tags instead of latest.
| import sys | |
| import webbrowser | |
| def google_search(query): | |
| base_url = "https://www.google.com/search?q=" | |
| query_string = query.replace(" ", "+") | |
| # show results from the sites below | |
| sites = ["dev.to", "github.com", "medium.com", "stackoverflow.com", "youtube.com"] |