From 510a7e3b1f02c5938926c3ad318b932bf75ea44a Mon Sep 17 00:00:00 2001 From: EshaalakshmiDS Date: Thu, 23 May 2024 02:02:36 +0530 Subject: [PATCH 1/4] Added code for Recipe-Cost-Calculator --- Calculators/Recipe-Cost-Calculator/README.md | 16 + Calculators/Recipe-Cost-Calculator/index.html | 43 ++ Calculators/Recipe-Cost-Calculator/script.js | 55 ++ Calculators/Recipe-Cost-Calculator/style.css | 131 +++++ index.html | 479 ++++++++++++------ 5 files changed, 567 insertions(+), 157 deletions(-) create mode 100644 Calculators/Recipe-Cost-Calculator/README.md create mode 100644 Calculators/Recipe-Cost-Calculator/index.html create mode 100644 Calculators/Recipe-Cost-Calculator/script.js create mode 100644 Calculators/Recipe-Cost-Calculator/style.css diff --git a/Calculators/Recipe-Cost-Calculator/README.md b/Calculators/Recipe-Cost-Calculator/README.md new file mode 100644 index 000000000..08d7a0734 --- /dev/null +++ b/Calculators/Recipe-Cost-Calculator/README.md @@ -0,0 +1,16 @@ +#

Recipe Cost Calculator

+ +## Description :- +This tool enables users to input ingredients and quantities to calculate the total cost of a recipe, facilitating budget-friendly meal planning. +The primary goal of the Recipe Cost Calculator is to empower users to plan meals within their budget by accurately estimating the total cost of a recipe based on the ingredients and quantities required. + + +## Tech Stacks :- + +- HTML +- CSS +- JavaScript + +## Screenshots :- + + diff --git a/Calculators/Recipe-Cost-Calculator/index.html b/Calculators/Recipe-Cost-Calculator/index.html new file mode 100644 index 000000000..76dcb9448 --- /dev/null +++ b/Calculators/Recipe-Cost-Calculator/index.html @@ -0,0 +1,43 @@ + + + + + + Recipe Cost Calculator + + + + +
+

Recipe Cost Calculator

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+

Ingredients List

+ +

Total Cost

+

$0.00

