-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
67 lines (65 loc) · 2.22 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<!--
Hi! Thanks for checking out this website.
I made it myself!
This website was made by hand.
I intentionally haven't minified anything so you can see how it all fits together.
-->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Clayton Ramsey" />
<meta name="description" content="About me + my contact information." />
<title>About</title>
<link rel="canonical" href="https://claytonwramsey.com/about" />
<link rel="stylesheet" type="text/css" href="/assets/main.css" />
<link rel="icon" href="/assets/img/favicon.ico" />
</head>
<body>
<header>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/cv">CV</a>
<a href="/blog">Blog</a>
<a href="/recipes">Recipes</a>
</nav>
<h1>About Me</h1>
</header>
<main>
<figure>
<img src="assets/img/thatsme.jpg" alt="A picture of me, carrying a water bottle and waving," />
</figure>
<p>
Hi! I'm Clayton Ramsey, a PhD student studying computer science at Rice University. In my free time, I figure
skate, swing dance, and write a little code.
</p>
<p>
Most of my research focuses on algorithmic robotics, but I also work on chess engines as a side gig. I've been
working on my current engine, Fiddler, for a few years. Check it out
<a href="https://github.com/claytonwramsey/fiddler">here!</a>
</p>
<h2>Contact</h2>
<ul>
<li>
<strong>Email:</strong>
<a class="u-email" href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<strong>GitHub:</strong>
<a href="https://github.com/claytonwramsey">@claytonwramsey</a>
</li>
<li>
<strong>LinkedIn:</strong>
<a href="https://www.linkedin.com/in/claytonwramsey/">https://www.linkedin.com/in/claytonwramsey/</a>
</li>
<li>
<strong>Google Scholar:</strong>
<a href="https://scholar.google.com/citations?user=VOYJI5YAAAAJ"
>https://scholar.google.com/citations?user=VOYJI5YAAAAJ</a
>
</li>
</ul>
</main>
</body>
</html>