notecalc3
notecalc3 copied to clipboard
NoteCalc is a handy calculator trying to bring the advantages of Soulver to the web.
Documentation says a line starting with a double dash should clear the sum variable. This doesn't seem to be working: 
In Edge, turn on the Edge Bar (Settings > Edge Bar > Open Edge Bar). Add NoteCalc's URL to the bar. NoteCalc opens the first tab and renders it well...
Do it is possible to have a isolated function or library that parse the line and return the result? also in wasm. f.e. parse("calc = 5k + 4k"); that return...
Hi - I would love a rounding feature, which specifies the number of decimals to keep. I know there's a lot of rounding strategies, especially for money, but simple rounding...
I've tried sqrt(16) sqrt16 root(16) root16 root 16 square root 16 etc... etc... etc... nothing seems to work. Are there roots in this program, and if so how do I...
Hey, i'd like to suggest a setting to use the european comma as decimal separator. This is standard on our NUM-pads, too.
With [Slovenian keyboard layout](https://docs.microsoft.com/en-us/globalization/keyboards/kbdcr.html) on Linux, I cannot type ^ character into Notecalc. When I press the AltGr + 3 twice (which produces ^ in every other text entry field),...
Hello! I use CalcNote (basically, a mobile version of notecalc), which supports saving your notes to Google Drive. I'd love for there to be a cross-platform way to work on...
Trying to do Modulus(%) 228%4 and it isn't working. Neither is: mod(228,4) Is Modulus supported? What's the syntax for it?
``` cost = 500 discount = true cost = if discount then cost - 10% else cost cost = if discount then cost - 10% cost = cost - 10%...