Skip to content

Instantly share code, notes, and snippets.

View Deifinger's full-sized avatar

Ruslan Kostikov Deifinger

View GitHub Profile
@Deifinger
Deifinger / composer
Last active August 6, 2019 11:55
PHP Optimization Advices
autoloader: https://symfony.com/doc/current/performance.html#performance-install-apcu-polyfill
@Deifinger
Deifinger / scripts.json
Last active September 3, 2019 20:43
Bash script is used for running nested named scripts from "scripts.json"
{
"scripts": {
"dc": "ls @l",
"l": "-l",
"pwd": "pwd",
"echo": "echo Monkey",
"another": "sudo @dc",
"docker": "docker ps"
}
}