-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (94 loc) · 5.44 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
<!DOCTYPE html>
<html>
<head>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<link rel="manifest" href="site.webmanifest" />
</head>
<title>Vaibhav Bafna</title>
<style>
/* CSS rule for mobile devices */
@media (max-width: 767px) {
.desktop-only {
display: none;
}
}
</style>
<body style="overflow-y: hidden;">
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.min.js"></script>
<div style="padding-top: 16px; padding-left: 25px; ">
<div id="nav_bar">
<!-- V logo -->
<div style="padding-left: 5%; display: inline-block;">
<h1><a href="index.html">V</a></h1>
</div>
<!-- Sections -->
<div style="float: right; padding-right: 12%; padding-top: 30px; ">
<div style="display: inline-block;">
<h4><a href="projects.html">Projects</a></h4>
</div>
<div style="display: inline-block; padding-left: 50px;">
<h4><a href="resume.html">Resume</a></h4>
</div>
</div>
</div>
<div style="height: 1000px; padding-top: 25px; padding-left: 5%; ">
<div style="display: inline-block; width: 480px;">
<!-- <p>
Hi - my name is Vaibhav (`VY-BUV`) & I'm a software engineer based in Brooklyn, NY.
<br />
<br />
Previously, I worked at Lyft, where I helped predict and incentivize upcoming rides. I also worked on
walking optimization, improving search, and denoising inaccurate GPS location. Prior to Lyft, I studied Computer Science at the University of Michigan in Ann Arbor.
<br />
<br />
I quit working at Lyft in August of 2022 for a much-needed break & I'm currently working part-time as a bike mechanic while consulting for a startup.
<br />
<br />
I enjoy greenfield development, building things from scratch, rapid prototyping, and solving tough, real-world problems.
<br />
<br />
Here are
<a href="projects.html"><u>some things</u></a> I've worked
on as well as <a href="resume.html"><u>some places</u></a> I've worked.
<br />
<br />
If you'd like to get in touch, feel free to shoot me an email at [email protected].
</p> -->
<p>
Hi, my name is Vaibhav (`VY-BUV`).
<br />
<br />
I'm currently a Member of Technical Staff at <a href="https://radical-ai.com/">Radical AI</a>, an early stage materials science R&D company. We're building a closed loop process that integrates high-throughput molecular quantum mechanics, atomistic predictive modeling and generative approaches, and a fully self-driving lab with automated synthesis and characterization. My role extends across the stack, ranging from high-performance computing for our simulations to robotics in the lab.
<br />
<br />
I’m interested in true systems engineering, high-performance applications (embedded & distributed), and scientific computing. Ultimately, I enjoy greenfield development, building things from scratch, rapid prototyping, and solving tough, real-world problems.
<br />
<br />
Before joining Radical, I was a software engineer at Volta Labs, a bio-automation startup. My role spanned the entire stack, encompassing high-performance firmware development using C/C++ & Rust, instrument control software in Python, and lightweight frontend work with React and Redux.
<br />
<br />
Prior to Volta, I worked at Lyft, where I helped predict and incentivize upcoming rides. I also worked on walking optimization, improving search, and de-noising inaccurate GPS locations.
<br />
<br />
I graduated from the University of Michigan, where I studied Computer Science and had the privilege of being a Co-Director at <a href="https://shiftcreator.space/"><u>Shift Creator Space</u></a>.
<br />
<br />
Here are
<a href="projects.html"><u>some things</u></a> I've worked
on as well as <a href="resume.html"><u>some places</u></a> I've worked.
<br />
<br />
If you'd like to get in touch, don't hesitate to shoot me an email at [email protected].
</p>
</div>
<!-- <div style="float: right; padding-right:75px; margin-top: -50px;">
<img style="width: 500px; height: 645px;" src="imgs/portrait.JPG" class="desktop-only"/>
</div> -->
</div>
</div>
</body>
</html>