+
+ + + diff --git a/Calculators/Recipe-Cost-Calculator/script.js b/Calculators/Recipe-Cost-Calculator/script.js new file mode 100644 index 000000000..7efafedcc --- /dev/null +++ b/Calculators/Recipe-Cost-Calculator/script.js @@ -0,0 +1,55 @@ +let ingredients = []; +let totalCost = 0; + +function addIngredient() { + const name = document.getElementById('ingredient-name').value; + const quantity = parseFloat(document.getElementById('ingredient-quantity').value); + const unit = document.getElementById('ingredient-unit').value; + const price = parseFloat(document.getElementById('ingredient-price').value); + + if (name && !isNaN(quantity) && !isNaN(price)) { + const ingredient = { + name, + quantity, + unit, + price, + cost: quantity * price + }; + + ingredients.push(ingredient); + totalCost += ingredient.cost; + + updateIngredientList(); + updateTotalCost(); + + document.getElementById('ingredient-form').reset(); + } else { + alert('Please enter valid ingredient details.'); + } +} + +function deleteIngredient(index) { + totalCost -= ingredients[index].cost; + ingredients.splice(index, 1); + updateIngredientList(); + updateTotalCost(); +} + +function updateIngredientList() { + const ingredientList = document.getElementById('ingredient-list'); + ingredientList.innerHTML = ''; + + ingredients.forEach((ingredient, index) => { + const li = document.createElement('li'); + li.innerHTML = ` + ${ingredient.name}: ${ingredient.quantity} ${ingredient.unit} @ $${ingredient.price.toFixed(2)} each - $${ingredient.cost.toFixed(2)} + + `; + ingredientList.appendChild(li); + }); +} + +function updateTotalCost() { + const totalCostElement = document.getElementById('total-cost'); + totalCostElement.textContent = `$${totalCost.toFixed(2)}`; +} diff --git a/Calculators/Recipe-Cost-Calculator/style.css b/Calculators/Recipe-Cost-Calculator/style.css new file mode 100644 index 000000000..72a693878 --- /dev/null +++ b/Calculators/Recipe-Cost-Calculator/style.css @@ -0,0 +1,131 @@ +/* General styles */ +body { + font-family: 'Roboto', sans-serif; + background-color: #223f6b; + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +/* Container styling */ +.container { + width: 80%; + max-width: 600px; + margin: 20px auto; + padding: 20px; + background-color: #6772b0; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + border-radius: 8px; + text-align: center; +} + +/* Heading styles */ +h1, h2 { + color: #271954; + margin-bottom: 20px; + font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif +} + +/* Form group styling */ +.form-group { + margin-bottom: 15px; + text-align: left; +} + +/* Label styling */ +label { + display: block; + margin-bottom: 5px; + color: #d5cece; + font-size: larger; +} + +/* Input and select styling */ +input[type="text"], +input[type="number"], +select { + width: calc(100% - 16px); + padding: 8px; + margin-bottom: 10px; + border: 1px solid #ccc; + border-radius: 4px; + font-size: 1rem; +} + +/* Button styling */ +button { + width: 100%; + padding: 10px; + background-color: #0d3969; + color: #fff; + border: none; + border-radius: 4px; + cursor: pointer; + font-size: 1rem; + transition: background-color 0.3s; +} + +button:hover { + background-color: #44316e; +} + +/* List styling */ +ul { + list-style: none; + padding: 0; +} + +ul li { + display: flex; + justify-content: space-between; + align-items: center; + padding: 8px; + border-bottom: 1px solid #ddd; +} + +ul li:last-child { + border-bottom: none; +} + +/* Delete button styling */ +.delete-btn { + background-color: #dc3545; + color: #fff; + border: none; + border-radius: 4px; + cursor: pointer; + padding: 2px 5px; + font-size: 0.8rem; + width: 20px; + height: 20px; + display: flex; + align-items: center; + justify-content: center; + transition: background-color 0.3s; +} + +.delete-btn:hover { + background-color: #c82333; +} + +/* Total cost styling */ +#total-cost { + font-size: 1.5rem; + font-weight: bold; + color: #28a745; + margin-top: 20px; +} + +/* Heading hover effect */ +h1:hover, +h2:hover { + text-shadow: 0 0 10px rgba(190, 172, 232, 0.8); +} + +/* Ingredient name hover effect */ +ul li:hover { + text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); +} diff --git a/index.html b/index.html index aab0626e6..573d24978 100644 --- a/index.html +++ b/index.html @@ -36,19 +36,24 @@ Home @@ -86,7 +91,8 @@

All calculators, spot in a single place!!

@@ -98,8 +104,9 @@

Calculates the distance between two points on a 2D plane.

- - Source Code + + Source Code @@ -112,7 +119,8 @@

Calculates the area and perimeter of different useful 2D shapes.

- + Source Code @@ -126,7 +134,8 @@

Calculates the volume of different important and useful 3D shapes.

- + Source Code @@ -140,7 +149,8 @@

Calculate the theoretical resistance of a 4-band resistor.

- + Source Code @@ -154,7 +164,8 @@

Calculates the person's age by taking in the date of birth as input.

- + Source Code @@ -168,7 +179,8 @@

Calculates the antilog of the any given number taken over any base.

- + Source Code @@ -182,7 +194,8 @@

Calculates nth Term and sum of n Terms present in an Arithmetic Sequence. - + Source Code @@ -196,7 +209,8 @@

Computes all the Armstrong Numbers for the specified Number of digits.

- + Source Code @@ -210,7 +224,8 @@

Calculates the aspect ratio of the specified height and width.

- + Source Code @@ -224,9 +239,10 @@

Basic old school calculator for simple calculations

- + Source Code - + @@ -238,7 +254,8 @@

Calculates the probability of an event A given that event B has occurred. - + Source Code @@ -252,7 +269,8 @@

Effortlessly split bills with our calculator. Simplify expense sharing now!< - + Source Code @@ -266,7 +284,8 @@

Calculates results of different bitwise operations based on inputs.

- + Source Code @@ -280,7 +299,8 @@

Calculates the Body Mass Index of a person using Height & Weight.

- + Source Code @@ -294,7 +314,8 @@

Calculates the time required to finish reading a book.

- + Source Code @@ -308,7 +329,8 @@

Check the number is bouncy or not and finds bouncy numbers in a range.

- + Source Code @@ -322,7 +344,8 @@

Calculates the amount of calories burnt from particular exercise.

- + Source Code @@ -336,7 +359,8 @@

Calculates daily calorie intake based on given inputs.

- + Source Code @@ -345,12 +369,14 @@

Calculates daily calorie intake based on given inputs.

Carbon Footprint Calculator

-

Calculates an individual's carbon footprint based on the miles driven per year, per month, and per week.

+

Calculates an individual's carbon footprint based on the miles driven per year, per month, and per + week.

@@ -364,7 +390,8 @@

Calculates Centripetal force and acceleration.

- + Source Code
@@ -378,7 +405,8 @@

Converts CGPA to percentage and vice-versa.

- + Source Code
@@ -392,7 +420,8 @@

Checks if a number is circular prime and finds circular prime numbers in a r - + Source Code @@ -406,7 +435,8 @@

Calculates the angle between the hour and minute hands for a specified time. - + Source Code @@ -415,12 +445,14 @@

Calculates the angle between the hour and minute hands for a specified time.

Clothing Size Calculator

-

Inter-converts clothing sizes from one country to another, the international size, and the exact measurements for each size.

+

Inter-converts clothing sizes from one country to another, the international size, and the exact + measurements for each size.

@@ -434,7 +466,8 @@

Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and C - + Source Code

@@ -448,7 +481,8 @@

Perfoms mathematical operations on complex numbers.

- + Source Code
@@ -462,7 +496,8 @@

Takes Principal amount, time in years, interest rate and Gives compound inte - + Source Code @@ -476,7 +511,8 @@

Calculates the Conductivity & Resistivity.

- + Source Code @@ -490,7 +526,8 @@

Calculates the time in which you can payoff your Credits.

- + Source Code @@ -504,7 +541,8 @@

Calculates various cricket related terms.

- + Source Code @@ -518,7 +556,8 @@

Converts various css units.

- + Source Code @@ -532,7 +571,8 @@

Checks if a number is cuban prime or not and finds cuban prime numbers in a - + Source Code @@ -546,7 +586,8 @@

Calculates cube root of any number.

- + Source Code @@ -560,7 +601,8 @@

solves cubic equations, providing real or complex solutions

- + Source Code @@ -574,7 +616,8 @@

Converts the value of one Currency unit into another Currency unit.

- + Source Code @@ -588,7 +631,8 @@

Converts input data size to other data sizes instantly.

- + Source Code @@ -602,7 +646,8 @@

Calculates Date & Time of the specific period.

- + Source Code @@ -616,7 +661,8 @@

Calculates the day for the specified date.

- + Source Code @@ -630,7 +676,8 @@

Evaluates integral of mathematical functions with definite limits.

- + Source Code @@ -644,7 +691,8 @@

Converts the Degree into Radian and vice-versa.

- + Source Code @@ -658,7 +706,8 @@

Evaluates derivatives and mathematical functions.

- + Source Code @@ -672,7 +721,8 @@

Checks the number is disarium or not and finds disarium numbers in a range.< - + Source Code @@ -686,7 +736,8 @@

Unlock Savings with Precision: Your Ultimate Discount Calculator.

- + Source Code @@ -700,8 +751,9 @@

Calculates the required time for downloading as per different system configu - - Source Code + + Source Code @@ -714,8 +766,9 @@

Calculates electricity costs based on user-supplied units, time, and cost pa - - Source Code + + Source Code @@ -728,7 +781,8 @@

Calculates Area and Perimeter for Ellipse and Hyperbola.

- + Source Code @@ -742,7 +796,8 @@

Calculates The EMI based on loan amount, interest rate and tenure.

- + Source Code @@ -756,8 +811,9 @@

Estimates the annual energy and water consumption.

- - Source Code + + Source Code @@ -770,7 +826,8 @@

Calculates the Equivalent Resistance of the Series and Parallel Configuratio - + Source Code @@ -784,7 +841,8 @@

Calculates the Savings from your income and expenditure.

- + Source Code @@ -798,7 +856,8 @@

Takes two numbers X and Y and then calculate XY.

- + Source Code @@ -812,7 +871,8 @@

Calculates the factorial of any large number instantly.

- + Source Code @@ -826,7 +886,8 @@

Calculates the Nth number from Fibonacci Sequence.

- + Source Code @@ -840,7 +901,8 @@

Calculates the cost of fuel based on fuel efficiency and distance travelled. - + Source Code @@ -854,7 +916,8 @@

Calculates the efficiency of a vehicle.

- + Source Code @@ -868,7 +931,8 @@

Calculates Greatest Common Divisor of Two values or multiple values.

- + Source Code @@ -882,7 +946,8 @@

Calculates the nth root of a given number upto n precision.

- + Source Code @@ -896,7 +961,8 @@

Calculates nth Term and sum of n Terms present in an Geometric Sequence.

- + Source Code @@ -910,7 +976,8 @@

Calculates SGPA and CGPA on the basis of credits and grades.

- + Source Code @@ -924,7 +991,8 @@

Calculates the grade based on marks entered.

- + Source Code @@ -938,7 +1006,8 @@

Calculator which includes a graphical display to visualize functions.

- + Source Code @@ -952,7 +1021,8 @@

Calculates the Goods and Service tax of any product in rupees and dollars. - + Source Code @@ -966,7 +1036,8 @@

Check if a number is Happy or not and finds happy number in a range.

- + Source Code @@ -980,7 +1051,8 @@

Calculates the nth term of Harmonic Progression series.

- + Source Code @@ -994,7 +1066,8 @@

Calculates the heart rate monitors.

- + Source Code @@ -1008,7 +1081,8 @@

Calculates total budget for home renovation.

- + Source Code @@ -1022,7 +1096,8 @@

Calculates tax liability based on user input annual income.

- + Source Code @@ -1036,7 +1111,8 @@

Converts between infix, prefix and postfix expressions.

- + Source Code @@ -1044,13 +1120,14 @@

Converts between infix, prefix and postfix expressions.

-

Intelligence Calculator

+

Intelligence Calculator

Shows the intelligence using his/her IQ.

@@ -1064,7 +1141,8 @@

Calculates the risk in Investment on the basis of some input parameters.

- + Source Code
@@ -1078,7 +1156,8 @@

Calculates LCM of multiple numbers.

- + Source Code
@@ -1092,7 +1171,8 @@

Calculates the length conversion between two specified units.

- + Source Code @@ -1106,7 +1186,8 @@

Calculates values of variables from linear equation in two variables.

- + Source Code @@ -1120,8 +1201,9 @@

Calculates the due date of the ongoing loan.

- - Source Code + + Source Code @@ -1134,7 +1216,8 @@

Calculates the log of the given number to any base.

- + Source Code @@ -1143,12 +1226,14 @@

Calculates the log of the given number to any base.

Love Calculator

-

Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun).

