Initial commit

This commit is contained in:
Serghei Cebotari 2023-12-06 22:56:56 +03:00
commit 4adedcaeda
25 changed files with 320 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
**/public
**/themes
.hugo_build.lock
*.ps1

7
archetypes/education.md Normal file
View File

@ -0,0 +1,7 @@
---
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
degree: Degree
location: City
start_date: '{{ .Date }}'
end_date :
---

8
archetypes/experience.md Normal file
View File

@ -0,0 +1,8 @@
---
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
weight: 1
workplace: Workplace
location: City
start_date: '{{ .Date }}'
end_date :
---

7
archetypes/projects.md Normal file
View File

@ -0,0 +1,7 @@
---
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
weight: 1
tags: ["Hugo", "HTML", "CSS"]
start_date: '{{ .Date }}'
end_date :
---

5
archetypes/skills.md Normal file
View File

@ -0,0 +1,5 @@
---
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
weight: 1
tags: ["Hugo", "HTML/CSS"]
---

14
config.toml Normal file
View File

@ -0,0 +1,14 @@
baseURL = "http://cebotari.ru/"
languageCode = "ru-ru"
defaultContentLanguage = "ru"
title = "Сергей Чеботарь: резюме"
disableKinds = ["taxonomy", "taxonomyTerm", "category", "sitemap", "RSS", "404", "robotsTXT"]
[Params]
Name = "Сергей Чеботарь"
Description = "Резюме Сергея Чеботаря на должность стажера .NET по направлению backend"
Telegram = "serghei_cebotari"
EMail = "serghei@cebotari.ru"
Website = "cebotari.ru"
Gitea = "gitea.cebotari.ru"
favicon = "images/favicon.png"

View File

@ -0,0 +1,7 @@
---
title: КубГТУ, ФНГЭиБ
degree: Инженер-теплоэнергетик
location: Краснодар, РФ
start_date: 2006-09-01
end_date : 2011-06-01
---

View File

@ -0,0 +1,10 @@
---
title: Инженер отдела продаж
weight: 1
workplace: ООО РЕХАУ
location: Краснодар, РФ
start_date: 2011-06-01
end_date :
---
- Разработал специализированную надстройку для Excel для нужд рабочего процесса отдела продаж
- Провел обучение коллег по всей России в виде вебинара в целях внедрения разработанного ПО

View File

@ -0,0 +1,6 @@
---
title: "Hugos Resume"
date: 2023-12-04T21:11:20Z
draft: true
---

View File

@ -0,0 +1,12 @@
---
title: 'mydarlingunderwear.ru'
weight: 2
tags: ["ASP.NET", "Entity Framework", "Bootstrap", "Docker"]
start_date: 2023-01-31
end_date :
---
- Разработал сайт-лендинг для малого бизнеса на основе HTML5 темы Bootstrap
- Спроектировал базу данных для сайта и реализовал основные CRUD-операции через Entity Framework
- Реализовал кабинет администратора для заполнения страницы карточками продукции
- Обеспечил процесс аутентификации и авторизации средствами фреймворка
- Развернул приложение в Docker-образе на VPS на собственном домене

View File

@ -0,0 +1,12 @@
---
title: 'RhSolutions AddIn'
weight: 1
tags: [".NET", "ASP.NET", "Entity Framework", "PostgreSQL", "ML.NET", "Docker"]
start_date: 2021-11-11
end_date :
---
- Разработал специализированную надстройку Excel для нужд отдела продаж
- Разработал PostgreSQL БД артикулов для полнотекстового поиска
- Реализовал REST API для заполнения базы данных с помощью парсинга xls-таблиц с помощью ClosedXML
- Создал ML-модель для мультиклассовой классификации названий артикулов для улучшения поиска в БД
- Обработка заявок и коммерческих предложений сократилась с есятков минут_ до нажатия _одной кнопки_

View File

@ -0,0 +1,5 @@
---
title: 'Инструменты разработчика'
weight: 3
tags: ["Visual Studio", "VSCode", "Docker", "Git", "Linux"]
---

View File

@ -0,0 +1,5 @@
---
title: 'Фреймворки'
weight: 2
tags: ["ASP.NET", "Entity Framework"]
---

View File

@ -0,0 +1,5 @@
---
title: 'Языки'
weight: 1
tags: ["C#", "SQL", "HTML/CSS"]
---

View File

@ -0,0 +1,5 @@
---
title: 'Библиотеки'
weight: 4
tags: ["ExcelDNA"]
---

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
<title>{{ .Site.Title }}</title>
<meta name="viewport" content="width=device-width">
<meta name=“description” content="{{ .Site.Params.Description }}"/>
<meta charset="utf-8" />
{{ partial "style.html" . }}
</head>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>

