-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
121 lines (98 loc) · 4.89 KB
/
project.html
File metadata and controls
121 lines (98 loc) · 4.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Projects</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="manifest" href="assets/site.webmanifest">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles/anim.css">
</head>
<body style="background-color: rgb(255, 244, 231);">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand font hover" href="index.html">harichand manoj</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item icons d-lg-flex">
<a class="nav-link" href="https://www.linkedin.com/in/harichand-manoj/" target="_blank"
title="Visit LinkedIn Profile">
<i data-feather="linkedin"></i>
<script>
feather.replace();
</script>
</a>
</li>
<li class="nav-item icons d-lg-flex">
<a class="nav-link" href="https://www.github.com/hari166" target="_blank" title="Visit GitHub">
<i data-feather="github"></i>
<script>
feather.replace();
</script>
</a>
</li>
<li class="nav-item icons d-lg-flex">
<a class="nav-link" href="mailto:harichandmanoj@gmail.com" title="Send an email">
<i data-feather="mail"></i>
<script>
feather.replace();
</script>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div style="width:70% ; margin:auto;">
<hr size="20" style="background-color: black; height: 2px; border: none;">
</div>
<br><br><br>
<h3 style="margin-left: 20px;">SatTRACE- 2023</h3>
<p style="margin-left: 20px;"><strong>Tech stack:</strong> Golang, Postgres</p>
<ul>
<li>CLI tool for satellite tracking in Go.</li>
<li>Query data by ID or name.</li>
<li>Sourced with real-time data from N2YO.</li>
<li>Useful for reconnaissance, TLE parsing, and amateur astronomy.</li>
<li>Github: <a href="https://github.com/hari166/SatTRACE" target="blank">SatTRACE</a></li>
</ul>
<br><br>
<h3 style="margin-left: 20px;">EasyWeather- 2023</h3>
<p style="margin-left: 20px;"><strong>Tech stack:</strong> Golang, Gin, OpenWeather API, JS</p>
<ul>
<li>Developed a weather web application using Golang.</li>
<li>Integrated APIs to fetch real-time weather data from an open source.</li>
<li>Obtain accurate forecasts via an HTML/CSS frontend, in a user-friendly interface.</li>
<li>Github: <a href="https://github.com/hari166/EasyWeather" target="blank">EasyWeather</a></li>
</ul>
<br><br>
<h3 style="margin-left: 20px;">Intergo- 2023</h3>
<p style="margin-left: 20px;"><strong>Tech stack:</strong> Golang</p>
<ul>
<li>A primitive interpreter written in Go, to learn about the intricacies of a language, and underlying mechanisms of code execution.</li>
<li>Tokenized and parsed via REPL.</li>
<li>Github: <a href="https://github.com/hari166/intergo" target="blank">intergo</a></li>
</ul>
<br><br>
<h3 style="margin-left: 20px;">Airline Customer Satisfaction- 2022</h3>
<p style="margin-left: 20px;"><strong>Tech stack:</strong> Python, NumPy, Pandas</p>
<ul>
<li>Developed a machine learning program that utilizes customer data.</li>
<li>Predict whether a future customer will prefer a particular airline for future flying.</li>
<li>Implemented machine learning algorithms to train the model using an extensive dataset.</li>
<li>Github: <a href="https://github.com/hari166/Airline-Customer-Satisfaction" target="blank">Airline Customer Satisfaction</a></li>
</ul>
<div class="footer">
<i>Have a happy <script src="date.js"></script> !</i>
</div>
</body>
</html>