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) |
| { | |
| "any.unknown": "no esta permitido", | |
| "any.invalid": "contiene un valor invalido", | |
| "any.empty": "no está permitido que sea vacío", | |
| "any.required": "es requerido", | |
| "any.allowOnly": "debería ser uno de las siguientes variantes: {{valids}}", | |
| "any.default": "emitió un error cuando se ejecutó el metodo default", | |
| "alternatives.base": "no coincide con ninguna de las alternativas permitidas", | |
| "array.base": "debe ser un array", | |
| "array.includes": "en la posición {{pos}} no coincide con ninguno de los tipos permitidos", |
| var arr = ['Sacha', 'Og', 'Haru']; | |
| arr[Symbol.iterator] = function *() { | |
| var i = this.length - 1; | |
| while (i >= 0) { | |
| yield this[i]; | |
| i--; | |
| } | |
| } | |
| for (var value of arr) { |
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) |
| /** | |
| * Component that alerts if you click outside of it | |
| */ | |
| class OutsideAlerter extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.setWrapperRef = this.setWrapperRef.bind(this); | |
| this.handleClickOutside = this.handleClickOutside.bind(this); | |
| } |
| # in a terminal | |
| # python -m pip install --user opencv-contrib-python numpy scipy matplotlib ipython jupyter pandas sympy nose | |
| import cv2 | |
| import pandas as pd | |
| import numpy as np | |
| import imutils | |
| from scipy.spatial import distance as dist | |
| from imutils import perspective |
| // Create a button element. | |
| // Type will be Node. | |
| const btn = document.createElement('button') | |
| // Because type is Node, we cannot call setAttribute, | |
| // since this is on the Element type. | |
| // Performing a type cast from Node to Element fixes this: | |
| /** @type {Element} */(btn).setAttribute('disabled', true) |
| const axios = require('axios') | |
| /* ... */ | |
| const params = new URLSearchParams() | |
| params.append('name', 'Akexorcist') | |
| params.append('age', '28') | |
| params.append('position', 'Android Developer') | |
| params.append('description', 'birthdate=25-12-1989&favourite=coding%20coding%20and%20coding&company=Nextzy%20Technologies&website=http://www.akexorcist.com/') | |
| params.append('awesome', true) |
| /**************************\ | |
| Basic Modal Styles | |
| \**************************/ | |
| .modal { | |
| font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif; | |
| } | |
| .modal__overlay { | |
| position: fixed; |
| /** | |
| * Component that alerts if you click outside of it | |
| */ | |
| class OutsideAlerter extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.setWrapperRef = this.setWrapperRef.bind(this); | |
| this.handleClickOutside = this.handleClickOutside.bind(this); | |
| } |
| @Database(entities = arrayOf(Note::class, User::class), version = 1) | |
| @TypeConverters(Converters::class) | |
| abstract class AppDatabse : RoomDatabase() { | |
| abstract fun userDAO(): UserDAO | |
| abstract fun noteDAO(): NoteDAO | |
| } |