An open API service indexing awesome lists of open source software.

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

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
```