You know you're a long-time #NVDA user when instead of opening a calculator app, you just open the NVDA Python console and solve your equation there. Is that just me? #NVDASR
@DavidGoldfield@Jage@fastfinge If you are really looking for something functional and have some technical knowhow, it's CLI though, check out calc, isthe.com/chongo/tech/comp/calc. It's a C-style arbitrary precision calculator with absolutely gobs of functions, it's got readline for history, variables, the ability to define functions including in an rc-style file I think etc. Doesn't build natively on Windows, but you can build it in Cygwin.
@fastfinge Nope. I hate the Windows 10 calculator app. no idea if it's better in 11, but the 10 vbersion loses focus all the time and seems to lack basic order of operations, so I gave up on it. Also just being able to save variables easily and then add those variables is really useful sometimes when I'm crunching numbers.
@simon@fastfinge If you're not already aware, here's a tip: in both the NVDA Python console and a regular Python REPL, the variable named with a single underscore (_) always holds the result/return value of the most recently executed statement. Really useful when you know you'll need to use a value in the next step of a calculation but don't want to have to think of a name for it.
@fastfinge I don't use the NVDA Python console, but I will open a repl of some kind for simple calculations. Either Python or Node, depending on the environment I'm in at the time.