This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function _parse_memory_limit(string $value): int | |
{ | |
if (preg_match('/^([0-9]+)([KMG]?)$/', strtoupper($value), $matches) !== 1) { | |
throw new RuntimeException('Invalid value for memory_limit: ' . $value); | |
} | |
[, $number, $multiplier] = $matches; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# On slave | |
# ======== | |
mysql> CALL mysql.rds_stop_replication; | |
mysql> CALL mysql.rds_reset_external_master; | |
# Drop & recreate replicated databases | |
mysql > DROP DATABASE <xxx>; | |
mysql > CREATE DATABASE <xxx>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Note: this must be executed on the server hosting the domain name! | |
# Install required packages on RHEL / Fedora: | |
# EPEL might be required on RHEL: https://fedoraproject.org/wiki/EPEL | |
sudo yum install -y certbot python3-certbot-apache | |
# Set up letsencrypt: validates the domain, generates a certificate, and updates Apache config | |
# Replace example.tld with your domain name | |
# Add multiple -d if you need to support multiple domains | |
sudo certbot --apache -d example.tld -d example2.tld |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drupal/console | |
drupal/core | |
google/auth | |
johnpbloch/wordpress-core | |
khanamiryan/qrcode-detector-decoder | |
magento/zendframework1 | |
pear/archive_tar | |
phing/phing | |
php-di/php-di | |
php-http/message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* MySQL search engine | |
* | |
* Copyright (C) 2004 Brion Vibber <[email protected]> | |
* https://www.mediawiki.org/ | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** @var PDO $pdo */ | |
$pdo = require __DIR__ . '/common.php'; | |
for ($n = 1; $n <= BENCHMARK_RECORDS; $n++) { | |
$statement = $pdo->prepare(<<<SQL | |
SELECT salaries.*, employees.* | |
FROM salaries INNER JOIN employees ON employees.emp_no = salaries.emp_no | |
LIMIT $n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This script benchmarks creating a new ReflectionClass instance vs using a cached instance. | |
* | |
* Results on my machine: | |
* | |
* New ReflectionClass instance: 0.270 s | |
* Cached ReflectionClass instance: 0.147 s | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This script builds the .travis.yml build matrix, around these variables: | |
* | |
* - PHP versions | |
* - database drivers | |
* - platform versions | |
* | |
* With the following requirements: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
password=$(grep -oP 'temporary password(.*): \K(\S+)' /var/log/mysqld.log) | |
mysqladmin --user=root --password="$password" password aaBB@@cc1122 | |
mysql --user=root --password=aaBB@@cc1122 -e "UNINSTALL COMPONENT 'file://component_validate_password';" | |
mysqladmin --user=root --password="aaBB@@cc1122" password "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Automatically migrates Font Awesome 4 class names to Font Awesome 5 class names. | |
* | |
* WARNING: THIS WILL REWRITE YOUR FILES. | |
* BACK UP YOUR FILES BEFORE RUNNING THIS SCRIPT. | |
* YOU HAVE BEEN WARNED. | |
* | |
* Note: the migration CSV file was parsed from the official migration documentation: |