-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
524 lines (472 loc) · 17.2 KB
/
index.html
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rakshit Kumar Singh</title>
<link rel="stylesheet" href="styles.css">
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #3498db;
--highlight-color: #f1c40f;
--background-color: #f9f9f9;
--text-color: #333;
--section-bg: #ffffff;
--section-border: #e0e0e0;
--section-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
}
.container {
width: 95%;
max-width: 1000px;
margin: 0 auto;
padding-bottom: 40px;
}
.nav-bar {
background-color: var(--primary-color);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
border-bottom: 2px solid var(--accent-color);
}
.nav-content {
width: 95%;
max-width: 1000px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}
.nav-links {
display: flex;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
padding: 8px 12px;
border-radius: 6px;
letter-spacing: 0.5px;
position: relative;
font-size: 0.95em;
white-space: nowrap;
}
.nav-links a:hover {
color: var(--highlight-color);
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.nav-links a.active {
color: var(--highlight-color);
background-color: rgba(255, 255, 255, 0.15);
font-weight: 600;
}
.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
background-color: var(--highlight-color);
transition: all 0.3s ease;
transform: translateX(-50%);
}
.nav-links a:hover::after {
width: 80%;
}
@media (max-width: 768px) {
.nav-bar {
padding: 8px 0;
}
.nav-content {
width: 100%;
padding: 0 10px;
}
.nav-links {
gap: 8px;
}
.nav-links a {
padding: 6px 10px;
font-size: 0.85em;
}
}
section {
background-color: var(--section-bg);
border-radius: 8px;
padding: 25px;
margin-bottom: 25px;
box-shadow: var(--section-shadow);
border: 1px solid var(--section-border);
}
section h2 {
color: var(--primary-color);
border-bottom: 2px solid var(--accent-color);
padding-bottom: 10px;
margin-top: 0;
text-align: left;
}
#contact {
background: linear-gradient(135deg, var(--primary-color), #34495e);
color: white;
text-align: center;
padding: 3rem 2rem;
margin-bottom: 2rem;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
position: relative;
overflow: hidden;
}
#contact::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
background-size: 20px 20px;
opacity: 0.1;
pointer-events: none;
}
#contact h2 {
color: white;
border-bottom: none;
font-size: 3rem;
margin-bottom: 1.5rem;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
position: relative;
}
.contact-info {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
position: relative;
z-index: 1;
}
.contact-info a {
color: white;
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
padding: 12px 24px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.2);
font-weight: 500;
letter-spacing: 0.5px;
}
.contact-info a:hover {
color: var(--highlight-color);
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
#contact {
padding: 2rem 1.5rem;
}
#contact h2 {
font-size: 2.5rem;
}
.contact-info {
gap: 15px;
}
.contact-info a {
padding: 10px 20px;
font-size: 0.9em;
}
}
@media (max-width: 480px) {
#contact {
padding: 1.5rem 1rem;
}
#contact h2 {
font-size: 2rem;
}
.contact-info {
flex-direction: column;
gap: 12px;
}
.contact-info a {
width: 100%;
justify-content: center;
}
}
.section-content {
padding: 0 10px;
}
.item {
margin-bottom: 25px;
text-align: left;
}
.item:last-child {
margin-bottom: 0;
}
.item h3 {
color: var(--accent-color);
margin-bottom: 5px;
}
.date {
font-style: italic;
color: #666;
margin-bottom: 10px;
}
ul {
padding-left: 20px;
margin-bottom: 0;
}
li {
margin-bottom: 5px;
}
.skills-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.skill-category {
flex: 1;
min-width: 180px;
}
.skill-category h3 {
color: var(--accent-color);
margin-bottom: 10px;
border-bottom: 1px solid #e0e0e0;
padding-bottom: 5px;
}
.skill-category ul {
list-style-type: none;
padding-left: 0;
}
.skill-category li {
padding: 5px 10px;
margin-bottom: 5px;
background-color: #f0f0f0;
border-radius: 4px;
display: inline-block;
margin-right: 5px;
}
.highlight {
background-color: var(--highlight-color);
color: var(--primary-color);
padding: 3px 8px;
border-radius: 4px;
font-weight: 500;
}
@media (max-width: 768px) {
.skills-grid {
flex-direction: column;
}
.contact-info {
flex-direction: column;
gap: 10px;
}
}
</style>
</head>
<body>
<nav class="nav-bar">
<div class="nav-content">
<div class="nav-links">
<a href="#contact">Contact</a>
<a href="#experience">Experience</a>
<a href="#achievements">Achievements</a>
<a href="#projects">Projects</a>
<a href="#community">Community</a>
<a href="#education">Education</a>
<a href="#skills">Skills</a>
<a href="letters.html">Letters</a>
<a href="publications.html">Publications</a>
</div>
</div>
</nav>
<div class="container" style="margin-top: 30px;">
<section id="contact">
<h2>Rakshit Kumar Singh</h2>
<div class="contact-info">
<a href="mailto:[email protected]">[email protected]</a>
<a href="tel:+916203403692">+91 6203403692</a>
<a href="https://www.linkedin.com/in/rakshit-singh-ai/">LinkedIn</a>
<a href="https://github.com/GreatRSingh">GitHub</a>
</div>
</section>
<section id="experience">
<h2>Experience</h2>
<div class="section-content">
<div class="item">
<h3>Research Fellow and Software Developer</h3>
<div class="date">Deep Forest Sciences (Sep 2023 – Present)</div>
<ul>
<li>Did research on modeling Low K dielectric materials using GPAW package.</li>
<li>Led the migration of 200+ utility functions for Molecular Machine Learning from Python 3.7 to 3.11</li>
<li>Ensured 100% unit test coverage for all new utility functions, significantly boosting code reliability</li>
</ul>
</div>
<div class="item">
<h3>Student Developer</h3>
<div class="date">Google Summer of Code - DeepChem (Open Chemistry) (May 2023 – Aug 2023)</div>
<ul>
<li>Implemented DTNN and SeqToSeq model and corresponding layers in PyTorch</li>
<li>Fixed many issues in the CI/CD pipeline to make the code base more stable</li>
</ul>
</div>
<div class="item">
<h3>Chief Technical Officer</h3>
<div class="date">Stethaim Pvt. Ltd. (Feb 2025 – Present)</div>
<ul>
<li>Worked on building systems for separating lungs and heart sounds.</li>
<li>Led the software team closely to work on creating all the open source libraries for accomplishing the targets.</li>
</ul>
</div>
</div>
</section>
<section id="achievements">
<h2>Achievements</h2>
<div class="section-content">
<div class="item">
<h3>PanIIT Alumni Imagine Hackathon <span class="highlight">2nd Rank</span></h3>
<div class="date">Jan 2025</div>
<p>Built an anonymous communication system</p>
</div>
<div class="item">
<h3>ETH India <span class="highlight">6th Rank</span></h3>
<div class="date">Jan 2025</div>
<p>Got 6th rank in public choice quadratic voting</p>
</div>
<div class="item">
<h3>Crypto QA <span class="highlight">2nd Rank</span></h3>
<div class="date">Sep 2024</div>
<p>Built an AI Model for question answering regarding crypto using Twitter data</p>
</div>
<div class="item">
<h3>HackCBS <span class="highlight">4th Rank</span></h3>
<div class="date">Sep 2024</div>
<p>Developed a business solution for internal communication using matrix protocol</p>
</div>
<div class="item">
<h3>Ethos 2.0 - IIT Guwahati <span class="highlight">Winner</span></h3>
<div class="date">Sep 2024</div>
<p>Built an End-to-End Encrypted chat and video call platform following the matrix protocol</p>
</div>
<div class="item">
<h3>Leash-Belka - Kaggle <span class="highlight">Ranked 299/2364</span></h3>
<div class="date">June 2024</div>
<p>Prediction of chemical bonding using ML and computational Chemistry</p>
</div>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="section-content">
<div class="item">
<h3>Open source Differentiable ODE Solving Infrastructure (AAAI'25)</h3>
<div class="date">June 2024 - Nov 2024</div>
<ul>
<li>Integrated GPU-accelerated ODE solvers into DeepChem, making these tools easily accessible</li>
<li>Demonstrated capabilities through experiments on Lotka-Volterra predator-prey dynamics, pharmacokinetic compartment models, neural ODEs, and solving PDEs</li>
</ul>
</div>
<div class="item">
<h3>Personal Blog Site</h3>
<div class="date">Feb 2024</div>
<ul>
<li>Developed a blog website, integrated with Markdown and LaTeX maths rendering for 10+ articles</li>
<li>Implemented automated server-side rendering of each blog page to achieve sub-100ms loading times</li>
</ul>
</div>
</div>
</section>
<section id="community">
<h2>Community Work</h2>
<div class="section-content">
<div class="item">
<h3>President - Machine Learning For Everyone</h3>
<div class="date">NIT Rourkela (August 2023 – Present)</div>
<p>Made a vibrant group of ML/AI developers, helped them in participating in competitions and promoted ML research</p>
</div>
<div class="item">
<h3>Founder - Linux Labs</h3>
<div class="date">NIT Rourkela (September 2024 – Present)</div>
<p>Built a close-knit community of people who loved technology and were able to take initiatives.</p>
</div>
<div class="item">
<h3>Contributor - DeepChem</h3>
<div class="date">DeepChem (May 2023 – Present)</div>
<p>Worked with amazing people in DeepChem to build systems that could be used to accelerate chemistry and biology research.</p>
</div>
</div>
</section>
<section id="education">
<h2>Education</h2>
<div class="section-content">
<div class="item">
<h3>Bachelor of Technology in Mining Engineering</h3>
<div class="date">National Institute of Technology, Rourkela (Nov 2022 – June 2026)</div>
</div>
<div class="item">
<h3>Bachelor of Science in Data Science</h3>
<div class="date">Indian Institute of Technology, Madras (Jan 2024 – present)</div>
</div>
</div>
</section>
<section id="skills">
<h2>Technical Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Languages</h3>
<ul>
<li>Python</li>
<li>C++</li>
<li>C</li>
<li>SQL</li>
</ul>
</div>
<div class="skill-category">
<h3>Frameworks</h3>
<ul>
<li>PyTorch</li>
<li>TensorFlow</li>
<li>Pandas</li>
<li>Numpy</li>
<li>SciPy</li>
</ul>
</div>
<div class="skill-category">
<h3>Tools</h3>
<ul>
<li>Git</li>
<li>Transformers</li>
<li>AWS</li>
<li>DuckDB</li>
<li>Linux</li>
<li>GitHub</li>
<li>PyTest</li>
<li>CI/CD</li>
</ul>
</div>
</div>
</section>
</div>
</body>
</html>