Skip to content
Permalink
Browse files
removed redundant notes
  • Loading branch information
aa7401 committed Oct 16, 2018
1 parent c42494f commit 7f74440108119ebad69850fcfb8ebd53c6dcbfe0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
@@ -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.
@@ -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)
@@ -15,7 +15,7 @@
"license": "ISC",
"devDependencies": {
"eslint": "^5.3.0",
"jest": "^23.5.0"
"jest": "^23.6.0"
},
"dependencies": {
"express": "^4.16.3",

0 comments on commit 7f74440

Please sign in to comment.