From eff4d678e78eb07605df2a2970a3db24cfd0134b Mon Sep 17 00:00:00 2001 From: Dmitry Date: Mon, 18 May 2026 15:48:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D1=82=D0=B0=D0=BA=D1=82?= =?UTF-8?q?=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 1 + .gitignore | 1 + content/_index.md | 1 + content/about.md | 31 +++++++++++++++++++++++++++++++ hugo.toml | 32 ++++++++++++++++++++++++++++++-- 5 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 content/about.md diff --git a/.dockerignore b/.dockerignore index 5462e83..ce3bde1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,4 @@ .git public .hugo_build.lock +cv.pdf diff --git a/.gitignore b/.gitignore index 8dd6d56..36367e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ public/ .hugo_build.lock +cv.pdf diff --git a/content/_index.md b/content/_index.md index 70e1383..4df384e 100644 --- a/content/_index.md +++ b/content/_index.md @@ -4,4 +4,5 @@
Projects Notes + About
diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..090ce34 --- /dev/null +++ b/content/about.md @@ -0,0 +1,31 @@ ++++ +title = "About" +type = "page" ++++ + +DevSecOps-инженер и Ruby-разработчик. Студент НИЯУ МИФИ, специальность «Информационно-аналитические системы безопасности». + +## Открытые проекты + +- **[Mirror Bot](https://github.com/ada-dmitry/mirror_bot_tinv)** — Telegram-бот для зеркалирования торговых операций (T-Invest SDK) +- **[DCA Bot](https://github.com/ada-dmitry/dca_bot_tinv)** — бот для Dollar Cost Averaging через T-Invest SDK +- **[TG Monitor](https://github.com/ada-dmitry/tg-monitor)** — мониторинг и алерты по метрикам систем в Telegram +- **[Remote Control](https://github.com/ada-dmitry/remotecontrol)** — удалённое управление ПК + +## Образование + +- **НИЯУ МИФИ** (2022–2028) — Информационно-аналитические системы безопасности +- **Цифровая кафедра НИЯУ МИФИ** (2025) — Прикладной анализ данных +- **Летняя IT-школа КРОК** (2025) — System-инженер +- **Merion Academy** (2026) — Основы сетевых технологий + +**Языки:** русский (родной), английский (B2) + +## Контакты + + diff --git a/hugo.toml b/hugo.toml index 1aa2a23..9d8ca41 100644 --- a/hugo.toml +++ b/hugo.toml @@ -29,7 +29,17 @@ enableRobotsTXT = true transition: opacity 0.2s; } .home-nav a:hover { opacity: 1; } - .home-nav a svg { vertical-align: middle; margin-bottom: 2px; } + .home-nav a svg { vertical-align: middle; margin-bottom: 5px; } + + .about-contacts { + list-style: none; + padding: 0; + display: flex; + flex-direction: column; + gap: 0.5rem; + } + .about-contacts li { display: flex; align-items: center; gap: 0.5rem; } + .about-contacts svg { width: 16px; height: 16px; flex-shrink: 0; } .projects-list { display: flex; @@ -99,11 +109,29 @@ enableRobotsTXT = true ] [menu] + [[menu.main]] + identifier = "projects" + pre = "" + url = "/projects/" + weight = 2 + + [[menu.main]] + identifier = "notes" + pre = "" + url = "/posts/" + weight = 3 + + [[menu.main]] + identifier = "about" + pre = "" + url = "/about/" + weight = 4 + [[menu.main]] identifier = "github" pre = "" url = "https://github.com/ada-dmitry" - weight = 3 + weight = 5 [menu.main.params] NewPage = true