quickcalc

This is a personal project that I worked on using the Electron framework.
A Calculator That Does More 👍
Functions To Help Your Daily Life ✅
Let's Do Some Math ➗
Math functions
Calculations can be simple or complex 5 + 4 (4**3)/(4839-32+423)
+ plus
- minus
* multiply
/ divide
% modulo
** exponent
:sqrt returns square root ex. :sqrt(4)
:abs returns absolute value ex. :abs(4-7)
:log returns log (base 10) ex. :log(100)
:ln returns natural log (base E) ex. :ln(50)
:e returns e^x ex. :e(2)
Trig functions are within code but aren't guarenteed to give a desired answer, so they aren't included in this list.
Date and Time functions ⌚
:today returns the current date; you may add or subtract days ex. :today + 5
:datein returns the date plus the value you pass ex. :datein 3
:daysof returns the amount of days in the value passed ex. :daysof jan :daysof 3 years 5 months
:time returns current time
Money functions 💸
:off returns a percentage off of a value ex. 20% :off 300 3% :off 50.50
:of returns percentage of a value ex. 50% :of 40 16% :of 32.70
Back to Top