-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
106 lines (99 loc) · 5.46 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="stylesheets/styles.css"> <!-- Include your CSS file here -->
</head>
<body>
<div class="wrapper">
<header>
<h1>Niranjan Sujay</h1>
<img src="Images/new.jpg" alt="Niranjan Sujay" style="width: 200px; height: auto; margin-top: 30px; object-fit: cover; object-position: top;">
<p>Roboticist - Advancing robotic perception and mapping
for the future of autonomous systems.</p>
<div class="socials">
<a href="https://www.linkedin.com/in/niranjan-sujay/" target="_blank">LinkedIn</a> |
<a href="mailto:[email protected]" target="_blank">Email</a> |
<a href="https://github.com/SujayNiranjan" target="_blank">GitHub</a> |
<a href="https://www.researchgate.net/profile/Niranjan-Sujay" target="_blank">ResearchGate</a>
</div>
<footer>
<p>This project is maintained by <a href="https://github.com/SujayNiranjan">Niranjan Sujay</a></p>
</footer>
</header>
<nav style="text-align: right; margin-top: 30px;">
<ul style="list-style-type: none; display: inline-block;">
<li style="display: inline-block; margin: 0 20px;"><a href="index.html">Home</a></li>
<li style="display: inline-block; margin: 0 20px;"><a href="projects.html">Projects</a></li>
<li style="display: inline-block; margin: 0 20px;"><a href="experiences.html">Experience</a></li>
<li style="display: inline-block; margin: 0 20px;"><a href="publications.html">Publications</a></li>
<li style="display: inline-block; margin: 0 20px;"><a href="skills.html">Skills</a></li>
<li style="display: inline-block; margin: 0 20px;"><a href="resume.html">Resume</a></li>
</ul>
</nav>
<main>
<section>
<h2>About Me</h2>
<p>
I'm a recent graduate with a Master of Science degree in Mechatronics and Robotics from New York University.
I'm currently working as an Research Intern at the AI4CE Lab, under Dr. Chen Feng, where my research focuses on robotic perception and 3D mapping.
</p>
<p>
My work involves developing and implementing advanced algorithms for object detection and tracking, utilizing technologies like ROS, 3D Gaussian Splatting, and Colmap.
A significant part of my current research is the <strong>MappingNYC</strong> project, which aims to create a comprehensive, multi-modal dataset of New York City's street views to enhance autonomous vehicle navigation in complex urban environments.
</p>
<p>
Looking ahead, I aspire to pursue a Ph.D. in robotics and eventually work as a research scientist in the field of robotic perception.
My long-term vision is to establish an organization that fosters collaboration among talented individuals to advance sustainable technological developments and ignite new discoveries.
</p>
<p>
What motivates me is the potential to create machines that can think and interact intelligently.
The idea of bringing a robot to life, with its limitless capabilities and indestructible existence, fuels my passion for robotics.
</p>
</section>
<section>
<h2>Passion for Mentorship</h2>
<p>
In addition to my professional pursuits, I have a deep passion for teaching and sharing knowledge.
This interest sparked during my sophomore year when I began mentoring new teammates, and it has been a rewarding journey ever since.
I've volunteered as a mentor for the Robotics team at Poly Prep High School, guiding students in robotics as part of NYU's initiative to advance STEM education among underrepresented groups.
Under my mentorship, two teams achieved success in a national robotics competition, fostering their engineering skills and enthusiasm for the field.
This experience not only allows me to contribute to the community but also reinforces my commitment to inspiring the next generation of innovators.
</p>
</section>
<section>
<h2>Hobbies</h2>
<p>
When I'm not immersed in robotics, I enjoy cooking, playing football, and gaming. These activities help me maintain a balanced perspective
and often inspire fresh ideas for my work. I'm always eager to connect with fellow enthusiasts and innovators in robotics, so if you're
interested in discussing projects or collaboration opportunities, please feel free to reach out!
</p>
</section>
</p>
</main>
</div>
<div class="circle"></div>
<script>
const circle = document.querySelector('.circle');
let targetX = 0;
let targetY = 0;
let currentX = 0;
let currentY = 0;
let speed = 0.1;
document.addEventListener('mousemove', (e) => {
targetX = e.clientX;
targetY = e.clientY;
});
function updateCirclePosition() {
currentX += (targetX - currentX) * speed;
currentY += (targetY - currentY) * speed;
circle.style.left = `${currentX - circle.offsetWidth / 2}px`;
circle.style.top = `${currentY - circle.offsetHeight / 2}px`;
requestAnimationFrame(updateCirclePosition);
}
updateCirclePosition();
</script>
</body>
</html>