-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
637 lines (519 loc) · 30.8 KB
/
index.html
File metadata and controls
637 lines (519 loc) · 30.8 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
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
<!DOCTYPE html>
<html lang="en" class="no-js" >
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Katie's Personal Website</title>
<script>
document.documentElement.classList.remove('no-js');
document.documentElement.classList.add('js');
</script>
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/styles.css">
<!-- favicons
================================================== -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body id="top">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader" class="dots-fade">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- page wrap
================================================== -->
<div id="page" class="s-pagewrap">
<!-- # site header
================================================== -->
<header class="s-header">
<div class="row s-header__inner">
<div class="s-header__block">
<!--<div class="s-header__logo">
<a class="logo" href="index.html">
<img src="images/logo.svg" alt="Homepage">
</a>
</div>-->
<a class="s-header__menu-toggle" href="#0"><span>Menu</span></a>
</div> <!-- end s-header__block -->
<nav class="s-header__nav">
<ul class="s-header__menu-links">
<li class="current"><a class="smoothscroll" href="#intro">Intro</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#projects">Projects</a></li>
<li><a class="smoothscroll" href="#activities">Activities</a></li>
<li><a class="smoothscroll" href="#footer">Contact</a></li>
</ul> <!-- s-header__menu-links -->
</nav> <!-- end s-header__nav -->
</div> <!-- end s-header__inner -->
</header> <!-- end s-header -->
<!-- # intro
================================================== -->
<section id="intro" class="s-intro target-section">
<div class="row s-intro__content width-sixteen-col">
<div class="column lg-12 s-intro__content-inner grid-block grid-16">
<div class="s-intro__content-text">
<div class="s-intro__content-pretitle text-pretitle">Hello</div>
<h1 class="s-intro__content-title">
I'm Katie Wang, <br>
a student @ Georgia Tech <br>
majoring in CS.
</h1>
<div class="s-intro__content-btns">
<a class="btn" href="https://www.linkedin.com/in/katie-wang-380046217" target="_blank">Connect on LinkedIn</a>
</div> <!-- s-intro__content-btns -->
</div> <!-- s-intro__content-text -->
</div> <!-- s-intro__content-inner -->
</div> <!-- s-intro__content -->
<div class="s-intro__content-media">
<img src="images/intro-bg.jpeg" srcset="images/intro-bg.jpeg 1x, images/intro-bg.jpeg 2x" alt="">
</div> <!-- s-intro__content-media -->
<div class="s-intro__btn-download">
<a class="btn btn--stroke" href="resume.pdf">Get My Resume</a>
</div> <!-- end s-intro__btn-download -->
<!--<div class="s-intro__scroll-down">
<a href="#about" class="smoothscroll">
<div class="scroll-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill: rgba(0, 0, 0, 1);transform: ;msFilter:;"><path d="M11.178 19.569a.998.998 0 0 0 1.644 0l9-13A.999.999 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569l9 13z"></path></svg>
</div>
<span class="scroll-text u-screen-reader-text">Scroll Down</span>
</a>
</div>--> <!-- s-intro__scroll-down -->
</section> <!-- end s-intro -->
<!-- # about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row s-about__content">
<div class="column xl-12">
<div class="section-header" data-num="01">
<h2 class="text-display-title">About Me</h2>
</div> <!-- end section-header -->
<p class="attention-getter">
I am a student at Georgia Tech pursuing a B.S. in Computer Science.
I am very passionate about solving problems and making an impact in the world
with the skills I gain through hackathons, internships, extracurriculars, and personal projects.
</p>
<p class="attention-getter">
I'm currently looking to further challenge myself with a summer 2025 internship.
</p>
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">Experience</h4>
<ul class="s-about__list">
<li>
Google, Inc.
<span>Summer 2024 STEP Intern</span>
</li>
<li>
FIRST Robotics Competition
<span>Referee, Team Captain, Lead Programmer</span>
</li>
<li>
CodeHers Collective
<span>Content Team Co-Lead, Instructor</span>
</li>
<li>
Viasat, Inc.
<span>Mechanical Engineering Intern</span>
</li>
<li>
Kode With Klossy Summer Camp Scholar
<span>Data Science, App Dev, Web Dev</span>
</li>
</ul>
</div> <!--end s-about__block -->
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">Awards</h4>
<ul class="s-about__list">
<li>
National Cyber Scholarship Scholar 2022
<span>$500 Award; among top 20 individuals in Georgia, 1152 nationally</span>
</li>
<li>
ChezyCode Hackathon Winner 2021
<span>$100 Award</span>
</li>
<li>
National Merit Scholarship Finalist
<span>2023</span>
</li>
<li>
NCWIT Award for Aspirations in Computing
<span>2021</span>
</li><li>
1st in Systems Software at Gwinnett Science Fair; T-Mobile $500 Scholarship
<span>2021</span>
</li>
</ul>
</div> <!--end s-about__block -->
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">Skills</h4>
<ul class="s-about__list">
<li>
Object Oriented Programming
</li>
<li>
Teamwork & Collaboration
</li>
<li>
Problem Solving
</li>
<li>
Frontend Development
</li>
<li>
Working Under Pressure
</li>
<li>
Research
</li>
</ul>
</div> <!--end s-about__block -->
</div> <!-- grid-list-items -->
</div> <!--end column -->
</div> <!--end s-about__content -->
</section> <!-- end s-about -->
<!-- # projects
================================================== -->
<section id="projects" class="s-works target-section">
<div class="row">
<div class="column xl-12">
<div class="section-header" data-num="02">
<h2 class="text-display-title">My Personal Projects</h2>
</div> <!-- end section-header -->
</div>
</div>
<div class="row folio-entries">
<div class="column entry">
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">CodeHers Collective Lessons</h4>
</div>
</div>
<p>
<a href="https://www.instagram.com/codehers.co/">CodeHers Collective</a>
is a student-led non-profit that teaches girls ages 12-18 coding concepts and
languages for free.
</p>
<div class="bulleted-list-works">
<li>
Collaborated with my co-lead to delegate assignments to 28 members,
brainstorm and design classes, and help with administrative processes,
like interviewing or advertising.
</li>
<li>
Since our founding in 2020, we have
released 7 virtual lessons over topics such as Java, Python, GitHub, and
Unity, which have reached over 500 students!
</li>
<li>
Conducted a hackathon with over 100 participants; Co-organized logistics
and mentored girls to help them create websites, games, and apps.
</li>
<li>
In 2022, led a free, 1 week long HTML/CSS/JS summer camp for middle school girls
in the metro Atlanta.
</li>
</div>
</div> <!-- entry -->
<div class="column entry">
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">State Machine Framework</h4>
</div>
</div>
<p><a href="https://github.com/RoboLions/frc-2023/">See the GitHub repo.</a></p>
<div class="bulleted-list-works">
<li>
Designed new code structure, evolving from Subsystem-Command to a
custom state machine framework in Java.
</li>
<li>
Made possible implementation of complex auto routines that used a
hand-drawn path.
</li>
<li>
Robot won Innovation in Control Award and Autonomous Award.
</li>
<li>
Pinpointing bugs and troubleshooting code was easier
throughout robot refinement.
</li>
</div>
</div> <!-- entry -->
<div class="column entry">
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">PID Control of Flywheel Shooter</h4>
</div>
</div>
<p><a href="https://github.com/RoboLions/grits2022">See the GitHub repo.</a></p>
<div class="bulleted-list-works">
<li>
Using Java, implemented a PID control loop
to decrease the amount of time it took for the RPM of the shooter
to mitigate the disturbance from the ball that was shot.
</li>
<li>
Used Ziegler-Nichols method to calculate PID after finding a p-value
where the shooter motor began to oscilate.
</li>
<li>
Robot won Innovation in Control Award and qualified for the Worlds Championship
after placing 5th overall in the state.
</li>
</div>
</div> <!-- entry -->
<div class="column entry">
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">EnviroMap: Trade Carbon Credits and Calculate Footprint via a Mobile App</h4>
</div>
</div>
<p>
<a href="https://drive.google.com/file/d/1aurgTB97sjyMP6hPdXvhFB233ij90nsW/view?usp=sharing">See our summary video.</a>
</p>
<div class="bulleted-list-works">
<li>
Co-developed an app that incentivizes people to change their carbon footprint and
better the environment.
</li>
<li>
Applied skills in React Native app development, and learned to
use TypeScript, npm, and the Google API Library.
</li>
<li>
Conducted a statistical p-test to analyze the data gathered on calculated carbon emissions.
</li>
</div>
</div> <!-- entry -->
<div class="column entry">
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">The Packing-Coloring Problem</h4>
</div>
</div>
<p>
<a href="https://drive.google.com/file/d/1dv5LDSZwnQr7k6RkjqDFmWTsAq67f--v/view?usp=sharing">See our paper here.</a>
</p>
<div class="bulleted-list-works">
<li>
Co-developed a JavaFX program that outputs a packing-coloring grid for
a user-specified dimension using a backtracking
algorithm and discrete math.
</li>
<li>
Co-wrote a paper exploring the packing coloring problem, an existing proof method, and applications of
SAT-solvers.
</li>
</div>
</div> <!-- entry -->
<div class="column entry">
<div class="grid-list-items s-about__blocks">
<div class="grid-list-items__item s-about__block">
<h4 class="s-about__block-title">Kode With Klossy Final Project: Mindful</h4>
</div>
</div>
<p>
<a href="https://mindful-kwk-final-project.pliscatsky.repl.co/">See our website here.</a>
</p>
<div class="bulleted-list-works">
<li>
Collaborated with summer camp partner at the 2021 Kode With Klossy
web-dev summer camp to create a mental health website
that combats post-COVID-pandemic anxiety.
</li>
<li>
Learned how to
incorporate animations, music, language translations,
journaling, chatbot, and a nearby mental health services feature.
</li>
<li>
Technologies used: HTML/CSS/JS, npm, Dialogflow, Mapbox,
Google Translate API, Repl.it
</li>
</div>
</div> <!-- entry -->
</div> <!-- folio entries -->
<!--<div class="row s-testimonials">
<div class="column xl-12">
<h3 class="s-testimonials__header">Hear it from My Happy Clients</h3>
<div class="swiper-container s-testimonials__slider">
<div class="swiper-wrapper">
<div class="s-testimonials__slide swiper-slide">
<div class="s-testimonials__author">
<img src="images/avatars/user-02.jpg" alt="Author image" class="s-testimonials__avatar">
<cite class="s-testimonials__cite">
<strong>John Rockefeller</strong>
<span>Standard Oil Co.</span>
</cite>
</div>
<p>
Molestiae incidunt consequatur quis ipsa autem nam sit enim magni. Voluptas tempore rem.
Explicabo a quaerat sint autem dolore ducimus ut consequatur neque. Nisi dolores quaerat fuga rem nihil nostrum.
Laudantium quia consequatur molestias.
</p>
</div>--> <!-- end s-testimonials__slide -->
<!--<div class="s-testimonials__slide swiper-slide">
<div class="s-testimonials__author">
<img src="images/avatars/user-03.jpg" alt="Author image" class="s-testimonials__avatar">
<cite class="s-testimonials__cite">
<strong>Andrew Carnegie</strong>
<span>Carnegie Steel Co.</span>
</cite>
</div>
<p>
Excepturi nam cupiditate culpa doloremque deleniti repellat. Veniam quos repellat voluptas animi adipisci.
Nisi eaque consequatur. Voluptatem dignissimos ut ducimus accusantium perspiciatis.
Quasi voluptas eius distinctio. Atque eos maxime.
</p>
</div>--> <!-- end s-testimonials__slide -->
<!--<div class="s-testimonials__slide swiper-slide">
<div class="s-testimonials__author">
<img src="images/avatars/user-01.jpg" alt="Author image" class="s-testimonials__avatar">
<cite class="s-testimonials__cite">
<strong>John Morgan</strong>
<span>JP Morgan & Co.</span>
</cite>
</div>
<p>
Repellat dignissimos libero. Qui sed at corrupti expedita voluptas odit. Nihil ea quia nesciunt. Ducimus aut sed ipsam.
Autem eaque officia cum exercitationem sunt voluptatum accusamus. Quasi voluptas eius distinctio.
Voluptatem dignissimos ut.
</p>
</div>--> <!-- end s-testimonials__slide -->
<!--<div class="s-testimonials__slide swiper-slide">
<div class="s-testimonials__author">
<img src="images/avatars/user-06.jpg" alt="Author image" class="s-testimonials__avatar">
<cite class="s-testimonials__cite">
<strong>Henry Ford</strong>
<span>Ford Motor Co.</span>
</cite>
</div>
<p>
Nunc interdum lacus sit amet orci. Vestibulum dapibus nunc ac augue. Fusce vel dui. In ac felis
quis tortor malesuada pretium. Curabitur vestibulum aliquam leo. Qui sed at corrupti expedita voluptas odit.
Nihil ea quia nesciunt. Ducimus aut sed ipsam.
</p>
</div>--> <!-- end s-testimonials__slide -->
<!--</div>--> <!-- end swiper-wrapper -->
<!--<div class="swiper-pagination"></div>
</div>--> <!-- end swiper-container -->
<!--</div>--> <!-- end column -->
<!--</div>--> <!-- end s-testimonials -->
</section> <!-- end s-works -->
<!-- # activities
================================================== -->
<section id="activities" class="s-numbers">
<div class="row">
<div class="column xl-12">
<div class="section-header" data-num="03">
<h2 class="text-display-title">My Activities</h2>
</div> <!-- end section-header -->
</div>
</div>
<div class="row counter-items">
<div class="column counter-items__item">
<h5>GT Solar Racing Team</h5>
<li>Current powertrain subteam member</li>
<li>Responsible for firmware that reads from and writes to the motor.</li>
<li>Current project is to mentor recruits who are interested in powertrain
firmware, and to address comments made on pull request to merge to main.
</li>
<li>Learned how to code in C, perform bit manipulation using masks,
and execute makefiles.</li>
</div> <!-- end counter-items__item -->
<div class="column counter-items__item">
<h5>First-Year Activities Board</h5>
<li>First-Year Activities Board advisor; previously a member</li>
<li>Collaborated in group to organize free social events
for GT students, such as an Italian charm bracelet making tabling with tiramisu cake.
</li>
<li>Most recent recruitment event had 173 attendees enjoy a cup of free thai tea with
boba while creating a bead or crochet flower bracelet.
</li>
<li>Applied planning, communication, and marketing skills.</li>
</div> <!-- end counter-items__item -->
<div class="column counter-items__item">
<h5>FIRST Robotics Competition: 1261 RoboLions</h5>
<li>Volunteer Referee, Captain, Drive Team Technician, Lead Programmer</li>
<li>Design, fund, build, and program a robot in less than 3 months</li>
<li>Developed a custom state machine framework to better organize code
<li>Learned to read documentation, implement closed-loop feedback, apply vision tracking with April Tags and
Limelight, write clean code, use GitHub pull requests and issues</li>
<li>At regional competitions, won Innovation In Control Award in 2022 and 2023, Autonomous Award in 2023</li>
<li>Qualified through merit for the World Championship in 2022</li>
</div> <!-- end counter-items__item -->
<div class="column counter-items__item">
<h5>CodeHers Collective</h5>
<li>Managed the creation of 7 lessons about various coding languages and computer science concepts over 150 volunteer
hours</li>
<li>Personally instructed over 100 middle and high-school girls virtually</li>
<li>Led in-person web development summer camp for 10 middle-school girls in the metro-Atlanta area</li>
<li>Co-organized CodeHers hackathon with workshops for 100 girls to create games, apps, and websites</li>
</div> <!-- end counter-items__item -->
<div class="column counter-items__item">
<h5>GeorgiaFIRST Robotics Website Redesign</h5>
<li>10 volunteers from various robotics teams updating website</li>
<li>Self-taught & utilized Next.Js to prototype</li>
<li>Presented to Board of Directors weekly and implemented current website</li>
</div> <!-- end counter-items__item -->
<div class="column counter-items__item">
<h5>Girls Who Code Club</h5>
<li>Vice President</li>
<li>Taught HTML/CSS/JS, Python, and Java with Sisterhood & Women in Tech activities</li>
<li>Instructed 17 middle school girls HTML/CSS</li>
<li>Managed social media & club flyers</li>
</div> <!-- end counter-items__item -->
</div> <!-- end counter-items -->
</section> <!-- end s-numbers -->
<!-- # footer
================================================== -->
<footer id="footer" class="s-footer target-section">
<div class="row">
<div class="column lg-12">
<div class="section-header light-on-dark" data-num="04">
<h2 class="text-display-title">Get In Touch!</h2>
</div> <!-- end section-header -->
</div>
</div>
<div class="row s-footer__buttons">
<div class="column xl-6 tab-12">
<a href="mailto:katharinewang23@gmail.com" class="btn btn--primary btn--large u-fullwidth">Email Me</a>
</div>
<div class="column xl-6 tab-12">
<a href="resume.pdf" class="btn btn--stroke btn--large u-fullwidth">Get My Resume</a>
</div>
</div> <!-- end section-footer__buttons -->
<div class="row s-footer__bottom">
<div class="column xl-6 lg-12">
<p class="ss-copyright">
<span>© Copyright Hudson 2023</span>
<span>Design by <a href="https://styleshout.com/">StyleShout</a></span>
</p>
</div>
</div> <!-- end section-footer__bottom -->
<div class="ss-go-top">
<a class="smoothscroll" title="Back to Top" href="#top">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill: rgba(0, 0, 0, 1);transform: ;msFilter:;"><path d="M5.536 21.886a1.004 1.004 0 0 0 1.033-.064l13-9a1 1 0 0 0 0-1.644l-13-9A1 1 0 0 0 5 3v18a1 1 0 0 0 .536.886z"></path></svg>
</a>
<span>Back To Top</span>
</div> <!-- end ss-go-top -->
</footer> <!-- end s-footer -->
</div> <!-- end page-wrap -->
<!-- Java Script
================================================== -->
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>