Public
Like
untitled-3491
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v6View latest version
A web page explaining the extension of binary SI prefixes to fractional values.
frontend/
- Contains the main web pageindex.html
- Main HTML page with the explanationstyle.css
- Custom styling
backend/
- Simple HTTP serverindex.ts
- Hono server to serve the frontend
This project explores extending the binary SI prefixes (kibi-, mebi-, gibi-, etc.) which are typically used for values ≥ 1, to also include fractional prefixes for values < 1. This creates a complete binary prefix system analogous to the decimal SI prefixes.
Standard (≥ 1):
- kibi (Ki) = 2^10 = 1,024
- mebi (Mi) = 2^20 = 1,048,576
- gibi (Gi) = 2^30 = 1,073,741,824
- etc.
Extended (< 1):
- milli-binary (mi) = 2^-10 ≈ 0.0009765625
- micro-binary (μi) = 2^-20 ≈ 0.00000095367
- nano-binary (ni) = 2^-30 ≈ 0.00000000093132
- etc.