-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (79 loc) · 3.26 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
89
90
91
92
93
94
95
96
{% from 'work-entry.html' import work_entry %}
{% from 'personal-project.html' import project_entry %}
{% from 'tech-used.html' import tech_used %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sasha Chedygov's CV</title>
<link rel="stylesheet" href="https://brick.a.ssl.fastly.net/Raleway:400,600,700,900:f/Open+Sans:400,600" />
{# style.css generated from style.less #}
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
</head>
<body>
<header>
<div class="inner">
<h1 id="name">Sasha Chedygov<span class="cv-suffix">'s CV</span></h1>
<ul id="links">
<li class="link">
<a href="mailto:sasha@chedygov.com">Email</a>
</li>
<!-- TODO: Uncomment this once access to my LinkedIn is restored. -->
<!--
<li class="separator"></li>
<li class="link">
<a href="https://www.linkedin.com/in/sasha-chedygov-01173a270/">LinkedIn</a>
</li>
-->
<li class="separator"></li>
<li class="link">
<a href="https://github.com/russiancow">GitHub</a>
</li>
<li class="separator"></li>
<li class="link">
<a href="http://stackoverflow.com/users/104184/sasha-chedygov">
Stack Overflow
</a>
</li>
</ul>
</div>
</header>
<main>
<section id="blurb">
<h1>Who Am I?</h1>
<p>
I am a <strong>full-stack</strong> software engineering leader with a track record of delivering <strong>robust, reliable</strong> products with <strong>great user experiences</strong>. I've been writing code for over 20 years and doing it full-time for 13. Most of my experience is with web technologies, but I take pride in being <strong>well-rounded</strong> and an extremely <strong>quick learner</strong>.
</p>
</section>
<section id="tech-experience">
<h1>Tech Experience</h1>
{% for tech_type in tech_experience %}
<div>
<h3>{{ tech_type.label }}:</h3>
{{ tech_used(tech_type.tech) }}
</div>
{% endfor %}
</section>
<section id="work-experience">
<h1>Work Experience</h1>
{% for entry in work_experience %}
{{ work_entry(entry) }}
{% endfor %}
</section>
</main>
<footer>
<p>
This CV automatically generated by my <a href="https://github.com/russiancow/cv-builder">cv-builder</a> tool.
</p>
<p>
Last updated {{ last_updated }}.
</p>
</footer>
<!-- Keyword matching for dumb resume filters -->
<div class="not-for-humans">
Keywords: Postgres, Flask, Ruby on Rails, Amazon Web Services, GCP, Google Cloud, Express, Java, Scala, Kotlin, JVM, Objective-C, Swift, .NET, dotnet, C#, C Sharp, management, database, scaling, performance, startups, CTO
</div>
</body>
</html>