Compare commits

..

No commits in common. "e19dff800faa20fd5e43173306f0ca219de53eec" and "db30141c089db02efec8b7754528b5ead183fb62" have entirely different histories.

2 changed files with 11 additions and 20 deletions

View File

@ -29,55 +29,49 @@
<section> <section>
<h1>Education</h1> <h1>Education</h1>
<div class="section-content"> <div class="section-content">
<em class="italic">Bachelor of Science</em>, Oregon State University, Major: Computer Science | Minor: Mathematics - Completed June 2020 • <em class="bold">4.0 GPA</em><br> <em class="italic">Bachelor of Science</em>, Major: Computer Science | Minor: Mathematics - Completed June 2020 • <em class="bold">4.0 GPA</em><br>
<em class="italic">Master of Science</em>, Oregon State University, Computer Science - Expected June 2022 <em class="italic">Master of Science</em>, Computer Science - Expected June 2022
</div> </div>
</section> </section>
<section> <section>
<h1>Skills</h1> <h1>Skills</h1>
<div class="section-content"> <div class="section-content">
<em class="italic">Programming Languages:</em> C, C++, Haskell, Elm, Crystal, Kotlin, Java, Python, JavaScript, Haxe<br> <em class="italic">Programming Languages:</em> C, C++, Haskell, Kotlin, Java, Python, JavaScript, Haxe<br>
<em class="italic">Languages:</em> English (native), Russian (native), French (conversational, DELF B1 certification) <br> <em class="italic">Languages:</em> English (native), Russian (native), French (conversational, DELF B1 certification) <br>
<em class="italic">Operating Systems:</em> MacOS, Linux<br>
<em class="italic">Additional Skills:</em> Compiler design, formal verification, algorithms, low-level development.<br> <em class="italic">Additional Skills:</em> Compiler design, formal verification, algorithms, low-level development.<br>
</div> </div>
</section> </section>
<section> <section>
<h1>Projects</h1> <h1>Projects</h1>
<div class="section-content"> <div class="horizontal-list section-content">
<div class="project-container"> <div class="project-container">
<a class="project-link" href="https://github.com/DanilaFe/abcs"> <a class="project-link" href="https://github.com/DanilaFe/abcs">
<h2>abcs</h2> <h2>abcs</h2>
<i data-feather="link" class="project-link-icon"></i> <i data-feather="link" class="project-link-icon"></i>
</a> &mdash; </a>
Calculator program with a complete embedded programming language. Calculator program with a complete embedded programming language.
</div> </div>
<div class="project-container">
<a class="project-link" href="https://dev.danilafe.com/Web-Projects/blog-static/src/branch/master/code/compiler">
<h2>bloglang</h2>
<i data-feather="link" class="project-link-icon"></i>
</a> &mdash;
Compiler for a purely functional, lazily evaluated language explained in-depth on my blog.
</div>
<div class="project-container"> <div class="project-container">
<a class="project-link" href="https://github.com/DanilaFe/chalk"> <a class="project-link" href="https://github.com/DanilaFe/chalk">
<h2>chalk</h2> <h2>chalk</h2>
<i data-feather="link" class="project-link-icon"></i> <i data-feather="link" class="project-link-icon"></i>
</a> &mdash; </a>
Compiler from a small imperative language into CHIP-8 bytecode. Compiler from a small imperative language into CHIP-8 bytecode.
</div> </div>
<div class="project-container"> <div class="project-container">
<a class="project-link" href="https://github.com/DanilaFe/pegasus"> <a class="project-link" href="https://github.com/DanilaFe/pegasus">
<h2>pegasus</h2> <h2>pegasus</h2>
<i data-feather="link" class="project-link-icon"></i> <i data-feather="link" class="project-link-icon"></i>
</a> &mdash; </a>
LALR parser generator currently supporting the C and Crystal languages. LALR parser generator currently supporting the C and Crystal languages.
</div> </div>
<div class="project-container"> <div class="project-container">
<a class="project-link" href="https://github.com/DanilaFe/Scylla"> <a class="project-link" href="https://github.com/DanilaFe/Scylla">
<h2>scylla</h2> <h2>scylla</h2>
<i data-feather="link" class="project-link-icon"></i> <i data-feather="link" class="project-link-icon"></i>
</a> &mdash; </a>
Elm-based purely functional front end for the Matrix chat protocol. Elm-based purely functional front end for the Matrix chat protocol.
</div> </div>
</div> </div>

View File

@ -40,7 +40,6 @@ body {
header { header {
text-align: center; text-align: center;
margin: auto; margin: auto;
margin-top: 25px;
margin-bottom: 10px; margin-bottom: 10px;
} }
@ -122,14 +121,12 @@ a.project-link {
color: $color-text; color: $color-text;
border: none; border: none;
font-weight: bold; font-weight: bold;
display: inline-flex; display: flex;
align-items: center; align-items: center;
} }
svg.project-link-icon { svg.project-link-icon {
height: 0.9em; height: 1em;
width: 0.9em;
margin-left: 0.25em;
} }
main { main {