-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (109 loc) · 6.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timothy Chen - Portfolio</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=IBM+Plex+Sans:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1><span class="highlight">Timothy</span> Chen</h1>
<nav>
<a href="#about">about</a>
<a href="projects.html">projects</a>
<button id="theme-toggle">
<img src="sun-icon.png" alt="Toggle Dark Mode" class="theme-icon">
</button>
</nav>
</header>
<main>
<section id="about">
<div class="about-content">
<img src="me.jpg" alt="Timothy Chen">
<div>
<p>
Hi, I'm Timothy, a student and software engineer. I'm most interested in the applications of data in software development, analytics, and ML/AI. <br><br>
Let's connect! Reach me at <a class="highlight" href="mailto:timothy.chen5@pepperdine.edu"><span class="highlight">timothy.chen5@pepperdine.edu</span></a>.
</p>
</div>
</div>
</section>
<section id="career-updates">
<h2>Highlights</h2>
<div class="work-list">
<div class="work-item">
<strong> [12/2024] </strong> Featured in Pepperdine's 2024 <a href="https://issuu.com/pepperdine/docs/it_annual_review_2024/5?ff">IT Annual Review </a>
</div>
<div class="work-item">
<strong>[05/2024]</strong> Joined <b>Amazon</b> as a data engineering intern on the <b>Alexa Enterprise</b> team in Seattle, WA
</div>
<div class="work-item">
<strong>[04/2024]</strong> Awarded the <b>Edison Scholarship</b> by natural science faculty
</div>
<div class="work-item">
<strong>[01/2024]</strong> Joined <a href="https://ensa.ai/" target="_blank">ensa.ai</a> as a part-time MLE intern, building a video processing computer vision pipeline
</div>
<div class="work-item">
<strong>[12/2023]</strong> <a href="https://digitalcommons.pepperdine.edu/scursas/2024/posters/2/" target="_blank">Paper</a> on autonomous RC cars in kinetic art published with funding from the <b>AYURI grant</b>
</div>
<div class="work-item">
<strong>[08/2023]</strong> Returned to Pepperdine University's internal app development team. Owned development for the rework of <a href="https://esign.pepperdine.edu/" target="_blank">esign.pepperdine.edu</a>.
</div>
<div class="work-item">
<strong>[07/2023]</strong> Awarded the <b>Northrop Grumman Endowed Scholarship</b> for excellence in engineering
</div>
<div class="work-item">
<strong>[07/2023]</strong> <a href="https://seaver.pepperdine.edu/newsroom/articles/7-10-23-chen-isapa.htm" target="_blank">Article</a> written about me by Pepperdine University's official Seaver Newsroom
</div>
<div class="work-item">
<strong>[06/2023]</strong> Oral presentation of research at the <b>ISAPA '23</b> held in Dunedin, New Zealand
</div>
<div class="work-item">
<strong>[05/2023]</strong> Joined <b>Samsung</b> as a software engineer intern on the data intelligence team in Austin, TX
</div>
<div class="work-item">
<strong>[04/2023]</strong> <a href="Clustering_Application_Project.pdf" target="_blank">Paper</a> on language processing for research publications
</div>
<div class="work-item">
<strong>[04/2023]</strong> Placing in my first hackathon at the CTG Hackathon hosted by <b>Morgan Stanley</b>
</div>
<div class="work-item">
<strong>[12/2022]</strong> <a href="CV_Plant_Cell_Detection.pdf" target="_blank">Paper</a> on deep learning for ecology applications
</div>
<div class="work-item">
<strong>[11/2022]</strong> Presented research at the <b>SCURR '22</b> at Pepperdine University
</div>
<div class="work-item">
<strong>[08/2022]</strong> Joined Pepperdine University's internal app development team as a part-time software developer. Owned development for <a href="https://sso.pepperdine.edu/" target="_blank">sso.pepperdine.edu</a>.
</div>
<div class="work-item">
<strong>[08/2022]</strong> Teaching Assistant for <a href="https://seaver.pepperdine.edu/academics/faculty/stan-warford/" target="_blank">Dr. Stan Warford</a> for <b>5 semesters</b>
</div>
<div class="work-item">
<strong>[07/2022]</strong> Awarded Keck Data Science Grant for significant research contribution
</div>
<div class="work-item">
<strong>[07/2022]</strong> Awarded the <b>Darnell Scholarship</b> by computer science faculty
</div>
<div class="work-item">
<strong>[05/2022]</strong> Began summer research with the <b>Keck Data Science Institute</b> at Pepperdine University on big data and artificial intelligence
</div>
</div>
</section>
</main>
<footer>
<div class="footer-links">
<a href="https://www.linkedin.com/in/timochen" target="_blank">
<img src="linkedin-icon.png" alt="LinkedIn"> LinkedIn
</a>
<a href="Timothy Chen Resume.pdf" target="_blank" class="resume-link">
<img src="resume-icon.png" alt="Resume" class="resume-icon"> Resume
</a>
</div>
<p>© 2024 Timothy Chen</p>
</footer>
<script src="script.js"></script>
</body>
</html>