<?php
# src/Controller/ParentController.php
namespace App\Controller;
use App\Entity\Product;
use Doctrine\ORM\EntityManagerInterface;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
View controller_inheritance_and_extension.md
View phpversion.sh
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
#!/bin/sh | |
printf "Switching php to version 5.6 with symlinks.\n" | |
printf "Press any key to continue...\n" | |
read CONTINUE | |
printf "Creating backups..." | |
# Backup original binaries |
View AccessChecker.php
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 | |
/** | |
* @Author Andrea Bergamasco <andrea@bergamasco.me> | |
* Inspired by @leotiger: https://gist.github.com/leotiger/ca496d1b16c30afea060904bd5e78714 | |
* | |
* Usage: | |
* $token = $this->security->getToken(); | |
* $this->accessChecker->userTokenCanAccessRoute($token, 'admin.index'); | |
*/ |
View artboard_sort.js
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
/** | |
Kudos to OMOTI | |
https://community.adobe.com/t5/illustrator/script-to-sort-artboard-list-alphabetically/m-p/9558396?page=1#M77799 | |
*/ | |
function sortArtboard() { | |
var doc = app.activeDocument, | |
properties = [], | |
i, | |
max; | |
View workflow.yaml
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
# Entity workflow - object names redacted | |
# A SuperUser can send an Entity to an Evaluator | |
# The Evaluator decides to optIn or optOut the request. They can change their mind until a timeout defined in the Entity. | |
# If Evaluator opts in, the Entity is then sent to the Recipient. | |
# The Recipient finally decides to accept or refuse | |
framework: | |
workflows: | |
Entity: | |
type: workflow | |
metadata: |
View SymfonyExtension debugging
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
$ composer require --dev friends-of-behat/symfony-extension:^2.0 | |
./composer.json has been updated | |
Loading composer repositories with package information | |
Updating dependencies (including require-dev) | |
Restricting packages listed in "symfony/symfony" to "4.3.*" | |
Nothing to install or update | |
Generating autoload files | |
ocramius/package-versions: Generating version class... | |
ocramius/package-versions: ...done generating version class | |
Executing script cache:clear [OK] |
View snipe-it-api-map.md
Snipe-IT API Map
Domain | Method | URI | Name | Action | Middleware |
---|---|---|---|---|---|
GET/HEAD | api/v1/accessories | api.accessories.index | App\Http\Controllers\Api\AccessoriesController@index | auth:api | |
POST | api/v1/accessories | api.accessories.store | App\Http\Controllers\Api\AccessoriesController@store | auth:api | |
GET/HEAD | api/v1/accessories/{accessory} | api.accessories.show | App\Http\Controllers\Api\AccessoriesController@show | auth:api | |
PUT/P |
View cleanup.bat
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
@echo Removing .DS_STORE... | |
DEL /S ".DS_STORE" | |
@echo ...OK | |
@echo. | |
@echo Removing Thumbs.db... | |
DEL /S /AH "Thumbs.db" | |
@echo ...OK | |
@echo. | |
@echo Removing __MACOSX... | |
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d __MACOSX') do ( rd /s /q "%%i") |
View charconv.py
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
import glob | |
import re | |
import os | |
path = 'puntata*/**/BLOCCO*/*.mp3' | |
def repair_filename(filename): | |
repair = { | |
'´╝ê': '(', # U+0028 LEFT PARENTHESIS |
View quote_escaping_example.lua
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
--[[ | |
I am struggling to find the best way to nest quotes while developing grandma2 plugins in LUA | |
This example shows the best solution i've found so far (ESCAPED SiNGLE QUOTES), but unfortunately | |
the command line doesn't like single quotes either. Any suggestion? | |
--]] | |
function quote_escaping_example() | |
gma.echo("Quote escaping example") | |
gma.cmd('Store Sequence 1.1 "QUOTE ESCAPING"'); |
NewerOlder