-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 2.49 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Adriana Szekeres - About">
<title>Adriana Szekeres - About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Adriana Szekeres</h1>
<p class="subtitle">About</p>
</div>
</header>
<nav>
<div class="container">
<a href="index.html" class="active">About</a>
<a href="research.html">Research Papers</a>
</div>
</nav>
<main class="container">
<section id="about">
<div class="about-header">
<div class="profile-image">
<img src="img/profile.jpg" alt="Adriana Szekeres" />
</div>
<div class="about-text">
<h2>About</h2>
<p>I am a Researcher at Microsoft, where I have been working since April 2025. With a strong background in the theory and practice of <strong>parallel and distributed systems</strong>, I focus on building dependable systems that are secure, robust, and functionally correct.</p>
</div>
</div>
<p>I earned my Ph.D. in Computer Science from the University of Washington, where I worked under the guidance of Prof. Henry M. Levy, Prof. Arvind Krishnamurthy, and Prof. Dan R. K. Ports as part of the Systems Lab. My doctoral research concentrated on distributed systems, transaction processing, consistency models, and replication protocols.</p>
<p>Following my Ph.D., I began my industry career as a Researcher at VMware in September 2020, where I spent three years advancing distributed systems research. When Broadcom acquired VMware, I continued my work as a Researcher at Broadcom from October 2023 to April 2025, before joining Microsoft Research.</p>
<p>My research has been published in top-tier conferences including SIGMOD, OSDI, SOSP, EuroSys, and DISC. <a href="research.html">View my research papers →</a></p>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Adriana Szekeres. All rights reserved.</p>
<div class="footer-links">
<a href="https://github.com/aaasz" target="_blank">GitHub</a>
</div>
</div>
</footer>
</body>
</html>