This file contains hidden or 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
/* can be used in Chrome Extension like Stylebot */ | |
cu-task-ai-button, | |
cu-comment-ai-quick-reply, | |
cu-content-assistant-list-ai, | |
cu-content-assistant-fab, | |
cu-content-assistant-launch-button, | |
.content-assistant-icon, | |
.search-modal-toggle__ai-button, | |
.content-assistant-launch-button__icon, |
This file contains hidden or 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 | |
// Force JIT to engage with a computationally intensive loop | |
function test_jit() { | |
$start = microtime(true); | |
$sum = 0; | |
for ($i = 0; $i < 10000000; $i++) { | |
$sum += $i * 0.01; | |
} | |
$end = microtime(true); | |
return [ |
This file contains hidden or 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 | |
header('Content-Type: text/plain'); | |
echo "PHP Version: " . phpversion() . "\n\n"; | |
echo "OPCache Enabled: " . (opcache_get_status() ? "Yes" : "No") . "\n\n"; | |
if (opcache_get_status()) { | |
$status = opcache_get_status(); | |
$config = opcache_get_configuration(); | |
echo "Memory Usage: " . round($status['memory_usage']['used_memory'] / (1024*1024), 2) . "MB / " . |
This file contains hidden or 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
{ | |
"name": "N8N API", | |
"nodes": [ | |
{ | |
"parameters": { | |
"operation": "get", | |
"workflowId": { | |
"__rl": true, | |
"value": "={{ $json.workflow_id }}", | |
"mode": "id" |
This file contains hidden or 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
{ | |
"name": "Search and load local file", | |
"nodes": [ | |
{ | |
"parameters": {}, | |
"type": "n8n-nodes-base.manualTrigger", | |
"typeVersion": 1, | |
"position": [ | |
0, | |
0 |
This file contains hidden or 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
{ | |
"name": "n8n dateTime strategy", | |
"nodes": [ | |
{ | |
"parameters": {}, | |
"type": "n8n-nodes-base.manualTrigger", | |
"typeVersion": 1, | |
"position": [ | |
0, | |
0 |