-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (115 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
119 lines (115 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sriman Narayan Kandi</title>
<style>
:root {
color-scheme: light;
--bg: #ffffff;
--fg: #1a1a1a;
--muted: #5c5c5c;
--line: #e5e5e5;
--link: #1f6feb;
--card: #fafafa;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
margin: 0;
background: var(--bg);
color: var(--fg);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
font-size: 17px;
}
main {
max-width: 640px;
margin: 0 auto;
padding: 72px 24px 96px;
}
h1 {
font-size: 2rem;
margin: 0 0 4px;
letter-spacing: -0.02em;
}
.tagline {
color: var(--muted);
margin: 0 0 4px;
}
.affil {
color: var(--muted);
font-size: 0.95rem;
margin: 0 0 32px;
}
h2 {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--muted);
margin: 40px 0 12px;
}
p { margin: 0 0 16px; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.links a {
display: inline-block;
padding: 8px 16px;
border: 1px solid var(--line);
border-radius: 8px;
background: var(--card);
color: var(--fg);
}
.links a:hover {
border-color: var(--link);
text-decoration: none;
}
footer {
margin-top: 56px;
padding-top: 20px;
border-top: 1px solid var(--line);
color: var(--muted);
font-size: 0.85rem;
}
</style>
</head>
<body>
<main>
<h1>Sriman Narayan Kandi</h1>
<p class="tagline">Student · machine learning and dynamical systems</p>
<p class="affil">Rickards High School</p>
<h2>About</h2>
<p>
I'm a high school student, and most of what I do is machine learning. Right now
I'm into chaotic systems. I built a benchmark that compares how different models
forecast things like the pendulum and the Lorenz attractor, and I spend most of
the time checking whether the way we score those models actually holds up. A lot
of the time it doesn't, which is the part I like.
</p>
<p>
I also made TopSpin Labs, a tool that uses video and a physics simulation of the
ball to give tennis players feedback from their own match footage. I play
tennis, so it started as something I wanted for myself.
</p>
<h2>Links</h2>
<ul class="links">
<li><a href="https://github.com/GloriousSNK">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/sriman-narayan-kandi-53809a412">LinkedIn</a></li>
<li><a href="mailto:kandisriman@gmail.com">Email</a></li>
</ul>
<footer>
© <span id="y"></span> Sriman Narayan Kandi
</footer>
</main>
<script>document.getElementById("y").textContent = new Date().getFullYear();</script>
</body>
</html>