-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
224 lines (205 loc) · 10.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Alec Li</title>
<link href="favicon.ico" rel="icon"/>
<!-- Bootstrap -->
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" rel="stylesheet">
<script crossorigin="anonymous" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Styles -->
<link href="css/styles.css" rel="stylesheet"/>
<!-- Fonts -->
<link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Source+Sans+Pro&display=swap" rel="stylesheet">
<!-- Feature detection -->
<script src="js/modernizr.js"></script>
<!-- Handle fallback with browsers that don't support webp -->
<script src="js/convert_webp.js"></script>
<!-- Masonry JS -->
<script async src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<!-- Google tag for site analytics (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W6YVCZH4SR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-W6YVCZH4SR');
</script>
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark sticky-top">
<div class="container-sm container-scale">
<a class="navbar-brand">
<img class="nav-icon" alt="Phi" data-fallback-filetype="png"
draggable="false" src="assets/img/Phi-icon.webp"/>
<span class="nav-text">Alec Li</span>
</a>
<button class="navbar-toggler" aria-controls="navbar-right" aria-expanded="false" aria-label="Toggle navigation"
data-bs-target="#navbar-right" data-bs-toggle="collapse" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbar-right" class="collapse navbar-collapse ms-auto">
<ul class="navbar-nav ms-auto mb-0 mb-sm-2">
<li class="nav-item">
<a class="nav-link active">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" aria-expanded="false" href="coursework" role="button">
Coursework
</a>
<ul class="dropdown-menu dropdown-menu-dark">
<li><a class="dropdown-item" href="coursework/latex.html">LaTeX</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="teaching">Teaching</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container-sm container-scale">
<div id="intro-div" class="container-fluid flex-row align-items-center mx-auto justify-content-center">
<div id="intro-left">
<img id="img-headshot" class="d-block mx-auto" alt="Alec Li" data-fallback-filetype="jpg"
src="assets/img/AlecLi.webp"/>
<div id="intro-links">
<a class="text-decoration-none" href="https://www.linkedin.com/in/alec-li-84745b168/" target="_blank">
<img class="intro-link" alt="LinkedIn Profile" aria-label="LinkedIn Profile Link"
data-fallback-filetype="png" src="assets/img/LI-In-Bug.webp"
title="LinkedIn Profile"/>
</a>
<a class="text-decoration-none" href="https://github.com/smartspot2" target="_blank">
<img class="intro-link" alt="GitHub Profile" aria-label="GitHub Profile Link"
data-fallback-filetype="png" src="assets/img/GitHub-Mark-32px.webp"
title="GitHub Profile"/>
</a>
<a id="intro-email-link" class="text-decoration-none">
<img class="intro-link" alt="Email Address"
aria-label="Copy Personal Email Address" src="assets/img/envelope.svg"
title="Personal Email"/>
</a>
</div>
</div>
<div id="intro-right" class="container-fluid">
<h2>Hi!</h2>
<p>My name is Alec Li and I'm a Computer Science and Applied Math double major at UC Berkeley.</p>
<p>I also enjoy composing music, playing tetris, swimming, and tackling random puzzles I find on the internet.</p>
</div>
</div>
<h3>Projects</h3>
<div id="projects" data-masonry='{"itemSelector": ".project-card"}'>
<div class="card project-card">
<div class="card-header d-flex flex-row align-items-center">
<a class="text-decoration-none project-card-title"
href="https://smartspot2.github.io/canvas-grade-calculator" target="_blank">
<b>Canvas Grade Calculator</b>
</a>
<a class="github-link"
href="https://github.com/smartspot2/canvas-grade-calculator" target="_blank">
<img class="github-img" alt="Github" aria-label="Canvas Grade Calculator GitHub Link"
data-fallback-filetype="png"
src="assets/img/GitHub-Mark-32px.webp">
</a>
</div>
<img class="card-img-top project-img"
alt="Canvas Grade Calculator" aria-label="Example of Canvas Grade Calculator use"
data-fallback-filetype="jpg"
src="assets/img/CanvasGradeCalculator.webp"/>
<div class="card-body">
A website built with Angular and Typescript to help students
easily manage, calculate, and predict grades in classes that use Canvas LMS.
Includes a text parser to convert raw pasted webpage text into Angular components,
utilizing local browser storage to persist parsed data.
Grade distributions for assignments are also illustrated in responsive box plots with d3.js.
</div>
</div>
<div class="card project-card">
<div class="card-header d-flex flex-row align-items-center">
<a class="text-decoration-none project-card-title"
href="https://smartspot2.github.io/geo10-map-quiz" target="_blank">
<b>GEOG10 Map Quizzes</b>
</a>
<a class="github-link"
href="https://github.com/smartspot2/geo10-map-quiz" target="_blank">
<img class="github-img" alt="Github" aria-label="GEOG10 Map Quiz GitHub Link"
data-fallback-filetype="png"
src="assets/img/GitHub-Mark-32px.webp">
</a>
</div>
<img class="card-img-top project-img"
alt="GEOG10 Map Quiz" aria-label="Example of GEOG10 Map Quiz use"
data-fallback-filetype="jpg"
src="assets/img/Geo10MapQuiz.webp"/>
<div class="card-body">
A website built in vanilla HTML and JS, with manually edited SVG maps
to help students in Berkeley's GEOG10 course with map quizzes of all continents and the world map.
Utilizes JavaScript to handle timers and quiz functionality,
including the scrollable and resizable map interface.
</div>
</div>
<div class="card project-card">
<div class="card-header d-flex flex-row align-items-center">
<span class="project-card-title">
<b>Sorting Visualizer</b>
</span>
<a class="github-link"
href="https://github.com/smartspot2/sort-visualization" target="_blank">
<img class="github-img" alt="Github" aria-label="Sorting Visualizer Github Link"
data-fallback-filetype="png"
src="assets/img/GitHub-Mark-32px.webp">
</a>
</div>
<div id="sorting-visualizer-div" class="img-crop freezeframe">
<img class="card-img-top project-img freezeframe-overlay"
alt="Sorting Visualizer" aria-label="Sorting Visualizer Example"
data-fallback-filetype="gif"
src="assets/img/RadixSortLSD_preview.webp"/>
<img id="sorting-visualizer"
class="card-img-top project-img freezeframe-gif"
alt="Sorting Visualizer" data-fallback-filetype="gif"
src="assets/img/RadixSortLSD.webp"/>
</div>
<div class="card-body">
A Processing 3 and JavaFX applet for visualizing 20+ different kinds of sorts.
All sorts are animated and annotated with highlights and short descriptions at each step.
Also includes documentation for each sort, describing the algorithm and time/space complexities.
</div>
</div>
<div class="card project-card">
<div class="card-header d-flex flex-row align-items-center">
<a class="text-decoration-none project-card-title"
href="https://smartspot2.github.io/tetris-ai" target="_blank">
<b>Tetris AI</b>
</a>
<a class="github-link"
href="https://github.com/smartspot2/tetris-ai" target="_blank">
<img class="github-img" alt="Github" aria-label="Tetris AI GitHub Link"
data-fallback-filetype="png"
src="assets/img/GitHub-Mark-32px.webp">
</a>
</div>
<img class="card-img-top project-img"
alt="Tetris AI" data-fallback-filetype="jpg" src="assets/img/TetrisAI.webp"/>
<div class="card-body">
A web app built with p5.js, simulating the traditional game of Tetris.
Includes a fully configurable AI using a fitness score
composed of various statistics like
line clears, board height, number of holes, etc.
</div>
</div>
</div>
</main>
<footer class="footer bg-light">
<div class="container-sm container-scale">
Copyright © 2021 Alec Li
</div>
</footer>
<!-- Handle gif freezing, email copying -->
<script src="js/utils.js"></script>
</body>
</html>