-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (88 loc) · 4.6 KB
/
index.html
File metadata and controls
95 lines (88 loc) · 4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kathy Wu</title>
<link rel="icon" type="image/png" href="img/favicon/k.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<img src="img/me/kathy_cold.jpeg" alt="Kathy Wu" class="profile-photo">
<h1>Kathy Wu</h1>
<div class="social-links">
<a href="mailto:wukathy321@gmail.com" title="Email">
<img src="img/social/mail.svg" alt="Email">
</a>
<a href="https://github.com/wukath" target="_blank" title="GitHub">
<img src="img/social/github.svg" alt="GitHub">
</a>
<a href="https://www.linkedin.com/in/kathywu2/" target="_blank" title="LinkedIn">
<img src="img/social/linkedin.svg" alt="LinkedIn">
</a>
<a href="https://scholar.google.com/citations?user=7hoO2woAAAAJ&hl=en" target="_blank" title="Google Scholar">
<img src="img/social/scholar.svg" alt="Google Scholar">
</a>
<a href="https://x.com/HiHelloKath" target="_blank" title="Twitter">
<img src="img/social/twitter.svg" alt="Twitter">
</a>
</div>
</header>
<main>
<section class="about">
<h2 class="section-title">About</h2>
<p>
I'm currently a software engineer at Google on the Vertex AI agent team, working on the
<a href="https://google.github.io/adk-docs/" target="_blank">Agent Development Kit (ADK)</a>.
Prior to that, I worked on distributed systems for the Static Content Service, Google's
CDN (a serving platform for non-streaming, HTTP content). I also worked on a full stack
document understanding app at <a href="https://www.instabase.com/" target="_blank">Instabase</a>.
</p>
<p>
I graduated from UC Berkeley in 2022 with a Bachelor's and Master's in Computer Science.
At Berkeley, I was a member of the <a href="https://yoseflab.github.io" target="_blank">Yosef Lab</a>,
where I worked on variational autoencoders for single-cell genomics data as part of the
<a href="https://scvi-tools.org/" target="_blank">scvi-tools</a> team.
</p>
<p>
My interests span across distributed systems, machine learning infrastructure, and computational
biology. I enjoy tackling complex technical challenges and building systems that enable researchers
and developers to push the boundaries of what's possible with AI.
</p>
</section>
<!-- <section class="blog-section">
<h2 class="section-title">Recent Posts</h2>
<article class="blog-post">
<h3><a href="#">Building Scalable Systems: Lessons Learned</a></h3>
<div class="date">March 15, 2024</div>
<p>
Reflections on designing and implementing distributed systems that can handle
millions of requests while maintaining reliability and performance...
</p>
</article>
<article class="blog-post">
<h3><a href="#">The Future of Machine Learning in Healthcare</a></h3>
<div class="date">February 28, 2024</div>
<p>
Exploring how recent advances in ML are transforming medical diagnosis and
treatment, and the challenges we still need to address...
</p>
</article>
<article class="blog-post">
<h3><a href="#">Getting Started with Rust for Systems Programming</a></h3>
<div class="date">February 10, 2024</div>
<p>
A beginner's guide to Rust, covering the basics of memory safety, ownership,
and why it's becoming increasingly popular for systems programming...
</p>
</article>
</section> -->
</main>
<footer class="footer">
<p>Last updated Oct 2025</p>
</footer>
</div>
</body>
</html>