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) |
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) |
| from ctypes import windll | |
| from ctypes import byref as ctypes_byref | |
| from ctypes.wintypes import MSG as wintypes_MSG | |
| import win32con | |
| class GlobalHotKeys(object): | |
| key_mapping = [] | |
| user32 = windll.user32 |
| function hash(str) { | |
| var len = str.length; | |
| var hash = 5381; | |
| for (var idx = 0; idx < len; ++idx) { | |
| hash = 33 * hash + str.charCodeAt(idx); | |
| } | |
| return hash; | |
| } |
| /* | |
| Some simple Github-like styles, with syntax highlighting CSS via Pygments. | |
| */ | |
| body{ | |
| font-family: helvetica, arial, freesans, clean, sans-serif; | |
| color: #333; | |
| background-color: #fff; | |
| border: none; | |
| line-height: 1.5; | |
| margin: 2em 3em; |