+ 1550495411207
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml b/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml
new file mode 100644
index 0000000..c90834f
--- /dev/null
+++ b/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class b/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class
new file mode 100644
index 0000000..b719d34
Binary files /dev/null and b/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class differ
diff --git a/OOPP 43 In the beginning there was_/src/Main.java b/OOPP 43 In the beginning there was_/src/Main.java
new file mode 100644
index 0000000..d77de4e
--- /dev/null
+++ b/OOPP 43 In the beginning there was_/src/Main.java
@@ -0,0 +1,60 @@
+import javafx.application.Application;
+import javafx.event.ActionEvent;
+import javafx.event.EventHandler;
+import javafx.scene.Scene;
+import javafx.scene.control.Button;
+import javafx.scene.layout.StackPane;
+import javafx.stage.Stage;
+
+//MAIN CLIENT
+
+public class Main {
+ public static void main(String[] args){
+
+ System.out.println("Hello World!");
+ }
+}
+
+//COMMENT THE "MAIN CLIENT" PART OUT AND UNCOMMENT THE "JAVAFX" PART TO TEST IF JAVAFX WORKS
+//Don't uncomment the imports pls :)
+
+//JAVAFX
+
+//public class Main extends Application {
+//
+// @Override
+// public void start(Stage primaryStage) {
+// Button btn = new Button();
+// btn.setText("Say 'Hello World'");
+// btn.setOnAction(new EventHandler() {
+//
+// @Override
+// public void handle(ActionEvent event) {
+// System.out.println("Hello World!");
+// }
+// });
+//
+// Button btn2 = new Button();
+// btn2.setText("Say something else!");
+// btn2.setOnAction(new EventHandler() {
+// @Override
+// public void handle(ActionEvent event) {
+// System.out.println("something else!");
+// }
+// });
+//
+// StackPane root = new StackPane();
+// //apparently root.getchildren.add does the same as document.ready in javascript
+// root.getChildren().add(btn);
+//
+// Scene scene = new Scene(root, 500, 250);
+//
+// primaryStage.setTitle("Hello World!");
+// primaryStage.setScene(scene);
+// primaryStage.show();
+// }
+//
+// public static void main(String[] args) {
+// launch(args);
+// }
+//}
diff --git a/doc/meetings/20190225_agenda.md b/doc/meetings/20190225_agenda.md
new file mode 100644
index 0000000..cc1c537
--- /dev/null
+++ b/doc/meetings/20190225_agenda.md
@@ -0,0 +1,58 @@
+# Meeting 2
+
+## Opening
+> Check if everyone is present:
+- [ ] Nivard Jansen
+- [ ] Kristin Peneva
+- [ ] Daan Sneep
+- [ ] Merel SteenBergen
+- [ ] Ceren Uğurlu
+- [ ] Mika Wauben
+- [ ] Sem van der Hoeven
+
+## Points of action
+
+ - First of all, discuss problems we have faced and if somebody is halted because of a problem
+ - if so, try to work out the problem
+
+### pre/during meeting
+ - Discuss what we learned this week
+ - what did we find online?
+ - what did we get to know from tutorials we followed?
+ - are there still things unclear?
+ - Gitlab
+ - Issues: everyone should know how they work and how to work with them
+ - board: use it as a scrum board
+ - Demo 1
+ - Make sure client is working
+ - Make sure server is working
+ - Make sure client and server can connect
+ - client can send requests
+ - server can send respones
+ - Everyone needs to know about the libraries and API we've come across and are going to use
+ - Maven
+ - JavaFX
+ - Jersey
+ - Tomcat
+ - Everyone also should install everything if they haven't done so yet
+ - [Maven install tutorial](https://docs.wso2.com/display/IS323/Installing+Apache+Maven+on+Windows)
+ - [Tomcat install tutorial](http://openl-tablets.org/files/openl-tablets/5.13.0/OpenL%20Tablets%20-%20Installation%20Guide/SMPUserInstallingApacheTomcatOnWindows.html)
+
+### post meeting
+ - Focus on demo 2
+ - Get started with the GUI
+ - Get started on configuring the server
+ - Brushing up on JSON and implementing it in the client-server communication
+
+
+## Any other business
+> If anybody has something that should be discussed but came up with that after the agenda was finalized, he/she should bring that up now so that it can be discussed after all.
+
+## Question round
+- Questions for the TA
+ - questions that were already present
+ - questions that rose during the meeting
+
+## Closing
+> Demo 1 is done, good job guys!
+> Let's focus on demo 2!
\ No newline at end of file
diff --git a/src/main/main.iml b/src/main/main.iml
new file mode 100644
index 0000000..908ad4f
--- /dev/null
+++ b/src/main/main.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/test/test.iml b/src/test/test.iml
new file mode 100644
index 0000000..a0e49a3
--- /dev/null
+++ b/src/test/test.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file