Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://abhimanyu003.github.io/qubit/

A handy calculator, based on Rust and WebAssembly.
https://abhimanyu003.github.io/qubit/

calculations calculator calculator-application conversion math maths rust rust-lang unit-conversion webassembly wsam yew

Last synced: 3 months ago
JSON representation

A handy calculator, based on Rust and WebAssembly.

Awesome Lists containing this project

README

        

[![qubit](media/banner.png)](https://abhimanyu003.github.io/qubit/)

# qubit

**[💥 Visit Website To Use Calculator](https://abhimanyu003.github.io/qubit/)**

[![qubit](media/demo.gif)](https://abhimanyu003.github.io/qubit/)

## Example

**[💥 Visit Website To Use Calculator](https://abhimanyu003.github.io/qubit/)**

```
2 + 2

sin( 90 ) + cos ( 120 )
sqrt(144) + 12
ceil ( 12.12 ) + 22
floor( 12.12) + 22

25 % of 100
25 % on 100

// Conversions
1024 kb to mb
22 kg to g
```

## Operations

### Basic Math
```
add sub multiply
divide power modulus
rightShift leftShift
percentOf percentOn
```

_Examples:_

```
2 + 2
2 plus 2
2 ^ 2

10 %of 100
10 %on 100

100 >> 2
100 << 2
```

### Constants

```
pi
e
tau
```

### Functions

All trigonometric functions expect input in degrees.

```
sin cos tan
asin acos atan
sinh cosh tanh

log sqrt cbrt
round ceil floor
```

_Examples:_

```
round ( 2.4 )
ceil ( 2.3 )

sin ( 90 )
cos ( 90 )

ceil ( 2.2 )
floor(3.3)
```

## Supported Conversions

* Angle
* Area
* Digital Information
* Length
* Mass
* Speed
* Time
* Temperature

# Development

### Stack qubit is using

* [Rust](https://www.rust-lang.org/) as programing language
* [Pest](https://pest.rs/) for parser + grammar
* [Yew](https://yew.rs/) for webassembly
* [Tailwind](https://tailwindcss.com/) for CSS styles

### Local Development + Enhancement

* Clone the repo
* Pest Grammar is defined in `src/grammar.pest` file.
* Conversion chart is `src/convert_chart.rs`

To start the project locally on `:8080` *run*

```
trunk serve
```

Before creating pull request you can run sanity checks.

```
cargo fmt
cargo check
cargo test
```

Final build ( Optional )

```
trunk build --release --public-url=qubit
```

# Contribution

This project welcomes your PR and issues.
For example, refactoring, adding features, correcting English, etc.
If you need any help, you can contact me on [Twitter](https://twitter.com/abhimanyu003).

Thanks to all the people who already contributed!



# License

[MIT](./LICENSE)