git fetch --prune
git branch -vv
git branch -d feature/xxx
git push origin --delete feature/xxx
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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Terminal 1", | |
| "type": "shell", | |
| "command": "bash", | |
| "isBackground": true, | |
| "presentation": { | |
| "group": "dev", |
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
| version: 0.2 | |
| env: | |
| variables: | |
| AWS_DEFAULT_REGION: us-east-1 | |
| IMAGE_REPO_NAME: fastapi-deploy | |
| IMAGE_TAG: latest | |
| phases: | |
| pre_build: |
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
| # Create a virtual environment | |
| python -m venv venv | |
| # Activate the virtual environment (Windows) | |
| source venv/Scripts/activate | |
| # Activate the virtual environment (Linux/Mac) | |
| source venv/bin/activate | |
| # Deactivate the virtual environment |
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
| not_my_data = set(dir()) | |
| # print(set(dir()) - set(dir(__builtins__))) | |
| # print(my_data) | |
| # eval('a') | |
| # sys.getsizeof(1) | |
| # sys.getsizeof([1,2,3,4,5]) | |
| mysum = 0 |