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) |
<?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 |
<!-- | |
A simple responsive App Download page. | |
Author : tas33n http://github.com/tas33n | |
--> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |