-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (80 loc) · 3.04 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="resume.css" />
<title>Aleksey Zubkov | Frontend Engineer</title>
</head>
<body>
<header class="resume-header">
<h1 class="resume-header__name">Aleksey Zubkov</h1>
<h2 class="resume-header__position">Frontend Engineer</h2>
<a class="resume-header__github" href="https://github.com/ayveezub">github.com/ayveezub</a>
<a class="resume-header__email" title="Response: 7:00-17:00 UTC"
href="mailto:ayveezub@gmail.com">ayveezub@gmail.com</a>
<div class="resume-header__intro">
I am a frontend engineer writing vanilla JS using ESNext features and Vue 2/3 with Composition API.
<ul>
<li>
Examples in vanilla JS can be found on <a href="https://exercism.org/profiles/ayveezub/solutions?order=newest_first">my exercism.io profile</a>
</li>
<li>
Vue 3 demo: open source <a href="https://github.com/rusty-cluster/market-vue">b2b platform</a>, where I am in charge of retailer role
</li>
</ul>
For my pet projects, I prefer to use functional programming, but I'm always ready to learn team technologies.
</div>
</header>
<main class="resume">
<div class="resume-keyskills">
<h2>Key Skills</h2>
</div>
<div class="resume-frontend">
<h3>Frontend</h3>
<ul>
<li>JavaScript ES10</li>
<li>Vue 3, Composition API</li>
<li><a href="https://en.bem.info/methodology/">BEM</a>, CSS Grid, Flexbox</li>
<li>TDD with Vitest/MSW</li>
</ul>
</div>
<div class="resume-backend"></div>
<div class="resume-devops"></div>
<div class="resume-history">
<h2>Working History</h2>
</div>
<div class="resume-history__last">
<h3>Sep 2021 - Feb 2022: Upwork (Vue/vanilla JS frontend)</h3>
<ul>
<li>layout from Figma to Vue components</li>
<li>refactoring large components using ES modules</li>
<li>writing unit tests with Jest/MSW</li>
</ul>
</div>
<div class="resume-history__second"></div>
<div class="resume-history__first"></div>
<div class="resume-git">
<h2>Github</h2>
</div>
<div class="resume-git__last">
<a href="https://github.com/rusty-cluster/market-vue" target="_blank">
<h3>Open source b2b platform</h3>
<img class="resume-image" src="images/market-vue.png" alt="" />
</a>
</div>
<div class="resume-git__second">
<a href="https://github.com/ayveezub/exercism/tree/master/js" target="_blank">
<h3>Completed exercises on Exercism</h3>
<img class="resume-image" src="images/exercism-ayveezub.png" alt="" />
</a>
</div>
<div class="resume-git__first">
<a href="https://ayveezub.github.io/simple-blog-vue/" target="_blank">
<h3>A simple blog with Vue Router</h3>
<img class="resume-image" src="images/simple-blog-vue.png" alt="" />
</a>
</div>
</main>
</body>
</html>