├── .gitignore ├── Games ├── DiceRoller.py ├── KillTheSith │ ├── Game.py │ ├── background.jpg │ ├── enemy.png │ ├── jet.png │ ├── laser.png │ └── shot.wav ├── Snake.py └── Tetris.py ├── LICENCE ├── Mathematic-Tools ├── BinaryTrainer.py ├── CoinAnalyzer.py ├── Collatz_conjunction.py └── NumberConverter │ ├── Graphics.ui │ └── Main.py ├── Online-Tools ├── EmailManager │ ├── .gitignore │ ├── Login.py │ ├── LoginScreen.py │ ├── LoginScreen.ui │ ├── SignUpScreen.ui │ ├── UI_EmailManager.py │ ├── WelcomeScreen.ui │ └── requirements.txt ├── GeoLocator.py ├── LiveChat │ ├── Client.py │ └── Server.py ├── Tag_Generator │ ├── README.md │ ├── TagGenerator.py │ ├── graphics.ui │ ├── icon.ico │ ├── requirements.txt │ └── tag_list.txt └── WifiMonitor.py ├── README.md └── System-Tools ├── CircularClock.py ├── Computer-Details-App ├── Main.py ├── README.md └── Specs │ ├── CPU.py │ ├── GPU.py │ ├── RAM.py │ ├── SYSTEM.py │ └── SizeConverter.py ├── Computer-Details-Singular └── CPU_data.py ├── File_Integrity ├── FileIntegrety.ui ├── Integrity_log.txt ├── Main.py ├── Validations.py └── requirements.txt ├── Hash_Validator.py ├── Melody_Player ├── icon.png └── melody_player.py ├── NetworkTool ├── Screens │ ├── APScreen.ui │ └── NetworkScreen.ui ├── main.py ├── netspeed.py ├── page_template.ui └── tools │ └── Template.py ├── Project_Installer.py ├── Screenshot.py ├── System-Maintainer ├── Maintainer.py └── README.md ├── SystemInfo ├── Main.py ├── icon.png ├── logo.ico └── requirements.txt ├── SystemStopper ├── SystemStopper.py ├── SystemStopper.ui └── logo.ico ├── TerminalAnimation.py ├── TextEditor.py ├── WeatherApp.py ├── WebcamActivation.py └── alarm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/.gitignore -------------------------------------------------------------------------------- /Games/DiceRoller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/DiceRoller.py -------------------------------------------------------------------------------- /Games/KillTheSith/Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/KillTheSith/Game.py -------------------------------------------------------------------------------- /Games/KillTheSith/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/KillTheSith/background.jpg -------------------------------------------------------------------------------- /Games/KillTheSith/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/KillTheSith/enemy.png -------------------------------------------------------------------------------- /Games/KillTheSith/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/KillTheSith/jet.png -------------------------------------------------------------------------------- /Games/KillTheSith/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/KillTheSith/laser.png -------------------------------------------------------------------------------- /Games/KillTheSith/shot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/KillTheSith/shot.wav -------------------------------------------------------------------------------- /Games/Snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/Snake.py -------------------------------------------------------------------------------- /Games/Tetris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Games/Tetris.py -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/LICENCE -------------------------------------------------------------------------------- /Mathematic-Tools/BinaryTrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Mathematic-Tools/BinaryTrainer.py -------------------------------------------------------------------------------- /Mathematic-Tools/CoinAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Mathematic-Tools/CoinAnalyzer.py -------------------------------------------------------------------------------- /Mathematic-Tools/Collatz_conjunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Mathematic-Tools/Collatz_conjunction.py -------------------------------------------------------------------------------- /Mathematic-Tools/NumberConverter/Graphics.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Mathematic-Tools/NumberConverter/Graphics.ui -------------------------------------------------------------------------------- /Mathematic-Tools/NumberConverter/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Mathematic-Tools/NumberConverter/Main.py -------------------------------------------------------------------------------- /Online-Tools/EmailManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/.gitignore -------------------------------------------------------------------------------- /Online-Tools/EmailManager/Login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/Login.py -------------------------------------------------------------------------------- /Online-Tools/EmailManager/LoginScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/LoginScreen.py -------------------------------------------------------------------------------- /Online-Tools/EmailManager/LoginScreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/LoginScreen.ui -------------------------------------------------------------------------------- /Online-Tools/EmailManager/SignUpScreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/SignUpScreen.ui -------------------------------------------------------------------------------- /Online-Tools/EmailManager/UI_EmailManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/UI_EmailManager.py -------------------------------------------------------------------------------- /Online-Tools/EmailManager/WelcomeScreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/WelcomeScreen.ui -------------------------------------------------------------------------------- /Online-Tools/EmailManager/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/EmailManager/requirements.txt -------------------------------------------------------------------------------- /Online-Tools/GeoLocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/GeoLocator.py -------------------------------------------------------------------------------- /Online-Tools/LiveChat/Client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/LiveChat/Client.py -------------------------------------------------------------------------------- /Online-Tools/LiveChat/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/LiveChat/Server.py -------------------------------------------------------------------------------- /Online-Tools/Tag_Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/Tag_Generator/README.md -------------------------------------------------------------------------------- /Online-Tools/Tag_Generator/TagGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/Tag_Generator/TagGenerator.py -------------------------------------------------------------------------------- /Online-Tools/Tag_Generator/graphics.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/Tag_Generator/graphics.ui -------------------------------------------------------------------------------- /Online-Tools/Tag_Generator/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/Tag_Generator/icon.ico -------------------------------------------------------------------------------- /Online-Tools/Tag_Generator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/Tag_Generator/requirements.txt -------------------------------------------------------------------------------- /Online-Tools/Tag_Generator/tag_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/Tag_Generator/tag_list.txt -------------------------------------------------------------------------------- /Online-Tools/WifiMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/Online-Tools/WifiMonitor.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/README.md -------------------------------------------------------------------------------- /System-Tools/CircularClock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/CircularClock.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/Main.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/README.md -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/Specs/CPU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/Specs/CPU.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/Specs/GPU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/Specs/GPU.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/Specs/RAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/Specs/RAM.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/Specs/SYSTEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/Specs/SYSTEM.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-App/Specs/SizeConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-App/Specs/SizeConverter.py -------------------------------------------------------------------------------- /System-Tools/Computer-Details-Singular/CPU_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Computer-Details-Singular/CPU_data.py -------------------------------------------------------------------------------- /System-Tools/File_Integrity/FileIntegrety.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/File_Integrity/FileIntegrety.ui -------------------------------------------------------------------------------- /System-Tools/File_Integrity/Integrity_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/File_Integrity/Integrity_log.txt -------------------------------------------------------------------------------- /System-Tools/File_Integrity/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/File_Integrity/Main.py -------------------------------------------------------------------------------- /System-Tools/File_Integrity/Validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/File_Integrity/Validations.py -------------------------------------------------------------------------------- /System-Tools/File_Integrity/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/File_Integrity/requirements.txt -------------------------------------------------------------------------------- /System-Tools/Hash_Validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Hash_Validator.py -------------------------------------------------------------------------------- /System-Tools/Melody_Player/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Melody_Player/icon.png -------------------------------------------------------------------------------- /System-Tools/Melody_Player/melody_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Melody_Player/melody_player.py -------------------------------------------------------------------------------- /System-Tools/NetworkTool/Screens/APScreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/NetworkTool/Screens/APScreen.ui -------------------------------------------------------------------------------- /System-Tools/NetworkTool/Screens/NetworkScreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/NetworkTool/Screens/NetworkScreen.ui -------------------------------------------------------------------------------- /System-Tools/NetworkTool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/NetworkTool/main.py -------------------------------------------------------------------------------- /System-Tools/NetworkTool/netspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/NetworkTool/netspeed.py -------------------------------------------------------------------------------- /System-Tools/NetworkTool/page_template.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/NetworkTool/page_template.ui -------------------------------------------------------------------------------- /System-Tools/NetworkTool/tools/Template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/NetworkTool/tools/Template.py -------------------------------------------------------------------------------- /System-Tools/Project_Installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Project_Installer.py -------------------------------------------------------------------------------- /System-Tools/Screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/Screenshot.py -------------------------------------------------------------------------------- /System-Tools/System-Maintainer/Maintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/System-Maintainer/Maintainer.py -------------------------------------------------------------------------------- /System-Tools/System-Maintainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/System-Maintainer/README.md -------------------------------------------------------------------------------- /System-Tools/SystemInfo/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemInfo/Main.py -------------------------------------------------------------------------------- /System-Tools/SystemInfo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemInfo/icon.png -------------------------------------------------------------------------------- /System-Tools/SystemInfo/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemInfo/logo.ico -------------------------------------------------------------------------------- /System-Tools/SystemInfo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemInfo/requirements.txt -------------------------------------------------------------------------------- /System-Tools/SystemStopper/SystemStopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemStopper/SystemStopper.py -------------------------------------------------------------------------------- /System-Tools/SystemStopper/SystemStopper.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemStopper/SystemStopper.ui -------------------------------------------------------------------------------- /System-Tools/SystemStopper/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/SystemStopper/logo.ico -------------------------------------------------------------------------------- /System-Tools/TerminalAnimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/TerminalAnimation.py -------------------------------------------------------------------------------- /System-Tools/TextEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/TextEditor.py -------------------------------------------------------------------------------- /System-Tools/WeatherApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/WeatherApp.py -------------------------------------------------------------------------------- /System-Tools/WebcamActivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/WebcamActivation.py -------------------------------------------------------------------------------- /System-Tools/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesenseidk/Mixed-Applications/HEAD/System-Tools/alarm.py --------------------------------------------------------------------------------