notecalc3 VS decimal.js

Compare notecalc3 vs decimal.js and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
notecalc3 decimal.js
9 22
1,149 6,113
- -
3.5 0.0
about 2 months ago 7 months ago
Rust JavaScript
GNU Affero General Public License v3.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

notecalc3

Posts with mentions or reviews of notecalc3. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-22.
  • NoteCalc 0.4.0
    1 project | news.ycombinator.com | 7 Mar 2024
    To the OP, congratulations for stopping procrastination. :-) I like the idea of your project,I'm often in need of a little tool to help quickly calculate some finance related data. In this case, I often launch a LibreOffice sheet but it is rather heavy for what I need. I'll give your tool a try.

    If you are looking for having notecalc3 running locally, the github[0] repository has all the installation instructions (not found in the documentation)

    [0] https://github.com/bbodi/notecalc3

  • Show HN: Heynote – A Dedicated Scratchpad for Developers
    22 projects | news.ycombinator.com | 22 Dec 2023
    This looks fantastic. I will definitely give it a spin. I've been tracking what I call "computational scratchpad" apps for a while now but haven't found one that fits my environment/workflow yet. Maybe Heynote will. Here are some others that I've looked at:

    * https://soulver.app Granddad of them all, Mac-only, proprietary, expensive

    * https://numi.app Mac-only, proprietary, semi-expensive. Has a Github and claims to be MIT-licensed but I don't see how you could build a working application with what's in the repo.

    * https://calca.io Windows- and Mac-only, proprietary, not expensive, nice docs.

    * https://notepadcalculator.com Web-based, not open source, hosted but uses local storage. You can optionally create an account to sign in and have your notes saved in plaintext on his server.

    * https://github.com/bbodi/notecalc3 Web-based, open source, self-hostable. But it seems to save your document in the URL string itself, which means the URL gets updated with almost every keystroke. Worth it for quick calculations and very small notes, I guess.

    * https://numpad.io Web-based, hosted, not open source. Also stores entire doc in URL, but doesn't update the URL bar the whole time you're typing.

    * https://numbr.dev/ Web-based, hosted. Has a Github but is not open source and the repo does not have all the bits needed to self-host it. Stores entire doc in URL.

    * https://github.com/metakirby5/codi.vim Vim/NeoVim plugin that is less like a "smart notepad" and more like Jupyter but with results printed on the right side of the screen instead of in a cell below. Supports lots of programming languages.

  • QwikTape: Do calculations, annotate like you would on a paper
    4 projects | news.ycombinator.com | 11 Feb 2023
    I made a list of calculators like this which were shared here on HN over time https://gist.github.com/SMUsamaShah/6546011091d53380354484a3...

    From these https://bbodi.github.io/notecalc3/ and https://notepadcalculator.com/ are the most programmer friendly (supporting <<, ^, binary, hex etc)

  • Some Things I Realized about AI While Contemplating Slide Rule Prices on eBay
    2 projects | news.ycombinator.com | 9 Sep 2022
    Another paradigm are Notebooks. Jupyter style are pretty popular these days, something like Wolfram Alpha's step-by-step mode or this project recently noted on HN https://bbodi.github.io/notecalc3/ are all good examples. Plenty of people use spreadsheets to explicitly chain operations.

    A specific operation is much less important than the context, dimensional analysis, getting order-of-magnitude or precision correct. Performing operations narrowly is probably operating on the wrong level.

  • Show HN: I made a web-based notepad with a built in unit calculator
    18 projects | news.ycombinator.com | 17 Aug 2022
    Very cool!

    This reminds me of the open source NoteCalc: https://bbodi.github.io/notecalc3/

    It was discussed on HN, you might look there for inspiration: https://news.ycombinator.com/item?id=25495393

  • Numi. Beautiful calculator app for Mac
    7 projects | news.ycombinator.com | 29 Mar 2021
    Since others already mentioned many fantastic alternatives, let me share mine: https://bbodi.github.io/notecalc3/
  • NoteCalc 0.3.0 is out
    1 project | /r/rust | 21 Dec 2020
  • Show HN: NoteCalc
    4 projects | news.ycombinator.com | 21 Dec 2020
    I answered here: https://github.com/bbodi/notecalc3/issues/6#issuecomment-749...

    In a previous versions, only the changed areas were re-rendered, but the code was much more complex and error-prone, and it did not bring any performance improvement, so now I just rerender everything, still excellent performance but much simpler code.

