You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is some odd behavior between bits and bytes, (i.e. GB, Gb, GiB) all being treated as the same unit and converted to bit, where the 3 units are distinctively different units.
Also as a side note "TB" is recognized as a terrabyte/bit, however "Tb" comes up as a tablespoon. Maybe tablespoon can be changed to "tb" so that "TB" can be consistently used, similarly to gigabytes in the following different units (TB, Tb, TiB).
The text was updated successfully, but these errors were encountered:
This has been annoying me for years. Make rink output bytes by default,
even though bits are the base unit of information.
Only applies when you specifically ask for bytes by itself. Falls back
to bits if you use some other unit like `bit s^-1`, `bit^2`, `bit^-1`,
etc.
```
> 500 floppy
737.28 megabyte (information)
```
Improves #56 but doesn't really fix it.
Hi,
There is some odd behavior between bits and bytes, (i.e. GB, Gb, GiB) all being treated as the same unit and converted to bit, where the 3 units are distinctively different units.
Example:
"5 bytes" becomes "40 bit"
"800GB" becomes "6.4 terrabit"
Also as a side note "TB" is recognized as a terrabyte/bit, however "Tb" comes up as a tablespoon. Maybe tablespoon can be changed to "tb" so that "TB" can be consistently used, similarly to gigabytes in the following different units (TB, Tb, TiB).
The text was updated successfully, but these errors were encountered: