diff --git a/unit_02/w05d01/homework/README.md b/unit_02/w05d01/homework/README.md
new file mode 100644
index 0000000..5b90747
--- /dev/null
+++ b/unit_02/w05d01/homework/README.md
@@ -0,0 +1,20 @@
+####1 What are the key differences between a server and a client?
+
+
+####2 What is an HTTP request?
+
+
+####3 What is the request-response cycle?
+
+
+####4 Research what a 'node package' is and explain it.
+
+
+####5 Research the node package 'Express' and explain why we might want to use it.
+
+Video about NPM
+https://www.youtube.com/watch?v=gvGjaqZducI&index=2&list=PLw1xVKFbouel1pRYoEMgNO53YTMN3TSYP
+
+GIST:
+https://gist.github.com/kristynrb/d89afd26c4c4421313bd
+
diff --git a/unit_02/w05d02/homework/README.md b/unit_02/w05d02/homework/README.md
new file mode 100644
index 0000000..3a25400
--- /dev/null
+++ b/unit_02/w05d02/homework/README.md
@@ -0,0 +1,65 @@
+
+
+# WDI-PANTHALASSA
+
+---
+Title: Homework w05d02
+Type: Homework
+Duration: "4:00"
+Creator:
+ Original creators: WDI-Skywalker
+ Adapted by: Thom Page & Kristyn Bryan
+ Course: WDIr Panthalassa
+Competencies: Javascript, Express, Routes, Views, Node
+Prerequisites: Javascript
+
+---
+
+#EXPRESS YOURSELF!!
+
+
+## Learning Objectives
+* Practice setting up express applications.
+* Practice creating custom routes.
+* Practice using parameters from a request.
+
+####Tonight you will be using your new found skills to create three separate Express apps.
+
+
+#Tip Calculator APP
+- Create an express application (see the bottom of this homework for a reminder).
+- Your app should have a route of `'/tip'` and it should expect *2 params*. One should be `total` and one should be `tipPercentage`.
+- When hitting the route, the page should *display how much your tip will be* based on the total ammount of the bill and the tip percentage. (ex. hitting `'/tip/100/20'` should display `20` on the page).
+
+**Commit 1**
+