-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
787 lines (768 loc) · 23.3 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
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=false"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta property="og:image" content="./public/img/Thumbnail.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="milesswu.net" />
<meta property="og:title" content="Miles Wu" />
<meta
property="og:description"
content="The official portfolio of Miles Wu, undergraduate Computer Science student at University of California: Los Angeles. Miles Wu is a motivated learner and engineer passionate about collaboration."
/>
<title>Miles Wu</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./public/css/bootstrap.min.css" />
<!-- Downloaded Font Awesome -->
<script src="./public/js/all.js"></script>
<link rel="stylesheet" href="./public/css/main.css" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Alata&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-md navbar-dark fixed-top">
<!-- Personal Links -->
<div class="navbar-brand personal-links">
<a href="https://github.com/milesswu" target="_blank" class="nav-link">
<i class="fab fa-github"></i>
</a>
<a
href="https://linkedin.com/in/milesswu"
target="_blank"
class="nav-link"
>
<i class="fab fa-linkedin-in"></i>
</a>
<a href="mailto:[email protected]" class="nav-link">
<i class="fas fa-envelope"></i>
</a>
</div>
<button
class="navbar-toggler"
data-toggle="collapse"
data-target="#navResponsive"
>
<span class="navbar-toggler-icon"> </span>
</button>
<div class="navbar-collapse collapse" id="navResponsive">
<ul class="navbar-nav ml-auto text-right">
<li class="navbar-item">
<a href="#projects" class="nav-link mx-2 page-scroll"> Projects </a>
</li>
<li class="navbar-item">
<a href="#skills" class="nav-link mx-2 page-scroll"> Skills </a>
</li>
<li class="navbar-item">
<a href="#experience" class="nav-link mx-2 page-scroll">
Experience
</a>
</li>
<li class="navbar-item">
<a href="#about" class="nav-link mx-2 page-scroll"> About </a>
</li>
<li class="navbar-item">
<a href="#contact" class="nav-link mx-2 page-scroll"> Contact </a>
</li>
<li class="navbar-item">
<a
href="./public/shared/Wu_Miles_Resume.pdf"
class="nav-link mx-2"
target="_blank"
>
Resume
</a>
</li>
</ul>
</div>
</nav>
<!-- End of Navigation -->
<!-- Hero Section -->
<section id="home">
<div class="container-fluid">
<div class="row full-height">
<div class="col-12 col-md-5 d-flex">
<div class="hero">
<div class="hero-caption">
<h2 id="name">Miles Wu</h2>
<h3>Computer Science<br />Software Engineering</h3>
</div>
<div class="hero-icons">
<a
href="https://github.com/milesswu"
target="_blank"
class="icon-link"
>
<i class="fab fa-github fa-2x"></i>
</a>
<a
href="https://linkedin.com/in/milesswu"
target="_blank"
class="icon-link"
>
<i class="fab fa-linkedin-in fa-2x"></i>
</a>
<a href="mailto:[email protected]" class="icon-link">
<i class="fas fa-envelope fa-2x"></i>
</a>
</div>
<div class="hero-buttons">
<a class="button button-light page-scroll" href="#projects"
>View My Work</a
>
<!-- <a
class="button button-light"
href="./public/shared/Wu_Miles_Resume.pdf"
target="_blank"
>Resume</a
> -->
</div>
</div>
</div>
<div class="col-md-7 d-none d-md-block hero-img">
<div class="gradient-theme"></div>
</div>
</div>
</div>
</section>
<!-- End of Hero -->
<!-- Projects Section -->
<section id="projects">
<div class="container">
<!-- title -->
<div class="row">
<div class="col-12">
<h1 class="section-title pb-0">Projects</h1>
</div>
</div>
<!-- end of title -->
<div class="row project-entry">
<div class="col-12 col-lg-7 project-img-container">
<img
class="img-fluid border shadow"
src="./public/img/story-seeker.jpg"
alt="Project Image"
/>
</div>
<div class="col-12 col-lg-5 mt-4 mt-lg-0 pr-0">
<p class="sub-title">Story Seeker</p>
<p>
Alexa Skill created to let users listen to and interact with
choice-based stories. Stories crowdsourced by StorySeeker
developer platform. Here, creators can create, build, maintain,
and publish their own Choose-Your-Own-Adventure stories for Alexa
users to access.
</p>
<ul>
<li>React.js</li>
<li>Redux</li>
<li>
<a href="https://github.com/projectstorm/react-diagrams"
>projectstorm/react-diagrams library</a
>
</li>
<li>Python Flask</li>
<li>Amazon Web Services</li>
</ul>
<p>
<small>Collaboration with: Robert Geil</small>
</p>
<div class="button-container-horizontal">
<a
class="button button-primary"
target="_blank"
href="https://devpost.com/software/alexa-cyoa"
>
<i class="far fa-lightbulb mr-1"></i>
<!-- <i class="fas fa-lightbulb mr-1"></i> -->
<!-- <i class="fas fa-eye-slash"></i> -->
View Devpost
</a>
<a
class="button button-primary button-disabled"
target="_blank"
href=""
>
<i class="fas fa-lock mr-1"></i>
Source Private
</a>
</div>
</div>
</div>
<div class="row project-entry">
<div class="col-12 col-lg-7 project-img-container order-lg-2">
<img
class="img-fluid border shadow"
src="./public/img/water-wars.png"
alt="Water Wars"
/>
</div>
<div class="col-12 col-lg-5 mt-4 mt-lg-0">
<p class="sub-title">Water Wars</p>
<p>
Web application created to gamify and promote water conservation.
Responsible for enabling users to search for specific addresses
and see the water usage in those areas using the Google Maps
Geocoding API.
</p>
<ul>
<li>React</li>
<li>Google Maps API</li>
<li>Javascript / HTML / CSS</li>
</ul>
<p>
<small>Collaboration with: Robert Geil, Daniel Adea</small>
</p>
<div class="button-container-horizontal">
<a
class="button button-primary"
target="_blank"
href="https://devpost.com/software/water-wars"
>
<i class="far fa-lightbulb mr-1"></i>
View Devpost
</a>
<a
class="button button-primary"
target="_blank"
href="https://github.com/Infirmarian/water-wars/tree/frontend-collab"
><i class="fab fa-github mr-1"></i>
View Source
</a>
</div>
</div>
</div>
<div class="row project-entry">
<div class="col-12 col-lg-7 project-img-container">
<img
class="img-fluid border shadow"
src="./public/img/sort-visualizer.png"
alt="Sorting Visualizer"
/>
</div>
<div class="col-12 col-lg-5 pr-0">
<p class="sub-title">Sorting Visualizer</p>
<p>
Interactive website designed to allow users to view the step by
step process of various sorting algorithms. Users can specify the
array size, sorting algorithm being used, and the speed of the
visualization.
</p>
<ul>
<li>React.js</li>
<li>Redux</li>
<li>Javascript / HTML / CSS</li>
</ul>
<div class="button-container-horizontal">
<a
class="button button-primary"
target="_blank"
href="https://milesswu.github.io/SortingVisualizer/"
>
<i class="far fa-lightbulb mr-1"></i>
<!-- <i class="fas fa-lightbulb mr-1"></i> -->
Visit Project
</a>
<a
class="button button-primary"
target="_blank"
href="https://github.com/milesswu/SortingVisualizer"
>
<i class="fab fa-github mr-1"></i>
View Source
</a>
</div>
</div>
</div>
<div class="row project-entry">
<div
class="col-12 col-lg-7 project-img-container order-lg-2 embed-responsive"
>
<video class="embed-responsive-item" controls>
<source src="./public/shared/Mouse_Demo.mov" type="video/mp4" />
Your browser does not support embedded video. Click
<a href="./public/shared/Mouse_Demo.mov">here</a> to view.
</video>
</div>
<div class="col-12 col-lg-5 mt-4 mt-lg-0">
<p class="sub-title">MicroMouse</p>
<p>
Self-navigating miniature car created for the capstone project of
the IEEE OPS Program. Designed PCBs, circuitry, and implemented
code to create maze-navigating "mouse." System detects obstacles
using IR emmitters and receivers, responding and navigating around
using the PD system implemented through Arduino.
</p>
<ul>
<li>Arduino Nano</li>
<li>PCBs</li>
<li>Infrared Emmitters & Receivers</li>
</ul>
<p>
<small>Collaboration with: Eugene Yang</small>
</p>
<div class="button-container-horizontal">
<a
class="button button-primary"
target="_blank"
href="public/shared/Mouse_Demo.mov"
>
<i class="far fa-lightbulb mr-1"></i>
View Demo
</a>
<a
class="button button-primary"
target="_blank"
href="https://github.com/milesswu/OPS_Capstone"
><i class="fab fa-github mr-1"></i>
View Source
</a>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-12 col-lg-7">
<img class="img-fluid border shadow" src="" alt="Project Image" />
</div>
<div class="col-12 col-lg-5">
<p class="sub-title">Project Title</p>
<p>
Project Description. Lorem ipsum dolor sit, amet consectetur
adipisicing elit. Quod natus eos eligendi enim, voluptas cum
facere blanditiis? Ipsum, reiciendis dolore! Ullam id optio
officia, aspernatur a similique eum natus minus.
</p>
<ul>
<li>Project Tech 1</li>
<li>Project Tech 2</li>
<li>Project Tech 3</li>
</ul>
<p>
<small>Collaboration with: </small>
</p>
<div class="button-container-horizontal">
<a class="button button-primary" target="_blank" href="">
<i class="far fa-lightbulb mr-1"></i>
Visit Project
</a>
<a
class="button button-primary"
target="_blank"
href="https://https://milesswu.github.io/SortingVisualizer/"
>
<i class="fab fa-github mr-1"></i>
View Source
</a>
</div>
</div>
</div> -->
</div>
</section>
<!-- End of Projects -->
<!-- Skills Section -->
<section id="skills" class="pb-5">
<div class="container">
<!-- title -->
<div class="row">
<div class="col text-center">
<h1 class="section-title text-white">Skills</h1>
</div>
</div>
<!-- end of title -->
<div class="row">
<div class="col-12 col-md-4 col-lg-4 pt-4 mx-auto">
<div class="card skill-card">
<div class="card-body">
<h3 class="card-title text-center">Languages</h3>
<ul>
<li>Javascript / ES6+</li>
<li>C / C++</li>
<li>Python</li>
<li>Kotlin</li>
<li>HTML5</li>
<li>CSS3</li>
<li>Bash</li>
<li>Java</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-4 col-lg-4 py-4 mx-auto">
<div class="card skill-card">
<div class="card-body">
<h3 class="card-title text-center">Frameworks</h3>
<ul>
<li>React.js</li>
<li>Angular.js</li>
<li>React Native</li>
<li>Android Studio</li>
</ul>
<hr />
<h3 class="card-title text-center">Tools</h3>
<ul>
<li>Node.js</li>
<li>Redux</li>
<li>Firebase</li>
<li>Git</li>
<li>SQL</li>
<li>Netlify</li>
<li>ESLint</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-4 col-lg-4 py-4 mx-auto">
<div class="card skill-card">
<div class="card-body">
<h3 class="card-title text-center">Other</h3>
<ul>
<li>Consulting</li>
<li>Leadership</li>
<li>Material UI</li>
<li>Bootstrap</li>
<li>Figma</li>
<li>Adobe XD</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Skills -->
<!-- Experience Section -->
<section id="experience">
<div class="container">
<!-- experience title -->
<div class="row">
<div class="col">
<h1 class="section-title">Experience</h1>
</div>
</div>
<!-- end of title -->
<div class="row">
<div class="col-12 col-lg-4 exp-entry">
<div class="card shadow">
<div class="card-img-container" id="rise">
<img
src="./public/img/rise_icon_transparent.png"
alt="Reference Image"
class="card-img-top"
/>
</div>
<div class="card-body">
<h2 class="card-title">Co-founder, Internal Director</h2>
<h6 class="mb-0">
<a href="https://risesummer2020.org" target="blank"
>RISE Summer 2020</a
>
</h6>
<small>Summer 2020</small>
<hr />
<ul class="card-text">
<li>
Recruited and ran a community of 65+ students and 70+
industry mentors.
</li>
<li>
Led weekly director meetings to plan internal events and
ways to improve the program based on community
feedback/needs.
</li>
<li>
Acted as a consultant and resource for community members.
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-lg-4 exp-entry">
<div class="card shadow">
<div class="card-img-container bg-dark">
<img
src="./public/img/acm-hack-logo.svg"
alt="Reference Image"
class="card-img-top"
/>
</div>
<div class="card-body">
<h2 class="card-title">ACM Hack Officer</h2>
<h6 class="mb-0">
<a href="https://hack.uclaacm.com" target="blank"
>UCLA ACM Hack</a
>
</h6>
<small>Fall 2019-Present</small>
<hr />
<ul class="card-text">
<li>
Directing an intro to web dev and design fellowship,
<a href="http://bloom.creativelabsucla.com" target="blank"
>Bloom</a
>. Facilitating discussion about program goals, marketing,
and workshop curriculum.
</li>
<li>
Developing the
<a href="https://hoth.uclaacm.com" target="blank"
>website</a
>
for our annual hackathon using React & Gatsby.
</li>
<li>
Teaching technical workshops covering various web/mobile dev
topics.
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-lg-4 exp-entry">
<div class="card shadow">
<div class="card-img-container">
<img
src="./public/img/swe-logo.png"
alt="Reference Image"
class="card-img-top"
/>
</div>
<div class="card-body">
<h2 class="card-title">Full-Stack Developer</h2>
<h6 class="mb-0">Society of Women Engineers @ UCLA</h6>
<small>Fall 2019-Present</small>
<hr />
<ul class="card-text">
<li>
Implementing the SWE Event Portal with a team of developers.
</li>
<li>
Responsible for user registration: building event signup
pages in React, working on Node Express endpoints to
send/receive user data to our PostgreSQL database.
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-lg-4 exp-entry">
<div class="card shadow">
<div class="card-img-container" id="juni">
<img
src="./public/img/juni-learning-logo.png"
alt="Reference Image"
class="card-img-top"
/>
</div>
<div class="card-body">
<h2 class="card-title">Private Instructor</h2>
<h6 class="mb-0">Juni Learning</h6>
<small>Summer 2019-Present</small>
<hr />
<ul class="card-text">
<li>
Instructing young students in fundamental computer science
concepts.
</li>
<li>
Adapting to student needs and learning styles to better
facilitate student understanding.
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-lg-4 exp-entry">
<div class="card shadow">
<div class="card-img-container">
<img
src="./public/img/interact-logo.png"
alt="Interact Club"
class="card-img-top mr-md-3"
/>
<img
src="./public/img/rotary-logo.png"
alt="Rotary International"
class="card-img-top"
id="rotary"
/>
</div>
<div class="card-body">
<h2 class="card-title">Public Relations Officer</h2>
<h6 class="mb-0">Interact Club | Rotary International</h6>
<small>2016-2018</small>
<hr />
<ul class="card-text">
<li>
Reached out to community organizations for volunteering
opportunities.
</li>
<li>
Communicated with representatives of Rotary International to
coordinate fundraising and volunteer events.
</li>
</ul>
</div>
</div>
</div>
<!-- <div class="col-12 col-lg-4 exp-entry">
<div class="card shadow">
<img src="" alt="Reference Image" class="card-img-top">
<div class="card-body">
<h2 class="card-title sub-title">
Position
</h2>
<p class="card-text">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minus, temporibus adipisci maxime itaque a officiis sit illum nulla praesentium commodi.</p>
<hr />
<ul>
<li>Role Description 1</li>
<li>Role Description 2</li>
<li>Role Description 3</li>
</ul>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- End of Experience -->
<!-- About Section -->
<section id="about" class="half-height">
<div class="container">
<!-- about title -->
<div class="row">
<div class="col">
<h1 class="section-title">About Me</h1>
</div>
</div>
<div class="row">
<div class="col pb-5 px-4">
<p class="about-message">Hello! :)</p>
<p class="about-message">
I am a highly motivated undergraduate at UCLA with a passion for
the user-focused problem solving experience. Much of my expertise
is in the realm of web and mobile app development, but I am
constantly exploring my interests and looking to learn about new
fields in tech!
</p>
<p class="about-message">Some of my recent interests include:</p>
<ul>
<li>Tech Consulting</li>
<li>Product Management</li>
<li>Contributing to Open Source</li>
</ul>
<p class="about-message">
I'm currently looking for an internship position in the tech
industry, but also feel free to contact me with any other
collaboration opportunities! Always open to help support others
and discuss new ideas!
</p>
</div>
</div>
<!-- End of About Me -->
</div>
</section>
<!-- End of About -->
<!-- Mission Section -->
<section id="mission" class="half-height">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="section-title">My Mission</h1>
</div>
</div>
<div class="row">
<div class="col-12 col-md-4 text-center my-3">
<i class="far fa-arrow-alt-circle-up mission-icon"></i>
<p class="sub-title">Growth</p>
<p>
Looking for experiences and opportunities to learn about new
concepts, skills, or fields in tech! Not afraid to push my own
limits.
</p>
</div>
<div class="col-12 col-md-4 text-center my-3">
<!-- <i class="fas fa-check mission-icon"></i> -->
<i class="fas fa-hands-helping mission-icon"></i>
<p class="sub-title">Collaboration</p>
<p>
Passionate about peer-to-peer discussion and problem solving.
Fervent advocate for mutual learning, leadership, and support :D
</p>
</div>
<div class="col-12 col-md-4 text-center my-3">
<i class="fas fa-award mission-icon"></i>
<p class="sub-title">Pride</p>
<p>
I strive to be purposeful and have clear intention. I want to
produce quality work that I can be proud of.
</p>
</div>
</div>
</div>
</section>
<!-- End of Mission -->
<!-- Contact Section -->
<section id="contact" class="pt-4">
<div class="container-fluid">
<!-- title -->
<div class="row">
<div class="col">
<h1 class="section-title text-center text-white">Get In Touch</h1>
</div>
</div>
<!-- end of title -->
<div class="row contact-buttons">
<a
href="./public/shared/Wu_Miles_Resume.pdf"
target="_blank"
class="button gradient-button resume-button"
>
<i class="fas fa-tasks mr-1 mr-lg-3"></i>
Check Out My Resume
</a>
<a
href="https://linkedin.com/in/milesswu"
target="_blank"
class="button linkedin-button"
>
<i class="fab fa-linkedin-in mr-1 mr-lg-3"></i>
Connect on LinkedIn
</a>
<a
href="mailto:[email protected]"
target="_blank"
class="button email-button"
>
<i class="fas fa-envelope mr-1 mr-lg-3"></i>
Send Me an Email
</a>
</div>
<div class="row mt-4">
<div class="col">
<div class="copyright">
<p>
<i class="far fa-copyright"></i>
2020 Miles Wu
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Contact -->
<!-- jQuery -->
<script src="./public/js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap JS -->
<script src="./public/js/bootstrap.bundle.min.js"></script>
<!-- Page Events -->
<script src="./public/js/scripts.js"></script>
</body>
</html>