-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.html
109 lines (94 loc) · 3.52 KB
/
skills.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Skills - Niranjan Sujay</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="wrapper">
<header>
<h1>Niranjan Sujay</h1>
<img src="Images/new.jpg" alt="Niranjan Sujay" style="width: 250px; height: auto; border-radius: 80%; margin-top: 30px;">
</header>
<nav style="text-align: right; margin-top: 20px;">
<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="about.html">About Me</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="publications.html">Publications</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="resume.html">Resume</a></li>
</ul>
</nav>
<section>
<h1>Skills</h1>
<p>Here are the technical and professional skills that I bring to the table, categorized for easy reference:</p>
<h2>Research Interests</h2>
<ul> 3D Mapping, Visual SLAM, Sensor Fusion, Machine Learning, Point Cloud Processing </ul>
<h2>Programming Languages</h2>
<ul>
<li>Python</li>
<li>C++</li>
<li>JavaScript</li>
<li>MATLAB</li>
<li>HTML & CSS</li>
</ul>
<h2>Software & Tools</h2>
<ul>
<li>ROS (Robot Operating System)</li>
<li>Gazebo Simulation</li>
<li>TensorFlow & PyTorch</li>
<li>Git & GitHub</li>
<li>OpenCV</li>
</ul>
<h2>Hardware Proficiencies</h2>
<ul>
<li>Arduino</li>
<li>Raspberry Pi</li>
<li>LiDAR Sensors</li>
<li>IMU Modules</li>
</ul>
<h2>Soft Skills</h2>
<ul>
<li>Team Collaboration</li>
<li>Problem-Solving</li>
<li>Leadership</li>
<li>Effective Communication</li>
</ul>
</section>
<footer>
<p>This project is maintained by <a href="https://github.com/SujayNiranjan">Niranjan Sujay</a></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>
</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>