-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (92 loc) · 4.23 KB
/
index.html
File metadata and controls
104 lines (92 loc) · 4.23 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
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sawan's Site</title>
<!-- External Stylesheet -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main-layout">
<div class="image-left"></div>
<div class="content-right">
<header class="main-header">
<div class="logo">Sawan Srivastava</div>
<nav class="main-nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="/blog/">Blog</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome!</h1>
<h3 style="font-weight: normal">
I'm Sawan, a Data Science student at <a href="https://www.berkeley.edu/" style="color: inherit "target="_blank">UC Berkeley</a>!
</h3>
<br>
</section>
<section id="work">
<h3 style="font-weight: normal">
This summer I interned at <a href="https://aws.amazon.com" style="color: inherit "target="_blank">AWS<a> where I worked on <a href="https://www.opensearch.org/" style="color: inherit "target="_blank">OpenSearch</a>, a distributed search engine.
</h3>
<br>
<h3 style="font-weight: normal">
My project involved optimizing query performance, specifically for Term and Boolean Queries, the most common types of queries in OpenSearch. Read more about my project and the approximation framework on this <a href="https://opensearch.org/blog/opensearch-approximation-framework/" style="color: inherit "target="_blank">blog<a>.
</h3>
<br>
<h3 style="font-weight: normal">
When I'm at Berkeley, I'm involved at the <a href="https://ocf.berkeley.edu" style="color: inherit "target="_blank">Open Computing Facility</a> where I'm the Head Instructor of the <a href="https://decal.ocf.berkeley.edu" style="color: inherit "target="_blank">Linux SysAdmin DeCal</a>.
</h3>
<br>
</section>
<section id="friends" class="button-grid-section">
<h2>Buddy Box</h2>
<div class="button-grid">
<a href="https://chenghao.li/" target="_blank" class="button-88x31">
<img src="images/friends/chenghao.png" alt="Chenghao's Website">
</a>
<a href="https://joewang.me/" target="_blank" class="button-88x31">
<img src="images/friends/joe.png" alt="Joe's Website">
</a>
<a href="https://minasonmez.com/" target="_blank" class="button-88x31">
<img src="images/friends/mina.gif" alt="Mina's Website">
</a>
<a href="https://jaysa.net/" target="_blank" class="button-88x31">
<img src="images/friends/jaysa.png" alt="Jaysa's Website">
</a>
<a href="https://erdaifuu.com/" target="_blank" class="button-88x31">
<img src="images/friends/carl.gif" alt="Carl's Website">
</a>
<a href="https://lukegonsalves.com/" target="_blank" class="button-88x31">
<img src="images/friends/luke.png" alt="Luke's Website">
</a>
<a href="https://decal.ocf.berkeley.edu/" target="_blank" class="button-88x31">
<img src="images/friends/ocfdecal.png" alt="OCF DeCal">
</a>
<a href="https://ocf.berkeley.edu/" target="_blank" class="button-88x31">
<img src="images/friends/ocf.png" alt="OCF">
</a>
</div>
</section>
<section id="socials">
<h2>Socials</h2>
<a href="mailto:sawan_srivastava@berkeley.edu" style="color: inherit "target="_blank">
<img src="images/message.png"/>
</a>
<a href="https://github.com/sawansri" style="color: inherit "target="_blank">
<img src="images/github.svg"/>
</a>
<a href="https://linkedin.com/in/sawan-s" style="color: inherit "target="_blank">
<img src="images/linkedin.svg"/>
</a>
</section>
</main>
</div>
</div>
<!-- External JavaScript -->
<script src="js/script.js"></script>
</body>
</html>