commit 6c396ffd22ba484f4dbf22027da9f69ae6d7cb68
parent 713c7bd0e2c3a4abdeb93808176d5ab7ce37f763
Author: Christian Ermann <christianermann@gmail.com>
Date: Wed, 6 Jan 2021 15:42:16 -0600
Added resume.
Diffstat:
3 files changed, 19 insertions(+), 8 deletions(-)
diff --git a/index.html b/index.html
@@ -18,6 +18,9 @@
<a href="https://github.com/c2000e?tab=repositories">
Projects
</a>
+ <a href="resume.pdf">
+ Resume
+ </a>
</h3>
</nav>
</div>
@@ -35,21 +38,21 @@
<ul>
<li class="project">
<h4>
- <a href="https://github.com/c2000e/marching_cubes">
- Marching Cubes
+ <a href="https://github.com/c2000e/quantum_leapfrog">
+ Quantum Leapfrog
</a>
</h4>
- <p>Render signed distance functions with the marching cubes
- algorithm. Utilizes OpenGL and C++.</p>
+ <p>A leapfrog integrator for the time-dependent
+ Schroedinger equation. Written in Python.</p>
</li>
<li class="project">
<h4>
- <a href="https://github.com/c2000e/Triangulate">
- Triangulate (WIP)
+ <a href="https://github.com/c2000e/marching_cubes">
+ Marching Cubes
</a>
</h4>
- <p>Draw points, lines, and polygons and then triangulate
- them. Written in C++.</p>
+ <p>Render signed distance functions with the marching cubes
+ algorithm. Utilizes OpenGL and C++.</p>
</li>
<li class="project">
<h4>
diff --git a/resume.pdf b/resume.pdf
Binary files differ.
diff --git a/styles.css b/styles.css
@@ -47,6 +47,10 @@ body {
align-self: center;
}
+#header a {
+ margin-left: 1em;
+}
+
#introduction {
margin-left: 1em;
margin-bottom: 2em;
@@ -95,5 +99,9 @@ body {
max-width: 400px;
width: 90%;
}
+
+ #header a {
+ margin-left: 0em;
+ }
}