-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from alexxykv/release-site
Alpha version
- Loading branch information
Showing
9 changed files
with
284 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
# assessor | ||
# Assessor | ||
|
||
## Описание | ||
*Упрощение и ускорение поиска лучших кандидатов, их предварительной оценки по данным из резюме и открытых источников. | ||
После получения резюме в формате hh.ru или ФИО, требуемых технических навыков и личных качеств, сервис выполняет поиск данных о кандидате в соц. сетях, открытых репозиториях и тд. Полученные данные анализируются для оценки навыков и экспертизы. А также проверки соответствия личных качеств и ценностей приемлемым в коллективе.* | ||
|
||
## Цель | ||
*Скриннинг кандидата на вакансии ИТ по данным из резюме и из открытых источников (hh.ru, linkedin, habr, github, bitbucket.org, соц.сети и тд).* | ||
|
||
## Итоговый продукт | ||
*Web-сервис/Telegram-бот | ||
Оценка кандидата за разумное время (до 5 минут), предоставление развернутого отчета о навыках и личных качествах кандидата.* |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<div class="row g-3"> | ||
<div class="col-sm-6"> | ||
<p class="lead">Nickname: <a href="{{ codeforces.user.url }}">{{ codeforces.user.handle }}</a></p> | ||
<p class="lead">Rating: {{ codeforces.user.rating }}</p> | ||
<p class="lead">Max rating: {{ codeforces.user.maxRating }}</p> | ||
<p class="lead">Contribution: {{ codeforces.user.contribution }}</p> | ||
<p class="lead">Rank: {{ codeforces.user.rank }}</p> | ||
<p class="lead">Max rank: {{ codeforces.user.maxRank }}</p> | ||
</div><div class="col-sm-6"> | ||
<p class="lead">Blogs:</p> | ||
<ul> | ||
{% for blog in codeforces.blogs %} | ||
<li><a style="text-decoration: none;" href="{{ blog.url }}">{{ blog.title }}</a> - <i>{{ blog.rating }}</i> (rating)</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> |
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
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
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
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
Oops, something went wrong.