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) |
| #!/bin/bash | |
| # Exit on error | |
| set -e | |
| # Usage | |
| if [ $# -lt 3 ]; then | |
| echo "Usage: $0 <local_port> <email> <domain1> [domain2] [domain3] ..." | |
| echo "Example: $0 3000 [email protected] example.com api.example.com" | |
| exit 1 |
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) |
| <?php | |
| # Log string to file whilst also printing it to screen (stdout) | |
| # Named tee to match the core unix command - https://en.wikipedia.org/wiki/Tee_(command), | |
| # which in turn is named after the T-splitter used in plumbing. | |
| function tee($message, $logFilepath) | |
| { | |
| file_put_contents($logFilepath, $message, FILE_APPEND); | |
| echo $message; | |
| } |
| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
| <?php | |
| // Disable displaying errors to users | |
| ini_set('display_errors', 0); | |
| // Set the error reporting level to not display warnings and notices | |
| error_reporting(E_ERROR | E_PARSE); | |
| function registerKey($filename, $key, $value) | |
| { |
| import os | |
| import requests | |
| from flask import Flask, jsonify | |
| from urllib.parse import urlparse | |
| from colorama import Fore, Style # Import colorama for colored text | |
| app = Flask(__name__) | |
| # Function to read URLs from a file and create a new file with remaining URLs |
A Pen by John Capuano on CodePen.
Displayin' rates from multiple carriers.
A Pen by Clark Wimberly on CodePen.
| <table> | |
| <thead> | |
| <tr> | |
| <th>ID | |
| <th>First Name | |
| <th>Last Name | |
| <th>Goes By | |
| <th>Gender | |
| <th>Class | |
| <th>Alive |