See also:
| Service | Type | Storage | Limitations |
|---|---|---|---|
| Amazon DynamoDB | 25 GB | ||
| Amazon RDS | |||
| Azure SQL Database | MS SQL Server | ||
| 👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| if __name__=="__main__": | |
| if len(sys.argv) > 1: | |
| path = sys.argv[1] | |
| else: | |
| sys.exit("The folder path is required") |
| # https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments | |
| code --install-extension aaron-bond.better-comments | |
| # https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager | |
| code --install-extension alefragnani.project-manager | |
| # https://marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client | |
| code --install-extension bmewburn.vscode-intelephense-client | |
| # https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense |
See also:
| Service | Type | Storage | Limitations |
|---|---|---|---|
| Amazon DynamoDB | 25 GB | ||
| Amazon RDS | |||
| Azure SQL Database | MS SQL Server | ||
| 👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
Web Development in 2020: What Coding Tools You Should Learn - https://www.freecodecamp.org/news/web-development-2020/
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream