-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (146 loc) · 4.85 KB
/
index.html
File metadata and controls
170 lines (146 loc) · 4.85 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alec Henderson</title>
<style>
body {
background-color: #0a0a0a;
color: #00ff99;
font-family: "Courier New", monospace;
text-align: center;
margin: 0;
padding: 0;
}
/* Navigation Banner */
nav {
background: linear-gradient(90deg, #0033cc, #9900cc);
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
padding: 15px 0;
border-bottom: 2px solid #00ffff;
box-shadow: 0 0 10px #00ffff44;
position: sticky;
top: 0;
z-index: 100;
}
nav a {
color: #ffffff;
font-weight: bold;
text-decoration: none;
font-size: 1.1em;
letter-spacing: 1px;
transition: 0.2s;
}
nav a:hover {
color: #ffff66;
text-shadow: 0 0 5px #ffff66;
}
.container {
margin: 40px auto;
width: 90%;
max-width: 800px;
border: 2px solid #00ffff;
border-radius: 10px;
padding: 25px;
background-color: #111122;
box-shadow: 0 0 15px #001133;
}
h1, h2 {
color: #00ffff;
text-shadow: 0 0 2px #009999;
}
p {
text-align: left;
line-height: 1.6;
font-size: 1rem;
color: #b8faff;
}
a {
color: #ffff66;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #ffffff;
}
table {
margin: 0 auto;
border-collapse: collapse;
width: 100%;
max-width: 400px;
}
td {
padding: 10px;
border-bottom: 1px dashed #3333aa;
}
hr {
border: none;
border-top: 1px solid #00ffff;
margin: 25px 0;
}
marquee {
font-size: 18px;
color: #00ccff;
margin-top: 20px;
}
@media (max-width: 600px) {
nav {
flex-direction: column;
gap: 10px;
}
.container {
width: 95%;
padding: 15px;
}
}
</style>
</head>
<body>
<!-- Navigation Banner -->
<nav>
<a href="#">Home</a>
<a href="#about">About Me</a>
<a href="#projects">Projects</a>
<a href="https://www.linkedin.com/in/alec-henderson-84abb11b5/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
</nav>
<div class="container">
<h1>Alec Henderson</h1>
<p>Hello! My name is Alec. Welcome to my website!</p>
<p>I keep myself busy by thinking about how we can use robots to extend our humanity. What are the most robotic aspects of our lives that robots ought to do? How can we extend human capabilities with robotic aid? These are the kinds of meta-problems that I want to solve.</p>
<hr>
<h2>Video of the Week</h2>
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/T3MH2DAmiYE" title="Alec Henderson Duke ME555 midterm EC" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
</iframe>
<p>Big shout-out to Nate for holding the whiteboard.</p>
<h2 id="about">About Me</h2>
<p>
I am an avid tennis player and weightlifter (much better at the former), and I can get behind any reason to go outside. I am a big fan of the visual arts (<a href="images/Abandoned-min.jpg">this photo</a> scored second place in the Wake Review), though I love good music as well. I am in everlasting search for the perfect cup of coffee; Infame Lisboa is my current leader if you're ever in Portugal.
</p>
<p>
I am a current master's student in robotics & autonomy at
<a href="https://duke.edu/">Duke University</a>.
I am an alumnus of
<a href="https://ncsu.edu/">North Carolina State University</a>,
where I majored in computer science and minored in mathematics. I am a skilled C/C++ programmer, and I spend most of my code-crunching time working with ROS2 and microcontrollers, you can read more about that below.
</p>
<p>
</p>
<hr>
<h2 id="projects">Projects</h2>
<table>
<tr><td><a href="robotclub.html">Duke Robotics Club</a></td></tr>
<tr><td><a href="goggles.html">AR Ski Goggles</a></td></tr>
<tr><td><a href="robot.html">Kirbot 4R Manipulator</a></td></tr>
<tr><td><a href="seniordesign.html">Senior Design: Network Health Monitor</a></td></tr>
<tr><td><a href="images/KalmanFilteringGPSData.pdf" target="_blank" rel="noopener noreferrer">Kalman Filtering GPS Data (PDF)</a></td></tr>
<tr><td><a href="tennisclub.html">Tennis Club Webserver</a></td></tr>
</table>
<marquee behavior="scroll" direction="left">Crazy how nobody uses marquees anymore, they're so fun!</marquee>
<hr>
<a style=".center" href="https://www.biblegateway.com/passage/?search=Matthew%206%3A25-33&version=NIV">✝ Matthew 6:25</a>
</div>
</body>
</html>