+

Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun). +

@@ -1162,7 +1247,8 @@

Calculates the Mass conversion between two specified units.

- + Source Code
@@ -1176,7 +1262,8 @@

Your key to matrix operations!

- + Source Code
@@ -1190,7 +1277,8 @@

Computes the total atomic weights of elements in a given chemical formula - + Source Code @@ -1204,7 +1292,8 @@

It allows users to compare old and new loan terms by inputting relevant info - + Source Code @@ -1218,7 +1307,8 @@

Calculates the multiplication table of any number.

- + Source Code @@ -1232,7 +1322,8 @@

Checks the number is neon or not and finds neon numbers in a range.

- + Source Code @@ -1246,7 +1337,8 @@

Calculates the actual take-home pay from your Cost to Company (CTC).

- + Source Code @@ -1260,7 +1352,8 @@

Calculates the days remaining until the next birthday.

- + Source Code @@ -1274,7 +1367,8 @@

Calculates the number of days between two specified dates.

- + Source Code @@ -1288,7 +1382,8 @@

Converts binary to decimal, octal, hexadecimal and vice versa.

- + Source Code @@ -1302,7 +1397,8 @@

Checks if an entered number or string is Palindrome or not.

- + Source Code @@ -1316,7 +1412,8 @@

Calculates the value percentage of any given number.

