-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (89 loc) · 3.24 KB
/
Copy pathindex.html
File metadata and controls
94 lines (89 loc) · 3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Резюме</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>FarLine99</h1>
<p class="role">Backend разработчик</p>
<div class="contact-links">
<a href="https://github.com/farline99">GitHub</a>
<a href="mailto:farline99@yandex.ru">Email</a>
</div>
</header>
<section>
<h2>О себе</h2>
<p>
Работал с проектами на C#/PostgreSQL/Windows Forms, Java/Maven, React/Redux. Открыт к изучению новых технологий.
</p>
</section>
<section>
<h2>Навыки</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Языки</h3>
<ul>
<li>C++</li>
<li>C#</li>
<li>JavaScript/HTML/CSS</li>
</ul>
</div>
<div class="skill-category">
<h3>Технологии</h3>
<ul>
<li>React</li>
<li>Node.js</li>
<li>Git</li>
</ul>
</div>
<div class="skill-category">
<h3>Инструменты</h3>
<ul>
<li>VS Code</li>
<li>IntelliJ IDEA</li>
<li>Docker</li>
</ul>
</div>
</div>
</section>
<section>
<h2>Образование</h2>
<div class="experience-item">
<div class="experience-header">
<h3>Бакалавр, Информатика</h3>
<span class="period">2017 – 2021</span>
</div>
<p class="company">Технический университет</p>
</div>
<div class="experience-item">
<div class="experience-header">
<h3>Изучение C++</h3>
<span class="period">2015 – 2017</span>
</div>
<p class="company">Курсы по программированию</p>
</div>
</section>
<section>
<h2>Проекты</h2>
<div class="project">
<h3>
<a href="https://github.com/farline99/KotlinTranslator">
KotlinTranslator
</a>
</h3>
<p>
Проект, нацеленный на трансляцию Kotlin программы в промежуточный русский псевдоязык. Технологии - C# и Windows Forms.
</p>
</div>
</section>
<footer>
<p>Обновлено: октябрь 2025</p>
</footer>
</div>
</body>
</html>