Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnnymayodev/pixel-puzzle
An engaging and interactive image guessing game where players are presented with a pixelated image and must guess the correct object or scene within a limited amount of time. The image will get progressively less blurry as the timer runs out.
https://github.com/johnnymayodev/pixel-puzzle
Last synced: about 1 month ago
JSON representation
An engaging and interactive image guessing game where players are presented with a pixelated image and must guess the correct object or scene within a limited amount of time. The image will get progressively less blurry as the timer runs out.
- Host: GitHub
- URL: https://github.com/johnnymayodev/pixel-puzzle
- Owner: johnnymayodev
- Created: 2024-02-08T16:30:47.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-01T01:29:20.000Z (9 months ago)
- Last Synced: 2024-05-01T02:34:23.710Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 8.59 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pixel Puzzle
## 📝 Description
An engaging and interactive image guessing game where players are presented with a pixelated image and must guess the correct object or scene within a limited amount of time. The image will get progressively less blurry as the timer runs out.
## 🏃 Running
Commands are written for macOS. Windows and Linux users should adjust accordingly.
### Frontend
#### Run via bash script
1. Clone the repository and navigate to the project directory in your terminal
3. Give the bash script permission to execute by the user
```bash
chmod u+x ./web/run.sh
```3. Run the bash script
```bash
./web/run.sh
```4. Open your web browser and go to `http://localhost:8090/`
#### Run Manually
1. Clone the repository and navigate to the project directory in your terminal
2. Create a virtual environment
```bash
python3 -m venv venv
```3. Activate the virtual environment
```bash
source venv/bin/activate
```4. Install the requirements
```bash
pip install -r requirements.txt
```5. Run the server
```bash
python3 web/server.py
```6. Open your web browser and go to `http://localhost:8090/`