Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
savnkr committed Feb 14, 2025
1 parent fc1d6a9 commit fbbfe55
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
15 changes: 15 additions & 0 deletions assets/js/typing-effect.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
document.addEventListener('DOMContentLoaded', () => {
const el = document.getElementById('typing-text');
if (!el) return;
const text = el.getAttribute('data-text');
let index = 0;
el.innerHTML = '';
function type() {
if (index < text.length) {
el.innerHTML += text.charAt(index);
index++;
setTimeout(type, 100); // adjust typing speed (in ms)
}
}
type();
});
6 changes: 2 additions & 4 deletions content/authors/admin/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,8 @@ languages:

## About Me

Hi! I am Sawan Kumar, a PhD student at IIT Delhi.
<div id="typing-text" data-text="Hi! I am Sawan Kumar, a PhD student at IIT Delhi."></div>

My research focuses on scalable Bayesian methods, uncertainty quantification, physics-aware deep learning, Gaussian Processes, prior modeling, and computational mechanics. Previously, I was an intern at the Foundation for Smart Manufacturing (FSM) at IIT Delhi, working on robotic automation and welding systems. Before that, I applied machine learning and AI techniques to enhance the design and performance of electric vehicles as a team lead for Team Hertz Electric at DTU. I completed my BTech in Mechanical Engineering at Delhi Technological University.

<!-- Hi! I am Sawan Kumar, a PhD student at IIT Delhi, co-advised by [Prof. Souvik Chakraborty](https://www.csccm.in/our-team) and [Prof. Rajdip Nayek](https://sites.google.com/view/rajdip-nayek/team?authuser=0)
My research focuses on scalable Bayesian methods, uncertainty quantification, physics-aware deep learning, Gaussian Processes, prior modeling, and computational mechanics. Previously, I was an intern at the Foundation for Smart Manufacturing (FSM) at IIT Delhi, working on robotic automation and welding systems. Before that, I applied machine learning and AI techniques to enhance the design and performance of electric vehicles as a team lead for Team Hertz Electric at DTU. I completed my BTech in Mechanical Engineering at Delhi Technological University. -->
<script src="/assets/js/typing-effect.js"></script>

0 comments on commit fbbfe55

Please sign in to comment.