CalQlator is a calculator capable to change its numeric system to BIN, OCT, DEC and HEX. Also it includes a lot of useful operations.
There is an already created file for Linux.
curl -L "https://raw.githubusercontent.com/jcflow/CalQlator/master/dist/CalQlator" -o CalQlator
chmod +x CalQlator
./CalQlator
Also there is a MacOS version here.
svn checkout "https://github.com/jcflow/CalQlator/trunk/dist/CalQlator.app"
open CalQlator.app
pip3 install -r requirements.txt
dotnet build --configuration Release --output build/
python3 main.py
pip3 install -r requirements.txt
dotnet build --configuration Release --output build/
python3 main.py
pyinstaller CalQlator.spec
The core base of the application is using C#.
The controllers of the application is using Python 3.x.
- Main Controller
- Voice Controller
USAGE: All keywords for the voice recognition are stored in
Controllers/dictionary.json
The views of the application is using Python 3.x and PyQt.
This project is licensed under the MIT License - see the LICENSE.md file for details