-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
387 lines (349 loc) · 16.1 KB
/
index.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boyuan's Homepage</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/animation.css">
<!-- Font Awesome for social icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
.coursework-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.coursework-toggle {
cursor: pointer;
user-select: none;
}
.coursework-toggle:hover {
color: #666;
}
.coursework-toggle::before {
content: none;
}
.coursework-toggle i {
display: inline-block;
margin-right: 5px;
transition: transform 0.3s;
font-size: 0.8em;
}
.coursework-toggle.active i {
transform: rotate(90deg);
}
/* Intro Animation Styles */
.intro-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
opacity: 1;
transition: opacity 0.8s ease-in-out;
pointer-events: auto;
}
.intro-content {
color: #fff;
font-family: SF Pro Display, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
text-align: center;
width: 80%;
max-width: 800px;
}
.intro-text {
font-size: 4.5rem;
font-weight: 300;
letter-spacing: -0.02em;
line-height: 1.2;
margin: 0 auto;
opacity: 0;
position: relative;
}
.typewriter-container {
display: inline-block;
position: relative;
}
.cursor {
display: inline-block;
width: 2px;
height: 1em;
background-color: #fff;
margin-left: 4px;
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
position: relative;
top: 0.1em;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.hello-text {
opacity: 0;
}
.welcome-text {
opacity: 0;
}
@keyframes fadeIn {
0% { opacity: 0; transform: scale(0.98); }
100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeOut {
0% { opacity: 1; transform: scale(1); }
100% { opacity: 0; transform: scale(1.02); }
}
.hidden {
display: none;
}
.container {
opacity: 0;
transition: opacity 1.2s ease-in-out;
}
/* Skip button styles */
.skip-intro-btn {
position: absolute;
top: 20px;
right: 20px;
background-color: #000;
color: #fff;
border: none;
border-radius: 12px;
padding: 10px 20px;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.5px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 1100;
transition: opacity 0.3s ease;
font-family: SF Pro Display, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
pointer-events: auto;
}
.skip-intro-btn:hover {
opacity: 0.9;
}
/* Triangle icon spacing */
.skip-intro-btn {
letter-spacing: 2px;
}
</style>
</head>
<body>
<!-- Intro Animation Overlay -->
<div class="intro-overlay" id="introOverlay">
<!-- Skip button -->
<button id="skipIntroBtn" class="skip-intro-btn" onclick="document.getElementById('introOverlay').style.opacity='0'; setTimeout(function() { document.getElementById('introOverlay').style.display='none'; document.getElementById('mainContent').style.opacity='1'; }, 800);">
SKIP ►
</button>
<div class="intro-content">
<div class="intro-text hello-text" id="helloText">
<div class="typewriter-container">
<span class="typewriter-text"></span>
<span class="cursor"></span>
</div>
</div>
<div class="intro-text welcome-text" id="welcomeText">
<div class="typewriter-container">
<span class="typewriter-text"></span>
<span class="cursor"></span>
</div>
</div>
</div>
</div>
<div class="container animated-content" id="mainContent">
<!-- Left Sidebar -->
<div class="sidebar">
<div class="profile">
<img src="./figures/profile.jpg" alt="Bryan(Boyuan) Deng" class="profile-img">
<h1>Bryan(Boyuan) Deng</h1>
<p class="hometown" style="font-style: normal;"><span class="label">Hometown: </span>L77星</p>
<p class="affiliation">Johns Hopkins University</p>
<!-- Social Links -->
<div class="social-links">
<a href="https://www.linkedin.com/in/boyuandeng1/" target="_blank">
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/linkedin.svg" alt="LinkedIn" style="width: 1em; height: 1em; vertical-align: middle; filter: invert(1);">
</a>
<a href="https://github.com/bd0525" target="_blank">
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/github.svg" alt="GitHub" style="width: 1em; height: 1em; vertical-align: middle; filter: invert(1);">
</a>
<a href="https://leetcode.com/u/bd0525/" target="_blank">
<img src="https://leetcode.com/static/images/LeetCode_logo_rvs.png" alt="LeetCode" style="width: 1em; height: 1em; vertical-align: middle;">
</a>
<a href="https://www.kaggle.com/bryanboyuan" target="_blank">
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/kaggle.svg" alt="Kaggle" style="width: 1em; height: 1em; vertical-align: middle; filter: invert(1);">
</a>
</div>
</div>
</div>
<!-- Main Content -->
<div class="main-content">
<!-- Add top navigation -->
<nav class="top-nav">
<a href="/" class="active">Home</a>
<a href="pages/publications.html">Publications</a>
<a href="pages/projects.html">Projects</a>
<a href="pages/media.html">Media</a>
<a href="pages/blog.html">Blog</a>
</nav>
<section id="about">
<h2>README.md</h2>
<p>Non-professional 🏀 basketball player, professional sports commentator.</p>
</section>
<section id="education">
<h2>Education</h2>
<div class="education-item">
<h3>Johns Hopkins University <span class="location">Baltimore, MD, USA</span></h3>
<div class="degree-date">
<p class="degree"><strong>Ph.D. in Civil and Systems Engineering</strong></p>
<p class="date">Aug. 2024 - Expected May 2030</p>
</div>
<div class="details">
<p>• GPA: 100000000.0/4.0</p>
</div>
<div class="degree-date">
<p class="degree"><strong>M.S.E. in Applied Mathematics and Statistics</strong></p>
<p class="date">Aug. 2024 - Expected May 2026</p>
</div>
<div class="details">
<p>• GPA: 100000000.0/4.0</p>
</div>
<div class="details">
<span class="coursework-toggle">
<i class="fa-solid fa-angles-right"></i>
<strong>Relevant Coursework</strong>
</span>
<div class="coursework-content">
- EN.553.632 : Bayesian Statistics<br>
- EN.553.635 : Bayesian Statistics for the Physical Sciences<br>
- EN.553.636 : Introduction to Data Science<br>
- EN.553.688 : Computing for Applied Mathematics<br>
- EN.560.618 : Probabilistic Methods in Civil Engineering and Mechanics<br>
- EN.530.605 : Mechanics of Solids and Materials<br>
</div>
</div>
</div>
<div class="education-item">
<h3>Duke University <span class="location">Durham, NC, USA</span></h3>
<div class="degree-date">
<p class="degree"><strong>M.Eng. in Computational Mechanics and Scientific Computing</strong> [<a href="https://www.parchment.com/u/s/FO6n" target="_blank" style="font-weight: normal; font-size: 0.9em;">Credential</a>]</p>
<p class="date">Aug. 2022 - June 2024</p>
</div>
<p class="details">
• <strong>Honors/Awards:</strong> <br>
- Duke University Civil Engineering Graduate Scholarship<br>
<div class="details">
<span class="coursework-toggle">
<i class="fa-solid fa-angles-right"></i>
<strong>Relevant Coursework</strong>
</span>
<div class="coursework-content">
- <a href="https://math.duke.edu/math-557-syllabus" target="_blank">Math 557 : Introduction to Partial Differential Equations</a>
[Qualifying Eligible (QE) course for the Math PhD]<br>
- ECE 551D : Introduction to Programming, Data Structures, and Algorithms in C++<br>
- CEE 520 : Continuum Mechanics<br>
- CEE 530 / ME 524 : Introduction to the Finite Element Method<br>
- CEE 630 / ME 525 : Nonlinear Finite Element Analysis<br>
- CEE 628 : Uncertainty Quantification in Computational Science and Engineering<br>
- CEE 690 : Advanced Fluid Mechanics<br>
- CEE 690 : Chaotic Data-Systems Analysis<br>
</div>
</div>
</p>
</div>
<div class="education-item">
<h3>Southwest Jiaotong University <span class="location">Chengdu, China</span></h3>
<div class="degree-date">
<p class="degree"><strong>B.Eng. in Civil Engineering</strong></p>
<p class="date">Sep. 2018 - June 2022</p>
</div>
</div>
</section>
<section id="research">
<h2>Research Experience</h2>
<div class="research-item">
<h3>Shields Uncertainty Research Group, CaSE Dept., Johns Hopkins University <span class="location">Baltimore, MD, USA</span></h3>
<div class="position-info">
<div class="degree-date">
<p><strong>Doctoral Research Assistant</strong></p>
<p class="date">Aug. 2024 - Present</p>
</div>
<p style="padding-left: 20px;">
- Extreme Mechanics of the Human Brain: TBD.
</p>
</div>
</div>
<div class="research-item">
<h3>Guglielmo Scovazzi Research Group, CEE Dept., Duke University <span class="location">Durham, NC, USA</span></h3>
<div class="position-info">
<div class="degree-date">
<p><strong>Graduate Research Assistant</strong></p>
<p class="date">May 2023 - Apr. 2024</p>
</div>
<p style="padding-left: 20px;">
- Embedded Methods for Linear Elasticity: Bone scaffold topology optimization with the Shifted Boundary Method.
</p>
</div>
</div>
<div class="research-item">
<h3>Laura Dalton Research Group, CEE Dept., Duke University <span class="location">Durham, NC, USA</span></h3>
<div class="position-info">
<div class="degree-date">
<p><strong>Graduate Research Assistant</strong></p>
<p class="date">May 2023 - Feb. 2024</p>
</div>
<p style="padding-left: 20px;">
- Alternative Cementitious Materials Testing: Triaxial testing, compression testing, and mechanical analysis
of cementitious materials.
</p>
</div>
</div>
</section>
<section id="work">
<h2>Work Experience</h2>
<div class="work-item">
<h3>Company Name <span class="location">City, State, Country</span></h3>
<div class="position-info">
<div class="degree-date">
<p><strong>Job Title</strong></p>
<p class="date">Month Year - Month Year</p>
</div>
<p style="padding-left: 20px;">
- Description of responsibilities and achievements.
</p>
</div>
</div>
</section>
<!-- LeetCode Stats Board -->
<img src="https://leetcard.jacoblin.cool/bd0525?theme=dark&font=Iceland&ext=heatmap" alt="LeetCode Stats">
</div>
</div>
<script>
// Only toggling details within Education
document.querySelectorAll(".coursework-toggle").forEach((toggle) => {
toggle.addEventListener("click", () => {
let content = toggle.nextElementSibling;
if (!content || !content.classList.contains("coursework-content")) {
content = toggle.closest("div").querySelector(".coursework-content");
}
toggle.classList.toggle("active");
if (toggle.classList.contains("active")) {
content.style.maxHeight = content.scrollHeight + "px";
} else {
content.style.maxHeight = 0;
}
});
});
</script>
<!-- Animation script -->
<script src="js/animation.js"></script>
</body>
</html>