forked from Rakesh9100/CalcDiverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculators.json
2546 lines (2546 loc) · 136 KB
/
calculators.json
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
[
{
"title": "2D Distance Calculator",
"description": "Calculates the distance between two points on a 2D plane.",
"link": "./Calculators/2D-Distance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/2D-Distance-Calculator"
},
{
"title": "2D Shapes Calculator",
"description": "Calculates the area and perimeter of different useful 2D shapes.",
"link": "./Calculators/2D-Shapes-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/2D-Shapes-Calculator"
},
{
"title": "3D Distance Calculator",
"description": "Calculates the distance between 2 points in a 3D space.",
"link": "./Calculators/3D-Distance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/3D-Distance-Calculator"
},
{
"title": "3D Shapes Calculator",
"description": "Calculates the volume and surface area of different important and useful 3D shapes.",
"link": "./Calculators/3D-Shapes-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/3D-Shapes-Calculator"
},
{
"title": "3D Surface Plotter Calculator",
"description": "Plots the 3D surfaces for the given functions.",
"link": "./Calculators/3D-Surface-Plotter-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/3D-Surface-Plotter-Calculator"
},
{
"title": "4 Band Resistance Calculator",
"description": "Calculate the theoretical resistance of a 4-band resistor.",
"link": "./Calculators/4-Band-Resistance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/4-Band-Resistance-Calculator"
},
{
"title": "5 Band Resistance Calculator",
"description": "Calculate the theoretical resistance of a 5-band resistor.",
"link": "./Calculators/5-Band-Resistance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/5-Band-Resistance-Calculator"
},
{
"title": "6 Band Resistance Calculator",
"description": "Calculate the theoretical resistance of a 6-band resistor.",
"link": "./Calculators/6-Band-Resistance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/6-Band-Resistance-Calculator"
},
{
"title": "AC/DC Power Calculator",
"description": "Converts power values between AC and DC.",
"link": "./Calculators/AC-DC-Power-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/AC-DC-Power-Calculator"
},
{
"title": "ASCII Value Calculator",
"description": "Calculates the ASCII value of any character.",
"link": "./Calculators/ASCII-Value-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/ASCII-Value-Calculator"
},
{
"title": "Abundant Number Calculator",
"description": "Checks for a number to be abundant or not.",
"link": "./Calculators/Abundant-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Abundant-Number-Calculator"
},
{
"title": "Acoustic Impedance Calculator",
"description": "Calculates the acoustic impedance by taking the density & speed of sound as input.",
"link": "./Calculators/Acoustic-Impedance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Acoustic-Impedance-Calculator"
},
{
"title": "Age Calculator",
"description": "Calculates the person's age by taking in the date of birth as input.",
"link": "./Calculators/Age-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Age-Calculator"
},
{
"title": "Air Fuel Ratio Calculator",
"description": "Calculates the mass of air to fuel ratio (AFR) for any fuel.",
"link": "./Calculators/Air-Fuel-Ratio-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Air-Fuel-Ratio-Calculator"
},
{
"title": "Air Quality Index Calculator",
"description": "Calculates the level of the air quality using AQI index as input.",
"link": "./Calculators/Air-Quality-Index-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Air-Quality-Index-Calculator"
},
{
"title": "Amortization Calculator",
"description": "Calculates the monthly payments and generates an Amortization schedule for loans.",
"link": "./Calculators/Amortization-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Amortization-Calculator"
},
{
"title": "Anagram Calculator",
"description": "Calculator which checks whether the two words are Anagram or not.",
"link": "./Calculators/Anagram-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Anagram-Calculator"
},
{
"title": "Angle Between Two Lines Calculator",
"description": "Calculates an angle between the two lines.",
"link": "./Calculators/Angle-Between-Two-Lines-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Angle-Between-Two-Lines-Calculator"
},
{
"title": "Annulus Calculator",
"description": "Calculates the area of the circle with inner and outer radius.",
"link": "./Calculators/Annulus-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Annulus-Calculator"
},
{
"title": "Antilog Calculator",
"description": "Calculates the antilog of any given number taken over any base.",
"link": "./Calculators/Antilog-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Antilog-Calculator"
},
{
"title": "Arithmetic Geometric Progression Calculator",
"description": "Calculates nth Term and sum of n Terms of the Arithmetic Geometric Sequence.",
"link": "./Calculators/Arithmetic-Geometric-Progression-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Arithmetic-Geometric-Progression-Calculator"
},
{
"title": "Arithmetic Progression Calculator",
"description": "Calculates nth Term, arithmetic mean and sum of n Terms present in an Arithmetic Sequence.",
"link": "./Calculators/Arithmetic-Progression-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Arithmetic-Progression-Calculator"
},
{
"title": "Armstrong Number Calculator",
"description": "Checks if a number is armstrong and lists armstrong numbers for a given digit count.",
"link": "./Calculators/Armstrong-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Armstrong-Number-Calculator"
},
{
"title": "Arrhenius Equation Calculator",
"description": "Calculates important parameters of chemical kinetics.",
"link": "./Calculators/Arrhenius-Equation-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Arrhenius-Equation-Calculator"
},
{
"title": "Aspect Ratio Calculator",
"description": "Calculates the aspect ratio of the specified height and width.",
"link": "./Calculators/Aspect-Ratio-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Aspect-Ratio-Calculator"
},
{
"title": "Astrological Age Calculator",
"description": "Calculates the age on different planets as selected by the user.",
"link": "./Calculators/Astrological-Age-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Astrological-Age-Calculator"
},
{
"title": "Atomic Composition Calculator",
"description": "Calculates the number of protons, neutrons, and electrons in an atom.",
"link": "./Calculators/Atomic-Composition-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Atomic-Composition-Calculator"
},
{
"title": "Automorphic Number Calculator",
"description": "Checks if a number is an automorphic number or not.",
"link": "./Calculators/Automorphic-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Automorphic-Number-Calculator"
},
{
"title": "Averages Calculator",
"description": "Calculates the arithmetic, geometric, and harmonic means.",
"link": "./Calculators/Averages-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Averages-Calculator"
},
{
"title": "BMI Calculator",
"description": "Calculates the Body Mass Index of a person using Height & Weight.",
"link": "./Calculators/BMI-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/BMI-Calculator"
},
{
"title": "BMR Calculator",
"description": "Calculates the Basal Metabolic Rate of a person using height, weight & age.",
"link": "./Calculators/BMR-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/BMR-Calculator"
},
{
"title": "BSA Calculator",
"description": "Calculates the Body Surface Area with personalized health tips and data persistence.",
"link": "./Calculators/BSA-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/BSA-Calculator"
},
{
"title": "Banker's Algorithm Calculator",
"description": "Calculates the safety sequence for resource allocation.",
"link": "./Calculators/Banker's-Algorithm-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Banker's-Algorithm-Calculator"
},
{
"title": "Base Change Calculator",
"description": "Converts a number between different bases.",
"link": "./Calculators/Base-Change-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Base-Change-Calculator"
},
{
"title": "Basic Calculator",
"description": "Basic old school calculator for simple calculations.",
"link": "./Calculators/Basic-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Basic-Calculator"
},
{
"title": "Basic Physics Calculator",
"description": "Easily calculates the basic physics quantities.",
"link": "./Calculators/Basic-Physics-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Basic-Physics-Calculator"
},
{
"title": "Battery Life Calculator",
"description": "Estimates battery life based on capacity and average load current.",
"link": "./Calculators/Battery-Life-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Battery-Life-Calculator"
},
{
"title": "Bayes Theorem Calculator",
"description": "Calculates the probability of an event A given that event B has occurred.",
"link": "./Calculators/Bayes-Theorem-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Bayes-Theorem-Calculator"
},
{
"title": "Beta Function Calculator",
"description": "Calculate the ß value of two numbers in a single click!",
"link": "./Calculators/Beta-Function-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Beta-Function-Calculator"
},
{
"title": "Bill Split Calculator",
"description": "Effortlessly split bills with our calculator. Simplify expense sharing now!",
"link": "./Calculators/Bill-Split-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Bill-Split-Calculator"
},
{
"title": "Binary Calculator",
"description": "Calculates results of different binary operations based on inputs.",
"link": "./Calculators/Binary-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Binary-Calculator"
},
{
"title": "Binomial Distribution Calculator",
"description": "Calculates the value of the probability mass function and probability distribution function.",
"link": "./Calculators/Binomial-Distribution-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Binomial-Distribution-Calculator"
},
{
"title": "Binomial Expansion Calculator",
"description": "Calculates and display the binomial expansion of given coefficients a, b, and power n.",
"link": "./Calculators/Binomial-Expansion-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Binomial-Expansion-Calculator"
},
{
"title": "Bitwise Calculator",
"description": "Calculates results of different bitwise operations based on inputs.",
"link": "./Calculators/Bitwise-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Bitwise-Calculator"
},
{
"title": "Black Hole Number Calculator",
"description": "Given any number, it reaches to Four.",
"link": "./Calculators/Black-Hole-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Black-Hole-Number-Calculator"
},
{
"title": "Blood Alcohol Content Calculator",
"description": "Calculates the BAC based on the entered input values.",
"link": "./Calculators/Blood-Alcohol-Content-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Blood-Alcohol-Content-Calculator"
},
{
"title": "Blood Pressure Calculator",
"description": "Calculates the blood pressure based on the systolic and diastolic values.",
"link": "./Calculators/Blood-Pressure-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Blood-Pressure-Calculator"
},
{
"title": "Blood Sugar Calculator",
"description": "Calculates the range of blood sugar levels in the body based on age and medical test results.",
"link": "./Calculators/Blood-Sugar-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Blood-Sugar-Calculator"
},
{
"title": "Body Fat Percentage Calculator",
"description": "Calculates the body fat percentage of a person using neck, waist, weight & height.",
"link": "./Calculators/Body-Fat-Percentage-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Body-Fat-Percentage-Calculator"
},
{
"title": "Body Shape Calculator",
"description": "Calculates body shape using waist, bust, and hip measurements, and also suggests styles.",
"link": "./Calculators/Body-Shape-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Body-Shape-Calculator"
},
{
"title": "Book Reading Time Calculator",
"description": "Calculates the time required to finish reading a book.",
"link": "./Calculators/Book-Reading-Time-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Book-Reading-Time-Calculator"
},
{
"title": "Budget Tracker Calculator",
"description": "Calculates the budget based on the income and expenditure.",
"link": "./Calculators/Budget-Tracker-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Budget-Tracker-Calculator"
},
{
"title": "Bouncy Number Calculator",
"description": "Check the number is bouncy or not and finds bouncy numbers in a range.",
"link": "./Calculators/Bouncy-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Bouncy-Number-Calculator"
},
{
"title": "Boyle Temperature Calculator",
"description": "Calculates the Boyle temperature using constants a and b.",
"link": "./Calculators/Boyle-Temperature-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Boyle-Temperature-Calculator"
},
{
"title": "Buoyancy Calculator",
"description": "Calculates the buoyant force on an object submerged in a fluid.",
"link": "./Calculators/Buoyancy-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Buoyancy-Calculator"
},
{
"title": "Buzz Number Calculator",
"description": "Checks for a number to be a buzz number or not.",
"link": "./Calculators/Buzz-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Buzz-Number-Calculator"
},
{
"title": "CAGR Calculator",
"description": "Calculates the Compound Annual Growth Rate of an investment over a specified period.",
"link": "./Calculators/CAGR-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CAGR-Calculator"
},
{
"title": "CGPA Percentage Calculator",
"description": "Converts CGPA to percentage and vice-versa.",
"link": "./Calculators/CGPA-Percentage-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CGPA-Percentage-Calculator"
},
{
"title": "CGS FPS MKS Calculator",
"description": "Calculator that converts inputs between CGS, FPS, and MKS unit systems for various physical quantities.",
"link": "./Calculators/CGS-FPS-MKS-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CGS-FPS-MKS-Calculator"
},
{
"title": "CO2 Emissions Calculator",
"description": "Calculates the carbon footprint from various modes of transport.",
"link": "./Calculators/CO2-Emissions-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CO2-Emissions-Calculator"
},
{
"title": "CPU Scheduling Calculator",
"description": "Calculates the wait time and turnaround time for various CPU scheduling algorithms.",
"link": "./Calculators/CPU-Scheduling-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CPU-Scheduling-Calculator"
},
{
"title": "CSS Unit Calculator",
"description": "Converts various css units.",
"link": "./Calculators/CSS-Unit-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CSS-Unit-Calculator"
},
{
"title": "Caesar Cipher Encryption Calculator",
"description": "Encrypts the given plaintext into cipher text using a technique called Caesar Cipher.",
"link": "./Calculators/Caesar-Cipher-Encryption-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Caesar-Cipher-Encryption-Calculator"
},
{
"title": "Calorie Burnt Calculator",
"description": "Calculates the amount of calories burnt from particular exercise.",
"link": "./Calculators/Calorie-Burnt-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Calorie-Burnt-Calculator"
},
{
"title": "Calorie Consumed Calculator",
"description": "Calculates daily calorie consumed based on given inputs.",
"link": "./Calculators/Calorie-Consumed-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Calorie-Consumed-Calculator"
},
{
"title": "Calorie Intake Calculator",
"description": "Calculates daily calorie intake based on given inputs.",
"link": "./Calculators/Calorie-Intake-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Calorie-Intake-Calculator"
},
{
"title": "Capacitance Calculator",
"description": "Calculates the capacitance in a parallel plate capacitor.",
"link": "./Calculators/Capacitance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Capacitance-Calculator"
},
{
"title": "Capacitor Conversion Calculator",
"description": "Converts capacitor values between different units.",
"link": "./Calculators/Capacitor-Conversion-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Capacitor-Conversion-Calculator"
},
{
"title": "Carbon Footprint Calculator",
"description": "Calculates an individual's carbon footprint based on some input parameters.",
"link": "./Calculators/Carbon-Footprint-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Carbon-Footprint-Calculator"
},
{
"title": "Cat Quality Of Life Calculator",
"description": "Calculates your beloved cat's life quality according to standard parameters.",
"link": "./Calculators/Cat-Quality-Of-Life-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cat-Quality-Of-Life-Calculator"
},
{
"title": "Catalan Number Calculator",
"description": "Calculates the nth Catalan Number with the value of n entered by the user.",
"link": "./Calculators/Catalan-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Catalan-Number-Calculator"
},
{
"title": "Catenary Curve Calculator",
"description": "Calculate and visualize the catenary curve based on user inputs.",
"link": "./Calculators/Catenary-Curve-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Catenary-Curve-Calculator"
},
{
"title": "Centripetal Force Calculator",
"description": "Calculates Centripetal force and acceleration.",
"link": "./Calculators/Centripetal-Force-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Centripetal-Force-Calculator"
},
{
"title": "Centroid Of A Triangle Calculator",
"description": "Calculates the centroid of a triangle by taking the coordinates.",
"link": "./Calculators/Centroid-Of-A-Triangle-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Centroid-Of-A-Triangle-Calculator"
},
{
"title": "Chi-Square Calculator",
"description": "Calculates the Chi-Square value of the data.",
"link": "./Calculators/Chi-Square-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Chi-Square-Calculator"
},
{
"title": "Chinese Zodiac Calculator",
"description": "Calculates the Chinese zodiac sign of the user by taking the year of birth as input.",
"link": "./Calculators/Chinese-Zodiac-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Chinese-Zodiac-Calculator"
},
{
"title": "Circular Motion Calculator",
"description": "Calculates Centripetal Acceleration, Angular Frequency, Period and Frequency.",
"link": "./Calculators/Circular-Motion-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Circular-Motion-Calculator"
},
{
"title": "Circular Prime Calculator",
"description": "Checks if a number is circular prime and finds circular prime numbers in a range.",
"link": "./Calculators/Circular-Prime-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Circular-Prime-Calculator"
},
{
"title": "Click Through Rate Calculator",
"description": "Calculates the CTR of an ad or link in driving users to click on it.",
"link": "./Calculators/Click-Through-Rate-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Click-Through-Rate-Calculator"
},
{
"title": "Clock Hands Angle Calculator",
"description": "Calculates the angle between the hour and minute hands for a specified time.",
"link": "./Calculators/Clock-Hands-Angle-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Clock-Hands-Angle-Calculator"
},
{
"title": "Clothing Size Calculator",
"description": "Inter-converts clothing sizes from one country to another, the international size, and the exact measurements for each size.",
"link": "./Calculators/Clothing-Size-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Clothing-Size-Calculator"
},
{
"title": "Color Code Calculator",
"description": "Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and CMYK.",
"link": "./Calculators/Color-Code-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Color-Code-Calculator"
},
{
"title": "Complement Calculator",
"description": "Calculates the nth complement of a given number in a specified base.",
"link": "./Calculators/Complement-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Complement-Calculator"
},
{
"title": "Complex Number Calculator",
"description": "Performs mathematical operations on complex numbers.",
"link": "./Calculators/Complex-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Complex-Number-Calculator"
},
{
"title": "Complex Seismographic Impact Calculator",
"description": "Estimates the impact of an earthquake based on some parameters.",
"link": "./Calculators/Complex-Seismographic-Impact-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Complex-Seismographic-Impact-Calculator"
},
{
"title": "Compound Interest Calculator",
"description": "Takes Principal amount, time in years, interest rate and Gives compound interest.",
"link": "./Calculators/Compound-Interest-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Compound-Interest-Calculator"
},
{
"title": "Conductivity And Resistivity Calculator",
"description": "Calculates the Conductivity & Resistivity.",
"link": "./Calculators/Conductivity-And-Resistivity-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Conductivity-And-Resistivity-Calculator"
},
{
"title": "Confusion Matrix Calculator",
"description": "Calculates Accuracy, Precision, Recall, and F1 Score for classification models in machine learning.",
"link": "./Calculators/Confusion-Matrix-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Confusion-Matrix-Calculator"
},
{
"title": "Cosine Formula Calculator",
"description": "Calculates the angle of the triangle using cosine formula.",
"link": "./Calculators/Cosine-Formula-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cosine-Formula-Calculator"
},
{
"title": "Cost Of Living Calculator",
"description": "Calculates what your current salary would look like in another city.",
"link": "./Calculators/Cost-Of-Living-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cost-Of-Living-Calculator"
},
{
"title": "Credit Card Payoff Calculator",
"description": "Calculates the time in which you can payoff your Credits.",
"link": "./Calculators/Credit-Card-Payoff-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Credit-Card-Payoff-Calculator"
},
{
"title": "Cricket Calculator",
"description": "Calculates various cricket related terms.",
"link": "./Calculators/Cricket-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cricket-Calculator"
},
{
"title": "Critical Point Calculator",
"description": "Calculates the critical point of ideal gases based on a and b.",
"link": "./Calculators/Critical-Point-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Critical-Point-Calculator"
},
{
"title": "Crop Yield Calculator",
"description": "Estimates the amount of crop that will be harvested per unit area.",
"link": "./Calculators/Crop-Yield-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Crop-Yield-Calculator"
},
{
"title": "Cross Product Calculator",
"description": "Calculates the cross-product of two 3D vectors and finds the angle between them.",
"link": "./Calculators/Cross-Product-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cross-Product-Calculator"
},
{
"title": "Cryptocurrency Calculator",
"description": "Calculates the converted price of various cryptocurrencies to different fiat currencies.",
"link": "./Calculators/Cryptocurrency-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cryptocurrency-Calculator"
},
{
"title": "Cuban Prime Calculator",
"description": "Checks if a number is cuban prime or not and finds cuban prime numbers in a range.",
"link": "./Calculators/Cuban-Prime-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cuban-Prime-Calculator"
},
{
"title": "Cube Root Calculator",
"description": "Calculates cube root of any number.",
"link": "./Calculators/Cube-Root-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cube-Root-Calculator"
},
{
"title": "Cubic Equation Calculator",
"description": "Solves cubic equations, providing real or complex solutions.",
"link": "./Calculators/Cubic-Equation-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cubic-Equation-Calculator"
},
{
"title": "Currency Calculator",
"description": "Converts the value of one Currency unit into another Currency unit.",
"link": "./Calculators/Currency-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Currency-Calculator"
},
{
"title": "Curve Fitting Calculator",
"description": "Plots the curve fitting for linear, quadratic, cubic, and exponential curves.",
"link": "./Calculators/Curve-Fitting-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Curve-Fitting-Calculator"
},
{
"title": "Cut Off Calculator",
"description": "Calculates the Engineering / Medical cutoff for students.",
"link": "./Calculators/Cut-Off-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cut-Off-Calculator"
},
{
"title": "DTI Ratio Calculator",
"description": "Calculates your debt-to-income ratio, to help in managing your financial health.",
"link": "./Calculators/DTI-Ratio-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/DTI-Ratio-Calculator"
},
{
"title": "Data Size Calculator",
"description": "Converts input data size to other data sizes instantly.",
"link": "./Calculators/Data-Size-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Data-Size-Calculator"
},
{
"title": "Date Time Calculator",
"description": "Calculates Date & Time of the specific period.",
"link": "./Calculators/Date-Time-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Date-Time-Calculator"
},
{
"title": "Day From The Date Calculator",
"description": "Calculates the day for the specified date.",
"link": "./Calculators/Day-From-The-Date-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Day-From-The-Date-Calculator"
},
{
"title": "Days Until Deadline Calculator",
"description": "Calculates the number of days remaining until a selected date.",
"link": "./Calculators/Days-Until-Deadline-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Days-Until-Deadline-Calculator"
},
{
"title": "Debt Payoff Calculator",
"description": "Effortlessly plan and manage your debt repayment with our easy-to-use Debt Payoff Calculator.",
"link": "./Calculators/Debt-Payoff-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Debt-Payoff-Calculator"
},
{
"title": "Decimal Roman Calculator",
"description": "Converts the decimal number to roman number and vice-versa.",
"link": "./Calculators/Decimal-Roman-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Decimal-Roman-Calculator"
},
{
"title": "Decimal String Calculator",
"description": "Converts strings to decimal numbers and vice-versa.",
"link": "./Calculators/Decimal-String-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Decimal-String-Calculator"
},
{
"title": "Definite Integral Calculator",
"description": "Evaluates integral of mathematical functions with definite limits.",
"link": "./Calculators/Definite-Integral-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Definite-Integral-Calculator"
},
{
"title": "Degree Radian Calculator",
"description": "Converts the Degree into Radian and vice-versa.",
"link": "./Calculators/Degree-Radian-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Degree-Radian-Calculator"
},
{
"title": "Density Calculator",
"description": "Calculates the density of a substance based on its mass and volume.",
"link": "./Calculators/Density-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Density-Calculator"
},
{
"title": "Depth Of Field Calculator",
"description": "Calculator that helps photographers determine the depth of field based on some factors.",
"link": "./Calculators/Depth-Of-Field-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Depth-Of-Field-Calculator"
},
{
"title": "Determinant Calculator",
"description": "Calculates the determinant of the matrix with the given size.",
"link": "./Calculators/Determinant-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Determinant-Calculator"
},
{
"title": "Differential Calculator",
"description": "Evaluates derivatives and mathematical functions.",
"link": "./Calculators/Differential-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Differential-Calculator"
},
{
"title": "Digital Detox Calculator",
"description": "Calculates the amount of time we spend on digital devices and suggests a plan for a balanced digital detox.",
"link": "./Calculators/Digital-Detox-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Digital-Detox-Calculator"
},
{
"title": "Disarium Number Calculator",
"description": "Checks the number is disarium or not and finds disarium numbers in a range.",
"link": "./Calculators/Disarium-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Disarium-Number-Calculator"
},
{
"title": "Discount Calculator",
"description": "Unlock Savings with Precision: Your Ultimate Discount Calculator.",
"link": "./Calculators/Discount-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Discount-Calculator"
},
{
"title": "Discriminant Calculator",
"description": "Calculates the discriminant of a quadratic equation.",
"link": "./Calculators/Discriminant-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Discriminant-Calculator"
},
{
"title": "Dividend Yield Calculator",
"description": "Calculates the dividend yield percentage based on the current market price.",
"link": "./Calculators/Dividend-Yield-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Dividend-Yield-Calculator"
},
{
"title": "Dora Calculator",
"description": "Calculates the distance whether Dora can view the object.",
"link": "./Calculators/Dora-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Dora-Calculator"
},
{
"title": "Download Time Calculator",
"description": "Calculates the required time for downloading as per different system configurations.",
"link": "./Calculators/Download-Time-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Download-Time-Calculator"
},
{
"title": "Dream Journal Calculator",
"description": "Analyzes dream entries to visualize key themes, emotions, and sentiments.",
"link": "./Calculators/Dream-Journal-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Dream-Journal-Calculator"
},
{
"title": "Dudeney Number Calculator",
"description": "Checks if an entered number is Dudeney or not.",
"link": "./Calculators/Dudeney-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Dudeney-Number-Calculator"
},
{
"title": "EBITDA Calculator",
"description": "Calculates EBITDA, and visualizes cost breakdown with a responsive doughnut chart.",
"link": "./Calculators/EBITDA-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/EBITDA-Calculator"
},
{
"title": "EMI Calculator",
"description": "Calculates The EMI based on loan amount, interest rate and tenure.",
"link": "./Calculators/EMI-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/EMI-Calculator/"
},
{
"title": "EPF Calculator",
"description": "Estimates Employee Provident Fund savings from salary, age, contribution rate, salary increase, and interest rate.",
"link": "./Calculators/EPF-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/EPF-Calculator"
},
{
"title": "Earthquake Impact Calculator",
"description": "Estimates the potential impact of an earthquake.",
"link": "./Calculators/Earthquake-Impact-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Earthquake-Impact-Calculator"
},
{
"title": "Echo Time Calculator",
"description": "Calculates the time taken for a sound wave to travel to a surface and return as an echo.",
"link": "./Calculators/Echo-Time-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Echo-Time-Calculator"
},
{
"title": "Eigenvalues And Eigenvectors Calculator",
"description": "Calculates the eigenvalues and eigenvectors of a square matrix for various applications.",
"link": "./Calculators/Eigenvalues-And-Eigenvectors-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Eigenvalues-And-Eigenvectors-Calculator"
},
{
"title": "Electric Power Calculator",
"description": "Calculates electric power based on user-supplied voltage in Volts and current in Ampere.",
"link": "./Calculators/Electric-Power-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Electric-Power-Calculator"
},
{
"title": "Electric Vehicle Savings Calculator",
"description": "Calculates savings from using an electric vehicle VS a gasoline vehicle.",
"link": "./Calculators/Electric-Vehicle-Savings-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Electric-Vehicle-Savings-Calculator"
},
{
"title": "Electricity Bill Calculator",
"description": "Calculates electricity costs based on user-supplied units, time, and cost parameters.",
"link": "./Calculators/Electricity-Bill-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Electricity-Bill-Calculator"
},
{
"title": "Electronegativity Calculator",
"description": "Calculates the Electronegativity difference between elements.",
"link": "./Calculators/Electronegativity-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Electronegativity-Calculator"
},
{
"title": "Electrostatic Force Calculator",
"description": "Calculates the Electrostatic Force between two point charges.",
"link": "./Calculators/Electrostatic-Force-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Electrostatic-Force-Calculator"
},
{
"title": "Ellipse And Hyperbola Calculator",
"description": "Calculates Area and Perimeter for Ellipse and Hyperbola.",
"link": "./Calculators/Ellipse-And-Hyperbola-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Ellipse-And-Hyperbola-Calculator"
},
{
"title": "Elliptic Curve Calculator",
"description": "Calculates points on the curve, addition, negation, and scalar multiplication of points.",
"link": "./Calculators/Elliptic-Curve-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Elliptic-Curve-Calculator"
},
{
"title": "Emirp Number Calculator",
"description": "Calculates if a number is an emirp number and finds all emirp numbers within a given range.",
"link": "./Calculators/Emirp-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Emirp-Number-Calculator"
},
{
"title": "Endothermic Reaction Calculator",
"description": "Computes the energy absorbed during a reaction based on various parameters.",
"link": "./Calculators/Endothermic-Reaction-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Endothermic-Reaction-Calculator"
},
{
"title": "Energy Consumption Calculator",
"description": "Calculates the amount of electricity used by a household or business over a specified time.",
"link": "./Calculators/Energy-Consumption-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Energy-Consumption-Calculator"
},
{
"title": "Entropy Calculator",
"description": "Calculates the entropy from probabilities.",
"link": "./Calculators/Entropy-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Entropy-Calculator"
},
{
"title": "Environmental Calculator",
"description": "Estimates the annual energy and water consumption.",
"link": "./Calculators/Environmental-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Environmental-Calculator"
},
{
"title": "Equivalent Resistance Calculator",
"description": "Calculates the Equivalent Resistance of the Series and Parallel Configuration.",
"link": "./Calculators/Equivalent-Resistance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Equivalent-Resistance-Calculator"
},
{
"title": "Euclidean Algorithm Calculator",
"description": "Calculates the Greatest Common Divisor (GCD) and the Least Common Multiple (LCM).",
"link": "./Calculators/Euclidean-Algorithm-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Euclidean-Algorithm-Calculator"
},
{
"title": "Event Budget Planner Calculator",
"description": "Calculates the plan, tracks, and visualizes the event expenses.",
"link": "./Calculators/Event-Budget-Planner-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Event-Budget-Planner-Calculator"
},
{
"title": "Expenditure And Savings Calculator",
"description": "Calculates the Savings from your income and expenditure.",
"link": "./Calculators/Expenditure-And-Savings-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Expenditure-And-Savings-Calculator"
},
{
"title": "Exponent Calculator",
"description": "Takes two numbers X and Y and then calculate X<sup>Y</sup>.",
"link": "./Calculators/Exponent-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Exponent-Calculator"
},
{
"title": "Exponential Decay Calculator",
"description": "Computes the remaining amount of a substance after a given period using the exponential decay formula.",
"link": "./Calculators/Exponential-Decay-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Exponential-Decay-Calculator"
},
{
"title": "Eye Power Calculator",
"description": "Calculates the Diopter value and Focal length.",
"link": "./Calculators/Eye-Power-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Eye-Power-Calculator"
},
{
"title": "FD Calculator",
"description": "Calculates the maturity amount and interest on fixed deposits.",
"link": "./Calculators/FD-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/FD-Calculator"
},
{
"title": "Factor Calculator",
"description": "Calculates all the factors/divisors of a given number.",
"link": "./Calculators/Factor-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Factor-Calculator"
},
{
"title": "Factorial Calculator",
"description": "Calculates the factorial of any large number instantly.",
"link": "./Calculators/Factorial-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Factorial-Calculator"
},
{
"title": "Falling Object Calculator",
"description": "Calculates the time and speed of a free-falling object under gravity.",
"link": "./Calculators/Falling-Object-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Falling-Object-Calculator"
},
{
"title": "Fascinating Number Calculator",
"description": "Checks if a given number is fascinating or not.",
"link": "./Calculators/Fascinating-Number-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fascinating-Number-Calculator"
},
{
"title": "Fibonacci Calculator",
"description": "Calculates the Nth number from Fibonacci Sequence.",
"link": "./Calculators/Fibonacci-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fibonacci-Calculator"
},
{
"title": "Finance Calculator",
"description": "Calculates the future value of investments and monthly loan payments.",
"link": "./Calculators/Finance-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Finance-Calculator"
},
{
"title": "Force Calculator",
"description": "Calculates the force by taking mass and acceleration.",
"link": "./Calculators/Force-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Force-Calculator"
},
{
"title": "Fractal Generator Calculator",
"description": "Displays images based on complex mathematical calculations of fractal objects.",
"link": "./Calculators/Fractal-Generator-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fractal-Generator-Calculator"
},
{
"title": "Fraction Calculator",
"description": "Performs the basic arithmetic operations of mathematics on fractions.",
"link": "./Calculators/Fraction-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fraction-Calculator"
},
{
"title": "Frames Timecode Calculator",
"description": "Converts frames to timecode and vice versa in a recorded video.",
"link": "./Calculators/Frames-Timecode-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Frames-Timecode-Calculator"
},
{
"title": "Free Fall Calculator",
"description": "Calculates the time and final velocity of object in free fall.",
"link": "./Calculators/Free-Fall-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Free-Fall-Calculator"
},
{
"title": "Freelance Rate Calculator",
"description": "Calculator to help freelancers determine optimal hourly or project rates based on various factors.",
"link": "./Calculators/Freelance-Rate-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Freelance-Rate-Calculator"
},
{
"title": "Frequency Calculator",
"description": "Calculator that helps to calculate the frequency.",
"link": "./Calculators/Frequency-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Frequency-Calculator"
},
{
"title": "Friction Calculator",
"description": "Calculates the friction force between an object and the ground.",
"link": "./Calculators/Friction-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Friction-Calculator"
},
{
"title": "Fuel Cost Calculator",
"description": "Calculates the cost of fuel based on fuel efficiency and distance travelled.",
"link": "./Calculators/Fuel-Cost-Calculator/index.html",
"source": "https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fuel-Cost-Calculator"
},
{
"title": "Fuel Efficiency Calculator",
"description": "Calculates the efficiency of a vehicle.",