Update resume to match site

This commit is contained in:
Danila Fedorin 2020-05-11 01:23:08 -07:00
parent 7c103f5ae2
commit c2d7672a69
2 changed files with 35 additions and 20 deletions

View File

@ -23,6 +23,8 @@
</div> </div>
</header> </header>
<hr>
<main> <main>
<div class="horizontal-list"> <div class="horizontal-list">
<section style="flex-basis: 45%;"> <section style="flex-basis: 45%;">
@ -82,16 +84,16 @@
<h1>Publications</h1> <h1>Publications</h1>
<div class="section-content"> <div class="section-content">
Co-Author: J&aacute;come Cunha, Mihai Dan, Martin Erwig, Danila Fedorin, Alex Grejuc: <em>Explaining spreadsheets with spreadsheets (short paper).</em> GPCE 2018: 161-167 J&aacute;come Cunha, Mihai Dan, Martin Erwig, <strong>Danila Fedorin</strong>, Alex Grejuc: <em>Explaining spreadsheets with spreadsheets (short paper).</em> GPCE 2018: 161-167
</div> </div>
</section> </section>
<section> <section>
<h1>Technical Experience</h1> <h1>Experience</h1>
<div class="section-content"> <div class="section-content">
<div class="position"> <div class="position">
<h2>Research Assistant</h2> <h2>Research Assistant, Programming Language Theory</h2>
<div class="position-location">Oregon State University | Spring 2018 - Present</div> <div class="position-location">Oregon State University, Corvallis, OR | Spring 2018 - Present</div>
<ul> <ul>
<li>Devised and implemented language to explain behavior of spreadsheets to new users.</li> <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>Developed tooling in Haskell to verify, generate, and debug the explanation language.</li>
@ -112,10 +114,9 @@
</div> </div>
<div class="position"> <div class="position">
<h2>Undergraduate Teaching Assistant</h2> <h2>Undergraduate Teaching Assistant, Programming Language Theory</h2>
<div class="position-location">Oregon State University | Winter 2020 - Spring 2020</div> <div class="position-location">Oregon State University, Corvallis, OR | Winter 2020 - Spring 2020</div>
<ul> <ul>
<li>Helped run Oregon State University's Programming Language Theory course.</li>
<li>Engaged in weekly question-and-answer sessions regarding course topics.</li> <li>Engaged in weekly question-and-answer sessions regarding course topics.</li>
<li>Aided students in implementing a final project in the form of a custom programming language.</li> <li>Aided students in implementing a final project in the form of a custom programming language.</li>
<li>Proctored quizzes and exams for over 200 students.</li> <li>Proctored quizzes and exams for over 200 students.</li>
@ -125,7 +126,7 @@
<div class="position"> <div class="position">
<h2>Lead Programmer</h2> <h2>Lead Programmer</h2>
<div class="position-location">Northwest Advanced Programming Workshop | Summer 2017</div> <div class="position-location">Northwest Advanced Programming Workshop, Portland, OR | Summer 2017</div>
<ul> <ul>
<li>Designed and implemented a desktop calculator application with a focus on usability and feature-completeness.</li> <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>Worked on a variety of components, including parsing input through a custom regular expression engine, evaluating expressions through Taylor Series, and UI design.</li>
@ -137,7 +138,7 @@
<div class="position"> <div class="position">
<h2>Game Developer</h2> <h2>Game Developer</h2>
<div class="position-location">Oregon Game Project Challenge | Spring 2016 and 2017 </div> <div class="position-location">Oregon Game Project Challenge, Portland, OR | Spring 2016 and 2017 </div>
<ul> <ul>
<li>Worked in a team to complete video game to be presented at main event.</li> <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>Created a game engine from scratch using Entity Component Systems architecture.</li>
@ -152,7 +153,7 @@
<div class="section-content"> <div class="section-content">
<ul> <ul>
<li><em>Honor Roll (every academic term)</em> — Awarded to students maintaining a full credit load and a GPA above 3.5.</li> <li><em>Honor Roll (every academic term)</em> — Awarded to students maintaining a full credit load and a GPA above 3.5.</li>
<li><em>IB Diploma Scholarship</em> — $1,000/term scholarship awarded to recipients of the IB Diploma.</li> <li><em>International Baccalaureate Diploma Scholarship</em> — $1,000/term scholarship awarded to recipients of the IB Diploma.</li>
<li><em>Finalist</em> — Google Code-In 2016, online competition in which participants <li><em>Finalist</em> — Google Code-In 2016, online competition in which participants
complete tasks for open-source projects.</li> complete tasks for open-source projects.</li>
</ul> </ul>

View File

@ -1,14 +1,15 @@
@import url('https://fonts.googleapis.com/css?family=EB+Garamond|Raleway'); @import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Raleway:ital,wght@0,400;0,700;1,400;1,700&display=swap');
$text-font: 'Raleway'; $text-font: 'Raleway';
$big-font: 'Raleway'; $big-font: 'Raleway';
$color-main: #36e281; $color-main: #36e281;
$color-secondary: darken($color-main, 10%); $color-secondary: $color-main;
$color-link: $color-secondary; $color-link: black;
$color-text: black; $color-text: black;
a { a {
color: $color-link; color: $color-link;
border-bottom: solid 2px $color-main;
text-decoration: none; text-decoration: none;
} }
@ -41,8 +42,17 @@ header {
margin-bottom: 10px; margin-bottom: 10px;
} }
hr {
width: 90%;
margin: auto;
background-color: $color-main;
border: none;
border-radius: 1.5px;
height: 3px;
}
div.name { div.name {
font-size: 1.25em; font-size: 1.7em;
margin: 15px; margin: 15px;
font-family: $big-font, serif; font-family: $big-font, serif;
} }
@ -50,15 +60,16 @@ div.name {
h1 { h1 {
font-size: 1.25em; font-size: 1.25em;
font-family: $big-font, serif; font-family: $big-font, serif;
font-weight: normal; font-weight: 600;
margin: 10px; margin: 10px;
margin-bottom: 2.5px; margin-bottom: 2.5px;
color: $color-secondary; display: inline-block;
padding-bottom: 0.2em;
} }
h2 { h2 {
font-size: 1.2em; font-size: 1.2em;
font-weight: normal; font-weight: 500;
margin-bottom: 0px; margin-bottom: 0px;
margin-top: 0px; margin-top: 0px;
} }
@ -69,14 +80,12 @@ ul {
} }
div.contact { div.contact {
background-color: $color-main;
color: white;
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
div.contact-item { div.contact-item {
padding: 10px; padding: 5px;
padding-left: 20px; padding-left: 20px;
padding-right: 20px; padding-right: 20px;
display: flex; display: flex;
@ -109,6 +118,7 @@ div.project-container {
a.project-link { a.project-link {
color: $color-text; color: $color-text;
border: none;
font-weight: bold; font-weight: bold;
display: flex; display: flex;
align-items: center; align-items: center;
@ -129,6 +139,10 @@ div.section-content {
div.position { div.position {
margin-bottom: 10px; margin-bottom: 10px;
&:last-child {
margin-bottom: 0px;
}
} }
div.position-location { div.position-location {