- + Source Code @@ -1330,7 +1427,8 @@

Converts given Percentage to Fraction and vice-versa with detailed solution. - + Source Code @@ -1344,7 +1442,8 @@

Calculates nPr and nCr after taking inputs as n and r.

- + Source Code @@ -1358,7 +1457,8 @@

Calculates power between different units.

- + Source Code @@ -1367,12 +1467,14 @@

Calculates power between different units.

Pregnancy Due Date Calculator

-

Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual period.

+

Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual + period.

@@ -1386,7 +1488,8 @@

Calculates the Pressure conversion between two specified units.

- + Source Code
@@ -1400,7 +1503,8 @@

Calculates the prime factors of the given number.

- + Source Code
@@ -1414,7 +1518,8 @@

Calculates the Probability of different events.

- + Source Code @@ -1428,7 +1533,8 @@

Calculates Max Height, Range, Time Of Flight of Projectile.

- + Source Code @@ -1442,7 +1548,8 @@

Checks if a number is pronic and finds pronic numbers in a range.

- + Source Code @@ -1456,7 +1563,8 @@

Input three values to compute the fourth, showcasing proportionality..

- + Source Code @@ -1470,7 +1578,8 @@

Which takes two sides of right-angled triangle and gives third side.

- + Source Code @@ -1484,7 +1593,8 @@

Generates the QR Code according to the given input.

- + Source Code @@ -1498,7 +1608,8 @@

Calculates the roots of a quadratic equation.

- + Source Code @@ -1512,7 +1623,8 @@

Calculates the Quotient and Remainder.

- + Source Code @@ -1526,7 +1638,8 @@

Which takes two numbers X and Y and then calculate X / Y.

- + Source Code @@ -1535,12 +1648,31 @@

Which takes two numbers X and Y and then calculate X / Y.

Real Estate Calculator

-

This tool allows users to input property details and obtain essential information for financial planning.

+

This tool allows users to input property details and obtain essential information for financial + planning.

+
+
+
+
+

Recipe Cost Calculator

+

This tool Enables users to input ingredients and quantities to calculate the total cost of a recipe, + facilitating budget-friendly meal planning. +

+ @@ -1554,7 +1686,8 @@

Converts Rectangular form into Polar form and vice versa.

- + Source Code
@@ -1568,7 +1701,8 @@

Calculates the Short URL from Long URL.

- + Source Code
@@ -1582,7 +1716,8 @@

Calculates the simple interest.

- + Source Code @@ -1596,7 +1731,8 @@

