From 7f74440108119ebad69850fcfb8ebd53c6dcbfe0 Mon Sep 17 00:00:00 2001 From: Mark Tyers Date: Tue, 16 Oct 2018 14:25:03 +0100 Subject: [PATCH] removed redundant notes --- 01 Lab 2 Dynamic Websites.md | 2 +- 02 Lab 1 TDD Express.md | 15 --------------- exercises/02_tdd/express/todo/package.json | 2 +- 3 files changed, 2 insertions(+), 17 deletions(-) diff --git a/01 Lab 2 Dynamic Websites.md b/01 Lab 2 Dynamic Websites.md index 7c0a8cf..6c6854f 100644 --- a/01 Lab 2 Dynamic Websites.md +++ b/01 Lab 2 Dynamic Websites.md @@ -159,7 +159,7 @@ There are not many books in our database so displaying them all is not a problem 2. Notice the route uses a different template (`newindex.handlebars`) which contains an html form. This will display a search box and button. 3. Type in your search term `sqlite` and click on the search button, this reloads the page. You will see the search term `sqlite` remains in the text box and the page displays the books that match your search term. 1. Click in the _address bar_ in your browser and look carefully at the URL. - 2. It ends with the string `?q=hello`. + 2. It ends with the string `?q=sqlite`. 3. Examine the attributes in the html form element: 1. The `action="/"` attribute tells the form to send the data to the root URL. 2. The `method="get"` attribute tells the form to pass the data in the URL. diff --git a/02 Lab 1 TDD Express.md b/02 Lab 1 TDD Express.md index eed4d50..7678277 100644 --- a/02 Lab 1 TDD Express.md +++ b/02 Lab 1 TDD Express.md @@ -200,18 +200,3 @@ Apply the TDD methodology to implement the following (this will require 5 iterat 3. If the parameter is not a number an error should be thrown. 4. If the parameter is not an integer (whole number) an error should be thrown. 5. If the parameter is a whole number below `0` an error should be thrown. - ----- - -## 7 Preparation - -You will need to ensure your skills are up to date before we begin preparation in week 3. - -### 7.2 API Team - -1. Subscribe to an MQTT data feed on [Adafruit](https://io.adafruit.com/) using NodeJS and print data to terminal. There is a good [online tutorial](https://learn.adafruit.com/adafruit-io/mqtt-api) to get you started. -2. Build an MQTT server. Heroku offer a [free hosting option](https://devcenter.heroku.com/articles/cloudmqtt) - -### 7.3 Front End - -1. Get familiar with the mapping APIs! (Google Maps / Apple Maps) diff --git a/exercises/02_tdd/express/todo/package.json b/exercises/02_tdd/express/todo/package.json index 7b590e8..d4d8d61 100644 --- a/exercises/02_tdd/express/todo/package.json +++ b/exercises/02_tdd/express/todo/package.json @@ -15,7 +15,7 @@ "license": "ISC", "devDependencies": { "eslint": "^5.3.0", - "jest": "^23.5.0" + "jest": "^23.6.0" }, "dependencies": { "express": "^4.16.3",