-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
1477 lines (1477 loc) · 66.9 KB
/
data.json
File metadata and controls
1477 lines (1477 loc) · 66.9 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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"maths1": {
"name": "Mathematics 1",
"data": {
"Assignments": [
{
"title": "Continuity & Differentiability (Sec G)",
"desc": "Partial Differentiation Assignment of section G",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/continuity_diff_assign.pdf"
},
{
"title": "Continuity & Differentiability (Sec G)",
"desc": "Partial Differentiation Assignment of section G with solution",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/continuity_diff_assign_sol.pdf"
},
{
"title": "Continuity & Differentiability Tutorial (Sec G)",
"desc": "Continuity & Differentiability Tutorial questions of section G",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/continuity_diff_tuto.pdf"
},
{
"title": "Partial Differentiation Tutorial (Sec G)",
"desc": "Partial Differentiation Tutorial questions of section G",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/partial_diff_tuto.pdf"
},
{
"title": "Area by Integrals Tutorial (Sec G)",
"desc": "Area by Integrals Tutorials questions of section G",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/aoc_tutorial.pdf"
},
{
"title": "Vector Calculus (Sec G)",
"desc": "Vector Calculus Assignment of section G",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/vector_assign.pdf"
}
],
"Notes": [
{
"title": "Partial Differentiation",
"desc": "Partial Differentiation Notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/partial_diff.pdf"
},
{
"title": "Integrals",
"desc": "Integrals Notes PDF by Adesh",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/integrals_by_adesh.pdf"
},
{
"title": "Vector Calculus",
"desc": "Vector Calculus Notes PDF by Adesh",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/vector.pdf"
}
],
"PYPs": [
{
"title": "Mid Term 2024 (Sem - I)",
"desc": "Mid term test PDF 2024 (Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/pyq/mid_term_2024_sem1.pdf"
},
{
"title": "End Term 2024 (Sem - I)",
"desc": "End term test PDF 2024 (Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/pyq/m1_end_2024.pdf"
},
{
"title": "End Term (2022-2023)",
"desc": "End term test PDF of session 2022-23",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/pyq/end_term_2022-23.pdf"
},
{
"title": "End Term 2022",
"desc": "End term test PDF of session 2022",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/pyq/end_term_2022.pdf"
},
{
"title": "Mid Term 2022",
"desc": "Mid term test PDF of session 2022",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/pyq/mid_term_2022.pdf"
},
{
"title": "Mini Test (2020-2021)",
"desc": "Mini test PDF of session 2020-21",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/pyq/mini_2020-21.pdf"
}
],
"Books": [
{
"title": "BV Raman",
"desc": "Mathematics book PDF of BV Raman",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/BV_Ramana.pdf"
},
{
"title": "HK Das",
"desc": "Mathematics book PDF of HK Das",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/Hk_Das_.pdf"
},
{
"title": "Thomas Calculus",
"desc": "Mathematics book PDF for Thomas Calculus",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/ThomasCalculus.pdf"
},
{
"title": "RK Jain and Iyenger",
"desc": "Mathematics book PDF of RK Jain and Iyenger",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/RK_Jain_and_Iyengar.pdf"
}
]
}
},
"beee": {
"name": "Basic Electrical & Electronics Eng.",
"data": {
"Lab": [
{
"title": "Lab Manual",
"desc": "BEEE Lab Manual PDF for 1-10 Experiments",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/lab/lab_records.pdf"
}
],
"Notes": [
{
"title": "BEEE Introduction",
"desc": "BEEE Introduction handwritten notes for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/note/Intro.pdf"
},
{
"title": "DC Circuit",
"desc": "DC Circuit handwritten notes for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/note/dc_ckt_ppt.pdf"
},
{
"title": "Mesh Law",
"desc": "DC Circuit Mesh Law handwritten notes for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/note/Mesh.pdf"
},
{
"title": "Transformer",
"desc": "Transformer handwritten notes for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/note/dc_ckt_ppt.pdf"
},
{
"title": "Semiconductor & Transistor",
"desc": "Semiconductor & Transistor handwritten notes for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/note/semiconductor.pdf"
}
],
"PYPs": [
{
"title": "End Term 2024 (Sem - I)",
"desc": "End Term 2024 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/end_term_2024_sem1.pdf"
},
{
"title": "Mid Term 2024 (Sem - I) Sec - F",
"desc": "Mid Term 2024 Sem I of Sec F test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mid_term_2024_sem1_secf.pdf"
},
{
"title": "Mid Term 2024 (Sem - I) Sec - G",
"desc": "Mid Term 2024 Sem I of Sec G test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mid_term_2024_sem1_secg.pdf"
},
{
"title": "Mid Term 2024 (Sem - II)",
"desc": "Mid Term 2024 Sem II test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mid_term_2024_sem2.pdf"
},
{
"title": "End Term 2023 (Sem - II)",
"desc": "End Term 2023 Sem II test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/end_term_2023_sem2.pdf"
},
{
"title": "End Term 2022",
"desc": "End Term 2022 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/end_term_2022.pdf"
},
{
"title": "End Term 2022 (Sem - I)",
"desc": "End Term 2022 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/end_term_2022_sem1.pdf"
},
{
"title": "Mid Term 2022",
"desc": "Mid Term 2022 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mid_term_2022.pdf"
},
{
"title": "Mid Term 2022 (Sem - II)",
"desc": "Mid Term 2022 Sem II test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mid_term_2022_sem2.pdf"
},
{
"title": "Mini Test 2022",
"desc": "Mini Test 2022 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mini_test_2022.pdf"
},
{
"title": "Mini Test 2022 Sec - G",
"desc": "Mini Test 2022 Sec G test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/pyq/mini_test_2022_secg.pdf"
}
],
"Books": [
{
"title": "BL Theraja",
"desc": "BL Theraja book PDF for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/books/BLTheraja.pdf"
},
{
"title": "RK Rajput",
"desc": "RK Rajput book PDF for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/books/RK_Rajput.pdf"
},
{
"title": "Semiconductor & Transistor",
"desc": "Semiconductor & Transistor book PDF for BEEE",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/beee/books/semiconductor.pdf"
}
]
}
},
"m2": {
"name": "Mathematics 2",
"data": {
"Assignments": [
{
"title": "Matrices",
"desc": "Matrices assignment section G 2025",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/assignments/matrix.pdf"
},
{
"title": "Laplace Transformation",
"desc": "Laplace Transformation assignment section G 2025",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/assignments/laplace.pdf"
},
{
"title": "Fourier Series & Transform",
"desc": "Fourier Series and transform assignment section G 2025",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/assignments/fourier.pdf"
}
],
"Notes": [
{
"title": "Function of Complex Variables",
"desc": "Function of Complex Variables handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/notes/complex.pdf"
},
{
"title": "Fourier Series",
"desc": "Fourier Series handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/notes/fourier.pdf"
},
{
"title": "Laplace Transformation + SDE",
"desc": "Laplace Transformation and SDE handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/notes/laplace.pdf"
},
{
"title": "Matrices",
"desc": "Matrices handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/notes/matrices.pdf"
},
{
"title": "Partial Differential Equations",
"desc": "Partial Differential Equation handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/notes/pde.pdf"
},
{
"title": "Short Notes",
"desc": "Handwritten Short Notes notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/notes/short_notes.pdf"
}
],
"PYPs": [
{
"title": "End Term 2025 (Sem - II)",
"desc": "End Term 2025 test paper (Sem - II) - Mathematics II",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/pyq/m2_end_2025.pdf"
},
{
"title": "Mid Term 2025 (Sem - II)",
"desc": "Mid Term PDF of section G 2025 (Sem - II)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/pyq/mid_term_2025_sem2.pdf"
},
{
"title": "Mini Test 2025 (Sem - II)",
"desc": "Mini test PDF of section G 2025 (Sem - II)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/pyq/mini_sem2_2025.pdf"
},
{
"title": "End Term 2021",
"desc": "End Term test PDF of 2021 for Maths 2",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/pyq/end_term_2021.pdf"
},
{
"title": "Test Paper 2023 (Sem - I)",
"desc": "Mini Test + Mid and End Term combined PDF of 2023 for Maths 2",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m2/pyq/2023_paper.pdf"
}
],
"Books": [
{
"title": "BV Raman",
"desc": "Mathematics book PDF of BV Raman",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/BV_Ramana.pdf"
},
{
"title": "HK Das",
"desc": "Mathematics book PDF of HK Das",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/Hk_Das_.pdf"
},
{
"title": "Thomas Calculus",
"desc": "Mathematics book PDF for Thomas Calculus",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/ThomasCalculus.pdf"
},
{
"title": "RK Jain and Iyenger",
"desc": "Mathematics book PDF of RK Jain and Iyenger",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/m1/RK_Jain_and_Iyengar.pdf"
}
]
}
},
"mechanics": {
"name": "Engineering Mechanics",
"data": {
"Lab": [
{
"title": "Lab Records",
"desc": "Engineering Mechanics Lab Records PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/lab/lab.pdf"
}
],
"Assignments": [
{
"title": "Assignment 1",
"desc": "Assignment 1 Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/assign/ass1.pdf"
},
{
"title": "Assignment 2",
"desc": "Assignment 2 Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/assign/ass2.pdf"
},
{
"title": "Assignment 3",
"desc": "Assignment 3 Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/assign/ass3.pdf"
}
],
"Notes-2024": [
{
"title": "Centroid and MOI",
"desc": "Centroid and MOI handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/sanskriti/Centroid_And_MOI.pdf"
},
{
"title": "Friction",
"desc": "Friction handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/sanskriti/Friction.pdf"
},
{
"title": "Moment Of Inertia",
"desc": "MOI handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/sanskriti/MOI.pdf"
},
{
"title": "Shear Force and Bending Moment",
"desc": "Shear Force and Bending Moment handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/sanskriti/Shear_Force_And_Bending_Moment.pdf"
},
{
"title": "Trusses",
"desc": "Trusses handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/sanskriti/Trusses.pdf"
}
],
"Notes": [
{
"title": "Shear Force and Bending Moment (Sec F)",
"desc": "Shear Force and Bending Moment handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/Shear_Force_and_BM.pdf"
},
{
"title": "Truss",
"desc": "Truss handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/Truss.pdf"
},
{
"title": "Centre of Gravity",
"desc": "Centre of Gravity handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/centre_of_gravity.pdf"
},
{
"title": "Force System",
"desc": "Force System handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/forces_moments.pdf"
},
{
"title": "Shear Force and Bending Moment (Sec G)",
"desc": "Shear Force and Bending Moment handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/notes/shear_force_bending_moment.pdf"
}
],
"PYPs": [
{
"title": "End Term 2025 (Sem - II)",
"desc": "End Term 2025 test paper (Sem - II) - Mechanics",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/mechanics_s2_end_2025.pdf"
},
{
"title": "Mid Term 2025 (Sem - II)",
"desc": "Mid Term 2025 Sem II test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/mid_term_2025_sem2.pdf"
},
{
"title": "Mid Term 2024 (Sem - I)",
"desc": "Mid Term 2024 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/mid_term_2024_sem1.pdf"
},
{
"title": "End Term 2024 (Sem - I)",
"desc": "End Term 2024 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/end_term_2024_sem1.pdf"
},
{
"title": "End Term 2022 (Sem - II)",
"desc": "End Term 2022 Sem II test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/end_term_2022_sem2.pdf"
},
{
"title": "End Term 2022 (Sem - I)",
"desc": "End Term 2022 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/end_term_2022.pdf"
},
{
"title": "Mini Test 2022",
"desc": "Mini Test 2022 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/mini_test_2022.pdf"
},
{
"title": "End Term 2021",
"desc": "End Term 2021 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/end_term_2021.pdf"
},
{
"title": "Mini Test 2021",
"desc": "Mini Test 2021 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/mini_test_2021.pdf"
},
{
"title": "Mini Test 2020",
"desc": "Mini Test 2020 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/pyq/mini_test_2020.pdf"
}
],
"Books": [
{
"title": "RC Hibbeler",
"desc": "Engineering Mechanics reference book by RC Hibbeler 12th Edition",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/books/hibbeler.pdf"
},
{
"title": "RK Rajput",
"desc": "Engineering Mechanics reference book by RK Rajput",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/books/RK_Rajput.pdf"
},
{
"title": "J L Meriam & Kraige",
"desc": "Engineering Mechanics reference book by Meriam & Kraige 6th Edition",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/books/meriam_kraige.pdf"
}
]
}
},
"chemistry": {
"name": "Engineering Chemistry",
"data": {
"Assignments": [
{
"title": "Polymers and Cement",
"desc": "Polymers and Cement assignment of Sec - G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/assignments/poly_cement_secg.pdf"
},
{
"title": "Water",
"desc": "Water assignment of Sec - G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/assignments/water_secg.pdf"
},
{
"title": "Corrosion",
"desc": "Corrosion assignment of Sec - G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/assignments/corrosion_secg.pdf"
},
{
"title": "Lubricant",
"desc": "Lubricants assignment of Sec - G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/assignments/lubricant_secg.pdf"
}
],
"Lab": [
{
"title": "Lab Records",
"desc": "Engineering Chemistry and Analytical Chemistry Lab Records PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/lab/lab_record.pdf"
}
],
"Notes": [
{
"title": "Polymer",
"desc": "Polymer handwritten notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/polymer.pdf"
},
{
"title": "Polymer PPT",
"desc": "Polymer PPT notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/polymers_ppt.pdf"
},
{
"title": "Cement",
"desc": "Cement handwritten notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/cement.pdf"
},
{
"title": "Cement PPT",
"desc": "Cement PPT notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/cement_ppt.pdf"
},
{
"title": "Lubricant",
"desc": "Lubricant handwritten notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/lubricant.pdf"
},
{
"title": "Lubricant PPT",
"desc": "Lubricant PPT notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/lubricants_ppt.pdf"
},
{
"title": "Fuels",
"desc": "Fuels handwritten notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/fuels.pdf"
},
{
"title": "Fuels PPT",
"desc": "Fuels PPT notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/fuels_ppt.pdf"
},
{
"title": "Corrosion",
"desc": "Corrosion handwritten notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/corrosion.pdf"
},
{
"title": "Corrosion PPT",
"desc": "Corrosion PPT notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/corrosion_ppt.pdf"
},
{
"title": "Water PPT",
"desc": "Water PPT notes PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/Notes/water_ppt.pdf"
}
],
"PYPs": [
{
"title": "Mini Test 2024 (Sec - F)",
"desc": "Mini Test PDF of Section F",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/pyq/mini_test_2024_secf.pdf"
},
{
"title": "Mid Term 2024 (Sem - I)",
"desc": "Mid Term test pdf of 2024 1st semester",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/pyq/mid_term_2024_sem1.pdf"
},
{
"title": "End Term 2024 (Sem - I)",
"desc": "End Term test pdf of 2024 1st semester",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/pyq/end_term_2024_sem1.pdf"
},
{
"title": "Mid + End Term 2023 (Sem - II)",
"desc": "Mid term and end Term test pdf of 2023 2nd semester",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/pyq/mid_end_term_2023_sem2.pdf"
},
{
"title": "End Term 2022 (Sem - II)",
"desc": "End Term test pdf of 2022 2nd semester",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/pyq/end_term_2022_sem2.pdf"
},
{
"title": "End Term 2021 (Sem - II)",
"desc": "End Term test pdf of 2021 2nd semester",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/pyq/end_term_2021_sem2.pdf"
}
],
"Books": [
{
"title": "Jain and Jain",
"desc": "Jain and Jain book for Chemistry",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/chemistry/books/Jain_and_Jain_.pdf"
}
]
}
},
"physics": {
"name": "Physics",
"data": {
"Lab": [
{
"title": "Lab Records",
"desc": "Lab Records for Exp (1-14) for physics lab",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/lab/lab_records.pdf"
},
{
"title": "Observation Records",
"desc": "Observation copy Records for Exp (1-14) for physics lab",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/lab/observations.pdf"
}
],
"Assignments": [
{
"title": "Assignments Solved (Sec - E)",
"desc": "Assignment Solution of Section E by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/assign/ass_sol.pdf"
},
{
"title": "Nuclear Physics",
"desc": "Nuclear Physics Assignment Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/assign/nuclear_physics.pdf"
},
{
"title": "Quantum Mechanics",
"desc": "Quantum Mechanics Assignment Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/assign/quantum_mechanics.pdf"
},
{
"title": "Semiconductor",
"desc": "Semiconductor Assignment Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/assign/semiconductor.pdf"
},
{
"title": "Wave Optics",
"desc": "Wave Optics Assignment Section E",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/assign/wave_optics.pdf"
}
],
"Notes-2024": [
{
"title": "Bethe's Law",
"desc": "Bethe's Law handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/Bethe_s_Law.pdf"
},
{
"title": "Nuclear Physics",
"desc": "Nuclear Physics handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/Nuclear_Physics.pdf"
},
{
"title": "Theory of Relativity",
"desc": "Theory of Relativity handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/Theory_Of_Relativity.pdf"
},
{
"title": "Semiconductor",
"desc": "Semiconductor handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/semiconductor.pdf"
},
{
"title": "Laser",
"desc": "Laser handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/Laser.pdf"
},
{
"title": "Quantum Physics",
"desc": "Quantum Physics handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/Quantum_Physics.pdf"
},
{
"title": "Wave Optics",
"desc": "Wave Optics handwritten notes by Sanskriti Jain",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/sanskriti/Wave_optics.pdf"
}
],
"Notes": [
{
"title": "Ballistics",
"desc": "Ballistics handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/Ballistics.pdf"
},
{
"title": "Laser",
"desc": "Laser handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/Laser.pdf"
},
{
"title": "Nuclear Physics",
"desc": "Nuclear Physics handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/Nuclear.pdf"
},
{
"title": "Quantum Mechanics (2)",
"desc": "Quantum Mechanics 2 handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/Quantum_2.pdf"
},
{
"title": "Quantum Mechanics",
"desc": "Quantum Mechanics handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/Quantum Mechanics_.pdf"
},
{
"title": "Theory of Relativity",
"desc": "Theory of Relativity handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/Theory_of_Relativity_.pdf"
},
{
"title": "Wave Optics",
"desc": "Wave Optics handwritten notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/notes/wave_optics.pdf"
}
],
"PYPs": [
{
"title": "End Term 2025 (Sem - II)",
"desc": "End Term 2025 test paper (Sem - II) - Physics",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/phy_end_term_s2_2025.pdf"
},
{
"title": "Mid Term 2025 (Sem - II)",
"desc": "Mid Term PDF of section G 2025 (Sem - II)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mid_term_2025_sem2.pdf"
},
{
"title": "Mini Test 2025 (Sem - II)",
"desc": "Mini test PDF of section G 2025 (Sem - II)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mini_sem2_2025.pdf"
},
{
"title": "Mini Test 2024 (Sem - I)",
"desc": "Mini test PDF of section E 2024 (Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mini_2024_sem1_sece.pdf"
},
{
"title": "Mid Term 2024 (Sem - I)",
"desc": "Mid Term PDF 2024 (Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mid_term_2024_sem1.pdf"
},
{
"title": "End Term 2024 (Sem - I)",
"desc": "End Term PDF 2024 (Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/end_term_2024_sem1.pdf"
},
{
"title": "End Term 2023",
"desc": "End Term 2023 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/end_term_2023.pdf"
},
{
"title": "Mid Term 2023 (Sem - I)",
"desc": "Mid Term 2023 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mid_term_2023_sem1.pdf"
},
{
"title": "Mid Term 2023",
"desc": "Mid Term 2023 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mid_term_2023.pdf"
},
{
"title": "Mini Term 2022",
"desc": "Mini Term 2022 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mini_term_2022.pdf"
},
{
"title": "Mid Term 2022 (Sem - I)",
"desc": "Mid Term 2022 Sem I test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mid_term_2022_sem1.pdf"
},
{
"title": "End Term 2021",
"desc": "End Term 2021 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/end_term_2021.pdf"
},
{
"title": "Mid Term Sol 2021",
"desc": "Mid Term Sol 2021 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mid_term_sol_2021.pdf"
},
{
"title": "Mini Test 2020",
"desc": "Mini Test 2020 test PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/pyq/mini_test_2020.pdf"
}
],
"Books": [
{
"title": "M.N. Avadhanulu & P.G. Kshirsagar",
"desc": "Engineering Physics reference book by M.N. Avadhanulu & P.G. Kshirsagar",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/physics/books/Avadhanulu_Kshirsagar.pdf"
},
{
"title": "K Malik & Ajay Kumar",
"desc": "Physics reference book by Hitendra K Malik & Ajay Kumar Singh",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/mechanics/books/RK_Rajput.pdf"
}
]
}
},
"evs": {
"name": "Environmental Science",
"data": {
"Assignments": [
{
"title": "Natural Resources Assignment",
"desc": "Natural Resources assignment of Section G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/assignments/natural_resources_2024_secg.pdf"
},
{
"title": "Air Pollution Assignment",
"desc": "Air Pollution assignment of Section G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/assignments/air_pollution_secg_2024.pdf"
},
{
"title": "Water Pollution Assignment",
"desc": "Water Pollution assignment of Section G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/assignments/water_pollution_secg_2024.pdf"
},
{
"title": "Assignments Solution",
"desc": "Assignments solution for Natural Resources, Air and water pollution by Dr. Saumya Mukharjee",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/assignments/Assignments_solutions.pdf"
},
{
"title": "Assignment - 4 (Case Study)",
"desc": "Assignment - 4 of Section G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/assignments/assign4_secg.pdf"
},
{
"title": "Assignment - 5 (Case Study)",
"desc": "Assignment - 5 of Section G (2024 Sem - I)",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/assignments/assign5_secg.pdf"
}
],
"Notes": [
{
"title": "Air Pollution PPT",
"desc": "Biosphere and its pollution ppt",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/Notes/air_pol_ppt.pdf"
},
{
"title": "Air Pollution",
"desc": "Biosphere and its pollution handwritten pdf",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/Notes/air_pollution.pdf"
},
{
"title": "Water Pollution PPT",
"desc": "Hydrosphere and water pollution ppt",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/Notes/water_ppt.pdf"
},
{
"title": "Water Pollution",
"desc": "Biosphere and its pollution handwritten pdf",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/Notes/water.pdf"
}
],
"PYPs": [
{
"title": "Mini Test 2024 (Sem - 1)",
"desc": "Mini Test Quiz of section G with solutions",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/mini_test_secg_2024_sem1.pdf"
},
{
"title": "Mid Term 2024 (Sem - 1)",
"desc": "Mid term test pdf for semester 1 2024",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/mid_term_2024_sem1.pdf"
},
{
"title": "Mid Term 2024 Solutions (Sem - 1)",
"desc": "End term test solution pdf by Dr. Saumya Mukharjee",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/mini_test_secg_2024_sem1.pdf"
},
{
"title": "End Term 2024 (Sem - 1)",
"desc": "End term test pdf for semester 1 2024",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/end_term_2024_sem1.pdf"
},
{
"title": "End Term 2024 Solutions (Sem - 1)",
"desc": "End term test solution pdf by Dr. Saumya Mukharjee",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/mini_test_secg_2024_sem1.pdf"
},
{
"title": "Mid Term 2023 (Sem - 2)",
"desc": "Mid term test pdf for semester 2 2023",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/mid_term_2023_sem2.pdf"
},
{
"title": "End Term 2022 (Sem - 2)",
"desc": "End term test pdf for semester 2 2022",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/PYQs/End_Offline(2022).pdf"
}
],
"Books": [
{
"title": "Natural Resources",
"desc": "Natural Resources book PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/books/natural_resources.pdf"
},
{
"title": "Atmosphere and Air Pollution",
"desc": "Atmosphere book PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/books/atmosphere.pdf"
},
{
"title": "Soil Pollution",
"desc": "Soil Pollution book PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/books/soil_pollution.pdf"
},
{
"title": "Water Pollution",
"desc": "Water Pollution book PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/books/water_pollution.pdf"
},
{
"title": "Unit V Environmental Management",
"desc": "Unit V Environmental Management book PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/evs/books/Environmental_Management.pdf"
}
]
}
},
"biology": {
"name": "Biology for Engineers",
"data": {
"Syllabus": [
{
"title": "Biology Syllabus",
"desc": "Biology for Engineers Syllabus PDF",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/syllabus.pdf"
}
],
"Notes": [
{
"title": "Epidemiology",
"desc": "Epidemiology PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/Epidemiology.pdf"
},
{
"title": "Cell Cycle",
"desc": "Cell Cycle PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/cell_cycle.pdf"
},
{
"title": "Plant Cell Organelles",
"desc": "Plant Cell Organelles PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/plant_cell_organelles.pdf"
},
{
"title": "Structure of Plant Cell",
"desc": "Structure of Plant Cell PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/struc_plant_cell.pdf"
},
{
"title": "Prokaryotic and Eukaryotic Cells",
"desc": "Prokaryotic and Eukaryotic Cells PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/Prokaryotic_and_Eukaryotic_Cells.pdf"
},
{
"title": "Cells as Foundation of Life",
"desc": "Cells as Foundation of Life PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/cells_as_foundation_of_life.pdf"
},
{
"title": "Protein Functions",
"desc": "Protein Functions PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/protiens_function.pdf"
},
{
"title": "Amino Acids and Peptides",
"desc": "Amino Acids and Peptides PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/amino_acids_peptides.pdf"
},
{
"title": "Gene and Cell Therapy",
"desc": "Gene and Cell Therapy PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/gene_cell_therapy.pdf"
},
{
"title": "Recombinant DNA Technology and Genetic Engineering",
"desc": "Recombinant DNA Technology and Genetic Engineering PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/rDNA_technology_and_genetic_engineering.pdf"
},
{
"title": "Biochips and DNA Chips",
"desc": "Biochips and DNA Chips PPT notes",
"link": "https://raw.githubusercontent.com/iamwsumit/manit/refs/heads/main/content/biology/notes/biochips_and_dna_chips.pdf"
},
{
"title": "Nutrition and Digestion",