├── IMGoingToMakeALogOfIt.py ├── GoodPeople.py ├── .idea ├── .gitignore ├── misc.xml ├── vcs.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml └── BamTech_CLI.iml ├── .vscode └── settings.json ├── README.md └── ChristianHelp.py /IMGoingToMakeALogOfIt.py: -------------------------------------------------------------------------------- 1 | print("I log vit") 2 | -------------------------------------------------------------------------------- /GoodPeople.py: -------------------------------------------------------------------------------- 1 | print("Good People!") 2 | print("Bad People") 3 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\Student_XSLHP101\\AppData\\Local\\Microsoft\\WindowsApps\\python3.9.exe" 3 | } -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/BamTech_CLI.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BamTech CLI 2 | 3 | ![bam](https://media.giphy.com/media/o9ggk5IMcYlKE/giphy.gif) 4 | ![hck](https://media.giphy.com/media/TOWeGr70V2R1K/giphy.gif) 5 | ## Description 6 | 7 | Cross-Platform CLI for BamTech. 8 | 9 | ## Getting Started 10 | 11 | 1. Fork this repo and open it on your favorite code editor. 12 | 2. Create a new file, add your code to the file. 13 | 3. Finally: Add, Commit and Push your code and then create a Pull Request on your github repo. 14 | 15 | ### Prerequisites 16 | 17 | - Python 3 18 | 19 | ``` 20 | # Code Sample 21 | 22 | ``` 23 | 24 | ## Collaborators 25 | 26 | * [Abraham](https://github.com/AbeTavarez/) - GitHub 27 | * [Antonio](https://github.com/MikeAR93/) - GitHub 28 | -------------------------------------------------------------------------------- /ChristianHelp.py: -------------------------------------------------------------------------------- 1 | import os 2 | from colored import fg, bg, attr 3 | from random import randint 4 | 5 | 6 | 7 | def christian_help(): 8 | print("%s%s Hi! Christian here, how can I help? %s" % (fg(15), bg(28), attr(0))) 9 | user_input = int(input("%s%sPlease enter 1: to create breakout rooms, \nPlease enter 2: to spin the wheel: %s" % (fg(15), bg(27), attr(0)) )) 10 | valid_entries = (1,2) 11 | while user_input not in valid_entries: 12 | print('-----------------------------\n') 13 | print("%s%sPlease read carefully you fool! %s" % (fg(15), bg(9), attr(0))) 14 | user_input = int(input("%s%sPlease enter 1: to create breakout rooms, \nPlease enter 2: to spin the wheel: %s" % (fg(15), bg(27), attr(0)) )) 15 | 16 | 17 | if user_input == 1: 18 | breakout_room = [room for room in range(1,13)] # Create 12 breakout rooms 19 | for room_num in breakout_room: 20 | print(f'Room {room_num} created.') 21 | print ("%s%s Done! Bye I need to go feed my cat... %s" % (fg(15), bg(27), attr(0))) 22 | 23 | if user_input == 2: 24 | for spin in range(3): 25 | print('Spinning the wheel...') 26 | print("%s%s\nGuess who it's Ermal !!! %s" % (fg(15), bg(61), attr(0))) 27 | 28 | 29 | 30 | def download_more_ram(): 31 | name = os.name() 32 | print(f"The Kernel name is: {name}") 33 | 34 | --------------------------------------------------------------------------------