Calculates the amount of sleep required based on age and activity level.

- + Source Code @@ -1610,7 +1746,8 @@

Calculator that determines whether a given number is a Smith number or not.< - + Source Code @@ -1624,7 +1761,8 @@

This tool allows users to convert speeds between different units.

- + Source Code @@ -1638,7 +1776,8 @@

Calculates square and cube of a number.

- + Source Code @@ -1652,7 +1791,8 @@

Calculates the square root of a number instantly.

- + Source Code @@ -1666,7 +1806,8 @@

Calculates Maximum, minimum, mean, median, mode, etc.

- + Source Code @@ -1680,7 +1821,8 @@

Computes stress and strain using force, area, and length inputs.

- + Source Code @@ -1689,12 +1831,14 @@

Computes stress and strain using force, area, and length inputs.

Sunrise Sunset Calculator

-

Calculates approximate about when the sun will rise and set at that particular point on the Earth's surface.

+

Calculates approximate about when the sun will rise and set at that particular point on the Earth's + surface.

@@ -1708,7 +1852,8 @@

Calculator that gives an idea of the returns on their mutual fund investment - + Source Code

@@ -1722,8 +1867,9 @@

Calculates the cost of taxi ride based on distance, base fare and time.

- - Source Code + + Source Code
@@ -1736,7 +1882,8 @@

Calculates the Taylor Series expansion of a mathematical function.

- + Source Code @@ -1750,7 +1897,8 @@

Calculates the Temperature conversion between two specified units.

- + Source Code @@ -1764,7 +1912,8 @@

Whatever number you give it will return 7.

- + Source Code @@ -1778,7 +1927,8 @@

Calculates Hours, Minutes, Seconds for any entered time.

- + Source Code @@ -1792,7 +1942,8 @@

Instantly find the time difference anywhere in the world.

- + Source Code @@ -1806,7 +1957,8 @@

Calculates the different results of a triangle based on input sides.

- + Source Code @@ -1820,7 +1972,8 @@

Calculates trigonometric functions and inverses.

- + Source Code @@ -1834,7 +1987,8 @@

Provides the graph as per the given function like sin, cos, tan, etc.

- + Source Code @@ -1848,7 +2002,8 @@

Calculates the typing speed in two different units.

- + Source Code @@ -1862,7 +2017,8 @@

Calculates the resultant vector, dot product and angle between 2 vectors. - + Source Code @@ -1876,7 +2032,8 @@

Calculates number of vowels and consonants in a given paragraph.

- + Source Code @@ -1890,7 +2047,8 @@

Calculate daily water intake based on weight, activity, and weather.

- + Source Code @@ -1904,7 +2062,8 @@

Calculates the bandwidth of a website based on some factors.

- + Source Code @@ -1918,7 +2077,8 @@

Calculates weight from kgs to pounds and vice-versa.

- + Source Code @@ -1932,7 +2092,8 @@

Counts the Total Words, Unique words, Average word length and Exports the da - + Source Code @@ -1946,12 +2107,13 @@

Calculates the linear density of the yarn from unit system to another.

- + Source Code - + @@ -1968,9 +2130,12 @@

Calculates the linear density of the yarn from unit system to another.

- - - + + +
@@ -91,8 +86,7 @@

All calculators, spot in a single place!!

@@ -104,9 +98,8 @@

Calculates the distance between two points on a 2D plane.

- - Source Code + + Source Code @@ -119,8 +112,7 @@

Calculates the area and perimeter of different useful 2D shapes.

- + Source Code @@ -134,8 +126,7 @@

Calculates the volume of different important and useful 3D shapes.

- + Source Code @@ -149,8 +140,7 @@

Calculate the theoretical resistance of a 4-band resistor.

- + Source Code @@ -164,8 +154,7 @@

Calculates the person's age by taking in the date of birth as input.

- + Source Code @@ -179,8 +168,7 @@

Calculates the antilog of the any given number taken over any base.

- + Source Code @@ -194,8 +182,7 @@

Calculates nth Term and sum of n Terms present in an Arithmetic Sequence. - + Source Code @@ -209,8 +196,7 @@

Computes all the Armstrong Numbers for the specified Number of digits.

- + Source Code @@ -224,8 +210,7 @@

Calculates the aspect ratio of the specified height and width.

- + Source Code @@ -239,10 +224,9 @@

Basic old school calculator for simple calculations

- + Source Code - + @@ -254,8 +238,7 @@

Calculates the probability of an event A given that event B has occurred. - + Source Code @@ -269,8 +252,7 @@

Effortlessly split bills with our calculator. Simplify expense sharing now!< - + Source Code @@ -284,8 +266,7 @@

Calculates results of different bitwise operations based on inputs.

- + Source Code @@ -299,8 +280,7 @@

Calculates the Body Mass Index of a person using Height & Weight.

