-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
226 lines (194 loc) · 8.68 KB
/
index.html
File metadata and controls
226 lines (194 loc) · 8.68 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
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
225
226
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/starter-template.css" rel="stylesheet">
<title>Anish Jayant</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header" style="color:#0d758f">Anish Jayant</h1>
</div>
</div>
<style>
.photo {
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
}
.photo img {
width: 100%;
max-width: 320px;
aspect-ratio: 1 / 1; /* square */
object-fit: cover; /* no distortion */
display: block;
border-radius: 8px;
}
@media (max-width: 768px) {
.photo img { max-width: 280px; }
}
@media (max-width: 576px) {
.photo img { max-width: 250px; }
}
</style>
<!-- Dark mode toggle + theme variables -->
<style>
:root {
--bg: #ffffff;
--text: #111111;
--muted: #555555;
--card: #ffffff;
--border: #e6e6e6;
--link: #0d758f;
}
/* When html has data-theme="dark" */
html[data-theme="dark"] {
--bg: #0b0f14;
--text: #e8eef6;
--muted: #aab6c2;
--card: #111827;
--border: #243244;
--link: #7dd3fc;
}
body {
background: var(--bg) !important;
color: var(--text) !important;
}
p, li, span, div { color: var(--text); }
.image-label { color: var(--muted) !important; }
a { color: var(--link) !important; }
/* Optional: make common containers look nicer in dark mode */
.container, .row, .span12, .col-md-6, .col-md-3 {
background: transparent;
}
/* Toggle button styling */
.theme-toggle {
position: fixed;
top: 16px;
right: 16px;
z-index: 9999;
border: 1px solid var(--border);
background: var(--card);
color: var(--text);
padding: 8px 12px;
border-radius: 10px;
cursor: pointer;
font-size: 14px;
box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.theme-toggle:focus { outline: none; }
</style>
<button id="themeToggle" class="theme-toggle" type="button">🌙 Dark</button>
<script>
(function () {
var STORAGE_KEY = "theme";
var btn = document.getElementById("themeToggle");
function setTheme(theme) {
if (theme === "dark") {
document.documentElement.setAttribute("data-theme", "dark");
btn.textContent = "☀️";
} else {
document.documentElement.removeAttribute("data-theme");
btn.textContent = "🌙";
}
localStorage.setItem(STORAGE_KEY, theme);
}
// Initial theme: saved preference > OS preference > light
var saved = localStorage.getItem(STORAGE_KEY);
if (saved) {
setTheme(saved);
} else {
var prefersDark = window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches;
setTheme(prefersDark ? "dark" : "light");
}
btn.addEventListener("click", function () {
var isDark = document.documentElement.getAttribute("data-theme") === "dark";
setTheme(isDark ? "light" : "dark");
});
})();
</script>
<div class="row">
<div class="col-md-3 col-sm-12 photo">
<img src="docs/img/santamonica.jpg" class="photo_pic" alt="Picture of me!" />
</div>
<div class="col-md-6 col-sm-12 info-text">
<br>
<font size="3">
<p>Undergraduate Student</p>
<p>Email: ajayant4004 [at] gmail [dot] com</p>
<p>
<a href="docs/resume.pdf">[CV]</a> /
<a href="https://github.com/anish-jayant">[GitHub]</a> /
<a href="https://twitter.com/brownrice0404">[Twitter]</a>
</p>
</font>
</div>
</div>
<div class="voffset1"></div>
<div class="row">
<div class="span12">
<section id="about">
<h3 style="color:#0d758f">About Me</h3>
<font size="4">
<p>
I'm an undergraduate at USC studying math and computer science, where I am fortunate to be advised by
<a href="https://vatsalsharan.github.io/">Prof. Vatsal Sharan</a>.
In general, I'm interested in learning theory and theoretical computer science, and especially enjoy thinking about how/why brittleness arises in these areas.
</p>
<p>
Please do not hesitate to reach out if you're also interested in optimization, learning, or information
theory! I'd love to learn from you and share what I have.
<b>I'm also applying for PhD programs this cycle!</b>
</p>
</font>
<h3 style="color:#0d758f">Awards</h3>
<font size="4">
<ul>
<li>Provost Research Award, semesters: Fall 2024, Spring 2025, Summer 2025, Fall 2025</li>
<ul>
<li><em>Recognizes work on Lower Bounds for Ill-Conditioned Systems, total $6,000 so far.</em></li>
</ul>
<li>Trustee Fellowship, by USC, 2022-2026</li>
<ul>
<li><em>Full tuition scholarship (approx. $275,000).</em></li>
</ul>
<li>Viterbi Fellowship, by USC Viterbi School of Engineering, 2022-2026</li>
<ul>
<li><em>Additional research stipend, $1,500 per semester.</em></li>
</ul>
<li>WVT Rusch Honors Thesis Program, by USC Viterbi, 2023-2026</li>
</ul>
<h3 style="color:#0d758f">Notes and Projects</h3>
<font size="4">
I really enjoy courses with final projects and giving talks! Here are some notes and slides:
<ul>
<li><a href="docs/projects/smoothedlearning.pdf">Smoothed analysis of online learning</a> (CS670/Algorithms course project) Showing guarantees of very simple algorithms in this setting! I gave a quick talk using <a href="docs/projects/smoothedpresentation.pdf">these slides</a>.</li>
<li><a href="docs/projects/robustmean.pdf">Robust mean estimation</a> (CS699 talk) A sketch talk on algorithmic aspects of robust mean estimation.</li>
<li><a href="docs/projects/social_choice_clustering.pdf">Clustering from a social choice perspective</a> (CS673/Networked Information course project). A more experimental project (with fantastic collaborators)! Also, some <a href="docs/projects/cclustering.pdf">notes</a> on approximation algorithms for correlation clustering.</li>
<li><a href="docs/projects/transformerlimitation.pdf">Limitations of transformers</a> (PALMS Group Lunch Talk). Nice theory work showing combinatorial limitations of transformer architecture.</li>
<li><a href="docs/projects/crypto_hardness.pdf">Slides</a>, <a href="docs/projects/onewaylearning.pdf">write-up</a> (CS476/Cryptography course project) about learning under cryptographic hardness.</li>
<li><a href="docs/projects/privacy_and_robustness.pdf">Private-robust mechanism design</a> (CS699/Theory of ML course project). We gave a presentation on <a href="https://arxiv.org/abs/2212.05015">this</a> cool paper using <a href="docs/projects/privacy_and_robustness_talk.pdf">these slides</a>.</li>
</ul>
</font>
<h3 style="color:#0d758f">Other Stuff</h3>
Before college, I grew up in sunny San Diego where my main passion was competitive swimming.
Back on land, I really enjoyed math and physics, and spent some effort participating in tests like USAPhO among others.
These days, I enjoy surfing, climbing, and running. :)
</font>
</section>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>