Imagine you're working on a project everything's going fine until the code breaks somewhere, you're facing an error, what would you do 🤔?
You google it (after GPT fails :) and go on... StackOverflow! But the question that you see is not solving the bug. You keep on searching until you find the solution which is indeed on StackOverflow.
Why did it take so long? You find out the question was not tagged properly, which affects the search results of such a big platform and ended up wasting your time 😕!
Solution?
Autonomous-Tagging-Of-Stack-Overflow-Questions
This webapp can be directly accessed here (May take some time to boot up)
Download the Zip and Extract. Rename with a short name. Or, clone the project from github with
git clone https://github.com/smartinternz02/SBSPS-Challenge-10622-Autonomous-Tagging-Of-Stack-Overflow-Questions.git
Navigate to the folder:
cd <dir_name>
For example:
cd TagOverflow
Make sure you have Python 3 or above installed
Note
Creating virtual environment on Windows is NOT recommended for this web app.
-
Run setup.py for installing necessary libraries and files
python setup.py
-
Run main.py for running our app
python main.py
Now if you are on Ubuntu, you can create a virtual environment.
-
Make sure the folder is open in terminal.
-
Create a virtual environment
python3 -m venv .env
-
Activate the virtual environment
source .env/bin/activate
-
Run setup.py for installing necessary libraries and files
python setup.py
-
Run main.py for running our app
python main.py
Open browser and go to
So, now next time you go on StackOverflow, you save your time and continue working on your project 👍