- + Source Code @@ -314,8 +294,7 @@

Calculates the time required to finish reading a book.

- + Source Code @@ -329,8 +308,7 @@

Check the number is bouncy or not and finds bouncy numbers in a range.

- + Source Code @@ -344,8 +322,7 @@

Calculates the amount of calories burnt from particular exercise.

- + Source Code @@ -359,8 +336,7 @@

Calculates daily calorie intake based on given inputs.

- + Source Code @@ -369,14 +345,12 @@

Calculates daily calorie intake based on given inputs.

Carbon Footprint Calculator

-

Calculates an individual's carbon footprint based on the miles driven per year, per month, and per - week.

+

Calculates an individual's carbon footprint based on the miles driven per year, per month, and per week.

@@ -390,8 +364,7 @@

Calculates Centripetal force and acceleration.

- + Source Code
@@ -405,8 +378,7 @@

Converts CGPA to percentage and vice-versa.

- + Source Code
@@ -420,8 +392,7 @@

Checks if a number is circular prime and finds circular prime numbers in a r - + Source Code @@ -435,8 +406,7 @@

Calculates the angle between the hour and minute hands for a specified time. - + Source Code @@ -445,14 +415,12 @@

Calculates the angle between the hour and minute hands for a specified time.

Clothing Size Calculator

-

Inter-converts clothing sizes from one country to another, the international size, and the exact - measurements for each size.

+

Inter-converts clothing sizes from one country to another, the international size, and the exact measurements for each size.

@@ -466,8 +434,7 @@

Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and C - + Source Code

@@ -481,8 +448,7 @@

Perfoms mathematical operations on complex numbers.

- + Source Code
@@ -496,8 +462,7 @@

Takes Principal amount, time in years, interest rate and Gives compound inte - + Source Code @@ -511,8 +476,7 @@

Calculates the Conductivity & Resistivity.

- + Source Code @@ -526,8 +490,7 @@

Calculates the time in which you can payoff your Credits.

- + Source Code @@ -541,8 +504,7 @@

Calculates various cricket related terms.

- + Source Code @@ -556,8 +518,7 @@

Converts various css units.

- + Source Code @@ -571,8 +532,7 @@

Checks if a number is cuban prime or not and finds cuban prime numbers in a - + Source Code @@ -586,8 +546,7 @@

Calculates cube root of any number.

- + Source Code @@ -601,8 +560,7 @@

solves cubic equations, providing real or complex solutions

- + Source Code @@ -613,11 +571,10 @@

solves cubic equations, providing real or complex solutions

Currency Calculator

Converts the value of one Currency unit into another Currency unit.

@@ -631,8 +588,7 @@

Converts input data size to other data sizes instantly.

- + Source Code @@ -646,8 +602,7 @@

Calculates Date & Time of the specific period.

- + Source Code @@ -661,8 +616,7 @@

Calculates the day for the specified date.

- + Source Code @@ -676,8 +630,7 @@

Evaluates integral of mathematical functions with definite limits.

- + Source Code @@ -691,8 +644,7 @@

Converts the Degree into Radian and vice-versa.

- + Source Code @@ -706,8 +658,7 @@

Evaluates derivatives and mathematical functions.

- + Source Code @@ -721,8 +672,7 @@

Checks the number is disarium or not and finds disarium numbers in a range.< - + Source Code @@ -736,8 +686,7 @@

Unlock Savings with Precision: Your Ultimate Discount Calculator.

- + Source Code @@ -751,9 +700,8 @@

Calculates the required time for downloading as per different system configu - - Source Code + + Source Code @@ -766,9 +714,8 @@

Calculates electricity costs based on user-supplied units, time, and cost pa - - Source Code + + Source Code @@ -781,8 +728,7 @@

Calculates Area and Perimeter for Ellipse and Hyperbola.

- + Source Code @@ -796,8 +742,7 @@

Calculates The EMI based on loan amount, interest rate and tenure.

- + Source Code @@ -811,9 +756,8 @@

Estimates the annual energy and water consumption.

- - Source Code + + Source Code @@ -826,8 +770,7 @@

Calculates the Equivalent Resistance of the Series and Parallel Configuratio - + Source Code @@ -841,8 +784,7 @@

Calculates the Savings from your income and expenditure.

- + Source Code @@ -856,8 +798,7 @@

Takes two numbers X and Y and then calculate XY.

- + Source Code @@ -871,8 +812,7 @@

Calculates the factorial of any large number instantly.

- + Source Code @@ -886,8 +826,7 @@

Calculates the Nth number from Fibonacci Sequence.

- + Source Code @@ -901,8 +840,7 @@

Calculates the cost of fuel based on fuel efficiency and distance travelled. - + Source Code @@ -916,8 +854,7 @@

Calculates the efficiency of a vehicle.

