<?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;
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
#!/bin/sh | |
git config --global init.defaultBranch main | |
git config --global merge.ff only | |
git config --global alias.l "log --pretty=format:'%C(auto,yellow)%h%C(auto,magenta)% %C(auto,blue)%>(12,trunc)%ad %C(auto,green)%<(7,trunc)%aN%C(auto,reset)%s%C(auto,red)% %C(auto)%gD %D' --date=relative --decorate -20" | |
git config --global alias.last "log --oneline -1" | |
git config --global alias.s "status -s -b" | |
git config --global alias.a "add ." | |
git config --global rerere.enabled 1 | |
git config --global core.pager 'less -FRX' | |
git config --global push.autoSetupRemote true |
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
#!/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 |
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
/** | |
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; | |
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 | |
/** | |
* @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'); | |
*/ |
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
# 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: |
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
$ 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] |
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 |
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
@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") |
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
import glob | |
import re | |
import os | |
path = 'puntata*/**/BLOCCO*/*.mp3' | |
def repair_filename(filename): | |
repair = { | |
'´╝ê': '(', # U+0028 LEFT PARENTHESIS |
NewerOlder