-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (130 loc) · 5.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8:">
<meta name="viewport" content="" width=device-width, initial-scale="1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/animations.css">
<title>Ricky Huang</title>
</head>
<body>
<div class="flash-border"></div>
<video autoplay muted loop id="background-video">
<source src="static/abstract.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<section id="name">
<div class="container">
<div class="name-card">
<div class="name-card-item blank"></div>
<h1 class="name-card-item name">Ricky Huang</h1>
<div class="name-card-item external-links">
<a class="external-link" href="files/Ricky_Huang_Resume.pdf" target="_blank">Resume</a>
<a class="external-link" href="https://www.linkedin.com/in/rickyhuangjh/" target="_blank">LinkedIn</a>
<a class="external-link" href="https://www.github.com/rickyhuangjh/" target="_blank">GitHub</a>
</div>
</div>
<div class="fancy">
<div class="fancy-inner"></div>
</div>
</div>
</section>
<section id="education">
<div class="container">
<h1 class="item">Education</h1>
<hr class="item">
<div class="school">
<div class="school-header">
<h2>University of Waterloo</h2>
<h3>Sep. 2022 — Aug. 2026 Expected</h3>
</div>
<h3 class="degree">Bachelor of Computer Science</h3>
<div class="school-description">
<p>
Relevant coursework: Data Structures and Algorithms, Database Systems,
Operating Systems, Computer Networks, Machine Learning, Artificial Intelligence.
</p>
<p>
Extracurriculars: Hack the North, Waterloo Data Science Club,
Waterloo Artificial Intelligence Club, Waterloo Computer Science Club.
</p>
</div>
</div>
</div>
</section>
<section id="experience">
<div class="container">
<h1 class="item">Experience</h1>
<hr class="item">
<div class="job">
<div class="job-header">
<h2>JumpPoint AI</h2>
<h3>May 2024 — Aug. 2024</h3>
</div>
<h3 class="job-position">Software Engineering Intern</h3>
<div class="job-description">
<p>
Reduced average time spent filling out an insurance
application package from 12 minutes to 5 minutes
(58% decrease) by reconstructing OCR data from
Amazon Textract into interactable HTML pages.
</p>
<p>
Reduced average time spent per review from 80 seconds to 25 seconds (69% decrease) by developing a
dynamic dashboard using React for clients to review accuracy of machine-learning models.
</p>
</div>
</div>
<hr class="item">
<div class="job">
<div class="job-header">
<h2>H2O Geomatics</h2>
<h3>Jan. 2024 — Apr. 2024</h3>
</div>
<h3 class="job-position">Machine Learning Engineering Intern — <a href="">White paper</a></h3>
<div class="job-description">
<p>
Developed and deployed video inpainting models from scratch for
spatial and temporal gap-filling of large satellite image datasets
which removed 99% of cloud covereage.
</p>
<p>
Researched efficacy of and implemented CNNs, GANs, RNNs, Transformers
for deep learning with geospatial datasets.
</p>
<p>
Optimized data pipelines and parallelized training and testing loops
across multiple GPUs which reduced training and testing times by 95%.</p>
</p>
</div>
</div>
<hr class="item">
<div class="job">
<div class="job-header">
<h2>ByteDance</h2>
<h3>May 2023 — Aug. 2023</h3>
</div>
<h3 class="job-position">Backend Software Engineering Intern</h3>
<div class="job-description">
<p>
Developed backend of messaging service in Java with SpringBoot using MySQL database to hold user data,
content. Used MyBatis framework to handle interactions with REST APIs.
</p>
<p>
Incorporated design patterns such as dependency
inversion to prioritize adaptability, maintainability, and scal-
ability by refactoring existing code.
</p>
<p>
Efficiently handle simultaneous CRUD calls by implementing caching and concurrency capabilities.
</p>
</div>
</div>
</div>
</section>
<script>
var video = document.getElementById('background-video');
video.playbackRate = 0.6;
</script>
</body>
</html>