videos: https://github.com/ycoady/CSC-101-UVic-Untangling-the-Web/wiki
http://blog.udacity.com/2014/12/front-end-vs-back-end-vs-full-stack-web-developers.html
consists of a server, an application, and a database
typically if you enter data into a website and it can be retrieved when you login, there is some kind of "back-end" application/data management system involved!
But wait... there are more APIs available for squirting data around all the time, and different plumbing to get it! (stay tuned)
a full stack developer can work on the full “stack” of technology, i.e. both the front-end and back-end and everything in between!
chrome://about
chrome://local-state
www.myipaddress.com/
Cookies
files created by websites that you've visited that store browsing information, such as your site preferences or profile information.
Local Store
key : value more room than cookies
Session Store
deleted when tab is closed!
try view -> developer tools -> "Resources" tab!
mileage varies!!! https://github.com/mozilla/localForage
realtime requests... T.O.!
make sense of them...
realtime requests... T.O.!
make sense of them...
{
key : value,
key : value,
...
}
{
"service_request_id":101003676897,
"status":null,
"status_notes":null,
"service_name":"Road - Pot hole",
"service_code":"CSROWR-12",
"description":null,
"agency_responsible":"311 Toronto",
"service_notice":null,
"requested_datetime":"2015-11-06T18:04:00-05:00",
"updated_datetime":"2015-11-16T14:02:00-05:00",
"expected_datetime":"2016-02-04T18:04:00-05:00",
"address":"Ellesmere Rd / Victoria Park Ave / Parkwoods Village Dr, North York",
"address_id":13449013,
"zipcode":null,
"long":-79.315248662,
"lat":43.75787803,
"media_url":null
},
leveraging built-in functionality in Google Maps!
LOADING a KML file (not the one on the city web page!)
Displayed and "interactive"!
Try it yourself!
In our REPO
Add a button to put a marker on the map!
Try it yourself!
In our REPO
when a user clicks on a list...
Try it yourself!
In our REPO
when a user clicks on a marker...
Try it yourself!
In our REPO