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) | 
| # This script file regenerates all the generated markdown files. | |
| # This is needed because Azure DevOps (ADO) does not support mermaid charts | |
| # in the preview pane. Once ADO supports this functionality, remove | |
| # this script, delete the generated files, move and rename the template | |
| # files, and update the links that are going to the generated files. | |
| # Requires a directory structure like so | |
| # |- docs | |
| # |- scripts | |
| # |- ConvertFrom-MarkdownTemplate.ps1 | |
| # |- templates | 
| let mapleader=" " | |
| """ Plugins -------------------------------- | |
| set surround | |
| set multiple-cursors | |
| set commentary | |
| set argtextobj | |
| set easymotion | |
| set textobj-entire | |
| set ReplaceWithRegister | 
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) | 
| ''' | |
| The MIT License (MIT) | |
| Copyright (C) 2014, 2015 Seven Watt <info@sevenwatt.com> | |
| <http://www.sevenwatt.com> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | 
| #Newbie programmer | |
| def factorial(x): | |
| if x == 0: | |
| return 1 | |
| else: | |
| return x * factorial(x - 1) | |
| print factorial(6) | |
| #First year programmer, studied Pascal |