Skip to content

Commit

Permalink
Add research page, clarify research interests
Browse files Browse the repository at this point in the history
I also added papers/ to gitignore. I will update that at a later date.
  • Loading branch information
alexjdean committed Sep 8, 2024
1 parent 7652ca2 commit 9fc5969
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.DS_Store
values.html
research.html
papers/
2 changes: 1 addition & 1 deletion books.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="page-navigation">
<a href="books.html">Books</a> <br/>
<a href="engineering.html">Engineering</a> <br/>
<!-- <a href="research.html">Research</a> -->
<a href="research.html">Research</a>
</div>

<div class="page-description">
Expand Down
2 changes: 1 addition & 1 deletion engineering.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="page-navigation">
<a href="books.html">Books</a> <br/>
<a href="engineering.html">Engineering</a> <br/>
<!-- <a href="research.html">Research</a> -->
<a href="research.html">Research</a>
</div>

<div class="page-description">
Expand Down
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="page-navigation">
<a href="books.html">Books</a> <br/>
<a href="engineering.html">Engineering</a> <br/>
<!-- <a href="research.html">Research</a> -->
<a href="research.html">Research</a>
</div>

<div class="page-description">
Expand All @@ -33,15 +33,17 @@ <h1>Alex Dean</h1>
<a href="https://github.com/alexjdean">my GitHub</a>.
</p>

<!-- <p>I'm also a non-degree graduate student at the University of Chicago. I'm broadly
<p>In my spare time, I enjoy doing mathematics and solving interesting problems. I'm broadly
interested in theoretical computer science, particularly graph-related algorithm
and optimization problems. For more information, see
and optimization problems, as well as analytic number theory. For more information, see
<a href="research.html">my research</a> and
<a href="https://scholar.google.com/citations?user=Z9zyFCoAAAAJ">my
Google Scholar</a>.
</p> -->
</p>

<p>You can reach me at dean.alex.contact [at] gmail [dot] com.</p>
<p>You can reach me at dean.alex.contact [at] gmail [dot] com. You can connect with me on
LinkedIn at <a href="https://www.linkedin.com/in/alex-j-dean/">alex-j-dean</a>.
</p>
</div>
</div>
</body>
Expand Down
54 changes: 54 additions & 0 deletions research.html
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> &mdash; 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> &mdash; 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> &mdash; 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>
&mdash; 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> &mdash; 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> &mdash; With Grace Jaffe, Jared Lobo,
and Philipp Hieronymi; August 2019.
</li>
</ol>
</div>
</div>
</body>
</html>

0 comments on commit 9fc5969

Please sign in to comment.