-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
75 lines (71 loc) · 3.19 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="style.css" />
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<title>About Me – Sathvik Kadimisetty</title>
</head>
<body>
<!-- HEADER / NAV -->
<header class="l-header">
<nav class="nav bd-grid">
<div class="nav__toggle" id="nav-toggle">
<ion-icon name="menu-outline"></ion-icon>
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="index.html" class="nav__link">Home</a></li>
<li class="nav__item"><a href="about.html" class="nav__link active">About</a></li>
<li class="nav__item has-dropdown">
<a href="#" class="nav__link">Work</a>
<ul class="dropdown">
<li><a href="projects.html" class="nav__link">Projects</a></li>
<li><a href="thesis.html" class="nav__link">Master’s Thesis</a></li>
</ul>
</li>
<li class="nav__item"><a href="contact.html" class="nav__link">Contact</a></li>
</ul>
</div>
</nav>
</header>
<!-- MAIN CONTENT -->
<main class="container section">
<!-- About Me -->
<h1 class="main-title">About Me</h1>
<p>
As a Research Assistant specializing in robotics, I have hands-on experience
developing advanced solutions for autonomous systems. With a strong foundation
in mechanical engineering and expertise in machine learning, I have contributed
to cutting-edge projects including quadruped robotics and manipulation. My academic
background, coupled with real-world research, enables me to drive innovation and
make meaningful contributions to the evolving field of robotics.
</p>
<!-- Education -->
<h2 class="main-title">Education</h2>
<div class="project">
<h3>MSc Robotics – University of Bristol</h3>
<p><em>Sep 2022 – Sep 2023 | Bristol, UK</em></p>
<p>
Thesis: Threshold response models applied to best-of-n in Swarm Robotics<br>
Final grade: Merit (NQF Level 7, 120 credits)
</p>
</div>
<div class="project">
<h3>B.Tech Mechanical Engineering – SRM Institute of Science and Technology</h3>
<p><em>Jun 2016 – May 2020 | Chennai, India</em></p>
<p>First Class (77.78%, EQF Level 6, 186 credits)</p>
</div>
<!-- Skills & Languages -->
<h2 class="main-title">Skills & Languages</h2>
<h3>Digital & Technical</h3>
<p>Python, C++, ROS, Gazebo, PyTorch, OpenCV, NumPy, Pandas, MATLAB, Arduino, Linux, ANSYS, Blender, HTML/CSS</p>
<h3>Languages</h3>
<p>English, Hindi, Telugu</p>
</main>
<!-- SCRIPTS -->
<script src="main.js"></script>
</body>
</html>