website/index.html

107 lines
3.5 KiB
HTML
Raw Normal View History

<!doctype html>
2023-09-30 15:01:59 -07:00
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-05-25 17:40:33 -07:00
<!-- normalize css -->
<link rel="stylesheet" href="static/normalize.css" />
<!-- bootstrap css -->
<link
2024-05-25 17:40:33 -07:00
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
2024-05-25 17:40:33 -07:00
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<!-- bootstrap icons -->
2024-03-30 16:12:41 -07:00
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"
2024-03-30 16:12:41 -07:00
/>
<title>Aarya Bhatia</title>
</head>
2024-05-24 19:31:34 -07:00
<body>
2024-05-25 17:40:33 -07:00
<div class="container my-4">
<h1>Aarya Bhatia</h1>
2024-05-25 17:40:33 -07:00
<hr />
2024-05-24 19:31:34 -07:00
<main>
2024-05-25 17:40:33 -07:00
<h4>Introduction</h4>
2024-05-24 19:31:34 -07:00
<p>
Hello, I am a 22 year old software engineer working at Amazon. I
recently completed my Bachelors degree in Applied Mathematics and
Computer Science at the University of Illinois Urbana-Champaign.
</p>
2024-05-25 17:40:33 -07:00
<h4>Skills</h4>
2024-05-24 19:31:34 -07:00
<p>
I am experienced in full-stack web development and systems
programming. I am proficient in Linux and C/C++, Python, Go,
JavaScript and SQL. I have worked with several frameworks including
Express and Flask. I love problem-solving and being the most efficient
version of myself. I also enjoy exploring new tools and hacking on
tools like bspwm, neovim or tmux. Check out my collection of
<a href="https://github.com/aarya-bhatia/scripts">scripts</a> or
<a href="https://github.com/aarya-bhatia/dotfiles">dotfiles</a> on
Github.
</p>
2024-05-25 17:40:33 -07:00
<h4>Work Experience</h4>
2024-05-24 19:31:34 -07:00
<p>
This year, I will begin working at Amazon as an SDE. I had my first
internship with Amazon in 2023, where I worked on a React project and
shipped several website improvements.
</p>
<p>
Previously, I was the lead course assistant at my university for 2
years, where we taught about computer systems and C programming.
</p>
2024-05-25 17:40:33 -07:00
<h4>Hobbies</h4>
2024-05-24 19:31:34 -07:00
<p>
I am a trained musician and primarily play the electric guitar, since
the last 12 years. I appreciate a wide range of musical genres,
especially old rock hits and progressive metal artists such as Opeth
and Porcupine Tree.
</p>
2024-05-25 17:40:33 -07:00
<h4>Contact</h4>
<p>
Reach out to me for any opportunities on my email:
<a href="mailto:aarya.bhatia1678@gmail.com"
>aarya.bhatia1678@gmail.com</a
>.
</p>
</main>
<footer>
<div class="d-flex justify-content-center">
<div class="pe-4">
2024-05-24 19:31:34 -07:00
<a href="mailto:aarya.bhatia1678@gmail.com"
2024-05-25 17:40:33 -07:00
><i class="bi-envelope"></i
></a>
</div>
2024-05-25 17:40:33 -07:00
<div class="pe-4">
<a href="https://www.github.com/aarya-bhatia/"
><i class="bi-github"></i
></a>
</div>
2024-05-25 17:40:33 -07:00
<div class="pe-4">
<a href="https://www.linkedin.com/in/aarya-bhatia/"
><i class="bi-linkedin"></i
></a>
</div>
2024-05-25 17:40:33 -07:00
<div class="pe-4">
<a href="https://www.instagram.com/aarya.bhatia/"
><i class="bi-instagram"></i
></a>
</div>
</div>
</footer>
</div>
</body>
2023-09-30 15:01:59 -07:00
</html>