commit 4f67ef0817a01d4df502ce2156872ec2f18ac192
parent e710c0fe53f10408f3ace6a74a981e9b6218481f
Author: Christian Ermann <christianermann@gmail.com>
Date: Sat, 13 Jun 2020 20:55:03 -0600
More content/better descriptions
Diffstat:
2 files changed, 33 insertions(+), 10 deletions(-)
diff --git a/index.html b/index.html
@@ -4,11 +4,9 @@
<meta charset="utf-8"/>
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
-
+ <meta name="author" content="Christian Ermann"/>
<title>Christian Ermann</title>
-
<link rel="stylesheet" href="styles.css"/>
-
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Rokkitt:wght@300&display=swap"/>
</head>
@@ -22,9 +20,22 @@
<div id="about" class="vertical">
<h2>About me:</h2>
<img src="images/profile.jpg" alt="Profile of Christian Ermann"/>
- <p>I'm a junior at Lewis & Clark College with a passion for math,
- physics, and computer science. In addition to academics, I also
- compete on the L&C Men's Varsity Crew Team.</p>
+ <p>
+ I'm a junior at Lewis & Clark College with a passion for math,
+ physics, and computer science. My main focus is always my
+ coursework, but I enjoy being involved outside of the classroom as
+ well. I joined the rowing team my first semester of college and I
+ have competed on the L&C Men's Varsity Crew Team each semester
+ since, with teammates who quickly became great friends. Since the
+ beginning of my sophomore year, I've worked both as a STEM tutor,
+ helping other students to prepare for upcoming exams and understand
+ assignments, and as a lab assistant, aiding other students in
+ understanding physics principles through experimentation, alongside
+ various professors. Aside from math and physics, I've also taken
+ three semesters of Mandarin and plan to study abroad in the spring
+ of 2021 in a language intensive program at National Taiwan
+ University in Taipei.
+ </p>
</div>
</div>
@@ -35,13 +46,21 @@
<ul>
<li>
<a href="https://github.com/c2000e/Polygonize">Polygonize</a>
- <p class="indent">Evolve images with OpenGL</p>
+ <p class="indent">
+ Evolve "stained glass" recreations of images using a
+ combination of OpenGL's traditional rendering pipeline and
+ compute shaders.
+ </p>
</li>
<li>
- <a href="https://github.com/c2000e/c2000e.github.io">
- My Website
+ <a href="https://github.com/c2000e/MarchingCubesReference">
+ Marching Cubes
</a>
- <p class="indent">See what's behind this webpage</p>
+ <p class="indent">
+ A simple implementation of the marching cubes algorithm in C++
+ that I plan to use as a stepping stone to build a more complex
+ version that utilizes the GPU.
+ </p>
</li>
<li>
<a href="https://github.com/c2000e">All Projects</a>
diff --git a/styles.css b/styles.css
@@ -63,6 +63,7 @@ h2 {
#left {
width: 50%;
+ padding-right: 10px;
display: flex;
flex-direction: column;
flex: 1 1 auto;
@@ -77,6 +78,7 @@ h2 {
#right {
width: 50%;
+ padding-left: 10px;
display: flex;
flex: 1 1 auto;
justify-content: flex-end;
@@ -119,10 +121,12 @@ h2 {
#left {
width: 100%;
+ padding: 0;
}
#right {
width: 100%;
+ padding: 0;
justify-content: flex-start;
}