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
#!/usr/bin/node | |
/** | |
* @file | |
* NodeJS/Puppeteer скрипт для экспорта персональных списков с КиноПоиска в CSV. | |
* | |
* Команда: | |
* node kinopoisk-list-export.js url [путь-к-файлу.csv] | |
* | |
* Поддерживаемые списки и URL: | |
* - Оценки + просмотры пользователя. Пример URL для использования в командной |
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
name: drupal-test | |
recipe: drupal9 | |
config: | |
webroot: . | |
php: 8.1 | |
services: | |
appserver: | |
build_as_root: | |
# Install nodejs and yarn in the main container. They have to live here | |
# because PHP is required for the site installation and other ops in |
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-generated directories. | |
/vendor/ | |
/web/core/ | |
/web/libraries/ | |
/web/modules/contrib/ | |
/web/profiles/contrib/ | |
/web/themes/contrib/ | |
/drush/Commands/contrib/ | |
# Scaffold files. |
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 | |
/** | |
* Provides a base class for all batches. | |
*/ | |
abstract class BatchBase { | |
/** | |
* Batch machine name. | |
* |
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 | |
/** | |
* Defines the renewable persistent database lock backend. | |
*/ | |
class RenewablePersistentDbLockBe { | |
/** | |
* Lock token identifier. | |
* |
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
Drupal\Core\Field\TypedData\FieldItemDataDefinition->getPropertyDefinitions() (Line: 50) | |
Drupal\Core\Field\FieldItemBase->__construct(Object, 0, Object) (Line: 46) | |
Drupal\Core\TypedData\TypedData::createInstance(Object, 0, Object) (Line: 91) | |
Drupal\Core\TypedData\TypedDataManager->createInstance('field_item:entity_reference', Array) (Line: 103) | |
Drupal\Core\TypedData\TypedDataManager->create(Object, NULL, 0, Object) (Line: 187) | |
Drupal\Core\TypedData\TypedDataManager->getPropertyInstance(Object, 0, '1') (Line: 82) | |
Drupal\Core\Field\FieldTypePluginManager->createFieldItem(Object, 0, '1') (Line: 40) | |
Drupal\Core\Field\FieldItemList->createItem(0, '1') (Line: 66) | |
Drupal\Core\TypedData\Plugin\DataType\ItemList->setValue(Array, ) (Line: 118) | |
Drupal\Core\Field\FieldItemList->setValue(Array, ) (Line: 195) |
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 | |
/** | |
* @file | |
* Analogue of JS Unsigned Right Shift Operator (>>>). | |
*/ | |
/** | |
* Shifts $int in binary representation $steps (< 32) bits to the right, | |
* discarding bits shifted off, and shifting in zeros from the left. |