-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1196 lines (1147 loc) · 60.6 KB
/
index.html
File metadata and controls
1196 lines (1147 loc) · 60.6 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
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
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
File Name: index.html
Author: Nicholas Lin
Date: 6/4/20
Description: Main landing lage of the web app
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175475170-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-175475170-1');
</script>
<meta charset="utf-8">
<meta property="og:title" content="Nicholas Lin">
<meta property="og:description" content="Nicholas Lin's Portfolio">
<meta property="og:image" content="./images/projects/project4/landing.png">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Nicholas Lin's Portfolio">
<meta name="author" content="Nicholas Lin">
<title>Nicholas Lin</title>
<link rel="icon" href="./images/icons/favicon.png">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/scrolling-nav.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<link href="css/snorlax.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="./css/animate.min.css" />
<!-- Font Awesome Icons-->
<script src="https://kit.fontawesome.com/fe5ca95958.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark sticky-top" id="main-nav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#home">NL</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about" class="active">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#projects" class="scroll">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#resume" class="scroll">Resumé</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact" class="scroll">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Particle Background -->
<div id="particles-js"></div>
<!-- Home/Landing Page -->
<header id="home" class="bg-primary text-white">
<div class="container-fluid d-flex align-items-center justify-content-center h-100 slider-text">
<div class="row d-flex justify-content-center text-center w-100">
<div class="col-md-10 animate__animated animate__fadeInUp">
<span class="subheading">Hey! I am</span>
<h1>Nicholas Lin</h1>
<h2>I'm a
<span class="txt-rotate" data-period="2000"
data-rotate="[ "Programmer.", "Developer.", "Engineer."]">
</span>
</h2>
</div>
</div>
</div>
<a href="#about" class="js-scroll-trigger mouse-indicator">
<div class="mouse">
<span></span>
</div>
</a>
</header>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row d-flex no-gutters">
<div class="col-md-6 col-lg-6">
<img class="img-fluid" src="images/about.jpg" alt="">
</div>
<div class="col-md-6 col-lg-6 pl-md-5 wow animate__animated animate__fadeInUp ">
<div class="row no-gutters d-flex flex-column about-section h-100">
<h1>About Me</h1>
<p> I'm a computer science student at the University of Virginia. I have a strong passion for learning and
applying knowledge to solve complex problems. I value technical knowledge as much as communication,
empathy, and collaboration. I also have a love for research and have been heavily involved in research as
a student at UVA. Some of my other interests include machine learning, cybersecurity, and AI. I also love
playing guitar and drawing.
</p>
<div class="row mt-auto no-gutters justify-content-left">
<a target="_blank"
href="https://docs.google.com/document/d/19R_A5m-D5mOndmhpn8hDWhUG1VEcm4r2V8Df_XvKzWk/edit?usp=sharing"
class="btn btn-primary py-3 px-3">View Resumé</a>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<div class="container-fluid">
<div class="row d-flex flex-column">
<div class="col-md-12 heading-section text-center py-5">
<h1>Projects</h1>
<h3>Here are some exciting projects I've been working on</h3>
</div>
<!-- Fifth Project-->
<div id="project-5" class="row ml-5 mr-5 project">
<div class="col-xl-6 wow animate__animated animate__fadeIn">
<div id="project-carousel-5" class="carousel slide carousel-fade project-carousel" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#project-carousel-5" data-slide-to="0" class="active"></li>
<li data-target="#project-carousel-5" data-slide-to="1"></li>
<li data-target="#project-carousel-5" data-slide-to="2"></li>
<li data-target="#project-carousel-5" data-slide-to="3"></li>
<li data-target="#project-carousel-5" data-slide-to="4"></li>
<li data-target="#project-carousel-5" data-slide-to="5"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active" style="background-image: url(images/projects/project5/landing.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Recently Played Analysis</h5>
<p>This page compares the user's most recent tracks to the top tracks of the day based on a
variety of features.
</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project5/spotlight.png); background-size: contain; background-repeat: no-repeat; background-color: black;">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Track Analysis</h5>
<p>The application fetches the user's most recently played tracks and gets the features for each
track. The audio player allows users to listen to previews of each song.</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project5/genres.png); background-size: contain; background-repeat: no-repeat; background-color: black;">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Genres</h5>
<p>Displays the user's recent genres using Chart js.</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project5/vibe.png) ;background-size: contain; background-repeat: no-repeat; background-color: black; ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Listening Trends</h5>
<p>Users can view trends in their listening habits and compare theese trends to the average song
for each year.
</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project5/map1.png); background-size: contain; background-repeat: no-repeat; background-color: black; ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>User Map</h5>
<p> Shows where users are located.
</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project5/map2.png); background-size: contain; background-repeat: no-repeat; background-color: black; ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>User Map</h5>
<p>Shows where users are located.
</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project5/oauth-flow.png) ;background-size: contain; background-repeat: no-repeat; background-color: white; ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Implicit Grant flow</h5>
<p> I learned about OAuth2 authentication flow and chose to use an Implicit Grant flow for
authentication. Implicit grant flow is for clients that are implemented entirely using
JavaScript and running in the resource owner’s browser. You do not need any server-side code to
use it.
</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#project-carousel-5" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#project-carousel-5" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-xl-6 project-description wow animate__animated animate__fadeInUp">
<h2>Vibe</h2>
<h3>Get insights into your Spotify listening history (10,000+ users)</h3>
<p>
Vibe gives you incredible insights into your listening habits.
Compare your most recent songs to the top tracks of the day, your last month of listening,
and even your favorite songs based on popularity, happiness, danceability, and more! Visualize
trends in your favorite songs over your entire Spotify listening history and how they stack up
against the top songs of each year. Rediscover the songs and artists you’ve been in love with the most.
This web application acquired over 10,000+ Spotify users from 50+ countries in 2 weeks.
I used Spotify's Web API to retrieve and analyze data and the implicit grant OAuth2 flow for
authentication.
This is my first web application built with React. I learned about class/functional components, JSX,
props, state, and lifecycle methods and utilized concepts such as Async/await, promises, callbacks, etc.
React js allowed me to organize my code so that I could adhere to DRY principles and better programming
practices.
</p>
<div class="row mt-auto no-gutters justify-content-left">
<a target="_blank" href="https://spotivibe.netlify.app/">
<svg class="bi bi-box-arrow-up-right" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M1.5 13A1.5 1.5 0 0 0 3 14.5h8a1.5 1.5 0 0 0 1.5-1.5V9a.5.5 0 0 0-1 0v4a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 0 0-1H3A1.5 1.5 0 0 0 1.5 5v8zm7-11a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-1 0V2.5H9a.5.5 0 0 1-.5-.5z" />
<path fill-rule="evenodd"
d="M14.354 1.646a.5.5 0 0 1 0 .708l-8 8a.5.5 0 0 1-.708-.708l8-8a.5.5 0 0 1 .708 0z" />
</svg>
</a>
<a target="_blank" href="https://github.com/Nicholas-Lin/vibe"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- First Project-->
<div id="project-1" class="row ml-5 mr-5 project">
<div class="col-xl-6 wow animate__animated animate__fadeIn">
<div id="project-carousel-1" class="carousel slide carousel-fade project-carousel" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#project-carousel-1" data-slide-to="0" class="active"></li>
<li data-target="#project-carousel-1" data-slide-to="1"></li>
<li data-target="#project-carousel-1" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active" style="background-image: url(images/projects/project1/home.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Search Page</h5>
<p>This page uses HTML5 geolocation to automatically fetch the user's location. I also implemented
Google's geocoding API
so that any non-exact location can be resolved to latitude/longitude coordinates for Yelp API
query.
</p>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url(images/projects/project1/results.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Results Page</h5>
<p>A list of merchants is retrieved using Yelp's fusion API. This list can be sorted based on
price, reviews, rating, etc.</p>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url(images/projects/project1/results_map.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Map Routing</h5>
<p>A merchant can be selected on the list or by selecting a marker on the map. The Google Map API
platform was used
to both plot merchants on the map and calculate route details.
</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#project-carousel-1" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#project-carousel-1" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-xl-6 project-description wow animate__animated animate__fadeInUp">
<h2>Crave</h2>
<h3>My First Web Application</h3>
<p>
This web application uses Yelp's Fusion API to help users pick a restaurant or experience.
The app obtains user location via HTML5 Geolocation and plots merchants on a map based on search terms
and search rules. I built this app with HTML, CSS, Javascript, and the Bootstrap library. I leveraged the
Google Maps API for route calculations, geocoding, and displaying markers on a map.
Before working on this project, I had never wrote a single line of HTML or CSS and I had very little
experience in Javascript.
This is why I used vanilla Javascript with JQuery and Axios for modifying HTML and making API requests
respectively.
I submitted this project to apply for the Capital One Software Engineering Summit Program. I was luckily
selected as one of thirty
students to participate in this program out of hundreds of applicants nationwide.
</p>
<div class="row mt-auto no-gutters justify-content-left">
<a target="_blank" href="https://nicholas-lin.github.io/crave/">
<svg class="bi bi-box-arrow-up-right" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M1.5 13A1.5 1.5 0 0 0 3 14.5h8a1.5 1.5 0 0 0 1.5-1.5V9a.5.5 0 0 0-1 0v4a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 0 0-1H3A1.5 1.5 0 0 0 1.5 5v8zm7-11a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-1 0V2.5H9a.5.5 0 0 1-.5-.5z" />
<path fill-rule="evenodd"
d="M14.354 1.646a.5.5 0 0 1 0 .708l-8 8a.5.5 0 0 1-.708-.708l8-8a.5.5 0 0 1 .708 0z" />
</svg>
</a>
<a target="_blank" href="https://github.com/Nicholas-Lin/crave"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- Second Project-->
<div id="project-2" class="row ml-5 mr-5 project">
<div class="col-xl-6 wow animate__animated animate__fadeIn">
<div id="project-carousel-2" class="carousel slide carousel-fade project-carousel" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#project-carousel-2" data-slide-to="0" class="active"></li>
<li data-target="#project-carousel-2" data-slide-to="1"></li>
<li data-target="#project-carousel-2" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active"
style="background-image: url(images/projects/project2/screen-reader.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>The Vision</h5>
<p>My vision of a more accessible internet uses voice commands to navigate the internet.
Imagine the ease of use of Google Voice Assistant and Amazon Alexa, but with the ability
visit and interact with any website.
</p>
</div>
</div>
</div>
<!-- Use this style attribute to force image to fit in slide -->
<div class="carousel-item" style="background-image: url(images/projects/project2/diagram.png); background-size: contain;
background-repeat: no-repeat; background-color: white;">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Data Flow Model</h5>
<p>This is a high-level diagram of how the prototype works. the prototype can process the user’s
voice as input,
produce a text and audio response as output, and navigate through the New York Times website and
YouTube.</p>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url(images/projects/project2/diagram2.png); background-size: contain;
background-repeat: no-repeat; background-color: white;">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Scalable Model</h5>
<p>
Neural networks can be leveraged to scale this model to other websites.
Machine learning can recognize common website structures,
identify headers, main content, links, etc. and use the website’s structure to extract
information.
This information can then be "cached" so that frequently visited websites only need to be
analyzed once.
</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#project-carousel-2" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#project-carousel-2" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-xl-6 project-description wow animate__animated animate__fadeInUp">
<h2>Visionary</h2>
<h3>A Voice-Driven Screen Reader</h3>
<p>
I was inspired by an article that detailed the struggles that blind individuals faced when using the
internet.
In order to navigate websites, blind individuals use software which reads aloud every element of a
webpage,
often overwhelming the user with extraneous information. I envisioned a screen reader that would allow
users
to effectively control their browsers by using voice commands. I developed this in Python because of the
many
robust libraries written for Python. The program then uses Beautiful Soup to parse the HTML for key
information
and the Selenium library to automate browser navigation. Lastly, the program composes output based on the
user input,
then converts this output to voice for the user. I am currently researching integrating AI/ML or
leveraging an accessibility
API to scale this to other websites.
</p>
<div class="row mt-auto no-gutters justify-content-left">
<a target="_blank" href="https://www.youtube.com/watch?v=ahDwlm0szXE">
<svg class="bi bi-box-arrow-up-right" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M1.5 13A1.5 1.5 0 0 0 3 14.5h8a1.5 1.5 0 0 0 1.5-1.5V9a.5.5 0 0 0-1 0v4a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 0 0-1H3A1.5 1.5 0 0 0 1.5 5v8zm7-11a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-1 0V2.5H9a.5.5 0 0 1-.5-.5z" />
<path fill-rule="evenodd"
d="M14.354 1.646a.5.5 0 0 1 0 .708l-8 8a.5.5 0 0 1-.708-.708l8-8a.5.5 0 0 1 .708 0z" />
</svg>
</a>
<a target="_blank" href="https://github.com/Nicholas-Lin/Visionary"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- Third Project-->
<div id="project-3" class="row ml-5 mr-5 project">
<div class="col-xl-6 wow animate__animated animate__fadeIn">
<div id="project-carousel-3" class="carousel slide carousel-fade project-carousel" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#project-carousel-3" data-slide-to="0" class="active"></li>
<li data-target="#project-carousel-3" data-slide-to="1"></li>
<li data-target="#project-carousel-3" data-slide-to="2"></li>
<li data-target="#project-carousel-3" data-slide-to="3"></li>
<li data-target="#project-carousel-3" data-slide-to="4"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active"
style="background-image: url(images/projects/project3/lidar_sim_1.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>LiDAR Simulation Environment</h5>
<p>
I used the Heidelberg LiDAR Operations Simulator (HELIOS) to create LiDAR point clouds.
This is the 3D scene that I created. This was a time-intensive process,
as I had to manually code the position, orientation, and size of each object and run the
simulation to observe changes.
</p>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url(images/projects/project3/lidar_sim_2.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>LiDAR Simulation Result</h5>
<p>
Here, simulated three-dimension (3D) ToF imaging based
on fabricated resistive memory is depicted. The memristor-based ToF sensors show comparable
resolution with high scalability and low power-operation, shedding light on transcending the
structural
limitation of current 3D sensors.
</p>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url(images/projects/project3/ray_sim.gif) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Ray Tracing Simulation</h5>
<p>This is an example of one simulation trial using COMSOL Multiphysics. I arranged the objects in
the simulation to perform a variety of different tests and collected data accordingly.</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project3/graph.png); background-size: contain; background-repeat: no-repeat; background-color: white;">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Ray Tracing Data: Number of Rays Received vs. Time</h5>
<p>This is the corresponding graph of the previous simulation, depicting the number of rays that
the receiver receives as a function of time.</p>
</div>
</div>
</div>
<div class="carousel-item"
style="background-image: url(images/projects/project3/memristor_sample.png) ">
<div class="overlay">
<div class="carousel-caption d-none d-md-block">
<h5>Memristor Quality Assurance Testing</h5>
<p>
This is a memristor sample received from a University Lab. I tested memristors for quality
assurance.
This involved viewing samples under a digital microscope, applying voltage, and reading a
current vs. voltage graph on an osciloscope.
</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#project-carousel-3" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#project-carousel-3" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-xl-6 project-description wow animate__animated animate__fadeInUp">
<h2>Resistive Memory Research</h2>
<h3>LiDAR and Ray-Tracing Simulations</h3>
<p>
I am currently researching applications of resistive memory at UVA. Resistive memory (memristors), are a
two-terminal method of storing data
and enabling parallel computing, based on spike-based neural networks by mimicking authentic bio-neural
spike
response. Memristors have promising applications in distance mapping and 3D imaging technology.
I developed LiDAR and ray tracing simulations to properly model the applications of memristors.
I used software to simulate LiDAR by placing 3D objects using XML to generate 3D point clouds and
modeled optical ray tracing simulations and collected data accordingly.
The figures and data generated by my simulations will be featured in the research paper as well as The
Spectra, the
Undergraduate Science and Engineering Journal at UVA.
</p>
<div class="row mt-auto no-gutters justify-content-left">
<a target="_blank" href="https://pages.shanti.virginia.edu/tfdevicelab/">
<svg class="bi bi-box-arrow-up-right" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M1.5 13A1.5 1.5 0 0 0 3 14.5h8a1.5 1.5 0 0 0 1.5-1.5V9a.5.5 0 0 0-1 0v4a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 0 0-1H3A1.5 1.5 0 0 0 1.5 5v8zm7-11a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-1 0V2.5H9a.5.5 0 0 1-.5-.5z" />
<path fill-rule="evenodd"
d="M14.354 1.646a.5.5 0 0 1 0 .708l-8 8a.5.5 0 0 1-.708-.708l8-8a.5.5 0 0 1 .708 0z" />
</svg>
</a>
</div>
</div>
</div>
<!-- Fourth Project-->
<div id="project-4" class="row ml-5 mr-5 project">
<div class="col-xl-6 wow animate__animated animate__fadeIn">
<div id="project-carousel-4" class="carousel slide carousel-fade project-carousel" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" style="background-image: url(images/projects/project4/landing.png) ">
</div>
</div>
</div>
</div>
<div class="col-xl-6 project-description wow animate__animated animate__fadeInUp">
<h2>My Personal Website</h2>
<h3>You're looking at it :)</h3>
<p>
This personal website is a portfolio of some of my projects and experiences. I built this website with
HTML,
CSS, Javascript, and Bootstrap. I used Particle js to create the background effect on the landing page
(try clicking and moving your mouse around). A lot of elements you see on this website are custom made. I
did not
just use a template and paste my own content in. For example,I built the carousels with custom CSS to add
features that Bootstrap's carousels did not offer.
I also used JS to create interactive navigation based on what the user is viewing. I animated elements
with animate.css and wow.js.
The main challenges of creating this website was conceptualizing the design I wanted to create, and
executing the design in a fully responsive website.
</p>
<div class="row mt-auto no-gutters justify-content-left">
<a target="_blank" href="https://github.com/Nicholas-Lin/nicholas-lin.github.io"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Resume Section -->
<section id="resume">
<div class="container">
<div class="col-md-12 heading-section text-center py-5">
<h1>My Resumé</h1>
</div>
<div class="row no-gutters">
<div class="col-md-3">
<!-- Side Navigation -->
<nav id="navi">
<ul>
<li><a href="#page-1" class="js-scroll-trigger">Education</a></li>
<li><a href="#page-2" class="js-scroll-trigger">Experience</a></li>
<li><a href="#page-3" class="js-scroll-trigger">Skills</a></li>
<li><a href="#page-4" class="js-scroll-trigger">Awards</a></li>
</ul>
</nav>
</div>
<div class="col-md-9">
<!-- Experiences page -->
<div id="page-2" class="page two">
<h2 class="heading">Experience</h2>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/Slack_Mark.svg);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">Sept 2022 - Present</span>
<h2>Slack</h2>
<span class="position">Software Engineer</span>
<ul>
<li>Led development of a Vulnerability Management Platform aggregating >10k findings/week across 10+
sources.</li>
<li>Saved >100 engineering hours by automating vulnerability deduplication, validation, and ticketing.
</li>
<li>Improved API performance by 1200x (3 minutes → 150ms response) with database optimization and
batching.</li>
<li>Built Slack's SDL Automation Bot, consolidating security, compliance, and legal workflows.</li>
<li>Developed Hack static analysis tooling; open-sourced grammar and published on Slack Engineering
blog.</li>
<li>Presented at <a href="https://owasp2024globalappsecsanfra.sched.com/event/1g3aH/"
target="_blank">OWASP Global SF Conference 2024</a>.</li>
<li>Mentored junior engineers and participated in L6+ hiring interviews.</li>
</ul>
</div>
</div>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/ggv-logo.jpg);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">May 2021 - August 2021</span>
<h2>GGV Capital</h2>
<span class="position">NextGen Fellow</span>
<ul>
<li>
GGV Capital is a global venture capital firm that invests in local founders building market-leading
companies. GGV is sector-focused, investing in social/internet, enterprise tech, and smart tech from
seed to growth stage from five offices around the world. GGV has $9.2 billion in assets under
management across multiple funds. Next-Gen Fellows is a summer program designed to build the skills
necessary for a career in technology.
</li>
<li>
Software Engineering Intern at Slack https://www.ggvc.com/ggv-nextgen-fellow/
</li>
</ul>
</div>
</div>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/capital-one-logo.svg);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">August 2020</span>
<h2>Capital One</h2>
<span class="position">Software Engineering Summit Intern</span>
<ul>
<li>
Selected as 1/40 students from 400+ national applicants for developing an outstanding web
application with the Yelp API
</li>
<li>
Participated in classes on iOS, hardware, Firebase, machine learning, and Azure
</li>
<li>
1st Place Hackathon: Developed a Chrome extension budgeting app and presented to 12 Capital One VPs
& Executives
</li>
</ul>
</div>
</div>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/leidos.png);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">June 2020 - August 2020</span>
<h2>Leidos</h2>
<span class="position">Software Engineering Intern</span>
<ul>
<li>
Developed a tailorable, configurable portfolio management dashboard to provide leadership level
visibility, program transparency and proactive decision making capabilities
</li>
<li>
Implemented features using Typescript, React, JavaScript, Git, web-developer tools, Jira API, and UI
design
</li>
<li>
Processed user stories by using an Agile methodology & participated in bi-weekly sprint
plannings/retrospectives
</li>
</ul>
</div>
</div>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/cloudshape-logo2.png);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">June 2019 - August 2019</span>
<h2>CloudShape</h2>
<span class="position">CloudLab Intern</span>
<ul>
<li>Managed an IT lab environment for implementation of customer solutions by configuring and
administering 10+ Dell
PowerEdge servers, Synology NAS, and SuperMicro servers with VMware and Citrix Xenserver</li>
<li>Established data center access by implementing 3 RDP jump boxes, IDRAC, DNS, and AD DS on Windows
Server VMs</li>
<li>Developed detailed documentation of data center hardware, networks, and servers with Visio,
KeepassX, and Excel</li>
<li>Adapted the lab to changing needs by coordinating with engineers and presented work to a team of
solution architects</li>
</ul>
</div>
</div>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/saic-logo.svg);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">May 2019</span>
<h2>Science Applications International Corporation (SAIC)</h2>
<span class="position">Intern</span>
<ul>
<li>Collaborated with a team to design a solution using optical satellite to image the equator of Mars
</li>
<li>Applied Python to perform calculations related to radar and satellite imaging with numpy, pandas,
and matplotlib</li>
<li>Presented work to a panel of SAIC VPs, executives, and engineers</li>
</ul>
</div>
</div>
</div>
<!-- Education page -->
<div id="page-1" class="page one">
<h2 class="heading">Education</h2>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon-small" style="background-image: url(./images/resume/uva.svg);"></div>
</div>
<div class="text pl-3 pr-3 pr-3">
<span class="date">Class of 2022</span>
<h2>Bachelor's in Computer Science</h2>
<span class="position">University of Virginia</span>
<p>National Collegiate Cyber Defense Competitor (Core UVA Team), HooHacks (Marketing Committee),
Computer &
Network Security, Future Business Leaders of America, Sigma XI Research Society, Society for Science &
the Public</p>
</div>
</div>
</div>
<!-- Skills page -->
<div id="page-3" class="page three">
<h2 class="heading">Skills</h2>
<h3>Programming Experience</h3>
<div class="row mx-auto my-auto pb-5 wow animate__animated animate__fadeInUp">
<div id="skill-carousel-1" class=" skill-carousel carousel slide w-100" data-ride="carousel">
<div class="carousel-inner w-100" role="listbox">
<div class="carousel-item active">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Python</h2>
<img src="./images/skills/python.svg" alt="">
<h6 class="small text-gray text-center">3 Years</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Java</h2>
<img src="./images/skills/java.svg" alt="">
<h6 class="small text-gray text-center">3 Years</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">C++</h2>
<img src="./images/skills/c++.svg" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Assembly</h2>
<img src="./images/skills/assembly.png" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">React</h2>
<img src="./images/skills/react.png" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">HTML</h2>
<img src="./images/skills/html5.svg" class="" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">CSS</h2>
<img src="./images/skills/css3.svg" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Javascript</h2>
<img src="./images/skills/js.png" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Typescript</h2>
<img src="./images/skills/typescript.svg" alt="">
<h6 class="small text-gray text-center">1 Year</h6>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev w-auto" href="#skill-carousel-1" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark border border-dark rounded-circle"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next w-auto" href="#skill-carousel-1" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark border border-dark rounded-circle"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<h3>Technical Experience</h3>
<div class="row mx-auto my-auto pb-5 wow animate__animated animate__fadeInUp">
<div id="skill-carousel-2" class=" skill-carousel carousel slide w-100" data-ride="carousel">
<div class="carousel-inner w-100" role="listbox">
<div class="carousel-item active">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Networking</h2>
<img src="./images/skills/network.png" alt="">
<h6 class="small text-gray text-center"></h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Git</h2>
<img src="./images/skills/git.svg" alt="">
<h6 class="small text-gray text-center"></h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Linux</h2>
<img src="./images/skills/linux.svg" alt="">
<h6 class="small text-gray text-center"></h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Cybersecurity</h2>
<img src="./images/skills/lock.svg" alt="">
<h6 class="small text-gray text-center"></h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Virtualization</h2>
<img src="./images/skills/cloud.png" alt="">
<h6 class="small text-gray text-center"></h6>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-lg-3 col-md-6">
<div class="card shadow text-center align-items-center">
<div class="card-body">
<h2 class="font-weight-bold">Server Admin</h2>
<img src="./images/skills/server.png" alt="">
<h6 class="small text-gray text-center"></h6>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev w-auto" href="#skill-carousel-2" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark border border-dark rounded-circle"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next w-auto" href="#skill-carousel-2" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark border border-dark rounded-circle"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!-- Awards page -->
<div id="page-4" class="page four">
<h2 class="heading">Awards</h2>
<div class="resume-wrap d-flex wow animate__animated animate__fadeInUp">
<div class="icon-formatter d-flex justify-content-center">
<div class="icon" style="background-image: url(./images/resume/uva.svg);"></div>
</div>
<div class="text pl-3 pr-3">
<span class="date">2019</span>
<h2>Entrepreneurship Concept Competition Winner</h2>
<span class="position">University of Virginia</span>
<ul>
<li>Awarded $1000 for Science, Technology, & Innovation focused concept</li>
<li>Increasing web accessibility for blind and vision-impaired individuals through optimized HTML
parsing and speech-based interactivity</li>
</ul>
</div>
</div>