-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
517 lines (448 loc) · 23.3 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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MS4Q7FTK');</script>
<!-- End Google Tag Manager -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HRKZ2KVF1N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HRKZ2KVF1N');
</script>
<title>Meet Vyas</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,700" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="pics/astronaut_favicon.png">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/jquery.timepicker.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" type="text/css" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<script>
$(document).ready(function(){
$(".owl-carousel").owlCarousel({
items: 1,
loop: true,
autoplay: true,
autoplayTimeout: 5000,
autoplayHoverPause: true,
nav: true,
dots: true
});
});
</script>
<style>
.collapsible-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.show-content {
max-height: 10000px;
transition: max-height 0.4s ease;
}
.section-title:hover {
cursor: pointer;
color: #c94f4f;
}
.section-title::before {
content: "+";
display: inline-block;
margin-right: 5px;
transition: transform 0.4s ease;
}
.section-title.collapsible::before {
transform: rotate(405deg);
}
.expand-text::after {
content: "\25BC";
margin-left: 5px;
font-size: 0.8em;
color: #888;
transition: opacity 0.4s ease;
}
.expand-text.collapsed::after {
opacity: 0;
}
.home-slider {
position: relative;
overflow: hidden;
min-height: 100vh;
}
.home-slider .slider-item {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-position: center;
}
.home-slider .slider-item .overlay {
background: rgba(0, 0, 0, 0.6); /* Dark overlay to enhance text visibility */
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}
.slider-text {
z-index: 2; /* Ensure text is above the overlay */
}
.slider-text h1, .slider-text p {
color: #fff;
text-shadow: 2px 2px 4px #000; /* Add shadow for better readability */
}
.slider-text h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.slider-text p {
font-size: 1.5rem;
}
/* Owl Carousel customizations */
.owl-carousel .owl-item {
opacity: 0;
transition: opacity 1s ease;
}
.owl-carousel .owl-item.active {
opacity: 1;
}
.colorlib-navbar-brand {
display: flex;
align-items: center;
}
.colorlib-logo {
font-size: 1.5rem;
text-decoration: none;
font-weight: bold;
display: flex;
align-items: center;
}
.colorlib-logo:hover {
color: #ddd; /* Slight change on hover to indicate interaction */
}
.logo-img {
width: 40px;
height: 40px;
background-size: cover;
border-radius: 50%;
margin-right: 10px;
color: red;
}
/* Menu toggle icon styling */
.js-colorlib-nav-toggle {
font-size: 2rem;
cursor: pointer;
color: red;
}
.colorlib-nav-toggle i {
color: #fff; /* Icon color to match the text */
}
.scroll-wrapper {
max-height: 70vh; /* Adjust this value as needed */
overflow-y: auto;
padding-right: 15px; /* To prevent content from touching the scrollbar */
}
/* For WebKit browsers (Chrome, Safari) */
.scroll-wrapper::-webkit-scrollbar {
width: 8px;
}
.scroll-wrapper::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
}
.scroll-wrapper::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 4px;
}
/* For Firefox */
.scroll-wrapper {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.colorlib-navbar-brand {
flex: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media (max-width: 768px) {
.slider-item {
height: 50vh;
}
.slider-text h1 {
font-size: 24px;
}
.slider-text p a {
font-size: 20px;
}
}
</style>
<body>
<div class="KW_progressContainer">
<div class="KW_progressBar">
</div>
</div>
<div class="page">
<nav id="colorlib-main-nav" role="navigation">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle active"><i></i></a>
<div class="js-fullheight colorlib-table">
<div class="img" style="background-image: url(pics/background.jpg);"></div>
<div class="colorlib-table-cell js-fullheight">
<div class="row no-gutters">
<div class="col-md-12 text-center">
<h1 class="mb-4"><a href="index.html" class="logo" style="color: #fff">Meet Vyas</a></h1>
<div class="scroll-wrapper">
<ul>
<li><a target="_blank" href="index.html"><span><small>01</small>Home</span></a></li>
<li><a target="_blank" href="about.html"><span><small>02</small>About</span></a></li>
<li><a target="_blank" href="physics.html"><span><small>03</small>Physics</span></a></li>
<li><a target="_blank" href="comp.html"><span><small>04</small>Computer Science</span></a></li>
<li><a target="_blank" href="projects.html"><span><small>05</small>Course Projects</span></a></li>
<li><a target="_blank" href="blog.html"><span><small>06</small>Blog</span></a></li>
<li><a target="_blank" href="https://meet-vyas.notion.site/2096f14202de434995ea109d4381ca71?v=227db1b3a43446a98e2aaa79d7ff9461&pvs=4"><span><small>07</small>Reading List</span></a></li>
<li><a target="_blank" href="references.html"><span><small>08</small>References & Textbooks </span></a></li>
<li><a target="_blank" href="tuner.html"><span><small>09</small>Tuner (Beta)</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<div id="colorlib-page">
<header>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="colorlib-navbar-brand">
<a class="colorlib-logo" href="index.html" style="color: #ffffff;"><span class="logo-img" style="background-image: url(pics/corner.jpg)"></span> Meet Vyas </a>
</div>
<a href="# " class="js-colorlib-nav-toggle colorlib-nav-toggle"><i></i></a>
</div>
</div>
</div>
</header>
<section class="home-slider owl-carousel" role="region" aria-label="Main Slider" >
<div class="slider-item" aria-label="Introduction Slide">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center text-center justify-content-center">
<div class="col-md-12">
<h1 class="animate__animated animate__fadeInDown" style="color: #fff; text-shadow: 2px 2px 4px #000;">Hi!</h1>
<h1 class="animate__animated animate__fadeInUp" style="color: #fff; text-shadow: 2px 2px 4px #000;">I'm Meet Vyas</h1>
<p class="animate__animated animate__fadeIn delay-1s" style="color: #ddd; text-shadow: 1px 1px 2px #000;">A passionate explorer of the universe through Physics, Computer Science, and Mechanical Engineering.</p>
</div>
</div>
</div>
</div>
<div class="slider-item" aria-label="Physics Slide">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center text-center justify-content-center">
<div class="col-md-12">
<h1 class="animate__animated animate__zoomIn" style="color: #fff; text-shadow: 2px 2px 4px #000;">Physics</h1>
<p class="animate__animated animate__fadeIn delay-1s" style="color: #ddd; text-shadow: 1px 1px 2px #000;">Unlocking the mysteries of the cosmos and the early universe.</p>
</div>
</div>
</div>
</div>
<div class="slider-item" aria-label="Computer Science Slide">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center text-center justify-content-center">
<div class="col-md-12">
<h1 class="animate__animated animate__flipInY" style="color: #fff; text-shadow: 2px 2px 4px #000;">Computer Science</h1>
<p class="animate__animated animate__fadeIn delay-1s" style="color: #ddd; text-shadow: 1px 1px 2px #000;">Building intelligent systems and solving complex problems with code.</p>
</div>
</div>
</div>
</div>
<div class="slider-item" aria-label="Mechanical Engineering Slide">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center text-center justify-content-center">
<div class="col-md-12">
<h1 class="animate__animated animate__bounceIn" style="color: #fff; text-shadow: 2px 2px 4px #000;">Mechanical Engineering</h1>
<p class="animate__animated animate__fadeIn delay-1s" style="color: #ddd; text-shadow: 1px 1px 2px #000;">Innovating solutions in energy, robotics, and beyond.</p>
</div>
</div>
</div>
</div>
</section>
<!-- END slider -->
<!--- Short Bio STARTS here -->
<!-- <div style="margin-top: 950px;"></div> -->
<section class="ftco-section about-section" style="border-bottom-style: solid; border: white">
<div class="container">
<div class="row d-flex" data-scrollax-parent="true">
<div class="col-md-4 author-img" style="background-image: url(pics/profile4.jpg);" data-scrollax=" properties: { translateY: '-70%'}"></div>
<div class="col-md-2"></div>
<div class="col-md-6 wrap ftco-animate">
<div class="about-desc">
<h1 class="bold-text" style="height: 200px;">About</h1>
<div class="p-5">
<h2 class="mb-5" style="color:#ffd700">Hi! I am Meet Vyas</h2>
<p>I have completed a Bachelors of Technology at Mechanical Engineering at Ahmedabad University. During my Bachelors degree at Ahmedabad University, I also completed a minor in <a href="https://ahduni.edu.in/majors/physics/" target="_blank">physics</a> and <a href="https://ahduni.edu.in/majors/mathematical-and-computational-sciences/" target="_blank">mathematics.</a></p>
<p>I love playing and listening to music, sometimes while plotting light curves for transient events. On other days you would find me working on a whiteboard coming with new ansatz for various processes of early universe cosmology. During most nights you would find me pointing a laser towards the stars and drawing constellation maps while stargazing.</p>
<p><a href="pdfs/Updated_CV.pdf">Here is my Academic CV</a></p>
<h5>Contact Me!</h5>
<p>My <a href="https://www.instagram.com/the_souled_guitarist/">Instagram</a> contains my guitar covers. <a href="https://twitter.com/meet_cosmo" target="_blank">Twitter</a> is for staying connected to cosmology. <a target="_blank" href="https://github.com/Meet-Vyas-Dev">GitHub</a> has my projects ranging from robotics, non-linear dynamics, astrophysics, and lab work.</p>
<ul class="ftco-footer-social list-unstyled mt-4">
<li><a href="https://www.instagram.com/the_souled_guitarist/" target="_blank"><span class="fa-brands fa-instagram"> </span></a></li>
<li><a href="https://twitter.com/meet_cosmo" target="_blank"><span class="fa-brands fa-twitter"></span></a></li>
<li><a href="https://github.com/Meet-Vyas-Dev" target="_blank"><span class="fa-brands fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/meet--vyas/" target="_blank" ><span class="fa-brands fa-linkedin"></span></a></li>
<li><a href="https://orcid.org/0009-0003-0645-5962" target="_blank" ><span class="fa-brands fa-orcid"></span></a></li>
</ul>
<h7>Quickest way to reach me is through mail.</h7>
<p>Email: <a href="mailto:[email protected]">meet.v2 [at] ahduni.edu.in</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--- Short Bio ENDS here -->
<!--- Three Spheres STARTS here -->
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center mb-5 pb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<h2>My Interests</h2>
<p>During my undergraduate studies, I had the opportunity to explore and work extensively in several domains, out of which I have described the three main broad categories below. </p>
</div>
</div>
<div class="row">
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services p-3 py-4 d-block text-center">
<div class="icon mb-3"><i class="fa-regular fa-moon fa-3x" style="color: #ffd700;"></i> </div>
<div class="media-body">
<h3 class="heading"><a href="physics.html">Physics</a></h3>
<h3 class="subheading"> Interested in early universe cosmology, mathematical general relativity, and gravitational collapse. I am also very passionate about computational astrophysics, including light curve generation, transient detection, gravitational waves, black hole shader simulations, and GRMHD </h3>
</div>
</div>
</div>
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services p-3 py-4 d-block text-center">
<div class="icon mb-3"><i class="fa-regular fa-keyboard fa-3x" style="color: #ffd700;"></i></div>
<div class="media-body">
<h3 class="heading"><a href="comp.html">Computer Science</a></h3>
<h3 class="subheading"> Interested in scheduling algorithms, AI and ML applications in core CS, mechanical applications and physics, DSA, Linear Integer Programming, Operations Research, and constraint optimisation problems. </h3>
</div>
</div>
</div>
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services p-3 py-4 d-block text-center">
<div class="icon mb-3"><i class="fa-solid fa-gear fa-3x" style="color: #ffd700;"></i></div>
<div class="media-body">
<h3 class="heading"><a href="projects.html">Mechanical</a></h3>
<h3 class="subheading">Interested in understanding mechanical systems, including projects in solar thermal energy, robotics integration, rotary friction welding and more.</h3>
</div>
</div>
</div>
</div>
<!--- Three Spheres ENDS here -->
<!-- Footer STARTS here -->
<footer class="ftco-footer ftco-bg-dark ftco-section">
<div class="container">
<div class="row mb-5 justify-content-center">
<div class="col-md-5 text-center">
<div class="ftco-footer-widget mb-5">
<ul class="ftco-footer-social list-unstyled">
<li class="ftco-animate"><a href="https://www.linkedin.com/in/meet--vyas/" style="color: #ffd700" target="_blank"><span class="fa-brands fa-linkedin"></span></a></li>
<li class="ftco-animate"><a href="https://www.instagram.com/the_souled_guitarist/" style="color: #ffd700" target="_blank"><span class="fa-brands fa-instagram"></span></a></li>
<li class="ftco-animate"><a href="https://twitter.com/meet_cosmo" style="color: #ffd700" target="_blank"><span class="fa-brands fa-twitter"></span></a></li>
<li class="ftco-animate"><a href="https://github.com/Meet-Vyas-Dev" style="color: #ffd700" target="_blank"><span class="fa-brands fa-github"></span></a></li>
<!-- <li class="ftco-animate"><a href="https://letterboxd.com/meetwee/" style="color: #ffd700" target="_blank"><span class="fa-brands fa-letterboxd"></span></a></li> -->
</ul>
</div>
<div class="ftco-footer-widget">
<h2 class="mb-3">Contact Me</h2>
<p class="h3 email"><a href="mailto:[email protected]">meet.v2 [at] ahduni.edu.in</a></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
</div>
</div>
</div>
</footer>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />
<circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00" /></svg></div>
</div>
</div>
<!-- Your website footer and scripts here -->
<script>
function toggleContent(id, element) {
var content = document.getElementById(id);
content.classList.toggle("show-content");
var sectionTitle = document.querySelector("#" + id).previousElementSibling;
sectionTitle.classList.toggle("collapsible");
element.classList.toggle("collapsed");
}
</script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.animateNumber.min.js"></script>
<script src="js/scrollax.min.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
<script src="js/jquery.timepicker.min.js"></script>
<script src="js/google-map.js"></script>
<script src="js/main.js"></script>
<script src="https://kit.fontawesome.com/a95309870d.js" crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
$(".home-slider").owlCarousel({
items: 1,
loop: true,
autoplay: true,
autoplayTimeout: 5000,
autoplayHoverPause: true,
smartSpeed: 800,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
dots: true
});
});
</script>
</body>
</html>