- + Source Code @@ -931,8 +868,7 @@

Calculates Greatest Common Divisor of Two values or multiple values.

- + Source Code @@ -946,8 +882,7 @@

Calculates the nth root of a given number upto n precision.

- + Source Code @@ -961,8 +896,7 @@

Calculates nth Term and sum of n Terms present in an Geometric Sequence.

- + Source Code @@ -976,8 +910,7 @@

Calculates SGPA and CGPA on the basis of credits and grades.

- + Source Code @@ -991,8 +924,7 @@

Calculates the grade based on marks entered.

- + Source Code @@ -1006,8 +938,7 @@

Calculator which includes a graphical display to visualize functions.

- + Source Code @@ -1021,8 +952,7 @@

Calculates the Goods and Service tax of any product in rupees and dollars. - + Source Code @@ -1036,8 +966,7 @@

Check if a number is Happy or not and finds happy number in a range.

- + Source Code @@ -1051,8 +980,7 @@

Calculates the nth term of Harmonic Progression series.

- + Source Code @@ -1066,8 +994,7 @@

Calculates the heart rate monitors.

- + Source Code @@ -1081,8 +1008,7 @@

Calculates total budget for home renovation.

- + Source Code @@ -1096,8 +1022,7 @@

Calculates tax liability based on user input annual income.

- + Source Code @@ -1111,8 +1036,7 @@

Converts between infix, prefix and postfix expressions.

- + Source Code @@ -1120,14 +1044,13 @@

Converts between infix, prefix and postfix expressions.

-

Intelligence Calculator

+

Intelligence Calculator

Shows the intelligence using his/her IQ.

@@ -1141,8 +1064,7 @@

Calculates the risk in Investment on the basis of some input parameters.

- + Source Code
@@ -1156,8 +1078,7 @@

Calculates LCM of multiple numbers.

- + Source Code
@@ -1171,8 +1092,7 @@

Calculates the length conversion between two specified units.

- + Source Code @@ -1186,8 +1106,7 @@

Calculates values of variables from linear equation in two variables.

- + Source Code @@ -1201,9 +1120,8 @@

Calculates the due date of the ongoing loan.

- - Source Code + + Source Code @@ -1216,8 +1134,7 @@

Calculates the log of the given number to any base.

- + Source Code @@ -1226,14 +1143,12 @@

Calculates the log of the given number to any base.

Love Calculator

-

Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun). -

+

Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun).

@@ -1247,8 +1162,7 @@

Calculates the Mass conversion between two specified units.

- + Source Code
@@ -1262,8 +1176,7 @@

Your key to matrix operations!

- + Source Code
@@ -1277,8 +1190,7 @@

Computes the total atomic weights of elements in a given chemical formula - + Source Code @@ -1292,8 +1204,7 @@

It allows users to compare old and new loan terms by inputting relevant info - + Source Code @@ -1307,8 +1218,7 @@

Calculates the multiplication table of any number.

- + Source Code @@ -1322,8 +1232,7 @@

Checks the number is neon or not and finds neon numbers in a range.

- + Source Code @@ -1337,8 +1246,7 @@

Calculates the actual take-home pay from your Cost to Company (CTC).

- + Source Code @@ -1352,8 +1260,7 @@

Calculates the days remaining until the next birthday.

- + Source Code @@ -1367,8 +1274,7 @@

Calculates the number of days between two specified dates.

- + Source Code @@ -1382,8 +1288,7 @@

Converts binary to decimal, octal, hexadecimal and vice versa.

- + Source Code @@ -1397,8 +1302,7 @@

Checks if an entered number or string is Palindrome or not.

- + Source Code @@ -1412,8 +1316,7 @@

Calculates the value percentage of any given number.

- + Source Code @@ -1427,8 +1330,7 @@

Converts given Percentage to Fraction and vice-versa with detailed solution. - + Source Code @@ -1442,8 +1344,7 @@

Calculates nPr and nCr after taking inputs as n and r.

- + Source Code @@ -1457,8 +1358,7 @@

Calculates power between different units.

- + Source Code @@ -1467,14 +1367,12 @@

Calculates power between different units.

Pregnancy Due Date Calculator

-

Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual - period.

+

Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual period.

@@ -1488,8 +1386,7 @@

Calculates the Pressure conversion between two specified units.

- + Source Code
@@ -1503,8 +1400,7 @@

Calculates the prime factors of the given number.

- + Source Code
@@ -1518,8 +1414,7 @@

Calculates the Probability of different events.

- + Source Code @@ -1533,8 +1428,7 @@

Calculates Max Height, Range, Time Of Flight of Projectile.

- + Source Code @@ -1548,8 +1442,7 @@

Checks if a number is pronic and finds pronic numbers in a range.

- + Source Code @@ -1563,8 +1456,7 @@

Input three values to compute the fourth, showcasing proportionality..

