-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitHub_Portfolio.html
More file actions
327 lines (296 loc) · 12.5 KB
/
GitHub_Portfolio.html
File metadata and controls
327 lines (296 loc) · 12.5 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<link rel="icon" href="images/profile_picture.webp">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="r1D-6SNj_GhLprCtVjNcUrtT76lZ5x0xJ9wzBv05wbE" />
<meta property="og:image" content="images/profile_picture.webp" />
<meta property="og:title" content="Hariprashad Ravikumar | Theoretical Particle Physicist" />
<meta property="og:description" content="PhD candidate at NMSU researching Lattice QCD" />
<meta property="og:url" content="https://hariprashad-ravikumar.github.io/GitHub_Portfolio" />
<meta name="description" content="Hariprashad Ravikumar — PhD candidate in Theoretical Particle Physics at New Mexico State University Specialized in Lattice QCD, Transverse Momentum Dependent Parton Distribution Functions (TMDs) (Sivers Shift)">
<meta name="keywords" content="Hariprashad Ravikumar, Lattice QCD, Transverse Momentum Dependent Parton Distribution Functions, TMDs, Sivers Shift, EDM, nEDM, conformal field theory, particle physics, theoretical physics" />
<title>Hariprashad Ravikumar</title>
<link rel="stylesheet" href="styles.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Hariprashad Ravikumar",
"jobTitle": "PhD Candidate in Theoretical Particle Physics",
"affiliation": {
"@type": "CollegeOrUniversity",
"name": "New Mexico State University"
},
"sameAs": [
"https://www.linkedin.com/in/hariprashad-ravikumar/",
"https://github.com/Hariprashad-Ravikumar"
],
"url": "https://hariprashad-ravikumar.github.io/GitHub_Portfolio"
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script>
function toggleChatbox() {
const box = document.getElementById("chatbox");
box.style.display = box.style.display === "none" ? "flex" : "none";
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<style>
link[rel="icon"] {
border-radius: 50%;
}
body {
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
max-width: 1200px;
margin: 0 auto;
}
header {
background: #000 no-repeat center url("images/cover_website.webp");
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
padding: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
img.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%; /* Keep this for circular appearance */
margin-top: 20px;
}
header h1, header p {
margin: 0;
text-shadow: 2px 2px 10px #000000, 0 0 30px blue, 0 0 8px darkblue;
}
nav {
max-width: 100%;
}
main {
padding: 20px;
background-color: #fff;
max-width: 100%;
margin: 0 auto;
opacity: 0;
animation: fadeInMain 1.5s ease-in-out forwards;
}
@keyframes fadeInMain {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.research-figure img {
border-radius: 0; /* Set border-radius to 0 or remove it to prevent circular appearance */
}
p.a {
text-align: justify;
}
/* center the badge */
.badge-wrapper {
text-align: center;
margin: 2rem 0; /* optional vertical spacing */
}
/* make the badge itself inline-block so it’s centered by text-align */
.badge-wrapper .badge-base {
display: inline-block;
}
#chat-launcher {
position: fixed;
bottom: 20px;
right: 20px;
background: #001f3f;
color: white;
padding: 12px 16px;
border-radius: 30px;
cursor: pointer;
z-index: 1000;
font-family: 'Times New Roman', Times, serif;
box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
transition: background 0.3s;
}
#chat-launcher:hover {
background: #003366;
}
#chatbox {
position: fixed;
bottom: 80px;
right: 20px;
width: 350px;
height: auto;
min-height: 300px;
display: none;
flex-direction: column;
background: white;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
overflow: hidden;
z-index: 1001;
}
#chatbox-header {
background: #001f3f;
color: white;
padding: 10px 15px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
font-family: 'Times New Roman', Times, serif;
}
#chatbox iframe {
min-height: 480px;
width: 100%;
border: none;
}
.coming-soon {
color: #007ACC; /* use your theme’s accent color */
font-style: italic; /* italics to differentiate */
margin-bottom: 0.5em; /* space before the list */
font-family: 'Times New Roman', Times, serif;
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NNHPM3N7SY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NNHPM3N7SY');
</script>
<body>
<header>
<!-- <img src="images/profile-picture.jpeg" alt="Profile Picture" class="profile-picture"> -->
<div class="blank-space" style="width: 100px; height: 15px;"></div>
<h1>Hariprashad Ravikumar</h1>
<p>PhD Candidate (Theoretical Particle Physics)</p>
<div class="blank-space" style="width: 100px; height: 110px;"></div>
</header>
<nav>
<ul>
<li><a href="./">About Me</a></li>
<li><a href="/cv">CV</a></li>
<li class="current"><a href="/">GitHub Portfolio</a></li>
<li><a href="/talks">Talks</a></li>
<li><a href="/publications">Publications</a></li>
</ul>
</nav>
<main>
<section>
<h2>Projects</h2>
<p class="coming-soon">More projects coming soon — stay tuned!</p>
<ul>
<li>
<strong>AI-DataScience-Lab: Web-Based Forecasting App</strong>
(<a href="https://github.com/Hariprashad-Ravikumar/AI-DataScience-Lab" target="_blank" rel="noopener noreferrer">GitHub Repository</a>)
<br>
Built a full-stack forecasting tool to explore the complete data science pipeline, from preprocessing to model deployment. The app supports csv uploads, visualizes trends using <code>matplotlib</code>, fits a <code>scikit-learn</code> regression model, and summarizes the dataset using OpenAI’s GPT-3.5 API. The backend (Flask) is hosted on Microsoft Azure App Service, while the frontend is deployed via GitHub Pages. <strong>Version 1.0.0 (Beta)</strong> currently supports linear regression, with future plans to add polynomial, ridge, and time series models for enhanced forecasting. You can access the frontend of the app at: <a href="https://hariprashad-ravikumar.github.io/AI-DataScience-Lab/" target="_blank" rel="noopener noreferrer">AI DataScience Lab</a>.
</li>
</li>
<li>
<strong>HariBot: AI Chatbot for Website</strong>
(<a href="https://github.com/Hariprashad-Ravikumar/Hari-ChatBot" target="_blank" rel="noopener noreferrer">GitHub Repository</a>)
<br>
Developed and deployed a custom AI chatbot using the OpenAI API to enhance user interaction on my personal website. The backend, implemented in Python (Flask), is hosted on Render for scalable cloud performance, while the frontend is integrated into my GitHub Pages for a responsive, cross-device experience. The chatbot delivers real-time responses about my background, research, and professional experience.
</li>
<li>
<strong>Neural Network from Scratch with <code>NumPy</code></strong>
(<a href="https://github.com/Hariprashad-Ravikumar/Neural-Network-from-Scratch-with-NumPy" target="_blank" rel="noopener noreferrer">GitHub Repository</a>)
<br>
Built a two‑layer neural network entirely in <code>NumPy</code>, using ReLU activation in the hidden layer and softmax at the output. Trained on 5,000 examples with a learning rate of 0.1, it reached ~80 % accuracy in just 60 iterations. See the repository’s <code>README.md</code> for a detailed walkthrough of forward/backward propagation and weight updates.
</li>
<li>
<strong>Automated LaTeX CV Build & Deployment</strong>
(<a href="https://github.com/Hariprashad-Ravikumar/CV-GitHub-Actions-LaTeX-ci-cd" target="_blank" rel="noopener noreferrer">GitHub Repository</a>)<br>
Built and deployed an automated GitHub Actions workflow to compile my LaTeX CV from Overleaf into a PDF with each push and deploy it to GitHub Pages, directly linking it to my website repo for seamless access. The workflow leverages CI/CD principles and Bash scripting to automate the process, ensuring reproducible and efficient publishing.
</li>
</li>
<li>
<strong>\(\mathbb{Z}_2\) Lattice Gauge Monte Carlo Simulation</strong>
(<a href="https://github.com/Hariprashad-Ravikumar/Z2_LatticeGauge_Monte_Carlo_Simulation" target="_blank" rel="noopener noreferrer">GitHub Repository</a>)<br>
Developed a Python simulation of \(\mathbb{Z}_2\) lattice gauge theory using Markov chain Monte Carlo methods and Metropolis algorithms. Explored confinement phenomena through Wilson loop measurements and benchmarked results against analytical predictions. Served as foundational computational experience in stochastic sampling and lattice QCD simulation ahead of full PhD research.
</li>
</ul>
</section>
<h2>GitHub Activity</h2>
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem;">
<img src="https://github-readme-stats.vercel.app/api/top-langs/?username=Hariprashad-Ravikumar&layout=compact&langs_count=10&hide=cmake,makefile&theme=github_light" alt="Top Langs"/>
<img src="https://github-readme-stats.vercel.app/api?username=Hariprashad-Ravikumar&show=discussions_started,discussions_answered,prs_merged,prs_merged_percentage,reviews&show_icons=true&theme=github_light&rank_icon=percentile" alt="GitHub Stats" style="max-width: 100%; height: auto;" />
</div>
<div style="margin-top: 20px;">
<iframe
src="https://jandee.vercel.app/Hariprashad-Ravikumar?scheme=light&footer=true"
style="width: 100%; height: 210px; border: none;"
loading="lazy"
></iframe>
</div>
<!-- achievements images -->
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem;">
<figure style="text-align: center; max-width: 100px;">
<a href="https://github.com/users/Hariprashad-Ravikumar/achievements/pull-shark" target="_blank" rel="noopener noreferrer">
<img src="github_achievements/pull-shark-default-498c279a747d.png"
alt="Pull‑Shark"
style="width: 100%; height: auto; display: block;" />
</a>
<figcaption style="margin-top: 0.5rem; font-size: 1rem;">Pull Shark ×2</figcaption>
</figure>
<figure style="text-align: center; max-width: 100px;">
<a href="https://github.com/users/Hariprashad-Ravikumar/achievements/yolo" target="_blank" rel="noopener noreferrer">
<img src="github_achievements/yolo-default-be0bbff04951.png"
alt="Yolo"
style="width: 100%; height: auto; display: block;" />
</a>
<figcaption style="margin-top: 0.5rem; font-size: 1rem;">YOLO</figcaption>
</figure>
<figure style="text-align: center; max-width: 100px;">
<a href="https://github.com/users/Hariprashad-Ravikumar/achievements/quickdraw" target="_blank" rel="noopener noreferrer">
<img src="github_achievements/quickdraw-default-39c6aec8ff89.png"
alt="Quickdraw"
style="width: 100%; height: auto; display: block;" />
</a>
<figcaption style="margin-top: 0.5rem; font-size: 1rem;">Quickdraw</figcaption>
</figure>
</div>
</main>
<div id="chat-launcher" onclick="toggleChatbox()">Chat with my AI HariBot</div>
<div id="chatbox">
<div id="chatbox-header">
<span>HariBot AI 🤖</span>
<button onclick="toggleChatbox()">×</button>
</div>
<iframe id="chat-iframe" src="https://hari-chatbot.onrender.com" title="HariBot Assistant"></iframe>
</div>
<footer>
<p>© 2025 Hariprashad Ravikumar. All rights reserved.</p>
</footer>
<style>
.research-figure {
float: left;
margin-right: 20px; /* Adjust the margin as needed */
}
</style>
<script src="script.js" defer></script>
</body>
</html>