commit 2ec8cc9507826751b8595476136870d53c68a267 Author: Danila Fedorin Date: Sun Sep 23 19:21:46 2018 -0700 Initial commit. Create resume. diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..41dec18 --- /dev/null +++ b/css/style.css @@ -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 */ diff --git a/resume.html b/resume.html new file mode 100644 index 0000000..0f91980 --- /dev/null +++ b/resume.html @@ -0,0 +1,106 @@ + + + + Resume - Danila Fedorin + + + +
+
Danila Fedorin
+
+
+ +
5636 SW Avena Pl, Corvallis, OR, 97333
+
+
+ +
(503) 702 0929
+
+
+ +
danila.fedorin@gmail.com
+
+
+
+ +
+
+

Education

+
+ Oregon State University, Corvallis, OR
+ Bachelor of Science, Computer Science,
+ Expected June 2020 +
+
+
+

Technical Skills

+ +
+ Languages: Java, Kotlin, C, C++, JavaScript, Haskell, Python, Haxe
+ Operating Systems: MacOS, Linux
+ Additional Skills: Experience with compiler design, algorithm efficiency, + low-level development.
+
+
+
+

Technical Experience

+ +
+
+

Research Assistant

+
Oregon State University
+
    +
  • Devised and implemented language to explain behavior of spreadsheets to new users.
  • +
  • Developed tooling in Haskell to verify, generate, and debug the explanation language.
  • +
  • Contributed to research paper published to the International Conference on Generative Programming.
  • +
+
+ +
+

Lead Programmer

+
Northwest Advanced Programming Workshop
+
    +
  • Designed and implemented a desktop calculator application with a focus on usability and feature-completeness.
  • +
  • Worked on a variety of components, including parsing input through a custom regular expression engine, evaluating expressions through Taylor Series, and UI design
  • +
  • Profiled and debugged application in order to find inefficiencies, reducing computation time by 60%.
  • +
  • Led a small team using the git version control system.
  • +
  • Exercised public speaking and communication skills by reporting progress to supervisor and presenting to other teams.
  • +
+
+ +
+

Participant

+
Oregon Game Project Challenge
+
    +
  • Worked in a team to complete video game to be presented at main event.
  • +
  • Created a game engine from scratch using Entity Component Systems architecture.
  • +
  • Used OpenGL shaders and normal mapping to create 2D-shadow system.
  • +
  • Developed interaction between physical components (microcontrollers) and the video game for multi-user cooperation.
  • +
+
+ +
+

Finalist

+
Google Code In, Online Competition
+
    +
  • Worked with large open-source project written in C.
  • +
  • Interacted with other developers to set goals, merge changes, and run tests.
  • +
  • Improved quality of source code, reduced code repetition, and fixed bugs.
  • +
+
+
+
+
+

Community Service

+ +
+ Helped at Findley Elementary School Coding Club; taught young kids basic programming concepts through Scratch. +
+
+
+ + + + diff --git a/scss/style.scss b/scss/style.scss new file mode 100644 index 0000000..2a0ecf4 --- /dev/null +++ b/scss/style.scss @@ -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 { +}