├── ARCHITECTURE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── brain_tumor_classification.py ├── git └── generate_password.py ├── project-hub ├── .github │ ├── ISSUE_TEMPLATE │ │ └── .gitkeep │ ├── PULL_REQUEST_TEMPLATE │ │ └── .gitkeep │ └── workflows │ │ └── .gitkeep ├── assets │ ├── images │ │ └── .gitkeep │ ├── logos │ │ └── .gitkeep │ └── screenshots │ │ └── .gitkeep ├── docs │ └── .gitkeep ├── projects │ ├── advanced │ │ ├── .gitkeep │ │ └── 163. Natural language processing - Text analysis and processing │ │ │ ├── README.md │ │ │ └── Whatsapp Chats Sentiment Analysis.ipynb │ ├── beginner │ │ ├── RockPaperScissors_usingPython │ │ │ ├── Game.py │ │ │ └── README.md │ │ ├── interactiveChessSImulator │ │ │ ├── README.md │ │ │ └── interactiveChessSimulator.py │ │ ├── project-001-calculator │ │ │ └── .gitkeep │ │ └── to_do_list.py │ └── intermediate │ │ ├── .gitkeep │ │ └── URL_Shortener_Project_using_PythonFlask │ │ ├── README.md │ │ ├── app.py │ │ ├── models.py │ │ ├── requirements.txt │ │ ├── static │ │ └── style.css │ │ └── templates │ │ ├── base.html │ │ ├── dashboard.html │ │ ├── index.html │ │ ├── login.html │ │ └── register.html └── templates │ └── language_templates │ └── .gitkeep ├── readme.md └── subnetcalc.py /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/README.md -------------------------------------------------------------------------------- /brain_tumor_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/brain_tumor_classification.py -------------------------------------------------------------------------------- /git/generate_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/git/generate_password.py -------------------------------------------------------------------------------- /project-hub/.github/ISSUE_TEMPLATE/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/.github/PULL_REQUEST_TEMPLATE/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/.github/workflows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/assets/logos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/assets/screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/projects/advanced/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/projects/advanced/163. Natural language processing - Text analysis and processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/advanced/163. Natural language processing - Text analysis and processing/README.md -------------------------------------------------------------------------------- /project-hub/projects/advanced/163. Natural language processing - Text analysis and processing/Whatsapp Chats Sentiment Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/advanced/163. Natural language processing - Text analysis and processing/Whatsapp Chats Sentiment Analysis.ipynb -------------------------------------------------------------------------------- /project-hub/projects/beginner/RockPaperScissors_usingPython/Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/beginner/RockPaperScissors_usingPython/Game.py -------------------------------------------------------------------------------- /project-hub/projects/beginner/RockPaperScissors_usingPython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/beginner/RockPaperScissors_usingPython/README.md -------------------------------------------------------------------------------- /project-hub/projects/beginner/interactiveChessSImulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/beginner/interactiveChessSImulator/README.md -------------------------------------------------------------------------------- /project-hub/projects/beginner/interactiveChessSImulator/interactiveChessSimulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/beginner/interactiveChessSImulator/interactiveChessSimulator.py -------------------------------------------------------------------------------- /project-hub/projects/beginner/project-001-calculator/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/projects/beginner/to_do_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/beginner/to_do_list.py -------------------------------------------------------------------------------- /project-hub/projects/intermediate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/README.md -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/app.py -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/models.py -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/requirements.txt -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/static/style.css -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/base.html -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/dashboard.html -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/index.html -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/login.html -------------------------------------------------------------------------------- /project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/project-hub/projects/intermediate/URL_Shortener_Project_using_PythonFlask/templates/register.html -------------------------------------------------------------------------------- /project-hub/templates/language_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/readme.md -------------------------------------------------------------------------------- /subnetcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivas1432/Projects_Hub/HEAD/subnetcalc.py --------------------------------------------------------------------------------