decimal.js

Posts with mentions or reviews of decimal.js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-16.
  • Floats Are Weird
    1 project | news.ycombinator.com | 19 Feb 2024
  • Decoding Why 0.6 + 0.3 = 0.8999999999999999 in JS and How to Solve?
    4 projects | dev.to | 16 Nov 2023
    ii) Third-Party Libraries There are various libraries like math.js, decimal.js, big.js that solve the problem. Each library functions according to its documentation. This approach is comparatively better.
  • Front-End Dilemmas: Tackling Precision Problems in JavaScript with Decimal.js
    1 project | dev.to | 15 Sep 2023
    Desperate for a solution, I stumbled upon Decimal.js, a JavaScript library that provides arbitrary-precision decimal arithmetic. I was intrigued, so I decided to give it a try.
  • Rant - Javascript should be able to do simple f**king math by now
    3 projects | /r/Frontend | 9 Jun 2023
    I too wish JS had a dedicated Decimal Type, but there is plenty of 3rd party libraries available like decimal.js
  • The Last Breaking Change | JSON Schema Blog
    6 projects | /r/javascript | 5 Mar 2023
    For your particular example though, if we keep in mind that the input data to be validated is JSON-serializable, only a string could possibly accommodate the precision expected of a decimal from among the JSON-serializable JS primitives. You could use one or more regex patterns to describe the allowable permutations. The resultant schema would be cross-platform since it doesn't use custom keywords - nice! You can also use unions if you want to say that integers, NaN, and Infinity are also allowed per the docs there.
  • Javascript precision with significant zeros
    1 project | /r/node | 17 Jan 2023
    i've used Decimal.js to account for floating point issues in JS before. maybe this will help? I realize its not native and is a 3rd party lib - but its intent is to handle floating point issues and precision. That kinds sounds like the tree you're barking up right now. maybe it will help.
  • I'm too afraid to ask
    1 project | /r/ProgrammerHumor | 1 Jan 2023
    In the example provided, the name of the library is literally Decimal.js: https://mikemcl.github.io/decimal.js/
  • [AskJS] Are there numeric textbox widgets with built-in support for big numbers like decimal.js?
    3 projects | /r/javascript | 2 Dec 2022
    I'm working on a project where users will enter numbers like 9,999,999,999.99999 (up to 15 digits, up to 5 of them decimal) and we are having a problem with Numbers losing precision beyond certain number of digits (a typical issue for IEEE Standard 754 Floating Point Numbers, the 0.1 + 0.2 problem). I've solved this problem in a few projects before with the help of decimal.js or bignumber,js . In those cases, we kept user-input as strings and used a few custom-made numeric textbox widgets to accommodate this. Unfortunately, those widgets were proprietary... Now I need one again, but can't find anything. Do they exist?
  • Show HN: I made a web-based notepad with a built in unit calculator
    18 projects | news.ycombinator.com | 17 Aug 2022
    Looks good! I love the idea of the embedded calculator

    I noticed that it doesn't handle remainder/modulo (%) equations:

    "10 % 2" results in: "Left hand side of addition cannot be a percentage."

    It does look like decimal.js can handle that: https://mikemcl.github.io/decimal.js/#mod

    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...

  • [AskJS] How do you deal with floats in production apps?
    4 projects | /r/javascript | 13 Aug 2022
    https://github.com/MikeMcl/decimal.js/ great library

What are some alternatives?

When comparing notecalc3 and decimal.js you can also consider the following projects:

numi - Beautiful calculator app for macOS

mathjs - An extensive math library for JavaScript and Node.js

Peroxide - Rust numeric library with R, MATLAB & Python syntax

bigint-money - A Money class for high precision calculations using the ESnext bigint type.

nasc - Do maths like a normal person

0.30000000000000004 - Floating Point Math Examples

rust-calculator - Simple command-line calculator in Rust.

liveCalc - having fun with arithmetic

calculator - Uno Calculator: A simple yet powerful iOS/Android/WebAssembly/Linux C# port of the calculator that ships with Windows

Brick\Math - Arbitrary-precision arithmetic library for PHP

SoulverCore - A powerful Swift framework for evaluating natural language math expressions

eslint-plugin-big-number-rules - Enforce (or automatically fix) finance-safe calculations using BigNumber or similar libraries.