Tip
“Your mind is for having ideas, not holding them.” – David Allen (source)
- text-based
- easy to learn
- SUPER FAST to use
- Managing tasks
- Managing deadlines
- Managing events
- download the
.jarfile from here. - double-click it.
- add your tasks.
- let it manage your tasks for you 😉
- And it is FREE!
to start the application through CLI, download the codebase and run ./gradlew run.
CLI version for UI is available before branch-Level-10 was merged.
Entrypoint to GUI application:
public class Main extends Application {
private Bee bee = new Bee();
@Override
public void start(Stage stage) {
try {
//...
stage.show();
} catch (IOException e) {
e.printStackTrace();
}
}
}