View File

View File

9
layouts/index.html Normal file
View File

@ -0,0 +1,9 @@
{{ define "main" }}
<section class="page">
{{ partial "sections/contacts.html" . }}
{{ partial "sections/projects.html" . }}
{{ partial "sections/skills.html" . }}
{{ partial "sections/education.html" . }}
{{ partial "sections/experience.html" . }}
</section>
{{ end }}

View File

@ -0,0 +1,17 @@
<div class="align-center">
<h1 class="name">{{ .Site.Params.Name }}</h1>
<div class="subtitle">
{{ with .Site.Params.Telegram }}
<a href="https://t.me/{{ . }}">@{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Email }}
<a href="mailto:{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Website }}
<a href="https://{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Gitea }}
<a href="https://{{ . }}">{{ . }}</a>
{{ end }}
</div>
</div>

View File

@ -0,0 +1,26 @@
{{ with .Site.GetPage "/education" }}
<h3>Образование</h3>
<table>
<tbody>
{{ range sort (.Pages) "Params.end_date" "desc" }}
<tr>
<td><strong>{{ .Title }}</strong></td>
<td class="align-right">{{ with .Params.location}}{{ . }}{{ end }}</td>
</tr>
<tr class="subtitle">
<td><em>{{ with .Params.degree}}{{ . }}{{ end }}</em>
</td>
<td class="align-right"><em>
{{ with .Params.start_date }}
{{ time.Format "Jan 2006" . }}
{{ end }}
{{ with .Params.end_date }}
{{ time.Format "Jan 2006" . }}
{{ else }}{{ "н.в." }}
{{ end }}</em>
</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}

View File

@ -0,0 +1,26 @@
{{ with .Site.GetPage "/experience"}}
<h3>Опыт работы</h3>
{{ range .Pages }}
<table>
<tbody>
<tr>
<td><strong>{{ .Title }}</strong></td>
<td class="align-right">
{{ with .Params.start_date }}
{{ time.Format "Jan 2006" . }}
{{ end }}
{{ with .Params.end_date }}
{{ time.Format "Jan 2006" . }}
{{ else }}{{ "н.в." }}
{{ end }}
</td>
</tr>
<tr class="subtitle">
<td><em>{{with .Params.workplace}}{{ . }}{{ end }}</em></td>
<td class="align-right"><em>{{ with .Params.location}}{{ . }}{{ end }}</em></td>
</tr>
</tbody>
</table>
{{ .Content }}
{{ end }}
{{ end }}

View File

@ -0,0 +1,24 @@
{{ with .Site.GetPage "/projects" }}
<h3>Проекты</h3>
{{ range .Pages }}
<table>
<tbody>
<tr>
<td><strong>{{ .Title }} </strong><span>|</span>
<em class="subtitle">{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em>
</td>
<td class="align-right">
{{ with .Params.start_date }}
{{ time.Format "Jan 2006" . }}
{{ end }}
{{ with .Params.end_date }}
{{ time.Format "Jan 2006" . }}
{{ else }}{{ "н.в." }}
{{ end }}
</td>
</tr>
</tbody>
</table>
{{ .Content }}
{{ end }}
{{ end }}

View File

@ -0,0 +1,8 @@
{{ with .Site.GetPage "/skills"}}
<h3>Ключевые навыки</h3>
<div class="skills">
{{ range .Pages }}
<strong>{{ .Title }}</strong>: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}<br />
{{ end }}
</div>
{{ end }}

View File

@ -0,0 +1,82 @@
<style type="text/css">
body {
font-family: Georgia, 'Times New Roman', Times, serif;
line-height: 120%;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
.page {
background: white;
display: block;
margin: 0 auto;
box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
width: 21cm;
height: 29.7cm;
padding: 1.2cm;
box-sizing: border-box;
}
ul {
margin: 0;
padding-left: 50px;
list-style-type: disc;
font-size: small;
}
.skills {
padding-left: 0;
margin-left: 2.5%;
font-size: small;
}
a {
color: black;
}
h1,
h3 {
margin-top: 5px;
margin-bottom: 5px;
font-weight: normal;
padding-bottom: 5pt;
}
h3 {
border-bottom-style: solid;
border-bottom-width: 1px;
}
h1.name {
font-size: xx-large;
font-weight: bold;
margin-bottom: 5px;
}
.subtitle {
font-size: small;
}
table {
margin-left: 5pt;
margin-right: 5pt;
width: 100%;
}
@media print {
body,
.page {
background: white;
margin: 0;
box-shadow: 0 0 0 white;
padding: 0;
}
}
</style>