- Анализ логов с целью выявления системных ошибок различного уровня
- Анализ истории версионного контроля в период от 10-дневной давности с целью установить вносились ли изменения, способные затронуть указаный функционал
- При наличии функциональных тестов - принудительный запуск
- Откатка к различным коммитам на dev-машине, с целью определить состояние, когда система работала стабильно
- Если найдена программная ошибка - то следует дальнейшая подготовка hotfix
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
product_id | amount_total | |
------------+-------------- | |
303729 | 0.174 | |
303730 | 21.273 | |
303732 | 5.803 | |
303733 | 23.114 | |
306641 | 70.000 | |
303665 | 1501.000 | |
303666 | 70.426 | |
303669 | 234.784 |
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
server { | |
listen 80; | |
server_name orders-service.su; | |
root /home/andrey/projects/orders2; | |
proxy_intercept_errors on; | |
location "/" { | |
include fastcgi_params; | |
fastcgi_pass unix:/run/php/php5.6-fpm.sock; | |
fastcgi_index index.php; |
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
server { | |
listen 80; | |
listen [::]:80; | |
root /home/andrey/projects/hypermarket/web; | |
server_name hypermarket3.loc; | |
location / { | |
# try to serve file directly, fallback to app.php |
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
# Тестовый пример на подсчет аггрегаций | |
SELECT g.* | |
FROM goods AS g | |
JOIN (SELECT tg.goods_id | |
FROM tags_goods AS tg | |
GROUP BY tg.goods_id | |
HAVING COUNT(tg.tag_id) = (SELECT COUNT(*) AS t_count | |
FROM tags AS t)) AS res ON res.goods_id = g.id; | |
# Вставка из генератора |
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
ProductEntity {#8906 ▼ | |
#productId: 1860 | |
#assortmentInitId: 107199 | |
#productName: "Хилак форте" | |
#fullName: "Хилак форте капли для приема внутрь флакон-капельница темного стекла 100 мл №1" | |
#retailProductCode: 1860 | |
#productDescription: "капли для приема внутрь флакон-капельница темного стекла 100 мл №1" | |
#manufacturerName: "Амальгама Люкс ООО" | |
#manufacturerCountryName: "Украина" | |
#isVital: false |
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
[ | |
{ | |
"searchSettings": { | |
"keywords": "тест, яблоко, пюре", | |
"keywordsInherit": true | |
}, | |
"catalogSettings": { | |
"title": "[title] в нашем городе", | |
"titleInherit": true, | |
"keywords": "[title] категория во всех регионах", |
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
[s6-init] making user provided files available at /var/run/s6/etc...exited 0. | |
[s6-init] ensuring user provided files have correct perms...exited 0. | |
[fix-attrs.d] applying ownership & permissions fixes... | |
[fix-attrs.d] done. | |
[cont-init.d] executing container initialization scripts... | |
[cont-init.d] 01-import-geobase: executing... | |
[cont-init.d] 01-import-geobase: exited 0. | |
[cont-init.d] 02-configure-hm3: executing... | |
/var/run/s6/etc/cont-init.d/02-configure-hm3: line 41: [: ==: unary operator expected | |
/var/run/s6/etc/cont-init.d/02-configure-hm3: line 43: [: !=: unary operator expected |
Роман
- Программирование анализа видео с сохранением эмоционального портрета через API
- Программирование анализа аудио с проверкой распознанного текста в формате вопрос-ответ. Тех. вводная:
- advblog/app/Services/TaskAnalyzers - данная директория содержит пример и интерфейс анализатора. На вход метода analyze() подается id ответа пользователя из видео интервью.
- В таблице с ответами: https://i.imgur.com/0HGggJO.jpg есть информация о пути до файла с видео.
- Для эмоционального портрета нужно использовать какое-нибудь API:
- https://azure.microsoft.com/en-us/services/cognitive-services/face/ - бесплатный триал, есть оценка эмоций.
- https://www.faceplusplus.com/face-detection/ - бесплатный триал, есть оценка эмоций.
Командный бриф.
1. http://hakaton-kaliningrad.ru/interview - набросал самую основу прототипа. Работает только под FireFox (нужна веб-камера+микрофон) на компе (linux/windows) и под fireFox на Android (при запросе доступа к камере - включайте фронтальную).Суть сценария:
- пользователь проходит первичное собеседование без участия человека. Это экономит время рекрутера, отсеивая при большом потоке часть кандидатов и вычленяя потенциально лучших.
- для демонстрации предлагается вакансия в сетевом отеле
- для прохождения теста необходимо читать текст на английском языке
NewerOlder