Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Lightweight probabilistic calculator that lets you type ranges (with `~`) and arithmetic to see exact bounds plus simulated outcomes and a text histogram.

Notifications You must be signed in to change notification settings

PythonicNinja/unsure-calc

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unsure-calc

Netlify Status

Lightweight probabilistic calculator that lets you type ranges (with ~) and arithmetic to see exact bounds plus simulated outcomes and a text histogram.

Deployed at: https://calc.pythonic.ninja

Getting started

  1. Install prerequisites: node (v18+ for node:test) and python3 for the simple dev server.
  2. Run make dev then open http://localhost:8000 (override port with DEV_PORT=9000 make dev).
  3. Run make test to execute the Node unit tests.

Project structure

  • index.html — UI shell that loads Tailwind and the calculator script.
  • main.js — all calculator logic (tokenizer, shunting yard with unary minus, evaluator, histogram) shared by browser and tests.
  • tests/main.test.js — minimal node:test suite covering tokenization, unary minus handling, precedence, and range evaluation.
  • Makefile — quick commands for local dev and tests.
flowchart TD
    A[User Input] --> B[tokenize]
    B --> C[shuntingYard to RPN]
    C --> D[evalRpn UncertainValue]
    D --> E[formatNumber getQuantiles generateTextHistogram]
    E --> F[DOM render main.js browser handlers]
    subgraph Tests
      B
      C
      D
    end
Loading

Makefile cheatsheet

  • make dev — serve the app via python3 -m http.server $(DEV_PORT) (defaults to 8000).
  • make test — run the Node test suite (node --test tests).

About

Lightweight probabilistic calculator that lets you type ranges (with `~`) and arithmetic to see exact bounds plus simulated outcomes and a text histogram.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
Morty Proxy This is a proxified and sanitized view of the page, visit original site.