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/bash | |
DOCKER_CONTAINER_NAME="test-external-mysql" | |
MYSQL_IMAGE="mysql:8.0.35" | |
# cleanup any previous containers/processes | |
docker stop $DOCKER_CONTAINER_NAME || true | |
docker rm $DOCKER_CONTAINER_NAME || true | |
pkill -f etcd | |
pkill -f vttablet | |
rm -rf .vtdataroot |
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
COLORS = ["red", "orange", "yellow", "green", "blue", "purple"] | |
STARTING_MOVE_DISTANCE = 5 | |
MOVE_INCREMENT = 10 | |
game_is_on = True | |
from turtle import Turtle | |
import random | |
class CarManager(): |