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
| > fc-list : family style | awk -F':style=' '{print $1 ":style=" $2}' | awk -F',' '{print $1}' | sort | uniq | |
| AR PL UKai CN:style=Book | |
| AR PL UKai HK:style=Book | |
| AR PL UKai TW MBE:style=Book | |
| AR PL UKai TW:style=Book | |
| AR PL UMing CN:style=Light | |
| AR PL UMing HK:style=Light | |
| AR PL UMing TW MBE:style=Light | |
| AR PL UMing TW:style=Light |
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 | |
| declare(strict_types=1); | |
| namespace Utils\Rector\Rector; | |
| use PhpParser\Node; | |
| use PhpParser\Node\Param; | |
| use PhpParser\Node\Stmt\ClassMethod; | |
| use Rector\Rector\AbstractRector; |
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 | |
| /** | |
| * @param Twig_Environment $env - The Twig Environment - https://twig.symfony.com/api/1.x/Twig_Environment.html | |
| * @param $config - Config of `@basalt/twig-renderer` | |
| */ | |
| function addCustomExtension(\Twig_Environment &$env, $config) { | |
| $env->addExtension(new \Twig_Extension_Debug()); | |
| /** |
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
| /* eslint-disable no-underscore-dangle,prefer-rest-params */ | |
| import Flickity from 'flickity'; | |
| (() => { | |
| const oldFlickityCreate = Flickity.prototype._create; | |
| Flickity.prototype._create = function create() { | |
| const that = this; | |
| if (this.element.addEventListener) { |
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 | |
| /** | |
| * Color Input Editable | |
| */ | |
| namespace AppBundle\Model\Document\Tag; | |
| use Pimcore\Model\Document\Tag\Input; | |
| class Color extends Input |
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 | |
| /** | |
| * TranslateUpdateTrait | |
| */ | |
| use Doctrine\DBAL\Schema\Schema; | |
| /** | |
| * Class TranslateUpdateTrait | |
| * |
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
| /** | |
| * Provides get_localized_links function in the Twig. | |
| * | |
| * Class LanguageSwitcherExtension | |
| */ | |
| class LanguageSwitcherExtension extends \Twig_Extension | |
| { | |
| /** | |
| * Pimcore documents service which provide needed methods. | |
| * |
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
| ffmpeg -i file.mp3 -f segment -segment_time 7200 -c copy out%03d.mp3 | |
| # -segment_time in seconds |
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
| mogrify -strip -interlace Plane -format jpg -colorspace sRGB -quality 85 *.png |
NewerOlder