https://github.com/davide64-dev/feup_cpd_fizzbuzz
🌐 | Distributed computing server enabling clients to play Fizz Buzz over the network
https://github.com/davide64-dev/feup_cpd_fizzbuzz
client cpd distributed-computing feup fizz-buzz server
Last synced: 10 months ago
JSON representation
🌐 | Distributed computing server enabling clients to play Fizz Buzz over the network
- Host: GitHub
- URL: https://github.com/davide64-dev/feup_cpd_fizzbuzz
- Owner: Davide64-dev
- Created: 2024-06-26T23:52:26.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-26T23:55:51.000Z (almost 2 years ago)
- Last Synced: 2024-06-27T03:22:24.746Z (almost 2 years ago)
- Topics: client, cpd, distributed-computing, feup, fizz-buzz, server
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Distributed Computing Project
The development of this program is part of the curriculum for [Parallel and Distributed Computing](https://sigarra.up.pt/feup/en/ucurr_geral.ficha_uc_view?pv_ocorrencia_id=520333) course.
## Run Server
```shell
javac -d bin -cp bin:lib/ $(find src -name "*.java")
```
```shell
java -cp bin game.GameServer
```
## Run Client
```shell
javac -d bin -cp bin:lib/ $(find src -name "*.java")
```
```shell
java -cp bin game.GameClient
```