-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
710 lines (658 loc) · 43.3 KB
/
Copy pathindex.html
File metadata and controls
710 lines (658 loc) · 43.3 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
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TANV</title>
<link rel="icon" type="image/png" href="assets/images/indexbg/pixelboyhead.png">
<link rel="stylesheet" href="assets/css/global.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/bubblechat.css">
<meta name="description" content="Tanish Vashisth — software engineer, pixel artist, and developer. Portfolio featuring projects, skills, and dev notes.">
<link href="https://unpkg.com/nes.css@2.3.0/css/nes.min.css" rel="stylesheet">
<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=Press+Start+2P&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="assets/js/config.js"></script>
<style>
/* Highlighted yellow CTA chat bubble */
.bubble.bubble-hire {
background-color: #ffcc00 !important; /* Retro gold yellow */
color: #000000 !important;
box-shadow: 0 -4px #ffcc00, 0 -8px #000, 4px 0 #ffcc00, 4px -4px #000, 8px 0 #000, 0 4px #ffcc00, 0 8px #000, -4px 0 #ffcc00, -4px 4px #000, -8px 0 #000, -4px -4px #000, 4px 4px #000, 4px 12px rgba(0, 0, 0, 0.2), 12px 12px rgba(0, 0, 0, 0.2), 8px 8px rgba(0, 0, 0, 0.2) !important;
cursor: pointer;
transition: all 0.15s ease-in-out;
text-decoration: none;
}
.bubble.bubble-hire:hover {
background-color: #ffe066 !important; /* Lighter yellow hover */
transform: scale(1.05);
box-shadow: 0 -4px #ffe066, 0 -8px #000, 4px 0 #ffe066, 4px -4px #000, 8px 0 #000, 0 4px #ffe066, 0 8px #000, -4px 0 #ffe066, -4px 4px #000, -8px 0 #000, -4px -4px #000, 4px 4px #000, 4px 16px rgba(0, 0, 0, 0.3), 16px 16px rgba(0, 0, 0, 0.3), 10px 10px rgba(0, 0, 0, 0.3) !important;
}
.bubble.bubble-hire.left::after {
background: #ffcc00 !important;
box-shadow: -4px -4px #ffcc00, -4px 0 #ffcc00, -8px 0 #ffcc00, 0 -8px #ffcc00, -4px 4px #000, -8px 4px #000, -12px 4px #000, -16px 4px #000, -12px 0 #000, -8px -4px #000, -4px -8px #000, 0 -4px #ffcc00 !important;
}
.bubble.bubble-hire:hover.left::after {
background: #ffe066 !important;
box-shadow: -4px -4px #ffe066, -4px 0 #ffe066, -8px 0 #ffe066, 0 -8px #ffe066, -4px 4px #000, -8px 4px #000, -12px 4px #000, -16px 4px #000, -12px 0 #000, -8px -4px #000, -4px -8px #000, 0 -4px #ffe066 !important;
}
/* Testimonial Infinite Scrolling Ticker */
@media (min-width: 768px) {
.testimonial-outer-box {
width: 91.666667% !important;
max-width: 1200px !important;
margin: 0 auto !important;
}
.review-card .flex-grow p {
font-size: 10px !important;
line-height: 1.4 !important;
}
.testimonial-slider-container {
overflow: hidden;
width: 100%;
position: relative;
padding: 15px 0;
display: flex;
}
.testimonial-track {
display: flex;
width: max-content;
animation: marquee 50s linear infinite;
}
.testimonial-track:hover {
animation-play-state: paused;
}
@keyframes marquee {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
}
/* 1-bit Testimony Sprite Pfps */
.pfp-sprite {
width: 64px;
height: 64px;
background-image: url('assets/images/indexbg/testimony_sprites.jpg');
background-size: 256px 256px;
image-rendering: pixelated;
image-rendering: crisp-edges;
background-repeat: no-repeat;
border-radius: 50%;
border: 2px solid #fff;
box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
display: inline-block;
}
.pfp-sprite-0 { background-position: 0px 0px; }
.pfp-sprite-1 { background-position: -64px 0px; }
.pfp-sprite-2 { background-position: -128px 0px; }
.pfp-sprite-3 { background-position: -192px 0px; }
.pfp-sprite-4 { background-position: 0px -64px; }
.pfp-sprite-5 { background-position: -64px -64px; }
.pfp-sprite-6 { background-position: -128px -64px; }
.pfp-sprite-7 { background-position: -192px -64px; }
.pfp-sprite-8 { background-position: 0px -128px; }
.pfp-sprite-9 { background-position: -64px -128px; }
.pfp-sprite-10 { background-position: -128px -128px; }
</style>
</head>
<body>
<header class="w-full">
<nav class="navbar">
<div class="navbar-desktop items-center justify-between w-full">
<div class="flex items-center space-x-4">
<a class="nav-item" href="blog.html">Blog</a>
<a class="nav-item" href="project.html">Projects</a>
</div>
<a href="/index.html" class="flex items-center justify-center">
<img src="assets/images/indexbg/logo.png" alt="logo" class="h-8 img">
</a>
<div class="flex items-center space-x-4">
<a class="nav-item" href="about.html">About</a>
<a class="nav-item" href="contact.html">Contact</a>
</div>
</div>
<!-- Hamburger menu -->
<div class="md:hidden flex items-center justify-between w-full">
<a href="/index.html" class="flex items-center justify-start">
<img src="assets/images/indexbg/logo.png" alt="logo" class="h-8 img">
</a>
<button id="menu-toggle" class="flex items-center justify-end">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7">
</path>
</svg>
</button>
</div>
<div id="mobile-menu" class="hidden absolute top-0 right-0 bg-black w-full mt-14 z-50 text-right">
<a class="block py-2 px-4 text-white" href="index.html">Home</a>
<a class="block py-2 px-4 text-white" href="project.html">Projects</a>
<a class="block py-2 px-4 text-white" href="blog.html">Blog</a>
<a class="block py-2 px-4 text-white" href="about.html">About</a>
<a class="block py-2 px-4 text-white" href="contact.html">Contact</a>
</div>
</nav>
</header>
<div class="section text-white min-h-screen flex flex-col items-center justify-center z-20">
<img src="assets/images/indexbg/blast.png" alt="Top Image" class="img top-image lg:hidden">
<div class="img bogusimage h-4/12 w-10/12 md:w-8/12 lg:w-5/12 top-20 z-10" id="image"></div>
<div class="flex flex-col sm:flex-row items-center justify-evenly w-full gap-6 my-5 sm:my-8">
<div class="order-2 sm:order-1 text-center">
<p>Stars<br>Earned</p>
<p id="stars-count">16</p>
</div>
<img id="astronautImage" src="assets/images/indexbg/astronaut.png" alt="Astronaut"
class="img order-1 sm:order-2 astronaut w-3/6 min-[430px]:w-5/12 sm:w-4/12 md:w-3/12 xl:w-2/12 z-50">
<div class="order-3 text-center">
<p>Total<br>Commits</p>
<div class="text-center">
<p id="total-contributions">690</p>
</div>
</div>
</div>
</div>
<div class="section text-white z-10">
<img src="assets/images/indexbg/smallplanetleft.png" alt="Left Image"
class="img left-image w-[25%] min-[425px]:w-[20%] md:w-[15%] top-[20%]">
<img src="assets/images/indexbg/smallplanetright.png" alt="Right Image"
class="img right-image w-[30%] min-[425px]:w-[20%] md:w-[15%] z-0 top-[90%] ">
<div
class="flex flex-col items-center justify-center min-h-screen w-full md:w-3/4 lg:h-full mt-14 lg:mt-5 z-30">
<div class="bg-gray-900 bg-opacity-50 py-3 w-full flex flex-col">
<div class="message flex items-center justify-start">
<img src="assets/images/indexbg/pixelboyhead.png"
class="h-14 w-14 md:h-16 md:w-16 lg:h-20 lg:w-20 ml-3 mt-2">
<div
class="bubble w-fit left shadow h-[30px] lg:h-[40px] text-[10px] md:text-[14px] lg:text-[20px]">
Hello</div>
</div>
<div class="message flex items-center justify-end">
<div
class="bubble w-fit right shadow h-[30px] lg:h-[40px] text-[10px] md:text-[14px] lg:text-[20px]">
Who are you?</div>
<img src="assets/images/indexbg/boyheadright.png"
class="h-14 w-14 md:h-16 md:w-16 lg:h-20 lg:w-20 mr-3 mt-2 ">
</div>
<div class="message flex items-center justify-start">
<img src="assets/images/indexbg/pixelboyhead.png"
class="h-14 w-14 md:h-16 md:w-16 lg:h-20 lg:w-20 ml-3 mt-2">
<div
class="bubble w-fit left shadow h-[30px] lg:h-[40px] text-[10px] md:text-[14px] lg:text-[20px]">
I am Tanish</div>
</div>
<div class="message flex items-center justify-start">
<img src="assets/images/indexbg/pixelboyhead.png"
class="h-14 w-14 md:h-16 md:w-16 lg:h-20 lg:w-20 ml-3 mt-2">
<p class="bubble w-fit left shadow h-[40px] lg:h-[40px] text-[10px] md:text-[14px] lg:text-[20px]">
I am
<span class="typewriter nocaret"></span>
</p>
</div>
<div class="message flex items-center justify-end">
<div
class="bubble w-fit right shadow h-[45px] lg:h-[40px] text-[10px] md:text-[14px] lg:text-[20px]">
Wow thats great</div>
<img src="assets/images/indexbg/boyheadright.png"
class="h-14 w-14 md:h-16 md:w-16 lg:h-20 lg:w-20 mr-3 mt-2"></img>
</div>
<div class="message flex items-center justify-start">
<img src="assets/images/indexbg/pixelboyhead.png"
class="h-14 w-14 md:h-16 md:w-16 lg:h-20 lg:w-20 ml-3 mt-2">
<a href="contact.html"
class="bubble bubble-hire w-fit left shadow h-[30px] lg:h-[40px] text-[10px] md:text-[14px] lg:text-[20px] font-bold flex items-center justify-center">Hire Me!</a>
</div>
</div>
</div>
</div>
<div class="section text-white">
<img src="assets/images/indexbg/bigplanetwithsmallplanet.png" alt="Left Center Image"
class="img left-center-image w-1/2 min-[425px]:w-[30%] md:w-[25%] xl:w-[20%] top-[20%]">
<div class="flex flex-col md:flex-row min-h-screen">
<div class="flex-1 flex items-center justify-center md:min-h-screen ">
<div class="border-4 border-white w-11/12 h-9/12 m-5 md:my-10 bg-[#5f5fec] text-white">
<p class="bg-black p-1 text-white text-[9px] md:text-[16px] lg:text-[23px] border-b-4 border-white">
About me!</p>
<p class="text-[9px] md:text-[14px] lg:text-[18px] text-start p-1 my-5 headingfont">
Hello! I'm Tanish Vashisth, a backend-focused SDE who loves building robust production systems and exploring creative tech. With 1.5+ years of experience across Django, FastAPI, Elasticsearch, Celery, and SQL, I specialize in architecting scalable backends, shipping LLM-driven features, and optimizing API performance (reducing latencies by up to 84%). I also have full-stack exposure with React and AngularJS. When I'm not coding, I design pixel artwork, customize system configs, and get lost in music. Let's collaborate!
</p>
</div>
</div>
<div class="flex-1 flex flex-col items-center justify-center z-30">
<div class="border-r-4 border-l-4 border-t-4 border-white w-11/12 h-2/12 bg-black">
<div class="flex">
<div class="flex items-center justify-start mt-[4px] ml-1 gap-1">
<div class="rounded-full bg-red-600 w-4 h-4"></div>
<div class="rounded-full bg-yellow-400 w-4 h-4"></div>
<div class="rounded-full bg-green-600 w-4 h-4"></div>
</div>
<div class="flex items-center justify-center w-full">
<div class="mt-[6px] text-center text-[14px] text-white">
/home/mypc
</div>
</div>
</div>
</div>
<div id="terminal"
class="p-3 bg-[#282828] border-4 border-white text-[#33FF33] w-11/12 h-[200px] md:h-[300px] text-left text-[10px] md:text-[14px] headingfont">
</div>
</div>
</div>
</div>
<div class="section text-white">
<div class="relative md:min-h-screen flex flex-col items-center justify-center py-10">
<div class="bg-gray-950 bg-opacity-70 relative w-[95%] md:w-11/12 lg:w-10/12 xl:w-9/12 p-6 md:p-10 lg:p-12 z-10 border-4 border-white text-left">
<h2 class="text-center text-xl md:text-3xl lg:text-4xl mb-12 headingfont text-[#ffcc00]">Work Experience</h2>
<div class="flex flex-col gap-10">
<div class="border-l-4 border-white pl-4 md:pl-6">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-1">
<h3 class="headingfont text-[11px] sm:text-[13px] md:text-[16px] lg:text-[18px] text-white">Software Development Engineer 1 (SDE-1)</h3>
<span class="headingfont text-[9px] sm:text-[10px] md:text-[12px] lg:text-[13px] text-gray-400">Dec 2024 – June 2026</span>
</div>
<p class="headingfont text-[10px] sm:text-[12px] md:text-[14px] lg:text-[15px] text-blue-400 mb-3">Instahyre</p>
<ul class="list-disc list-inside text-[9px] sm:text-[11px] md:text-[13px] lg:text-[14px] text-gray-300 space-y-2 headingfont leading-relaxed">
<li>Owned Jobs module; built recommendation engine & LLM features (Magic Boost & Market Signal)</li>
<li>Scaled critical APIs from 750ms to 120ms (84% latency reduction) with optimized raw SQL</li>
<li>Improved core matching logic for skills and boolean search, boosting suggestion relevance</li>
</ul>
</div>
<div class="border-l-4 border-white pl-4 md:pl-6">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-1">
<h3 class="headingfont text-[11px] sm:text-[13px] md:text-[16px] lg:text-[18px] text-white">Back-End Intern</h3>
<span class="headingfont text-[9px] sm:text-[10px] md:text-[12px] lg:text-[13px] text-gray-400">Aug 2024 – Nov 2024</span>
</div>
<p class="headingfont text-[10px] sm:text-[12px] md:text-[14px] lg:text-[15px] text-blue-400 mb-3">Xtage</p>
<ul class="list-disc list-inside text-[9px] sm:text-[11px] md:text-[13px] lg:text-[14px] text-gray-300 space-y-2 headingfont leading-relaxed">
<li>Built collection-sorting Shopify plugin backend (Pearch, 13k+ installs) with Celery queues</li>
<li>Optimized APIs for 200-300 visits/hour; integrated Shopify subscription billing API</li>
<li>Deployed infrastructure on AWS and DigitalOcean via Docker and Nginx</li>
</ul>
</div>
<div class="border-l-4 border-white pl-4 md:pl-6">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-1">
<h3 class="headingfont text-[11px] sm:text-[13px] md:text-[16px] lg:text-[18px] text-white">Python Intern</h3>
<span class="headingfont text-[9px] sm:text-[10px] md:text-[12px] lg:text-[13px] text-gray-400">Feb 2023 – Apr 2023</span>
</div>
<p class="headingfont text-[10px] sm:text-[12px] md:text-[14px] lg:text-[15px] text-blue-400 mb-3">Callisto Infotech</p>
<ul class="list-disc list-inside text-[9px] sm:text-[11px] md:text-[13px] lg:text-[14px] text-gray-300 space-y-2 headingfont leading-relaxed">
<li>Built news platform rashtriyatv.com using MERN stack with custom admin editor</li>
<li>Developed REST API endpoints with Django REST Framework including JWT authentication</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="section text-white">
<div class="relative md:min-h-screen flex flex-col items-center justify-center py-10">
<div class="bg-gray-950 bg-opacity-70 relative testimonial-outer-box py-4 md:py-8 px-0 z-10 border-4 border-white">
<h2 class="text-center text-2xl md:text-3xl lg:text-4xl mb-2 headingfont">What People Say</h2>
<p class="text-center text-[8px] md:text-[10px] text-gray-400 mb-8 md:mb-12 headingfont">fake, for fun only</p>
<div class="testimonial-slider-container">
<div class="testimonial-track">
<!-- SET 1 -->
<!-- Card 1: Google -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-0 mb-2"></div>
<h3 class="text-lg font-bold">Google</h3>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"We were impressed by your portfolio, but unfortunately, we've decided to move forward with someone else."</p>
</div>
</div>
<!-- Card 2: RoomMate -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-1 mb-2"></div>
<h3 class="text-lg font-bold">RoomMate</h3>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I can't hear another speech about bad Code practices anymore."</p>
</div>
</div>
<!-- Card 4: The Compiler -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-2 mb-2"></div>
<h3 class="text-lg font-bold">The Compiler</h3>
<p class="text-[10px] text-gray-400">Syntax Police</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★☆☆☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"Missing semicolon on line 324. Warning: 457 unused variables. Still, he tells everyone 'it works on my machine'."</p>
</div>
</div>
<!-- Card 5: Stack Overflow -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-3 mb-2"></div>
<h3 class="text-lg font-bold">Stack Overflow</h3>
<p class="text-[10px] text-gray-400">Co-Author</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"He has copied and pasted so many code snippets from us that we should be listed as a co-author on his B.Tech degree."</p>
</div>
</div>
<!-- Card 6: Local ISP -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-4 mb-2"></div>
<h3 class="text-lg font-bold">Local ISP</h3>
<p class="text-[10px] text-gray-400">Bandwidth</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"Extremely high traffic between 2 AM and 5 AM. We thought it was a DDoS attack, but it was just him force-pushing 42 commits."</p>
</div>
</div>
<!-- Card 7: Mom -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-5 mb-2"></div>
<h3 class="text-lg font-bold">Mom</h3>
<p class="text-[10px] text-gray-400">Support Lead</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I don't know what a 'Docker container' is, but he spends a lot of time in his room shouting at it. I'm very proud."</p>
</div>
</div>
<!-- Card 8: Git -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-6 mb-2"></div>
<h3 class="text-lg font-bold">Git</h3>
<p class="text-[10px] text-gray-400">VCS Officer</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★☆☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"He resolved three critical merge conflicts today by just deleting the other developer's code. Highly dangerous."</p>
</div>
</div>
<!-- Card 9: Nginx -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-7 mb-2"></div>
<h3 class="text-lg font-bold">Nginx</h3>
<p class="text-[10px] text-gray-400">Reverse Proxy</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I threw 502 Bad Gateway errors at him all night, and his only debugging strategy was restarting Docker and praying."</p>
</div>
</div>
<!-- Card 10: Semicolon -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-8 mb-2"></div>
<h3 class="text-lg font-bold">Semicolon</h3>
<p class="text-[10px] text-gray-400">The Invisible</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★☆☆☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I hid behind a closing parenthesis for 4 hours while he questioned his entire life and career path. 10/10 hiding spot."</p>
</div>
</div>
<!-- Card 11: LeetCode -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-9 mb-2"></div>
<h3 class="text-lg font-bold">LeetCode</h3>
<p class="text-[10px] text-gray-400">Interviews</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"Has solved 150 Easy problems, 2 Mediums, and closes the browser tab when he accidentally opens a Hard. Ready for FAANG."</p>
</div>
</div>
<!-- Card 12: Coffee Machine -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-10 mb-2"></div>
<h3 class="text-lg font-bold">Coffee Machine</h3>
<p class="text-[10px] text-gray-400">Fuel Maker</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I convert roasted beans into code through him. Output efficiency: 15%. Heart rate: 180 BPM."</p>
</div>
</div>
<!-- SET 2 (Duplicate for Infinite Loop) -->
<!-- Card 1: Google -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-0 mb-2"></div>
<h3 class="text-lg font-bold">Google</h3>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"We were impressed by your portfolio, but unfortunately, we've decided to move forward with someone else."</p>
</div>
</div>
<!-- Card 2: RoomMate -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-1 mb-2"></div>
<h3 class="text-lg font-bold">RoomMate</h3>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I can't hear another speech about bad Code practices anymore."</p>
</div>
</div>
<!-- Card 4: The Compiler -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-2 mb-2"></div>
<h3 class="text-lg font-bold">The Compiler</h3>
<p class="text-[10px] text-gray-400">Syntax Police</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★☆☆☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"Missing semicolon on line 324. Warning: 457 unused variables. Still, he tells everyone 'it works on my machine'."</p>
</div>
</div>
<!-- Card 5: Stack Overflow -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-3 mb-2"></div>
<h3 class="text-lg font-bold">Stack Overflow</h3>
<p class="text-[10px] text-gray-400">Co-Author</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"He has copied and pasted so many code snippets from us that we should be listed as a co-author on his B.Tech degree."</p>
</div>
</div>
<!-- Card 6: Local ISP -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-4 mb-2"></div>
<h3 class="text-lg font-bold">Local ISP</h3>
<p class="text-[10px] text-gray-400">Bandwidth</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"Extremely high traffic between 2 AM and 5 AM. We thought it was a DDoS attack, but it was just him force-pushing 42 commits."</p>
</div>
</div>
<!-- Card 7: Mom -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-5 mb-2"></div>
<h3 class="text-lg font-bold">Mom</h3>
<p class="text-[10px] text-gray-400">Support Lead</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I don't know what a 'Docker container' is, but he spends a lot of time in his room shouting at it. I'm very proud."</p>
</div>
</div>
<!-- Card 8: Git -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-6 mb-2"></div>
<h3 class="text-lg font-bold">Git</h3>
<p class="text-[10px] text-gray-400">VCS Officer</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★☆☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"He resolved three critical merge conflicts today by just deleting the other developer's code. Highly dangerous."</p>
</div>
</div>
<!-- Card 9: Nginx -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-7 mb-2"></div>
<h3 class="text-lg font-bold">Nginx</h3>
<p class="text-[10px] text-gray-400">Reverse Proxy</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I threw 502 Bad Gateway errors at him all night, and his only debugging strategy was restarting Docker and praying."</p>
</div>
</div>
<!-- Card 10: Semicolon -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-8 mb-2"></div>
<h3 class="text-lg font-bold">Semicolon</h3>
<p class="text-[10px] text-gray-400">The Invisible</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★☆☆☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I hid behind a closing parenthesis for 4 hours while he questioned his entire life and career path. 10/10 hiding spot."</p>
</div>
</div>
<!-- Card 11: LeetCode -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-9 mb-2"></div>
<h3 class="text-lg font-bold">LeetCode</h3>
<p class="text-[10px] text-gray-400">Interviews</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★☆☆</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"Has solved 150 Easy problems, 2 Mediums, and closes the browser tab when he accidentally opens a Hard. Ready for FAANG."</p>
</div>
</div>
<!-- Card 12: Coffee Machine -->
<div class="review-card boxxy w-[280px] md:w-[300px] flex-shrink-0 mr-6 p-4 flex flex-col justify-between">
<div class="flex flex-col items-center mb-4">
<div class="pfp-sprite pfp-sprite-10 mb-2"></div>
<h3 class="text-lg font-bold">Coffee Machine</h3>
<p class="text-[10px] text-gray-400">Fuel Maker</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I convert roasted beans into code through him. Output efficiency: 15%. Heart rate: 180 BPM."</p>
</div>
</div>
</div>
</div>
<!-- Commented out Aditya Rajgaria card for now -->
<!--
<div class="review-card boxxy w-full md:w-1/3 p-4 mt-8 mx-auto">
<div class="flex flex-col items-center mb-4">
<div class="w-16 h-16 rounded-full bg-green-500 mb-2 overflow-hidden">
<img src="assets/images/indexbg/aditya.png" alt="Reviewer 3" class="w-full h-full object-cover">
</div>
<h3 class="text-lg font-bold">Aditya Rajgaria</h3>
<p class="text-sm text-gray-300">Instahyre Ceo</p>
</div>
<div class="flex justify-center mb-2">
<span class="text-yellow-400">★★★★★</span>
</div>
<div class="flex-grow flex items-center justify-center">
<p class="text-center text-xs">
"I m asking Why and you are saying 'Yeah'"</p>
</div>
</div>
-->
</div>
</div>
</div>
<footer class="flex flex-col md:flex-row items-center justify-center bg-gray-950 bg-opacity-50 py-6 w-full mt-10 gap-2 z-50">
<p class="text-white max-[320px]:text-[8px] text-[10px] lg:text-[16px]">Copyright © 2023 --</p>
<a href="mailto:tanishvashisth@gmail.com"
class="text-white max-[320px]:text-[8px] text-[10px] lg:text-[16px] underline">tanishvashisth@gmail.com</a>
</footer>
<script src="assets/js/constants.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>