-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (116 loc) · 4.77 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RohitRao.com</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="header">
<nav>
<a href="index.html"><img src="images/logo.png"></a>
<div class="nav-links">
<ul>
<li><a href="">HOME</a></li>
<li><a href="#exp">EXPERIENCE</a></li>
<!-- <li><a href="#hob">HOBBIES</a></li> -->
<li><a href="#con">CONTACT</a></li>
</ul>
</div>
</nav>
<div class="text-box">
<h1>Hey! I'm Rohit Rao</h1>
<p> I am a junior Computer Science and Engineering student at UC Merced.<br>
Some of my interests include deep learning, and embedded systems.<br>
I love learning new things and improving my skills.<br>
</p>
</div>
</section>
<!-- ------ experience ------- -->
<section class="experience">
<a id="exp"></a>
<h1>Experience:</h1>
<p>Here are some of the projects I have been working on.</p>
<div class="row">
<div class="proj_col">
<h3>PADSYS Lab Research Assistant</h3>
<p>
At UC Merced's Parallel and Distributed Systems (PADSYS) lab, I leverage deep learning techniques particularly in CNNs.
<a href = "https://padsys.org/index.html"> PADSYS Lab </a> <br> <br> <br>
<img src="images/UC_Merced_Seal.png">
</p>
</div>
<div class="proj_col">
<h3>UC Merced IoT4Ag Engineering Research Assistant</h3>
<p>
I work in IoT4Ag division in <br>
embedded systems project focussed<br>
on soil monitoring. <br>
<a href="https://robotics.ucmerced.edu/"> UC Merced Robotics</a>
<br>
<img src="images/UC_Merced_Seal.png">
</p>
</div>
<div class="proj_col">
<h3>Rao-Bot Delivery Rover</h3>
<p>
I hacked a hoverboard and built a personal <br>
GPS-based delivery Robot.<br>
<a href="https://medium.com/@rohitrrao2021/how-to-build-your-own-delivery-robot-edff353ba1cc"> Here's how I did it.</a>
<br>
<img src="images/raobot.jpg">
</p>
</div>
</div>
<div class = "row">
<div class="proj_col">
<h3>SleepEZ Sleep Predictor</h3>
<p>
I created and trained a KNN Machine Learning model to be able to predict the amount of sleep a user would get. Based on the users daily life and a short quiz, they will get a calculated amount of sleep hours they would get per night.
<br>
<img src="images/sleepez.png">
</p>
</div>
</div>
</section>
<!-- ------ hobbies -------- -->
<!-- <section class="hobbies">
<a id="hob"></a>
<h1>Hobbies:</h1>
<div class="row">
<div class="nocolorhob_col">
<h1>Guitar:</h1>
<p>
I have been playing guitar since I was 7 years old. This background in music definitely helps me relax, and sparks my creative side. I like making covers of songs and posting them on my youtube channel.
<br>
<a href="https://www.youtube.com/channel/UCna12fSTjROgVk5E1u4epyQ">YouTube</a>
</p>
</div>
<div class="hob_col">
<img src="images/guitar.png">
</div>
</div>
</section> -->
<!-- ------ contact -------- -->
<section class="contact">
<a id="con"></a>
<h1>Contact:</h1>
<div class="icons">
<i class="fa fa-instagram"id = "insta"></i>
<i class="fa fa-linkedin" id = "linkedin"></i>
</div>
</section>
</body>
<script type="text/javascript">
document.getElementById("insta").onclick = function () {
location.href = "https://www.instagram.com/not_rohit.rao/?hl=en";
};
document.getElementById("linkedin").onclick = function () {
location.href = "https://www.linkedin.com/in/rohit--rao/";
};
</script>
</html>