- + Source Code @@ -1578,8 +1470,7 @@

Which takes two sides of right-angled triangle and gives third side.

- + Source Code @@ -1593,8 +1484,7 @@

Generates the QR Code according to the given input.

- + Source Code @@ -1608,8 +1498,7 @@

Calculates the roots of a quadratic equation.

- + Source Code @@ -1623,8 +1512,7 @@

Calculates the Quotient and Remainder.

- + Source Code @@ -1638,8 +1526,7 @@

Which takes two numbers X and Y and then calculate X / Y.

- + Source Code @@ -1648,14 +1535,12 @@

Which takes two numbers X and Y and then calculate X / Y.

Real Estate Calculator

-

This tool allows users to input property details and obtain essential information for financial - planning.

+

This tool allows users to input property details and obtain essential information for financial planning.

@@ -1664,15 +1549,12 @@

This tool allows users to input property details and obtain essential inform

Recipe Cost Calculator

-

This tool Enables users to input ingredients and quantities to calculate the total cost of a recipe, - facilitating budget-friendly meal planning. -

+

This tool enables users to input ingredients and quantities to calculate the total cost of a recipe.

@@ -1686,8 +1568,21 @@

Converts Rectangular form into Polar form and vice versa.

- + + Source Code + +
+
+

+
+
+

Salary To Hourly Calculator

+

Calculates salary across across various timeframes simultaneously.

+ @@ -1701,8 +1596,7 @@

Calculates the Short URL from Long URL.

- + Source Code
@@ -1716,8 +1610,7 @@

Calculates the simple interest.

- + Source Code
@@ -1731,8 +1624,7 @@

Calculates the amount of sleep required based on age and activity level.

- + Source Code
@@ -1746,8 +1638,7 @@

Calculator that determines whether a given number is a Smith number or not.< - + Source Code @@ -1761,8 +1652,7 @@

This tool allows users to convert speeds between different units.

- + Source Code @@ -1776,8 +1666,7 @@

Calculates square and cube of a number.

- + Source Code @@ -1791,8 +1680,7 @@

Calculates the square root of a number instantly.

- + Source Code @@ -1806,8 +1694,7 @@

Calculates Maximum, minimum, mean, median, mode, etc.

- + Source Code @@ -1821,8 +1708,7 @@

Computes stress and strain using force, area, and length inputs.

- + Source Code @@ -1831,14 +1717,12 @@

Computes stress and strain using force, area, and length inputs.

Sunrise Sunset Calculator

-

Calculates approximate about when the sun will rise and set at that particular point on the Earth's - surface.

+

Calculates approximate about when the sun will rise and set at that particular point on the Earth's surface.

@@ -1852,8 +1736,7 @@

Calculator that gives an idea of the returns on their mutual fund investment - + Source Code

@@ -1867,9 +1750,8 @@

Calculates the cost of taxi ride based on distance, base fare and time.

- - Source Code + + Source Code
@@ -1882,8 +1764,7 @@

Calculates the Taylor Series expansion of a mathematical function.

- + Source Code @@ -1897,8 +1778,7 @@

Calculates the Temperature conversion between two specified units.

- + Source Code @@ -1912,8 +1792,7 @@

Whatever number you give it will return 7.

- + Source Code @@ -1927,8 +1806,7 @@

Calculates Hours, Minutes, Seconds for any entered time.

- + Source Code @@ -1942,8 +1820,7 @@

Instantly find the time difference anywhere in the world.

- + Source Code @@ -1957,8 +1834,7 @@

Calculates the different results of a triangle based on input sides.

- + Source Code @@ -1972,8 +1848,7 @@

Calculates trigonometric functions and inverses.

- + Source Code @@ -1987,8 +1862,7 @@

Provides the graph as per the given function like sin, cos, tan, etc.

- + Source Code @@ -2002,8 +1876,7 @@

Calculates the typing speed in two different units.

- + Source Code @@ -2017,8 +1890,7 @@

Calculates the resultant vector, dot product and angle between 2 vectors. - + Source Code @@ -2032,8 +1904,7 @@

Calculates number of vowels and consonants in a given paragraph.

- + Source Code @@ -2047,8 +1918,7 @@

Calculate daily water intake based on weight, activity, and weather.

- + Source Code @@ -2062,8 +1932,7 @@

Calculates the bandwidth of a website based on some factors.

- + Source Code @@ -2077,8 +1946,7 @@

Calculates weight from kgs to pounds and vice-versa.

- + Source Code @@ -2092,8 +1960,7 @@

Counts the Total Words, Unique words, Average word length and Exports the da - + Source Code @@ -2107,13 +1974,12 @@

Calculates the linear density of the yarn from unit system to another.

- + Source Code - + @@ -2130,12 +1996,9 @@

Calculates the linear density of the yarn from unit system to another.

- - - + + +