Skip to content

Instantly share code, notes, and snippets.

View AlexanderAllen's full-sized avatar

AlexanderAllen AlexanderAllen

View GitHub Profile
@AlexanderAllen
AlexanderAllen / docker-compose.yml
Created February 1, 2020 16:33
Switching to unix socket with named volumes for PHP FPM and Nginx
# Staying on version 2.x for performance tuning cpu, memory resources.
# Ver. 3.x is meant for swarms and is not 100% backwards-compat.
# Secrets are available only on 3.x.
version: '3.7'
networks:
default:
external: true
name: localenv
services:
@AlexanderAllen
AlexanderAllen / launch.json
Created February 26, 2022 02:57
Rust for Windows Launch Config
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
// C++ extension configuration.
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
@AlexanderAllen
AlexanderAllen / ThemeManager.php
Created July 14, 2022 01:32
Drupal 8: Dump name of all templates processed to filesystem
# src/web/core/lib/Drupal/Core/Theme/ThemeManager.php, line 389
static $c = 1;
$filename = '/var/sys/RM26464.log';
if ($c == 1) {
$handle = fopen($filename, 'r+');
ftruncate($handle, 0);
rewind($handle);
// echo fread($handle, filesize($filename));
fclose($handle);
@AlexanderAllen
AlexanderAllen / gpgIdentityRegex.md
Last active December 29, 2023 10:49
GPG Identity Regex

PCRE 2+

(?x)

# fingerprint and grip records only have about 12 fields,
# so the match can't be too strict with the number of mandatory fields.

^
(?
@AlexanderAllen
AlexanderAllen / commit-msg
Last active January 17, 2024 13:43
Drupal contrib commit msg hook
#!/usr/bin/php
# In .git/hooks/commit-msg
# Make sure to +x hook
# https://www.atlassian.com/git/tutorials/git-hooks
# See https://www.php.net/manual/en/function.exit.php
# https://www.php.net/manual/en/reserved.variables.argv.php
# https://www.php.net/manual/en/function.file-get-contents.php
# Regex: https://regex101.com/r/uQKPeu/1