-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
653 lines (643 loc) · 27.9 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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
<!DOCTYPE html>
<html lang="en" data-bs-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./styles.css" />
<title>Amy Wu CV</title>
</head>
<body>
<div class="d-flex justify-content-center">
<div class="container-xl px-0 mx-0">
<div class="row">
<section id="nav-bar" class="col-xl-2 col-sm-3 col">
<div
id="nav-bar-content"
class="sticky-container d-sm-flex flex-sm-column flex-row flex-shrink-1 mr-1"
>
<a
href="#"
class="d-flex flex-sm-column flex-row justify-content-evenly align-items-center mb-0 mb-md-0 text-black text-decoration-none px-1"
>
<img
src="./assets/images/CatMom.jpg"
alt="amy-profile-picture"
id="profile-pic"
/>
<h1>Amy Wu</h1>
</a>
<hr />
<ul class="nav nav-pills flex-sm-column flex-row mb-auto">
<li class="nav-item">
<a href="#" class="nav-link text-black" aria-current="page">
Bio
</a>
</li>
<li>
<a href="#Education" class="nav-link text-black">
Education
</a>
</li>
<li>
<a href="#Publications" class="nav-link text-black">
Publications
</a>
</li>
<li>
<a href="#Skills" class="nav-link text-black"> Skills </a>
</li>
<li>
<a href="#Experience" class="nav-link text-black">
Experience
</a>
</li>
<li>
<a href="#Awards" class="nav-link text-black"> Awards </a>
</li>
<li>
<a href="#Interests" class="nav-link text-black">
Interests
</a>
</li>
<li>
<a href="#Contact" class="nav-link text-bg-dark"> Contact </a>
</li>
</ul>
<hr />
</div>
</section>
<div class="col-xl-10 col-sm-9 col p-0">
<section id="Heading">
<div class="container col-xxl-12 px-4 py-5">
<div
class="row flex-lg-row-reverse align-items-center g-5 py-5"
>
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./assets/images/amy_kobe.jpg"
class="d-block mx-lg-auto img-fluid rounded"
alt="Amy Wu"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h2 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">
Condensed Matter Physics Ph.D. candidate at University of
California, Irvine
</h2>
<p class="lead">
BIO Quickly design and customize responsive mobile-first
sites with Bootstrap, the world's most popular front-end
open source toolkit, featuring Sass variables and mixins,
responsive grid system, extensive prebuilt components, and
powerful JavaScript plugins.
</p>
</div>
</div>
</div>
</section>
<section id="Education">
<div class="my-5">
<div class="p-5 text-center bg-body-tertiary">
<div class="container py-5">
<h2 class="text-body-emphasis display-5">Education</h2>
</div>
</div>
</div>
<div class="container mb-5">
<div
class="row p-4 pb-0 pe-lg-0 pt-lg-5 mb-3 align-items-center rounded-3 border shadow-lg"
>
<div class="col-lg-7 p-3 p-lg-5 pt-lg-3">
<h2 class="display-4 fw-bold lh-1 text-body-emphasis">
Doctor of Philosophy in Physics
</h2>
<p class="text-body-secondary">Expected 2025</p>
<p class="lead">
University of California, Irvine (UCI) <br />Adviser:
Javier Sanchez-Yamagishi <br />GPA:3.87/4.0
</p>
</div>
<div class="col-lg-4 offset-lg-1 p-0 overflow-hidden">
<img
class="rounded-lg-3"
src="./assets/images/UCI_logo.png"
alt="UCI logo"
height="200px"
/>
</div>
</div>
<div
class="row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg"
>
<div class="col-lg-7 p-3 p-lg-5 pt-lg-3">
<h2 class="display-4 fw-bold lh-1 text-body-emphasis">
Bachelor of Science in Engineering Physics
</h2>
<p class="text-body-secondary">Graduated 2019</p>
<p class="lead">
University of Illinois at Urbana-Champaign (UIUC) <br />
GPA:3.51/4.0
</p>
</div>
<div class="col-lg-4 offset-lg-1 p-0 overflow-hidden">
<img
class="rounded-lg-3"
src="./assets/images/uiuc_logo.png"
alt="UIUC Logo"
height="80px"
/>
</div>
</div>
</div>
</section>
<section id="Publications" data-bs-theme="dark">
<div id="carousel" class="carousel slide">
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carousel"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carousel"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carousel"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<div
class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg"
style="
background-image: url('./assets/images/publication.png');
background-size: contain;
"
>
<div
class="d-flex flex-column h-100 p-5 pb-3 text-black text-shadow-1"
>
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">
<a
href="https://www.nature.com/articles/s41563-024-01894-0"
>Nature Publication</a
>
</h3>
<p>brief caption</p>
</div>
</div>
</div>
<div class="carousel-item">
<svg
class="bd-placeholder-img bd-placeholder-img-lg d-block w-100"
width="800"
height="400"
xmlns="http://www.w3.org/2000/svg"
role="img"
aria-label="Placeholder: Second slide"
preserveAspectRatio="xMidYMid slice"
focusable="false"
>
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#666"></rect>
<text x="50%" y="50%" fill="#444" dy=".3em">
Placeholder
</text>
</svg>
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>
Some representative placeholder content for the second
slide.
</p>
</div>
</div>
<div class="carousel-item">
<svg
class="bd-placeholder-img bd-placeholder-img-lg d-block w-100"
width="800"
height="400"
xmlns="http://www.w3.org/2000/svg"
role="img"
aria-label="Placeholder: Third slide"
preserveAspectRatio="xMidYMid slice"
focusable="false"
>
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#555"></rect>
<text x="50%" y="50%" fill="#333" dy=".3em">
Third slide
</text>
</svg>
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>
Some representative placeholder content for the third
slide.
</p>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carousel"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carousel"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<section id="Skills">
<div
class="row row-cols-1 row-cols-md-2 align-items-md-center g-5 py-5 px-4"
>
<div class="col d-flex flex-column align-items-start gap-2">
<h2 class="fw-bold text-body-emphasis">Skills</h2>
<p class="text-body-secondary">
Excels at both experimental skills and device fabrication
</p>
</div>
<div class="col">
<div class="row row-cols-1 row-cols-sm-2 g-4">
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Atomic Force Microscopy
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Electron beam lithography (EBL)
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Scanning electron microscopy (SEM)
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Electron Backscattered Diffraction (EBSD)
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Reactive ion etching (RIE)
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Oxygen Plasma Etching
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Cleanroom
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
<div class="col d-flex flex-column gap-2">
<div
class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3"
>
<!-- icon -->
</div>
<h4 class="fw-semibold mb-0 text-body-emphasis">
Spincoating and lift-off
</h4>
<p class="text-body-secondary">
Paragraph of text beneath the heading to explain the
heading.
</p>
</div>
</div>
</div>
<div class="col-12">
<h2 class="fw-semibold text-body-emphasis">
Additional Skills
</h2>
<p>
Lithography, Graphene Wet Transfer, Cryogenics, Ultra-high
vacumm equipment, PDMS dry transfer, PVC/PC transfer,
Chromium and Gold wet etching
</p>
</div>
</div>
</section>
<section id="Experience">
<div class="my-5">
<div class="p-5 text-center bg-body-tertiary">
<div class="container py-5">
<h2 class="text-body-emphasis display-5">Experience</h2>
</div>
</div>
</div>
<div class="px-4">
<h3 class="text-body-emphasis mb-2 border-bottom">Research</h3>
<dl>
<div class="title-date">
<dt>
Graduate Research Assistant
<span class="text-body-secondary fw-light fst-italic">
- Prof. Sanchez-Yamagishi's research group, UCI
</span>
</dt>
<p class="text-body-secondary mb-0">2019-Present</p>
</div>
<dd class="text-body-secondary mb-4">
Plan daily, weekly and monthly tasks with supervisor and
co-worker <br />Organize large data set taken in cryogenic
measurements <br />Build creative ideas to tackle
experimental problems such as building a new setup or
procedure
</dd>
<div class="title-date">
<dt>
Research Assistant
<span class="text-body-secondary fw-light fst-italic">
- Prof. Madhavan's research group, UIUC
</span>
</dt>
<p class="text-body-secondary mb-0">2018-2019</p>
</div>
<dd class="text-body-secondary mb-4">
Preparing samples such as cutting wafers and spincoating
substrates <br />Using the electron beam lithography to
pattern samples <br />Deposition of elements on to samples
with Ion mill evaporator and thermal evaporator
</dd>
<div class="title-date">
<dt>
Research Assistant
<span class="text-body-secondary fw-light fst-italic">
- Prof. Eckstein's research group, UIUC
</span>
</dt>
<p class="text-body-secondary mb-0">2017</p>
</div>
<dd class="text-body-secondary mb-4">
Measuring currents through samples using liquid nitrogen and
lock-in amplifiers <br />Developed fine control of melting
aluminum on to substrates surface <br />Organized and edited
LabVIEW programs
</dd>
</dl>
<h3 class="text-body-emphasis mb-2 border-bottom">Mentoring</h3>
<dl>
<div class="title-date">
<dt>
Mentor for undergraduate Researchers
<span class="text-body-secondary fw-light fst-italic">
- Physics Department, UCI
</span>
</dt>
<p class="text-body-secondary mb-0">2020-Present</p>
</div>
<dd class="text-body-secondary">
Taught undergraduate students how to fabricate devices
<br />Explained physics about current project and supervise
undergraduate projects
</dd>
<div class="title-date">
<dt>
Mentor for Underrepresented Gender Students in Physics
<span class="text-body-secondary fw-light fst-italic">
- Physics Department, UCI
</span>
</dt>
<p class="text-body-secondary mb-0">2020-Present</p>
</div>
<dd class="text-body-secondary">
Mentored underrepresented student in physics and helping
them with graduate applications <br />Helped new incoming
graduate student to integrate into graduate school
</dd>
</dl>
<h3 class="text-body-emphasis mb-2 border-bottom">Work</h3>
<dl>
<div class="title-date">
<dt>
Teaching Assistant
<span class="text-body-secondary fw-light fst-italic">
- Physics Department, UCI
</span>
</dt>
<p class="text-body-secondary mb-0">2019-2020</p>
</div>
<dd class="text-body-secondary">
Led discussion sections in university courses Modern Physics
(Phys 51A), Introduction to Mathematical Methods for Physics
(Phys 2), Classical Physics (Phys 7D) <br />Organized office
hours and extra math tutoring sessions for students
</dd>
<div class="title-date">
<dt>
Teaching Assistant
<span class="text-body-secondary fw-light fst-italic">
- Physics Department, UCI
</span>
</dt>
<p class="text-body-secondary mb-0">2019-2020</p>
</div>
<dd class="text-body-secondary">
Led discussion sections in university courses Modern Physics
(Phys 51A), Introduction to Mathematical Methods for Physics
(Phys 2), Classical Physics (Phys 7D) <br />Organized office
hours and extra math tutoring sessions for students
</dd>
<div class="title-date">
<dt>
Student Lecture Preparation Technician
<span class="text-body-secondary fw-light fst-italic">
- Physics Department, UIUC
</span>
</dt>
<p class="text-body-secondary mb-0">2016-2017</p>
</div>
<dd class="text-body-secondary">
Cooperate with other workers to set up physics
demonstrations
<br />
Train to handle lab equipment inside the demonstration room
</dd>
<div class="title-date">
<dt>
University Student Financial Service and Cashier
Operations (USFSCO)
<span class="text-body-secondary fw-light fst-italic">
- Physics Department, UIUC
</span>
</dt>
<p class="text-body-secondary mb-0">2016-2017</p>
</div>
<dd class="text-body-secondary">
Contribute in maintaining filed and discharged bankruptcies
to support student debtors toward financial wellness
<br />
Organize confidential University Student Loans' Promissory
Notes
</dd>
</dl>
</div>
</section>
<div
class="d-md-flex flex-md-equal justify-content-between my-md-3 ps-md-3"
>
<section
id="Awards"
class="text-bg-dark me-md-3 pt-3 px-3 pt-md-5 px-md-5 overflow-hidden"
>
<div class="my-3 py-3">
<h2 class="display-5">Awards</h2>
<p class="lead">And an even wittier subheading.</p>
<dl>
<dt>NSF Graduate Research Honorable Mention</dt>
<dd>2021</dd>
<dt>DaRin Butz Foundation Research Scholars (ISUR)</dt>
<dd>2018</dd>
</dl>
</div>
</section>
<section
id="Interests"
class="bg-body-tertiary me-md-3 pt-3 px-3 pt-md-5 px-md-5 overflow-hidden"
>
<div class="my-3 py-3">
<h2 class="display-5">Interests</h2>
<p class="lead">Subheading Anthony hehe</p>
Topological insulators, topological superconductors,
electrical transport, spintronics, strong spin-orbit coupling,
low-temperature scanning tunneling microscopy, atomic force
microscopy, Weyl semimetals, material growth, moiré
superlattices, quantum Hall effect.
</div>
</section>
</div>
<section id="Contact" data-bs-theme="dark">
<div
class="position-relative p-5 text-center text-muted bg-body border border-dashed rounded-5"
>
<img
src="./assets/images/amy_scrowl.jpg"
alt="contact"
height="150"
class="rounded-img"
/>
<h2 class="text-body-emphasis">Contact</h2>
<p class="col-lg-6 mx-auto mb-4">
<a href="https://www.linkedin.com/in/amy-wu-5963a1bb/">
<!-- <p class="text-body-secondary">Linked In</p> -->
<img
src="assets/images/linkedin-icon.png"
alt="linkedin"
height="40px"
/>
</a>
</p>
</div>
</section>
</div>
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>