Initial commit. Create resume.

This commit is contained in:
Danila Fedorin 2018-09-23 19:21:46 -07:00
commit 2ec8cc9507
3 changed files with 241 additions and 0 deletions

58
css/style.css Normal file
View File

@ -0,0 +1,58 @@
@import url("https://fonts.googleapis.com/css?family=EB+Garamond|Raleway");
body {
margin: 0px;
padding: 0px;
font-family: "Raleway";
line-height: 1.3em;
font-size: 14px; }
header {
text-align: center;
margin: auto;
margin-bottom: 20px; }
div.name {
font-size: 1.25em;
margin: 25px;
font-family: "Raleway", serif; }
h1 {
font-size: 1.25em;
font-family: "Raleway", serif;
font-weight: normal;
margin: 10px;
color: #1dc868; }
h2 {
font-size: 1.1em;
font-weight: normal;
margin-bottom: 0px; }
div.contact {
background-color: #36e281;
color: white;
display: flex;
justify-content: center; }
div.contact-item {
padding: 10px;
padding-left: 20px;
padding-right: 20px;
display: flex;
align-items: center; }
div.contact-content {
padding-left: 5px;
font-weight: bold; }
main {
margin: auto;
max-width: 90%; }
div.section-content {
margin-left: 20px; }
div.position-location {
color: #4d4d4d; }
/*# sourceMappingURL=style.css.map */

106
resume.html Normal file
View File

@ -0,0 +1,106 @@
<html>
<head>
<script src="https://unpkg.com/feather-icons"></script>
<title>Resume - Danila Fedorin</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="name">Danila Fedorin</div>
<div class="contact">
<div class="contact-item">
<i data-feather="home" class="contact-content"></i>
<div class="contact-content">5636 SW Avena Pl, Corvallis, OR, 97333</div>
</div>
<div class="contact-item">
<i data-feather="phone" class="contact-content"></i>
<div class="contact-content">(503) 702 0929</div>
</div>
<div class="contact-item">
<i data-feather="mail" class="contact-content"></i>
<div class="contact-content">danila.fedorin@gmail.com</div>
</div>
</div>
</header>
<main>
<section>
<h1>Education</h1>
<div class="section-content">
Oregon State University, Corvallis, OR <br>
<em>Bachelor of Science</em>, Computer Science, <br>
Expected June 2020
</div>
</section>
<section>
<h1>Technical Skills</h1>
<div class="section-content">
<em>Languages:</em> Java, Kotlin, C, C++, JavaScript, Haskell, Python, Haxe<br>
<em>Operating Systems:</em> MacOS, Linux<br>
<em>Additional Skills:</em> Experience with compiler design, algorithm efficiency,
low-level development.<br>
</div>
</section>
<section>
<h1>Technical Experience</h1>
<div class="section-content">
<div class="position">
<h2>Research Assistant</h2>
<div class="position-location">Oregon State University</div>
<ul>
<li>Devised and implemented language to explain behavior of spreadsheets to new users.</li>
<li>Developed tooling in Haskell to verify, generate, and debug the explanation language.</li>
<li>Contributed to research paper published to the International Conference on Generative Programming.</li>
</ul>
</div>
<div class="position">
<h2>Lead Programmer</h2>
<div class="position-location">Northwest Advanced Programming Workshop</div>
<ul>
<li>Designed and implemented a desktop calculator application with a focus on usability and feature-completeness.</li>
<li>Worked on a variety of components, including parsing input through a custom regular expression engine, evaluating expressions through Taylor Series, and UI design</li>
<li>Profiled and debugged application in order to find inefficiencies, reducing computation time by 60%.</li>
<li>Led a small team using the git version control system.</li>
<li>Exercised public speaking and communication skills by reporting progress to supervisor and presenting to other teams.</li>
</ul>
</div>
<div class="position">
<h2>Participant</h2>
<div class="position-location">Oregon Game Project Challenge</div>
<ul>
<li>Worked in a team to complete video game to be presented at main event.</li>
<li>Created a game engine from scratch using Entity Component Systems architecture.</li>
<li>Used OpenGL shaders and normal mapping to create 2D-shadow system.</li>
<li>Developed interaction between physical components (microcontrollers) and the video game for multi-user cooperation.</li>
</ul>
</div>
<div class="position">
<h2>Finalist</h2>
<div class="position-location">Google Code In, Online Competition</div>
<ul>
<li>Worked with large open-source project written in C.</li>
<li>Interacted with other developers to set goals, merge changes, and run tests.</li>
<li>Improved quality of source code, reduced code repetition, and fixed bugs.</li>
</ul>
</div>
</div>
</section>
<section>
<h1>Community Service</h1>
<div class="section-content">
Helped at Findley Elementary School Coding Club; taught young kids basic programming concepts through Scratch.
</div>
</section>
</main>
<script>
feather.replace()
</script>
</body>
</html>

77
scss/style.scss Normal file
View File

@ -0,0 +1,77 @@
@import url('https://fonts.googleapis.com/css?family=EB+Garamond|Raleway');
$text-font: 'Raleway';
$big-font: 'Raleway';
$color-main: #36e281;
$color-secondary: darken($color-main, 10%);
$color-text: black;
body {
margin: 0px;
padding: 0px;
font-family: $text-font;
line-height: 1.3em;
font-size: 14px;
}
header {
text-align: center;
margin: auto;
margin-bottom: 20px;
}
div.name {
font-size: 1.25em;
margin: 25px;
font-family: $big-font, serif;
}
h1 {
font-size: 1.25em;
font-family: $big-font, serif;
font-weight: normal;
margin: 10px;
color: $color-secondary;
}
h2 {
font-size: 1.1em;
font-weight: normal;
margin-bottom: 0px;
}
div.contact {
background-color: $color-main;
color: white;
display: flex;
justify-content: center;
}
div.contact-item {
padding: 10px;
padding-left: 20px;
padding-right: 20px;
display: flex;
align-items: center;
}
div.contact-content {
padding-left: 5px;
font-weight: bold;
}
main {
margin: auto;
max-width: 90%;
}
div.section-content {
margin-left: 20px;
}
div.position-location {
color: lighten($color-text, 30%);
}
div.position ul {
}