-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
961 lines (852 loc) · 49.6 KB
/
Copy pathindex.html
File metadata and controls
961 lines (852 loc) · 49.6 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
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NTWTQB7DLZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NTWTQB7DLZ');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Manideepika Reddy Myaka</title>
<meta name="description" content="Portfolio of Manideepika Reddy Myaka – Software Engineer specializing in AI, ML, and Cloud." />
<link rel="icon" href="data:image/svg+xml,
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'>
<rect width='100' height='100' fill='black'/>
<text x='50%' y='70%' font-size='50' font-family='Arial' font-weight='bold' fill='white' text-anchor='middle'>MM</text>
</svg>">
<meta property="og:title" content="Manideepika - Portfolio" />
<meta property="og:description" content="Explore my work in AI, automation, and cloud systems." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/manideepika21" />
<meta property="og:image" content="" />
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/tailwind-build.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css"
integrity="sha512-dPXYcDub/aeb08c63jRq/k6GaKccl256JQy/AnOq7CAnEZ9FzSL9wSbcZkMp4R26vBsMLFYH4kQ67/bbV8XaCQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="tw-flex tw-min-h-[100vh] tw-flex-col tw-bg-[#fff]">
<!-- ==================== SECTION NAVIGATION ==================== -->
<nav id="section-nav" class="section-navigation">
<div class="nav-container">
<!-- Left logo -->
<a href="#about" class="nav-logo-left">MM</a>
<!-- Hamburger icon for mobile -->
<div class="menu-toggle" id="menuToggle">
<i class="bi bi-list"></i>
</div>
<!-- Center links -->
<div class="nav-links-center">
<a href="#about" class="nav-link" data-section="about">About</a>
<a href="#experience" class="nav-link" data-section="experience">Experience</a>
<a href="#skills" class="nav-link" data-section="skills">Skills</a>
<a href="#education" class="nav-link" data-section="education">Education</a>
<a href="#projects" class="nav-link" data-section="projects">Projects</a>
<a href="#achievements" class="nav-link" data-section="achievements">Achievements</a>
</div>
<!-- Right social icons
<div class="nav-icons-right">
<a
href="https://www.linkedin.com/in/manideepikareddymyaka/"
target="_blank"
aria-label="Linkedin"
class="tw-flex tw-h-[78px] tw-w-[78px] tw-items-center tw-justify-center tw-rounded-full tw-border tw-border-black tw-bg-white tw-text-black"
>
<i class="bi bi-linkedin tw-text-4xl"></i>
</a>
</div>-->
</div>
</nav>
<section id="about" class="hero-section">
<div class="about-container">
<!-- LEFT: TEXT SECTION -->
<div class="about-text">
<h1>
<span class="highlight">
Hi <span class="wave">👋</span><br>I'm MANIDEEPIKA
</span>
</h1>
<h2>Software Engineer</h2>
<p>
I build accessible software that blends AI, cloud, and automation,
turning complex challenges into simple, scalable solutions.
My work spans machine learning, test automation,
cloud architecture, and full-stack development —
all driven by a passion for solving real-world problems.
</p>
<div class="reveal-hero-text tw-mt-10 tw-flex tw-place-items-center tw-gap-8 ">
<a href="./assets/ManideepikaReddyMyaka.pdf" aria-label="resume" target="_blank"
class="tw-flex tw-h-[48px] tw-place-items-center tw-gap-2 tw-rounded-full tw-bg-black tw-p-1 tw-pl-4 tw-text-white">
<span>View Resume</span>
<div class="tw-flex tw-h-[30px] tw-w-[30px] tw-place-content-center tw-place-items-center tw-rounded-full tw-bg-white tw-font-semibold tw-text-black">
<i class="bi bi-arrow-up-right"></i>
</div>
</a>
<!-- Social Icons -->
<div class="tw-flex tw-gap-8 tw-items-center">
<a href="https://www.linkedin.com/in/manideepikareddymyaka/" target="_blank" aria-label="Linkedin"
class="tw-flex tw-h-[78px] tw-w-[78px] tw-items-center tw-justify-center tw-rounded-full">
<i class="bi bi-linkedin tw-text-4xl"></i>
</a>
<a href="https://github.com/manideepika21" target="_blank" aria-label="GitHub"
class="tw-flex tw-h-[78px] tw-w-[78px] tw-items-center tw-justify-center tw-rounded-full">
<i class="bi bi-github tw-text-4xl"></i>
</a>
<a href="https://mail.google.com/mail/?view=cm&fs=1&to=mmyaka@ncsu.edu" target="_blank" aria-label="Email"
class="tw-flex tw-h-[78px] tw-w-[78px] tw-items-center tw-justify-center tw-rounded-full">
<i class="bi bi-envelope tw-text-4xl"></i>
</a>
</div>
</div>
</div>
<!-- RIGHT: IMAGE SECTION -->
<div class="">
<img
src="./assets/images/mani.png"
alt="app"
class="reveal-hero-img"
/>
</div>
</div>
</section>
<!-- ==================== WORK EXPERIENCE SECTION ==================== -->
<section id="experience" class="tw-relative tw-flex tw-min-h-[100vh] tw-w-full tw-max-w-fit tw-flex-col tw-place-content-center tw-place-items-center lg:tw-p-6">
<div class="tw-flex tw-h-full tw-w-full tw-justify-around tw-gap-8 tw-rounded-xl tw-p-4 max-lg:tw-max-w-full max-lg:tw-flex-col">
<div class="reveal-up tw-flex tw-h-full tw-w-[50%] tw-place-content-center max-lg:tw-w-full lg:tw-sticky lg:tw-top-[20%]">
<h2 class="tw-text-center tw-text-4xl tw-font-semibold max-lg:tw-text-3xl">
Work Experience
</h2>
</div>
<div class="reveal-up tw-flex tw-w-[60%] tw-flex-col tw-place-items-center tw-gap-4 tw-p-2 max-lg:tw-w-full">
<div class="tw-flex tw-h-fit tw-w-full tw-flex-col tw-gap-4 tw-border-2 tw-p-4">
<div class="tw-flex tw-w-full tw-place-items-center tw-gap-4 tw-p-2">
<div class="tw-flex tw-h-[60px] tw-w-[60px] tw-overflow-hidden tw-rounded-full">
<img
src="./assets/images/esg.png"
alt="ESG"
class="tw-h-full tw-w-full tw-object-cover"
/>
</div>
<div>
<p class="tw-text-xl tw-font-semibold">AI Engineer | Executive Software Guild</p>
<p class="tw-text-medium tw-italic tw-text-gray-600">June 2026 - Present</p>
</div>
</div>
<div class="tw-text-sm">
Developed an LLM-powered framework to improve fuzz testing
in deep learning libraries by dynamically identifying error patterns.
Analyzed over 95 bugs across various tools, achieving over 90% success
in automated bug reproduction and ensuring scalability.
</div>
</div>
<div class="tw-flex tw-h-fit tw-w-full tw-flex-col tw-gap-4 tw-border-2 tw-p-4">
<div class="tw-flex tw-w-full tw-place-items-center tw-gap-4 tw-p-2">
<div class="tw-flex tw-h-[60px] tw-w-[60px] tw-overflow-hidden tw-rounded-full">
<img
src="./assets/images/ncsu.png"
alt="NCSU"
class="tw-h-full tw-w-full tw-object-cover"
/>
</div>
<div>
<p class="tw-text-xl tw-font-semibold">Research Assistant | North Carolina State University</p>
<p class="tw-text-medium tw-italic tw-text-gray-600">July 2025 - June 2026</p>
</div>
</div>
<div class="tw-text-sm">
Developed an LLM-powered framework to improve fuzz testing
in deep learning libraries by dynamically identifying error patterns.
Analyzed over 95 bugs across various tools, achieving over 90% success
in automated bug reproduction and ensuring scalability.
</div>
</div>
<div class="tw-flex tw-h-fit tw-w-full tw-flex-col tw-gap-4 tw-border-2 tw-p-4">
<div class="tw-flex tw-w-full tw-place-items-center tw-gap-4 tw-p-2">
<div class="tw-flex tw-h-[60px] tw-w-[60px] tw-overflow-hidden tw-rounded-full">
<img
src="./assets/images/ncsu.png"
alt="NCSU"
class="tw-h-full tw-w-full tw-object-cover"
/>
</div>
<div>
<p class="tw-text-xl tw-font-semibold">Teaching Assistant | North Carolina State University</p>
<p class="tw-text-medium tw-italic tw-text-gray-600">January 2025 - April 2025</p>
</div>
</div>
<div class="tw-text-sm">
Combined data-driven innovation with mentorship by developing a 95%-accurate
Python defect prediction model and optimizing git workflows.
Empowered students to improve performance by 20% through personalized guidance and practical feedback.
</div>
</div>
<div class="tw-flex tw-h-fit tw-w-full tw-flex-col tw-gap-4 tw-border-2 tw-p-4">
<div class="tw-flex tw-w-full tw-place-items-center tw-gap-4 tw-p-2">
<div class="tw-flex tw-h-[60px] tw-w-[60px] tw-overflow-hidden tw-rounded-full">
<img
src="./assets/images/ncsu.png"
alt="NCSU"
class="tw-h-full tw-w-full tw-object-cover"
/>
</div>
<div>
<p class="tw-text-xl tw-font-semibold">Research Assistant | North Carolina State University</p>
<p class="tw-text-medium tw-italic tw-text-gray-600">April 2024 - August 2024</p>
</div>
</div>
<div class="tw-text-sm">
Collaborated with qBraid to develop quantum algorithms in Python and Qiskit for early Alzheimer’s detection,
targeting a 30% reduction in dementia care costs. Optimized quantum circuits for greater reliability
and leveraged HPC systems, cutting computation time by two days.
</div>
</div>
<div class="tw-flex tw-h-fit tw-w-full tw-flex-col tw-gap-4 tw-border-2 tw-p-4">
<div class="tw-flex tw-w-full tw-place-items-center tw-gap-4 tw-p-2">
<div class="tw-flex tw-h-[60px] tw-w-[60px] tw-overflow-hidden tw-rounded-full">
<img
src="./assets/images/cognizant.png"
alt="cognizant"
class="tw-h-full tw-w-full tw-object-cover"
/>
</div>
<div>
<p class="tw-text-xl tw-font-semibold">Programmer Analyst | Cognizant</p>
<p class="tw-text-medium tw-italic tw-text-gray-600">June 2022 - June 2023</p>
</div>
</div>
<div class="tw-text-sm">
Performed UI automation testing with Java-Selenium and TestNG,
uncovering 200+ bugs and reducing post-release issues by 80%.
Enhanced backend reliability through SQL and API testing,
collaborated with Agile teams to accelerate defect resolution,
and maintained comprehensive test documentation.
</div>
</div>
<div class="tw-flex tw-h-fit tw-w-full tw-flex-col tw-gap-4 tw-border-2 tw-p-4">
<div class="tw-flex tw-w-full tw-place-items-center tw-gap-4 tw-p-2">
<div class="tw-flex tw-h-[60px] tw-w-[60px] tw-overflow-hidden tw-rounded-full">
<img
src="./assets/images/cognizant.png"
alt="cognizant"
class="tw-h-full tw-w-full tw-object-cover"
/>
</div>
<div>
<p class="tw-text-xl tw-font-semibold">Quality Assurance Engineer Intern | Cognizant</p>
<p class="tw-text-medium tw-italic tw-text-gray-600">January 2022 - May 2022</p>
</div>
</div>
<div class="tw-text-sm">
Automated testing for web applications such as Trutime and Udemy using Selenium,
increasing testing speed by 80% and improving overall software reliability.
</div>
</div>
</div>
</div>
</section>
<!-- ==================== SKILLS SECTION ==================== -->
<section id="skills" class="tw-relative tw-flex tw-flex-col tw-items-center tw-w-full">
<div class="tw-w-full tw-rounded-xl tw-max-w-5xl tw-p-6 tw-space-y-8">
<div class="reveal-up tw-text-center tw-mb-10">
<h2 class="tw-text-4xl tw-font-semibold">Skills</h2>
</div>
<div id="skills-grid" class="skills-grid tw-grid tw-gap-6 tw-grid-cols-1 sm:tw-grid-cols-2 lg:tw-grid-cols-3 xl:tw-grid-cols-5">
<div class="reveal-hero-text skill-card tw-p-4">
<div class="tw-flex tw-items-center tw-gap-3">
<i class="bi bi-code-slash tw-text-2xl"></i>
<h3 class="tw-text-lg tw-font-semibold">Programming</h3>
</div>
<div class="skill-buttons">
<button>Python</button>
<button>JavaScript</button>
<button>Java</button>
<button>Ruby</button>
<button>HTML</button>
<button>CSS</button>
<button>Bash</button>
</div>
</div>
<div class="reveal-hero-text skill-card tw-p-4">
<div class="tw-flex tw-items-center tw-gap-3">
<i class="bi bi-cpu-fill tw-text-2xl"></i>
<h3 class="tw-text-lg tw-font-semibold">AI & ML</h3>
</div>
<div class="skill-buttons">
<button>Pytorch</button>
<button>Pandas</button>
<button>Tensorflow</button>
<button>Scikit-learn</button>
<button>Numpy</button>
<button>Matplotlib</button>
</div>
</div>
<div class="reveal-hero-text skill-card tw-p-4">
<div class="tw-flex tw-items-center tw-gap-3">
<i class="bi bi-database-fill tw-text-2xl"></i>
<h3 class="tw-text-lg tw-font-semibold">Databases</h3>
</div>
<div class="skill-buttons">
<button>SQL</button>
<button>MySQL</button>
<button>PostgreSQL</button>
<button>MongoDB</button>
</div>
</div>
<div class="reveal-hero-text skill-card tw-p-4">
<div class="tw-flex tw-items-center tw-gap-3">
<i class="bi bi-bug-fill tw-text-2xl"></i>
<h3 class="tw-text-lg tw-font-semibold">Testing</h3>
</div>
<div class="skill-buttons">
<button>Selenium</button>
<button>TestNG</button>
<button>JUnit</button>
<button>Cucumber</button>
<button>REST API</button>
<button>SOAP UI</button>
<button>Postman</button>
<button>Pytest</button>
</div>
</div>
<div class="reveal-hero-text skill-card tw-p-4">
<div class="tw-flex tw-items-center tw-gap-3">
<i class="bi bi-cloud-arrow-up-fill tw-text-2xl"></i>
<h3 class="tw-text-lg tw-font-semibold">Cloud & DevOps</h3>
</div>
<div class="skill-buttons">
<button>GCP</button>
<button>Docker</button>
<button>Kubernetes</button>
<button>CI/CD</button>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== EDUCATION SECTION ==================== -->
<section id="education" class="tw-relative tw-flex tw-flex-col tw-items-center tw-w-full lg:tw-p-6">
<div class="tw-w-full tw-max-w-5xl tw-p-6">
<div class="reveal-up tw-text-center tw-mb-10">
<h2 class="tw-text-4xl tw-font-semibold">Education</h2>
</div>
<!-- Timeline container -->
<div class="timeline tw-relative tw-flex tw-flex-col tw-items-center tw-w-full">
<!-- NCSU (Right Side) -->
<div class="timeline-item right tw-w-full tw-flex tw-justify-center tw-relative tw-mt-10">
<div class="tw-w-1/2 tw-text-left">
<h3 class="tw-text-xl tw-font-semibold">North Carolina State University</h3>
<p class="tw-text-gray-700">Master of Science</p>
<p class="tw-text-gray-700">Computer Science</p>
<p class="tw-text-gray-500 tw-text-sm">August 2023 – May 2025</p>
</div>
<div class="timeline-icon tw-flex tw-items-center tw-justify-center tw-bg-white tw-rounded-full tw-z-10">
<i class="bi bi-mortarboard-fill tw-text-3xl tw-text-blue-600"></i>
</div>
<div class="tw-w-1/2"></div>
</div>
<!-- CBIT (Left Side) -->
<div class="timeline-item left tw-w-full tw-flex tw-justify-center tw-relative tw-mt-6">
<div class="tw-w-1/2 tw-text-right">
<h3 class="tw-text-xl tw-font-semibold">Chaitanya Bharathi Institute of Technology</h3>
<p class="tw-text-gray-700">Bachelor of Engineering</p>
<p class="tw-text-gray-700">Electrical and Electronics Engineering</p>
<p class="tw-text-gray-500 tw-text-sm">June 2018 – June 2022</p>
</div>
<div class="timeline-icon tw-flex tw-items-center tw-justify-center tw-bg-white tw-rounded-full tw-z-10">
<i class="bi bi-mortarboard-fill tw-text-3xl tw-text-blue-600"></i>
</div>
<div class="tw-w-1/2"></div>
</div>
</div>
</div>
</section>
<!-- ==================== PROJECTS SECTION ==================== -->
<section class="projects-section" id="projects">
<div class="reveal-up projects-header">
<h2 class="reveal-up tw-text-4xl tw-font-semibold">View my Projects</h2>
</div>
<div class="reveal-up projects-container">
<!-- Project 1 -->
<div class="reveal-up project-card" onclick="openModal('ellipsis')">
<div class="project-image">
<img src="./assets/images/ellipsis.png" alt="Ellipsis" />
</div>
<h3 tw-text-xl tw-font-semibold>Ellipsis</h3>
<p>
Fully automated, AI-driven agent capable of
producing human-like, high-quality podcasts.
</p>
<span class="learn-more">Learn more →</span>
</div>
<!-- Project 2 -->
<div class="reveal-up project-card" onclick="openModal('article2')">
<div class="project-image">
<img src="./assets/images/tumor.png" alt="Article 2" />
</div>
<h3 tw-text-xl tw-font-semibold>Brain Tumor Detection</h3>
<p>
CNN-based classifier that classifies MRI scans into glioma, meningioma,
pituitary, or no tumor.
</p>
<span class="learn-more">Learn more →</span>
</div>
<!-- Project 3: 86-No-More -->
<div class="reveal-up project-card" onclick="openModal('article3')">
<div class="project-image">
<img src="./assets/images/banner.gif" alt="86-No-More" />
</div>
<h3 tw-text-xl tw-font-semibold>86-No-More</h3>
<p>
Inventory management system that predicts ingredient
shortages, sends alerts, and enhances sustainability.
</p>
<span class="learn-more">Learn more →</span>
</div>
</div>
</section>
<!-- ==================== MODALS ==================== -->
<!-- Modal: Ellipsis -->
<div id="ellipsis-modal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal('ellipsis')">×</span>
<h3>Ellipsis</h3>
<p>
Ellipsis is an <strong>AI-powered podcast generation agent</strong> that produces
fully automated, high-quality audio episodes featuring realistic
multi-speaker conversations on virtually any topic.
</p>
<p>
Users simply enter a topic, and Ellipsis takes care of the entire
production pipeline—conducting research, generating a dynamic script,
narrating it with distinct voices, and producing polished audio output.
</p>
<p>
What sets Ellipsis apart is its rigorous evaluation system. Before finalizing an episode,
the script goes through three rounds of review by a panel of five specialized AI agents:
</p>
<ul>
<li>The <strong>Scientist</strong> – checks for factual accuracy and scientific coherence</li>
<li>The <strong>Author</strong> – assesses narrative flow and language quality</li>
<li>The <strong>Critic</strong> – evaluates storytelling and engagement</li>
<li>The <strong>Psychologist</strong> – flags potential ethical or psychological concerns</li>
<li>The <strong>General Public</strong> – judges relatability and clarity for a broad audience</li>
</ul>
<p>
After passing this multi-agent review, the content is converted into natural-sounding
multi-speaker audio and even generates the script.
</p>
<h4>Technologies Used:</h4>
<div class="skill-buttons">
<button>Python</button>
<button>Flask</button>
<button>React</button>
<button>Redis</button>
<button>Orpheus TTS</button>
<button>MCP</button>
</div>
<div class="modal-buttons">
<a href="https://github.com/dineshkannan010/Ellipsis.git" target="_blank" class="btn">View on GitHub</a>
<a href="https://youtu.be/zPsfbduVc-E" target="_blank" class="btn"> View on YouTube</a>
</div>
</div>
</div>
<!-- Modal: Brain Tumor Detection -->
<div id="article2-modal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal('article2')">×</span>
<h3>Brain Tumor Detection using CNN</h3>
<p>
A Convolutional Neural Network that classifies MRI brain scans into four
classes: <strong>glioma, meningioma, pituitary</strong>, and <strong>no tumor</strong>.
The project uses Kaggle's Brain Tumor MRI dataset and includes careful
preprocessing, augmentation, and model evaluation.
</p>
<h4>Key details</h4>
<ul>
<li><strong>Dataset:</strong> 7,023 images (train: 5,712; test: 1,311); classes ~300 each, "no tumor" ~400 in test.</li>
<li><strong>Preprocessing:</strong> convert to grayscale, resize to 224×224, normalize pixels (0–1).</li>
<li><strong>Augmentation:</strong> rotation ±10°, width/height shift 10%, shear, horizontal flip, brightness 80–120%.</li>
<li><strong>Model:</strong> CNN with Conv + BatchNorm + Pooling, Dropout, fully-connected layers and softmax output. Optimizer: Adam (lr=0.001). EarlyStopping & ReduceLROnPlateau used.</li>
<li><strong>Training & Eval:</strong> categorical cross-entropy; high accuracy reported, with near-perfect scores for some classes and slight confusion for meningioma.</li>
</ul>
<h4>Technologies / Skills</h4>
<div class="skill-buttons">
<button>Python</button>
<button>TensorFlow / Keras</button>
<button>OpenCV</button>
<button>NumPy / Pandas</button>
<button>Data Augmentation</button>
<button>Model Evaluation</button>
</div>
<div class="modal-buttons">
<a href="https://docs.google.com/presentation/d/10TTHg4EK-uxvScwhsJi6tU1OHZgUpwUtOeGakXCJKqQ/edit?usp=sharing" target="_blank" class="btn report-btn">
<i class="fa-regular fa-file-pdf"></i> View Presentation
</a>
<a href="https://youtu.be/qtcKvuGmO9c?si=mmre9PpcHtvl0yw_" target="_blank" class="btn youtube-btn">
<i class="fa-brands fa-youtube"></i> View on YouTube
</a>
</div>
</div>
</div>
<!-- Modal: 86-No-More -->
<div id="article3-modal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal('article3')">×</span>
<h3>86-No-More: Where Innovation Meets Indulgence!</h3>
<p>
<strong>86-No-More</strong> is a revolutionary restaurant management app
that eliminates the frustration of unavailable menu items through a
cutting-edge <strong>AI-driven inventory tracker</strong>. It predicts
ingredient shortages, sends real-time alerts, and provides insightful
analytics to reduce waste and maximize profit.
</p>
<h4>✨ Key Features</h4>
<ul>
<li>Register and log in with secure authentication.</li>
<li>Add, update, and delete items in menu and inventory.</li>
<li>Supports metric selection for quantity tracking.</li>
<li>Ordering and payment page for customers.</li>
<li>Email notifications for shortages and expirations.</li>
<li>Predicts future stock needs based on past data.</li>
<li>Interactive analytics and visual inventory graphs.</li>
<li>User feedback page with star ratings.</li>
<li>Awareness tab promoting food-waste reduction.</li>
<li>Code formatted using Prettier; includes unit tests for coverage.</li>
</ul>
<h4>Technologies Used</h4>
<div class="skill-buttons">
<button>React</button>
<button>Redux</button>
<button>Node.js</button>
<button>Express.js</button>
<button>MongoDB</button>
<button>REST API</button>
<button>Jest</button>
</div>
<div class="modal-buttons">
<a
href="https://github.com/nitin-dhevar/86-no-more-frontend"
target="_blank"
class="btn github-btn"
>
<i class="fa-brands fa-github"></i> Frontend Code
</a>
<a
href="https://github.com/nitin-dhevar/86-no-more-backend"
target="_blank"
class="btn github-btn"
>
<i class="fa-brands fa-github"></i> Backend Code
</a>
</div>
</div>
</div>
<!-- ==================== TESTIMONIAL SECTION ==================== -->
<section class="testimonial-section">
<h2 class="reveal-up tw-text-4xl tw-font-semibold">What people say about me ✨</h2>
<div class="reveal-up carousel" id="testimonial-carousel">
<!-- Slide 1 -->
<div class="slide active">
<p>"Manideepika is one of the most dependable student employees I have ever worked with.
She takes the responsibility of her role seriously and performs exceptionally well.
She is a joy to work with and always has a smile on her face!"</p>
<h4>— Jacob Libera, NCSU</h4>
</div>
</div>
<!-- Dots container -->
<div class="dots" id="testimonial-dots"></div>
</section>
<!-- ==================== CERTIFICATIONS SECTION ==================== -->
<section id="achievements">
<div class="tw-place-items-center">
<div class="reveal-up tw-flex tw-flex-col tw-text-center">
<h2 class="tw-text-4xl tw-font-semibold">
Certifications & Achievements
</h2>
</div>
<div class="tw-mt-6 tw-flex tw-max-w-[80%] tw-flex-wrap tw-place-content-center">
<a href="https://www.credly.com/badges/fd5f6f2c-133d-49f6-8dce-cd912e59e324/public_url"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/nvidia.png"
alt="NVIDIA"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
NVIDIA Certified Professional: Agentic AI
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>AI Agent Architecture, NVIDIA Tools, AI Deployment, AI Operations</p>
</div>
</div>
</a>
<a href="https://www.credly.com/badges/6d829fc4-c042-4a33-8bca-71749ea79aa1/public_url"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/google.png"
alt="Google"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
Google Cloud Certified: Associate Cloud Engineer
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>Cloud Architecture, GKE, Networking, IaC, IAM, Pub/Sub, Cloud Computing</p>
</div>
</div>
</a>
<a href="https://github.com/ncsu-swat/centaur"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/git.png"
alt="GitHub"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
Centaur - Open Source Contribution
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>PyTorch, TensorFlow, Docker, Conda, Python, Pytest</p>
</div>
</div>
</a>
<a href="https://github.com/ncsu-swat/bugsindlls"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/git.png"
alt="GitHub"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
BugsinDLLS - Open Source Contribution
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>PyTorch, TensorFlow, Docker, Conda, Python, Pytest</p>
</div>
</div>
</a>
<a href="tensorflow_bugs.html"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/tf.png"
alt="TensorFlow"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
TensorFlow - Open Source Contribution
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>TensorFlow, Docker, Conda, Python, Pytest</p>
</div>
</div>
</a>
<a href="pytorch_bugs.html"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/pytorch.png"
alt="PyTorch"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
PyTorch - Open Source Contribution
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>PyTorch, Docker, Conda, Python, Pytest</p>
</div>
</div>
</a>
<a href="./assets/Nvidia-Getting_Started_With_Deep_Learning.pdf"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/nvidia.png"
alt="NVIDIA"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
Getting Started with Deep Learning
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>CNN, Data Augmentation, Transfer Learning, NLP, Model Deployment</p>
</div>
</div>
</a>
<a href="https://www.credly.com/badges/761ac002-d2dc-4354-a5a4-e07ac5d602bb/public_url"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/ibm.png"
alt="IBM"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
Qiskit Global Summer School 2024
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>Python, Qiskit, Quantum Simulation, Quantum computing</p>
</div>
</div>
</a>
<a href="skill_badges.html"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/google.png"
alt="Google"
class="tw-rounded-full tw-object-cover"
style="width: 50px; height: 50px;" />
<h3 class="tw-text-lg tw-font-semibold">
Google Cloud Skill Badges
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>Networking, Cloud, DevOps, Data Analytics, Business Intelligence, Security, Automation</p>
</div>
</div>
</a>
<a href="https://telanganaepass.cgg.gov.in/downloads/EBC%20-Fall%202023%20Selected%20list.pdf"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/ts.png"
alt="TS"
class="tw-rounded-full tw-object-cover"
style="width: 40px; height: 40px;" />
<h3 class="tw-text-lg tw-font-semibold">
Mahatma Jyothiba Phule Overseas Vidya Nidhi
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>Awarded by the <strong>Government of Telangana</strong> for postgraduate studies</p>
</div>
</div>
</a>
<a href="./assets/epass_post_matric.pdf"
target="_blank"
rel="noopener noreferrer"
class="tw-block">
<div class="reveal-up tw-flex tw-h-[150px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 hover:tw-bg-gray-100 tw-rounded-lg tw-transition">
<div class="tw-flex tw-items-center tw-gap-2">
<img src="./assets/images/ts.png"
alt="TS"
class="tw-rounded-full tw-object-cover"
style="width: 40px; height: 40px;" />
<h3 class="tw-text-lg tw-font-semibold">
Post - Matric Scholarship for Undergraduate Studies
</h3>
</div>
<div class="tw-text-[#595959] tw-text-sm tw-leading-snug">
<p>Awarded by the <strong>Government of Telangana</strong> for undergraduate studies</p>
</div>
</div>
</a>
</div>
</section>
<!-- ==================== MARQUEE SECTION ==================== -->
<section class="w-full py-16 bg-white">
<div class="marquee-wrapper">
<div class="marquee-track">
<!-- First set -->
<div class="marquee-card">
<img src="./assets/images/p1.png" alt="ATO" />
</div>
<div class="marquee-card">
<img src="./assets/images/p2.png" alt="Grad" />
</div>
<div class="marquee-card">
<img src="./assets/images/p3.png" alt="ATO" />
</div>
<!-- Duplicate set for infinite loop -->
<div class="marquee-card">
<img src="./assets/images/p1.png" alt="" />
</div>
<div class="marquee-card">
<img src="./assets/images/p2.png" alt="" />
</div>
<div class="marquee-card">
<img src="./assets/images/p3.png" alt="" />
</div>
</div>
</section>
<hr class="tw-mt-2" />
<footer class="tw-mt-auto tw-min-h-[100px] tw-place-content-around tw-place-items-center">
<p class="tw-text-sm tw-text-gray-700">
© 2026 Manideepika, All Rights Reserved
</p>
</footer>
</body>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.0/gsap.min.js"
integrity="sha512-B1lby8cGcAUU3GR+Fd809/ZxgHbfwJMp0jLTVfHiArTuUt++VqSlJpaJvhNtRf3NERaxDNmmxkdx2o+aHd4bvw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.0/ScrollTrigger.min.js"
integrity="sha512-AY2+JxnBETJ0wcXnLPCcZJIJx0eimyhz3OJ55k2Jx4RtYC+XdIi2VtJQ+tP3BaTst4otlGG1TtPJ9fKrAUnRdQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
const menuToggle = document.getElementById("menuToggle");
const navLinks = document.querySelector(".nav-links-center");
const links = document.querySelectorAll(".nav-links-center .nav-link");
// Toggle menu open/close
menuToggle.addEventListener("click", () => {
navLinks.classList.toggle("active");
});
// Close menu when a link is clicked
links.forEach(link => {
link.addEventListener("click", () => {
navLinks.classList.remove("active");
});
});
});
</script>
<script src="./index.js"></script>
</html>