Skip to content

Instantly share code, notes, and snippets.

View isalmanhaider's full-sized avatar
👨‍💻
Exploring Drupal 10/11, Symphony 7, PHP 8.3, GenAI

Salman Haider isalmanhaider

👨‍💻
Exploring Drupal 10/11, Symphony 7, PHP 8.3, GenAI
View GitHub Profile
@isalmanhaider
isalmanhaider / cron.php
Last active June 26, 2024 10:36
batch process using cron - elysia cron in Drupal
<?php
// Example of setting up a batch process in Drupal that runs programmatically without user intervention
// Define batch operations and other batch settings as required: $batch
batch_set($batch); // Initialize and register the batch with Drupal's batch processing system.
drupal_alter('batch', $batch); // Allow other modules to alter the batch settings before it runs.
$batch = &batch_get(); // Retrieve a reference to the current batch array for direct manipulation.
$batch['progressive'] = FALSE; // Set the batch to run non-progressively, suitable for automated processes.
batch_process(); // Start processing the batch without expecting a user-driven progression.
@isalmanhaider
isalmanhaider / animation-delay.md
Last active June 8, 2024 13:03
Dock animation delay on mac

to disable:

defaults write com.apple.dock autohide-delay -float 0; defaults write com.apple.dock autohide-time-modifier -int 0; killall Dock;

restore default:

defaults delete com.apple.dock autohide-delay; defaults delete com.apple.dock autohide-time-modifier; killall Dock
@isalmanhaider
isalmanhaider / drupal-logo.yml
Last active May 23, 2024 10:22
Drupal 10 logo in YAML
###################################################################################
#
# *
# /(
# ((((,
# /(((((((
# ((((((((((*
# ,(((((((((((((((
# ,(((((((((((((((((((
# ((((((((((((((((((((((((*
@isalmanhaider
isalmanhaider / gist:60224383d32b7648abd0909c1d68e6d4
Created April 5, 2024 02:33
ERROR 1273 (HY000) at line 30: Unknown collation: 'utf8mb4_0900_ai_ci'
sed -i 's/utf8mb4_0900_ai_ci/utf8mb4_general_ci/g' db.sql
let debounce = function (cb, delay) {
let timer;
return function () {
let context = this;
clearTimeout(timer);
timer = setTimeout(() => {
cb.apply(context, arguments);
}, delay);
};
};
@isalmanhaider
isalmanhaider / clean_permissions.php
Last active February 13, 2024 19:04
clean_permissions.php
<?php
/**
* @file
* Script to help cleanup the not existing permissions from your roles.
*
* @code
* drush scr clean_permissions.php
* drush -y cex
* @endcode
*