Writing json to file import json with open('data.json', 'w', encoding='utf-8') as f: json....
eval "$(ssh-agent -s)" ssh-add ~/.ssh/server
Local > remote Add the changed files commit the files push to repo git add FILE_NAME git...
Force pull git fetch origin git reset --hard origin/main Stash changes 1. Stash your change...
Containers List running containers docker ps List all containers docker ps -a Run a cont...
Bulding a container sudo docker build -t CONTAINER_NAME . -t is the container "tag" name. assum...
Logging into remote db mysql -h HOST -P PORT -u USERNAME -p Creating a table Sy...