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/bash | |
| MODULES_DIR="./modules" | |
| YEARS=5 | |
| SINCE=$(date -d "$YEARS years ago" +%Y-%m-%d) | |
| EXCLUDED_EMAILS='^(xxx@xxx\.org|yyy@yyy\.org)$' | |
| echo "Top contributors per module since $SINCE" | |
| echo "=========================================" |
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 | |
| use Framework\HttpClient; | |
| use Framework\Cache; | |
| use Framework\Response; | |
| use Framework\JsonResponse; | |
| class CalendarController | |
| { | |
| public function actionshow() { |
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 | |
| /* | |
| Задача: | |
| Необходимо спроектировать, используя высокоуровневые абстракции, модуль для анализа текста на наличие ссылок и выгрузки метаинформации для этих ссылок. | |
| На вход модуль получает любой текст, на выходе выдает массив ссылок с метаинформацией для них. | |
| Метаинформация для разных ссылок может содержать разные поля. | |
| Для начала должна быть поддержка следующих ссылок: |