Who am I?
Pursuing an MTech in CSE at IIT Bombay, with a passion for competitive programming (Codechef: 2013, Codeforces: 1590) and problem solving. Experienced in web development using React, Node, Django, Docker, MongoDB, and PostgreSQL. I also enjoy tinkering with the latest technologies, currently exploring LLMs and building projects for fun.
Previously worked as a Quantitative Developer at Futures First, where I wrote code in C++ for live financial markets and used Python for data analysis and backtesting. Leveraged Python libraries such as Numba, Pandas, and NumPy to analyze data collected over time. This experience honed my skills in both market analysis and data analysis, providing a strong foundation for tackling complex problems.
Courses
| Course Code | Course Name | Instructor |
|---|---|---|
| CS6003 | Web Security | Prof Kameswari Chebrolu |
| CS699 | Software Lab | Prof Om Damani |
| CS744 | Design and Engineering of Computing Systems | Prof Purushottam Kulkarni |
| CS695 | Virtualization and Cloud Computing | Prof Purushottam Kulkarni |
| CS765 | Blockchain, Cryptocurrencies, and Smart Contracts | Prof Vinay J Ribeiro |
My Favourite Memes
A YouTube Recommendation
Codes I have written
my_first_code.c
#include <stdio.h>
int main(){
int w;
scanf("%d",&w);
if(w%2==0&&w>2){
printf("YES");
}
else{
printf("NO");
}
return 0;
}