-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add research page, clarify research interests
I also added papers/ to gitignore. I will update that at a later date.
- Loading branch information
Showing
5 changed files
with
64 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.DS_Store | ||
values.html | ||
research.html | ||
papers/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" href="styles/index.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Alex Dean</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="front-page"> | ||
<div class="page-navigation"> | ||
<a href="books.html">Books</a> <br/> | ||
<a href="engineering.html">Engineering</a> <br/> | ||
<a href="research.html">Research</a> | ||
</div> | ||
|
||
<div class="page-description"> | ||
<h1>Alex Dean</h1> | ||
<a href="index.html">Back</a> | ||
|
||
<h2>Papers & Publications</h2> | ||
|
||
<ol> | ||
<!-- | ||
In the future, the plan is to have each paper link to a page of its own. | ||
So, I'll keep the following code commented out, for now. | ||
--> | ||
<!-- <li><a href="papers/paper3.html">Firefighting on the Hexagonal Grid and on Infinite Trees</a>, appeared in <i>Discrete Applied Mathematics</i> — With Sean English, Tongyun Huang, Robert A. Krueger, Andy Lee, Mose Mizrahi, and Casey Wheaton-Werle; December 2021.</li> | ||
<li><a href="papers/paper2.html">Automatic Theorem Proving</a> — With Reed Oei, Eric Ma, Tatum Schmidt, Christian Shulz, and Philipp Hieronymi; December 2019.</li> | ||
<li><a href="papers/paper1.html">Explorations of the Stern Sequence</a> — With Grace Jaffe, Jared Lobo, and Philipp Hieronymi; August 2019.</li> --> | ||
|
||
<li> | ||
<a href="https://arxiv.org/abs/2010.05060">Firefighting on the Hexagonal Grid | ||
and on Infinite Trees</a>, appeared in <i>Discrete Applied Mathematics</i> | ||
— With Sean English, Tongyun Huang, Robert A. Krueger, Andy Lee, | ||
Mose Mizrahi, and Casey Wheaton-Werle; December 2021. | ||
</li> | ||
<li> | ||
<a href="https://drive.google.com/file/d/19p6n-YainAuNyQ-YCsbzyDRRAzUMeNXC/view"> | ||
Automatic Theorem Proving</a> — With Reed Oei, Eric Ma, Tatum | ||
Schmidt, Christian Shulz, and Philipp Hieronymi; December 2019. | ||
</li> | ||
<li> | ||
<a href="https://drive.google.com/file/d/10WXdHJYFiQrMXf0BQkk_y7Bk6bcLJJbP/view"> | ||
Explorations of the Stern Sequence</a> — With Grace Jaffe, Jared Lobo, | ||
and Philipp Hieronymi; August 2019. | ||
</li> | ||
</ol> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |