https://github.com/palikar/advancedresoucemenaging
This was a school prject of mine that won me a 4th place on the national competition for IT.
https://github.com/palikar/advancedresoucemenaging
gradle gui-application java java-8 timemanagement timetable-generator
Last synced: about 1 month ago
JSON representation
This was a school prject of mine that won me a 4th place on the national competition for IT.
- Host: GitHub
- URL: https://github.com/palikar/advancedresoucemenaging
- Owner: palikar
- Created: 2015-04-13T15:39:55.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2020-02-05T22:00:12.000Z (over 6 years ago)
- Last Synced: 2025-06-02T14:52:31.755Z (about 1 year ago)
- Topics: gradle, gui-application, java, java-8, timemanagement, timetable-generator
- Language: Java
- Homepage:
- Size: 37.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advance Resources Management

This is an early project of mine. It is an application written in java that is meant to generate a school program. Given some conditions like how many of each sujects each class in a school must have and what teachers are available for this subject, the application tries to efficiently allocate classes and teachers in time slots over the week.
I developed the program when I was in the high school and the project “secured” me a good spot in the rankings of the national competition for IT in Bulgaria. The application was targeted at bulgarian users so the UI is in bulgarian.
## Screenshots
Here are some screenshots from the application. If you are not a bulgarian, it’ll probably not make any sense to you but… enjoy anyway.
   
## Building
The whole thing was programmed in java (8). Originally I used only [Netbeans](https://netbeans.org/) for the development and I had no idea what “build system” was. Recently, however, I took the time to make the project buildable with [gradle](https://gradle.org/). Now, hopefully, it can be build on any system that supports some JVM and gradle for building.
Simply cloning and building the target `fatJar` should do everything:
```sh
git clone https://github.com/palikar/AdvancedResouceMenaging
gradle fatJar
```
To run the application:
```sh
java -jar ./build/libs/AdvancedResouceMenaging-all.jar
```