├── .gitignore ├── Images ├── CanUseTimer-Logo-OLD.png ├── CanUseTimer-Logo.png ├── CanUseTimer-Logo.svg ├── Logo.svg ├── Overview.png ├── icon.ico └── wiki │ ├── Captura de tela_2021-09-18_17-32-41.png │ └── Screenshot-new.png ├── LICENSE ├── Main.py ├── Makefile ├── README.md ├── Windows_Compiler ├── README.md └── setup.bat ├── install.sh ├── lib ├── Shufflers.py ├── __init__.py ├── cliTools.py └── data.py ├── linux_assets └── executer.sh ├── requirements.txt └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/CanUseTimer-Logo-OLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/CanUseTimer-Logo-OLD.png -------------------------------------------------------------------------------- /Images/CanUseTimer-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/CanUseTimer-Logo.png -------------------------------------------------------------------------------- /Images/CanUseTimer-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/CanUseTimer-Logo.svg -------------------------------------------------------------------------------- /Images/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/Logo.svg -------------------------------------------------------------------------------- /Images/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/Overview.png -------------------------------------------------------------------------------- /Images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/icon.ico -------------------------------------------------------------------------------- /Images/wiki/Captura de tela_2021-09-18_17-32-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/wiki/Captura de tela_2021-09-18_17-32-41.png -------------------------------------------------------------------------------- /Images/wiki/Screenshot-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Images/wiki/Screenshot-new.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Main.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/README.md -------------------------------------------------------------------------------- /Windows_Compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Windows_Compiler/README.md -------------------------------------------------------------------------------- /Windows_Compiler/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/Windows_Compiler/setup.bat -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/install.sh -------------------------------------------------------------------------------- /lib/Shufflers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/lib/Shufflers.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/cliTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/lib/cliTools.py -------------------------------------------------------------------------------- /lib/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/lib/data.py -------------------------------------------------------------------------------- /linux_assets/executer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/linux_assets/executer.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/requirements.txt -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/HEAD/uninstall.sh --------------------------------------------------------------------------------