Live data from Hacker News

Show HN: NoteCalc

github.com

51–60 of 79 posts

Re: Show HN: NoteCalc

#52

On macOS, there is the excellent Numi app Sadly I haven't found any equivalent for iOS (iPhone and iPad): it would definitely get my money!

Numi would be my favourite of all these kind of calculators on macOS, if it wasn't for the lack of unit calculations[0], e.g density = 2 kg / 3 l, mass = 10 dm^3 * density [0]: Not sure of the actual term in English

I think the term in English is dimensional analysis

Re: Show HN: NoteCalc

#53
This is amazing. Doesn't feel like a web based tool at all. Can even do bitwise operations that's just great. Can there be a programmer mode where I can use & and | instead of AND and OR? Not a deal breaker though. It's going to help a lot in day to day bitwise stuff

Re: Show HN: NoteCalc

#56
Nice. What I really want, though is a CLI calculator (something like bc or ipython) that would be clever enough to handle stuff like 1000!/999! (increase the number of digits if python will be able to do that: I hope you get the idea). I cannot treat seriously a calculator in 2020 that actually tries to evaluate expressions numerically, while representing numbers as floats or int32.

Multiplying matrices and stuff is nice, but I don't think I really ever needed that. But simple combinatorics and other calculations that involve large numbers and lots of simple operations (like powers), but are perfectly calculatable without losing precision on a piece of paper — plenty of times. It's annoying that I can calculate on a piece of paper something my calculator cannot.

Other than that, maybe some operations over physical units/unit conversion and some embedded city/timezone DB, and I don't think I can ask more of a calculator.

Re: Show HN: NoteCalc

#57

This is amazing. Doesn't feel like a web based tool at all. Can even do bitwise operations that's just great. Can there be a programmer mode where I can use & and | instead of AND and OR? Not a deal breaker though. It's going to help a lot in day to day bitwise stuff

yeah why not :) I added it to my todo.

Re: Show HN: NoteCalc

#58
post #56

Nice. What I really want, though is a CLI calculator (something like bc or ipython) that would be clever enough to handle stuff like 1000!/999! (increase the number of digits if python will be able to do that: I hope you get the idea). I cannot treat seriously a calculator in 2020 that actually tries to evaluate expressions numerically, while representing numbers as floats or int32. Multiplying matrices and stuff is…

Have you tried isympy? It handles your factorial expression easily.

Re: Show HN: NoteCalc

#59
post #56

Nice. What I really want, though is a CLI calculator (something like bc or ipython) that would be clever enough to handle stuff like 1000!/999! (increase the number of digits if python will be able to do that: I hope you get the idea). I cannot treat seriously a calculator in 2020 that actually tries to evaluate expressions numerically, while representing numbers as floats or int32. Multiplying matrices and stuff is…

Originally NoteCalc used a library for handling arbitrarily large numbers. Unfortunately, some operations were so slow that as a quick fix, I replaced the library with a lighter one without dynamic allocations (which is 96 bit integer with 28scale).

This serves well the primary goal of NoteCalc so I did not spend more time on it yet, but I am on the same page as you, and if NoteCalc will be feature-complete, I will give an other shot to arbitrarily large calculations/precision.

Post reply on HN