sabat24
sabat24
My use case. I have got a simple thumbnail filter: ``` basic_thumbnail: filters: thumbnail: size: [570, 380] mode: outbound allow_upscale: true ``` I also allow my users to select the...
1. I created new Voter in _src\Menu\Voter_ directory. I was surprised that I didn't have to register that voter as a service in services.yaml. Voter just started to work without...
I created custom sort order method and initilized in that way ```js new Choices($(this)[0], { shouldSortItems: false, sorter: function (a, b) { let sortOrder = that.data('sortorder') || []; let aOrder...
I faced with a weird error. If I import flexslider as a node module like that ```import 'flexslider';``` or ```import 'flexslider/jquery.flexslider';``` I get an error as stated above. However if...
I installed the library and imported it to my srcipt by ``` import 'domurl'; ``` however when I load page I get mentioned error in console. Tested on Firefox 75.0...
My goal was to update turbo frames and other live components on my site as a result of some live action from another live component. Finally I managed how to...
### Symfony version(s) affected 5.4 ### Description I wanted to recreate schema for my Entity ```php $tableMetadata = $this->entityManager->getClassMetadata(Regulation::class); $schemaTool = new SchemaTool($this->entityManager); $schemaTool->dropSchema([$tableMetadata]); $schemaTool->createSchema([$tableMetadata]); ``` After running the above...

Right now you can only select courses you want to download. There should be an option to download all courses except provided.
```sh .PHONY: * cwd := $(patsubst %/,%,$(dir $(abspath $(firstword $(MAKEFILE_LIST))))) courses_pwd := ${COURSES} install: @docker run --rm -it -v $(cwd):/app -w /app composer:2.0.6 composer install run := docker run -it...