{{note.noteBody}}
+{{noteBody}}
+Edit Note +Delete Note +``` + +We use href link in this case as I find them easier to work with than the backbone +navigate feature. Although if you change your routing they will all have to be +update, tradeoffs. Next update the collection view to look like this: + +```html +New Note +"kills the DOM...various ng-attribute references cluttered the page around +and this was mixed with what is called "mustache-esque" template bindings." ++ [source](http://ryantablada.com/post/why-i-chose-ember-js) +
Angular's creator describes it as a metaframework - a framework for +creating your application's framework. Thus, if you get two different Angular +apps, their internals will look completely different. + +This is not the approach Ember takes, where you buy in to the framework's +conventions. So, one could argue that once you learn the conventions, you'll +spend much less time on boilerplate writing a new Ember app than a new Angular +app. This doctrine also belongs to Rails, and it's worked out pretty well for +them. ++[source](http://discuss.emberjs.com/t/how-do-we-beat-angularjs-in-the-developers-mindset/3948/3) + +To dive deeper, read [A Five Part Blog Post Series Comparing Angular and Ember](http://www.benlesh.com/2014/04/embular-part-1-comparing-ember-and.html) +and [Backbone, Angular, or Ember](http://www.100percentjs.com/backbone-or-angular-or-ember-here-is-my-choice-and-why/). + +Angular vs Ember [slides](https://docs.google.com/presentation/d/1e0z1pT9JuEh8G5DOtib6XFDHK0GUFtrZrU3IfxJynaA/preview?slide=id.g177e4bd2b_0148). + +## Prerequisites + +You'll need the following modules if you don't have them already + +``` +npm install -g phantomjs bower +``` + +## Installation + +First step is to install the command line tool globally: + +``` +npm install -g ember-cli +``` + +Then, install the [Ember Chrome Extension](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi). + +## Kicking the Tires + +Examine carefully the output of the help option for the `ember` command. +``` +ember --help +``` + +## Our First App Setup + +``` +ember new emberNotes +cd emberNotes +ember serve +``` + +Take a look (in your editor) at `app/templates/application.hbs`. Go ahead and +change the `h2` element to "Welcome to Notes" or something similar. The +`{{outlet}}` tag is where our content will end up. + +# Generating More + +Browse to the [List of Ember Generators](https://github.com/cavneb/loom-generators-ember-appkit/tree/master/loom/generators). + +``` +ember g model note +ember g controller notes +ember g template note +ember g route index +``` + +Edit `app/routes/index.js`: + +1. Include a model attribute of the route, that points to: +2. A dummy data variable + +```javascript +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function() { + return data.result; + } +}); + +var data = { + "status": "ok", + "result": [ + { noteBody: "Twilight Sparkle"}, + { noteBody: "Applejack"}, + { noteBody: "Fluttershy"}, + { noteBody: "Rarity"}, + { noteBody: "Pinkie Pie"}, + { nodeBody: "Rainbow Dash"} + ] +}; + +``` + +And, in `app/templates/index.hbs`: + +``` +{{#each this}} +
Hello, my pony name is: {{name}}, and I think Ember is great!
+Angular has a lot of advantages over other client side Javascript frameworks. +Here are a handful of reasons that when building an app I turn to Angular first.
+It's possible to take almost any portion of Angular and use it on its own. +For instance, my front end may not need a full router with the ability to access +a REST api. Maybe I just need a single two way data binding on a single view +and don't want the overhead of a full framework. This is a possiblity with +Angular but not with frameworks like Ember.
+Angular was built from the ground with testing in mind. Angular's use of +dependency injection makes it easy to replace any functionality with a mock +or stub. This makes it easier to test a very specific piece of the application +and not the entire framework or app.
+The other advantage of Angular's dependecy injection is the ability to +replace any piece of the framework. Any moving piece of Angular can be +replaced simply by dependency injecting a custom peice of code or a third +party piece of code instead of the pieces that ship with Angular.
+The learning curve on Angular is very gentle. A programmer can start out +with just a handful of built in directives and some simple controller functions +and add on the more advanced bits as needed. Unlike frameworks that require conventions +in order to operate, Angular lets a developer pick his or her own conventions. +This can potentially be both a curse and a blessing but it jives well with +my particular learning and coding style. Also, Angular does not require a seperate +data model but can use plain old Javascript objects. This means that data +retrieved from an external source (such as a server) does not have to be converted +to an Angular only model structure before Angular can start using it +and there are no new data models and functionality to learn.
+Despite Angular's flixible and customizable nature, all of the pieces work +well with each other. A controller can easily access the view, a view can +easily save new data to the model through the controller and routing is as simple as specifying +a view, a controller and a url. The only part that has to be explicitly defined +by the programmer is the interaction with the server/REST api. I actually +view this as an advantage because not all problems lend themselves well to the +GET/POST/PUT/DELETE pattern for a single resource. I often find myself needing +just a single end point for a resource and Angular allows me to make that +decision.
+For me, Angular is a framework that places an emphasis on modularity, an +iterative learning approach and fine grain testing. As a Node developer I feel +at home while working with Angular. That said, there are always trade offs and +the Rails developer in me wants conventions and structure but I prefer being +able to establish them for myself rather than have someone else decide for me.
+ + +The easiest way to get started with Angular is to use a Yeoman generator. The +code and doccumentation for the Angular generator can be found Here. +While I usually don't reccommend using generators it is a good way to see how the +moving pieces of Angular interact without having to worry about the file structure +or naming conventions of the app. If you don't have npm and node installed look for +instructions for your operating system on their website
+The first step is to install Yeoman and the angular generator globally, along with
+bower and the grunt cli which are used for front end dependencies and build tools respectively:
+npm install -g yo generator-angular bower grunt-cli. Next create an empty directory and
+change into it. Then run yo angular, which will ask you a series of questions.
+When first starting out I would answer no to using sass/compass unless you already
+have it installed and have used it before. Answer no the bootstrap, primarily because
+Angular already adds a lot of classes and html bits and having the bootstrap classes
+in there as well will only make it more difficult to learn. The last question
+asks what other angular parts should be installed, get rid of everything except routes.
The generator will then create a full working Angular app. To run the app, use the command
+grunt serve which will build all of the assets, start the app and if possible will open the
+index page in your browser.
There are three major moving parts to pay attention to in this generated app. First,
+there's the app, located in app/scripts/app.js. This file contains the base level app
+and the routing information using $routeProvider. Each .when statement contains the
+url to watch for, and the view and controller to render when a user navigates to that
+url. The next parts to look for are the views and controllers. The view are located
+app/views and the controllers are located in app/controllers. To create a new view use the
+command yo angular:view <name of your view> this will create a .html file in app/views
+with the specified name. To create a new controller just use yo angular:controller <name of controller>.
+This will create a basic controller in app/controllers with the specified name.
These are the minimum three pieces needed to create a single page web application. A router, some views +and some controllers. Angular doesn't have a specific model construct as it just uses +plain old javascript objects. Beyond these basics Anuglar has a host of features +designed to increase the modularity and reusability of your code. The most important +of these features include filters for transforming data or information in views (such as displaying 5.2 as $5.20). +There are services for performing tasks across controllers, views and any other place that +needs some reusable code. Finally, there are directives, which allow programmers to write portable +code that interacts directly with the DOM. Documentation on each of these mentioned +pieces of code can be found at the official Angular website +and there are Yeoman generators for each.
+That should get you started with Angular, obviously this doesn't inlcude everything or how +to actually build full web application. Part 3 will be on how to find more information about +Angular and how to stay up to date on the latest Angular trends and developments.
+ + +Getting angular to talk to the basic/jwt authentication scheme described
+here is fairly simple. It essentially involves two parts: first,
+getting the JSON Web Token from the signin route and two, adding the jwt
+response as a browser cookie. Assuming a bower/browserify setup, run the following
+from the root of the app directory. bower install angular angular-route angular-base64 angular-cookies --save
The angular package provides the angular base, the angular route provides +angular routing, the angular-base64 allows base64 encryption of the basic auth +auth(which passport expects) and angular-cookies allows browser cookies to be set.
+This app is oging to assume that all the angular client side code will reside in +/app and will be run through browserify into a /dist or /build directory. The app +folder will have the following folders: views, js, js/controllers and possibly a +bower_components folder as well. All of the controllers and other components +will be drawn into a file named app.js in app/js. The browserify 'compiled' file will be +called client.js and this will included into an index.html that gets copied over +by the grunt build task. The index.js file should look something like this:
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>Notes Angular</title>
+ </head>
+ <body>
+ <div ng-app="notesApp">
+ <div ng-view></div>
+ </div>
+ <script src="client.js"></script>
+ </body>
+</html>
+
+The index.html is pretty simple, all it does is load the client.js file and provide a +a div for the app and one for the view. The app.js that browserify uses to create the +client.js will look like this:
+require('angular/angular');
+require('angular-route');
+require('angular-cookies');
+require('angular-base64');
+
+var notesApp = angular.module('notesApp', ['ngRoute', 'base64', 'ngCookies']);
+
+require('./controllers/notesController')(notesApp);
+require('./controllers/usersController')(notesApp);
+
+notesApp.config(['$routeProvider', function($routeProvider) {
+ $routeProvider
+ .when('/notes', {
+ templateUrl: 'views/notes.html',
+ controller: 'NotesController'
+ })
+ .when('/signin', {
+ templateUrl: 'views/signin.html',
+ controller: 'SigninController'
+ })
+ .otherwise({
+ redirectTo: '/signin'
+ });
+}]);
+
+This code won't actually run as is, the controllers and the view have yet to be added but +this is the overall structure of the app. It creates our notesApp object and then passes +the notesApp object to the controller files to add the users and notes controllers. Then +the /notes and /signin route are added to the notesApp with signin as the default.
+The next step is to create the signin controller and view. First the view which should be located +in app/views/signin.html and should look something like this:
+<div ng-controller="SigninController">
+ <h3>Sign In</h3>
+ <label>Email</label>
+ <input type="text" ng-model="user.email">
+ <label>Password</label?
+ <input type="password" ng-model="user.password">
+ <button ng-click="signin()">Sign In</button>
+</div>
+
+This view is bound to the SigninController controller. This view contains an email field and +a password field and a button that when clicked runs the signin method of the controller. +Pretty simple as far as views go. Now, it's time to create the SigninController, which +will be located at app/controllers/signinController.js and should contain the following code:
+module.exports = function(app) {
+ app.controller('SigninController', function($scope, $http, $base64, $cookies, $location) {
+ $scope.signin = function() {
+ $http.defaults.headers.common['Authentication'] = 'Basic ' + $base64.encode($scope.user.email + ':' + $scope.user.password);
+ $http({
+ method: 'GET',
+ url: '/api/v1/users',
+ }).success(function(data) {
+ $cookies.jwt = data.jwt;
+ $location.path('/notes');
+ }).error(function(data) {
+ console.log(data):
+ });
+ }
+ });
+}
+
+This controller really only contains the singin function which has two parts. First the controller +sets the authentication header for the request. Of note is that passport basic authentication actually +expects the basic auth to be base64 encoded. While this doesn't actually provide a secure means of +transportation and isn't a replacement for https, it does prevent the password from being transported +in the clear. The next portion of the signin function sends the request to the singin url and +on success will set the response jwt to a browser cookie using the $cookie library. After setting +the cookie it redirects to the /notes path. Which means, that the next file to create is the notesView.html +in app/views/notesView.html
+<div ng-controller="NotesController">
+ <h3>Notes</h3>
+ <div ng-repeat="note in notes">
+ <p>{{note.noteBody}}</p>
+ </div>
+</div>
+
+The notes view is simple, all it does is display the note body for each note. The next step is to +add the note controller in app/controllers/notesController.js
+module.exports = function(app) {
+ app.controller('NotesController', function($scope, $http, $cookies) {
+ $http.defaults.headers.common['jwt'] = $cookies.jwt;
+ $http({
+ method: 'GET',
+ url: '/api/v1/notes'
+ }).success(function(data) {
+ $scope.notes = data;
+ }).error(function(data) {
+ console.log(data);
+ });
+ });
+}
+
+This controller once again sets a header but this time it is the JWT that was received after successfully
+authenticating and saved to a browser cookie. This does assume that the server side api can read the
+jwt from the headers and not the body of the request. Which should be as simple as changing the line
+in jwtauth from var token = req.body.jwt_token to var token = (req.body && req.body.jwt_token) || req.headers.jwt
+and then it should authenticate and send back an array of notes.
Many modern web applications have an architecture that involves a client side +Javascript web app talking to serverside persistence layer over JSON.
+Authentiation over a JSON api is a tricky subject, primarily due to its stateless nature.
+Although http is technically stateless, the browser is capable of storing +cookies that can be checked by a webserver when requests are made to it. But +with a JSON api the server does not have direct access to the browser. Each +request has no knowledge of any of the previous requests, meaning that each +request that needs to be authenticated needs to transmit its credentials with +the request. The eventual goal is to have a piece of information that can be +easily passed to every request that tells nothing about the user if passed in +the clear. Most APIs (such as Twitter or Facebook) use a public/private key that +have to be created on their site in order to use their api but asking a user to +do this in order to use a website would be ridiculous. The goal is to have a token +that will be created by the server and passed back to the client that can then +sent with every request that needs to be authenticated. Eventually this well be +JSON Web Token that contains an encrypted set of information that allows +the server to find the user and all their attributes. However, the server +first needs to determine if the should sent the token the client requesting it, +which will require a user name and password.
+I have found two easy ways to implement this with passport, HTTP Basic and Digest. +The basic method of authentication sends the username and password over in +plain text which is less than ideal but digest request that the password be +stored in plain text in the server's database which is even less ideal. +Considering how easy it is to use HTTPS using node and frequently servers +seem to get broken into my personal preference is to use http basic over a +secured connection. During development the server will be using a self signed +certificate but in production this would need be replaced with actual ssl +cert to avoid scary warnings in the browser. Instructions on how to generate +a certificate can be found here.
+The first step to authentication a node server with JSON api is to create a +node server with a JSON api. Create a new repository with a package.json file +that looks something like this.
+{
+ "name" : "awesome-json-api",
+ "description" : "my super awesome json api",
+ "version" : "0.0.1",
+ "dependencies" : {
+ "express" : "^4.x",
+ "passport" : "^0.2",
+ "passport-http" : "^0.2"
+ "mongoose" : "^3.8",
+ "bcrypt" : "latest",
+ "jwt-simple" : "^0.2",
+ "moment" : "^2.7"
+ }
+}
+
+In our package.json file we're including express 4, passport for general passportyness,
+passport-http which provides the http-basic authentication mongoose for saving users to
+the database and bcrypt for encrypting the passwords that will be saved in the database.
+Make sure to run npm install from the root directory as well as generate a self signed
+ssl cert and key and place them in a folder called config. Now create a server.js file that looks
+something like this.
var express = require('express');
+var passport = require('passport');
+var mongoose = require('mongoose');
+var https = require('https');
+var fs = require('fs');
+
+var app = express();
+
+var options = {
+ key: fs.readFileSync('config/key.pem'):
+ cert: fs.readFileSync('config.cert.pem'):
+};
+
+app.get('/', function(req, res) {
+ res.json({'msg' : 'hello world!'});
+});
+
+var server = https.createServer(options, app);
+server.listen(process.env.PORT || 3000, function() {
+ console.log('server running on port: ' + process.env.PORT || 3000);
+});
+
+This server.js file pulls in the self signed certificate and key and creates a hello world +https server based on those. The current version of this file also pulls in all of the libraries +that will eventually be needed for authentication. The next step in the process is going to be +the creation of a User model. This particular model comes primarily from the authentication +setup described on the scotch.io site. +the method of authentication there is pretty awesome but it doesn't work over a JSON api as +it requires both access to the browser through session cookies and uses redirects for success/failure. +Create a directory called called models from the project root and add the following User.js file to that +directory.
+//models/User.js
+
+var mongoose = require('mongoose');
+var bcrypt = require('bcrypt');
+var jwt = reuqire('jwt');
+var moment = require('moment');
+
+var userSchema = mongoose.Schema({
+ basic: {
+ email: String,
+ password: String
+ }
+});
+
+userSchema.methods.generateHash = function(password) {
+ return bcrypt.hashSync(password, bcrypt.genSaltSync(8), null);
+};
+
+userSchema.methods.checkHash = function(password) {
+ return bcrypt.compareSync(password, this.basic.password);
+};
+
+userSchema.methods.createJWTToken = function(app) {
+ var expires = moment().add('days', 7).valueOf();
+ var that = this;
+ var token = jwt.encode({
+ iss: that._id,
+ expires: expires
+ }, app.get('jwtTokenSecret'));
+ return token
+};
+
+module.exports = mongoose.model('User', userSchema);
+
+This user model contains three methods, one that will run an incoming password through a one way hash +and one that will check an incoming password against a hash saved in the database. Bcrypt handles +all of details of encrypting a password and adding salt through the genSaltSync command. Keep in mind that +the higher the number passed into that function the longer it will take to save a user to the database or +check if a user's credentials are correct. It's a synchronous function so this is less than ideal. +The third method is used to generate a JSON Web Token after a user's credentials have been successfully +authenticated, I will go over this function once we get to the JWT portion of this tutorial.
+Now that the user model has been created, passport needs to know how to use it to authenticate requests. +I like to keep all of my authentication related js files in lib/authentication/, create both those folders +and add the following passportBasic.js file to it.
+//lib/authentication/passportBasic.js
+var BasicStrategy = require('passport-http').BasicStrategy;
+var User = require('../../models/User');
+
+module.exports = function(passport) {
+ passport.use('basic', new BasicStrategy({
+ usernameField: 'email',
+ passwordField: 'password'
+ },
+ function(email, passord, done) {
+ User.findOne({'basic.email': 'email'}, function(err, user){
+ if(err) {
+ return done(err);
+ }
+
+ if(!user) {
+ return done(null, false);
+ }
+
+ if(!user.validPassword(password)) {
+ return done(null, false);
+ }
+
+ return done(null, user);
+ });
+ }));
+};
+
+This file essentially specifies what conditions mark a successful authentication. First we attempt to find the user +if there's a error we return the error. If the user doesn't exist we return false for authentication. If the +password doesn't authenticate we return false. If the program makes it past those conditions it means it found a +valid user and we return the user to passport. Passport knows that if false is returned from this function it should send +a 401 unauthorized to the client making the request. Something to keep in mind, this passport definition is only +going to be used when a user signs in. When a user is created it won't need to go through an authentication process +and every other request should be authenticated with the JWT that will be generated upon a successful sign in. +The next step is to create the sign up/sign in routes for the application. Create a routes directory from the root directory +and add the following userRoutes.js file to that directory.
+var user = require('../models/userRoutes');
+
+module.exports = function(app, passport) {
+ app.post('/api/v1/users', function(req, res) {
+ User.findOne({'basic.email': req.body.email}, function(err, user) {
+ if(err) {
+ return res.json(500, err);
+ }
+
+ if(user) {
+ return res.json(401, {'msg' : 'email in use'}):
+ }
+
+ var newUser = new User();
+ newUser.basic.email = req.body.email;
+ newUser.basic.password = newUser.generateHash(req.body.password);
+
+ newUser.save(function(err, resUser) {
+ if(err) {
+ return res.json(500, err);
+ }
+
+ return res.json(resUser):
+ });
+ });
+ });
+
+ app.get('api/v1/users', passport.authenticate('basic', {session: false}), function(req, res) {
+ return res.json({'jwt': req.user.createToken(app)});
+ });
+};
+
+The first function creates a user on a post request and saves it to the database if there is no other user with +the specified email after hashing the incoming password. With the login route(a get request /api/v1/users) +the request will go through the authentication we specified with passport and if successful it will run +the function that has been specified in the get route. The last step to hooking up basic authentication is to +add it to the server.js file.
+var express = require('express');
+var passport = require('passport');
+var mongoose = require('mongoose');
+var https = require('https');
+var fs = require('fs');
+
+var app = express();
+
+app.set('jwtTokenSecret', process.env.JWT_SECRET || 'changemechangemechangeme');
+require('./lib/authentication/pasportBasic')(passport);
+require('./routes/userRoutes')(app, passport);
+
+var options = {
+ key: fs.readFileSync('config/key.pem'):
+ cert: fs.readFileSync('config.cert.pem'):
+};
+
+app.get('/', function(req, res) {
+ res.json({'msg' : 'hello world!'});
+});
+
+var server = https.createServer(options, app);
+server.listen(process.env.PORT || 3000, function() {
+ console.log('server running on port: ' + process.env.PORT || 3000);
+});
+
+Those two require lines are all it takes to add the authentication to passport and then add the signup/signin routes +to the app. This new server.js also sets the jwtTokenSecret that is used to encrypt the JSON web tokens that the +User model generates.
+There is only one more piece to add to this application to be able to authenticate with JSON Web Tokens, the actual +middleware that checks if the token/user on the incoming request is valid. Create a jwtAuth.js file in lib/authentication +with the following code:
+//lib/authentication/jwtAuth.js
+
+var User = require('../../models/User');
+var jwt = require('jwt-simple');
+
+module.exports = function(app) {
+ var jwtauth = {};
+
+ jwtauth.auth = function(req, res, next) {
+ var token = req.body.jwt;
+
+ if(!token) {
+ return res.send(401, {'msg': 'no token specified'});
+ }
+
+ var decoded = jwt.decode(token, app.get('jwtTokenSecret'));
+ User.findOne({'_id': decoded.iss}, function(err, user) {
+ if(err) {
+ return res.send(500, err);
+ }
+
+ if(!user) {
+ return res.send(401);
+ }
+
+ req.user = user;
+ return next();
+ });
+ };
+};
+
+In this function we create a jwtauth object with an auth function. This is due to the need to use a function as middleware +which request a specific format a specific format but the app needs to passed in to the exported function in order to access the token secret. +This function attempts to decode the token if one is specified. After the token is decoded this function attempts to find +a user with the specified id and if one exists it calls the next function. If any of these conditions are not met the +app sends a 401. This function can be placed within the call chain of a route. For instance to use it in our server.js +hello world route we just add it before the function that sends hello world.
+var express = require('express');
+var passport = require('passport');
+var mongoose = require('mongoose');
+var https = require('https');
+var fs = require('fs');
+
+var app = express();
+
+var jwtauth = require('./lib/authentication/jwtAuth')(app);
+
+app.set('jwtTokenSecret', process.env.JWT_SECRET || 'changemechangemechangeme');
+require('./lib/authentication/pasportBasic')(passport);
+require('./routes/userRoutes')(app, passport);
+
+var options = {
+ key: fs.readFileSync('config/key.pem'):
+ cert: fs.readFileSync('config.cert.pem'):
+};
+
+app.get('/', jwtauth.auth, function(req, res) {
+ res.json({'msg' : 'hello world!'});
+});
+
+var server = https.createServer(options, app);
+server.listen(process.env.PORT || 3000, function() {
+ console.log('server running on port: ' + process.env.PORT || 3000);
+});
+
+To use the jwt authentication middleware just require it into the app and place it in the function chain for a route.
+ + +Backbone is a JavaScript library used for making Single Page Applications (SPAs)
+jQuery is awesome. Underscore is awesome. But Backbone is even better because it combines both, and gives your web app structure.
+SPAs have these benefits (over server generated pages):
+Better User Experience. Code running in the browser is more responsive than waiting for a server generated page.
+Models "get your truth out of the DOM". There should only ever be a single source of truth for any given item of information in your code.
+Why do we still teach Backbone over newer, more trendy frameworks?
+Because it's a library, not a framework (smaller)
+Because it's used at scale: Walmart.com. Enough said.
+Because you learn more JavaScript by using it than Angular or Ember
+Backbone is used at other large companies, too:
+Backbone uses the MVC design pattern:
+
The final step in our backbone application is to make a CRUD interface +for our Backbone app. CRUD stands for Create, Read, Update, Destroy +and represents the basic functionality you need to have a working app. +In the case of our Notes application we need to be able to create +a new note, see that note, edit that note and remove that note from our +notes list. We already have this CRUD setup on our express app, now +we just a way for the average user to be able to do the same thing.
+We already have two different methods of 'reading' our notes. Both the +simple view and the notes collection view. The next step is going to be +the creation of new notes. There are three main pieces to this functionality. +First, we need a template that contains a form for the note. Then, we need a +view to be able to render the form. Finally, we need an action can get +the data from the form and save it to our database using the rest api.
+Create a NoteForm.hbs file under app/js/notes/templates with the following
+code:
<form class="noteForm" action="">
+ <input type="text" name="noteBody" placeholder="new note"></input>
+ <button>Submit</button>
+</form>
+
+All this template contains is a text form for our note which really
+is just the noteBody. The next step is to create the view to contain
+this noteBody, which will contain the actual logic for creating the
+note and saving it. Add a file called NoteFormView.js to app/js/notes/views
+with the following code:
// app/js/notes/views/NoteFormView.js
+
+'use strict';
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+
+module.exports = Backbone.View.extend({
+ tagName: 'div'
+
+ intialize: function() {
+ this.render();
+ },
+
+ events: {
+ submit: "save"
+ },
+
+ render: function() {
+ var template = require('../templates/NoteForm.hbs');
+ this.$el.html(template(this.model.toJSON()));
+ return this;
+ },
+
+ save: function(e) {
+ e.preventDefault();
+ var newNoteBody = this.$('input[name=noteBody]').val();
+ this.model.save({noteBody: newNoteBody}, {
+ success: function() {
+ Backbone.history.navigate('index', {trigger: true});
+ },
+ error: function() {
+ console.log('could not save note');
+ }
+ });
+ }
+});
+
+There is a lot of new functionality in this view. The first thing to notice is +the events object, which is a lot like the routes object in our router. The left +side of each entry is the action that we're listening for and the right side is +the function to call when that action happens. In our case we're waiting for the +notes form to be submitting and when that happens we call the save function. +Notice that we don't require note model into this view. Instead we rely on the +router to place the note model into our view as the model parameter and use the +mode.save function with our new data specified in the first object argument +We could instead do something like this:
+save: function(e) {
+ var newNoteBody = this.$('input[name=noteBody]').val();
+ var newNote = new Note();
+ newNote.set('noteBody', newNoteBody);
+ newNote.save({}, {
+ success: function() {
+ Backbone.history.navigate('index', {trigger: true});
+ },
+ error: function() {
+ console.log('could not save note');
+ }
+ });
+}
+
+And that would accomplish the same task but it would require that we pull in the
+Note model at the top of our view code. On a successful save you'll notice
+another new method Backbone.history.navigate('index', {trigger: true})
+which will send us to the index action of our router. The {trigger: true}
+options tells navigate to go to that page now.
The main benefit of using the generic model.save form rather than creating a new model +in our view and setting the parameters is that we can use the same functionality for +updating our note. Instead of passing a new not into the model in the router, we can just pass +a preexisting model. The next step, it would seem, is to exit our notes router.
+// NotesRouter.js
+
+'use strict';
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+var Note = require('../models/Note');
+var SimpleNoteView = require('../views/SimpleView');
+var NotesCollection = require('../collections/NotesCollection');
+var NotesCollectionView = require('../views/NotesCollectionView');
+var NoteFormView = require('../views/NoteFormView');
+
+module.exports = Backbone.Router.extend({
+ routes: {
+ "notes": "index",
+ "notes/new": "create",
+ "notes/edit/:id": "update"
+ },
+
+ index: function() {
+ var self = this;
+ this.notes = new NotesCollection();
+ this.notes.fetch();
+ this.notesView = new NotesCollectionView({collection: self.notes});
+ this.notesView.render();
+ $('#content').html(self.notesView.el);
+ },
+
+ create: function() {
+ var note = new Note();
+ var noteFormView = new NoteFormView({model: note});
+ $('#content').html(noteFormView.el);
+ },
+
+ update: function(id) {
+ var note = new Note({'_id': 'id'});
+ var noteFormView = new NoteFormView({model: note});
+ note.fetch({
+ success: function() {
+ noteFormView.render();
+ $('#content').html(noteFormView.el);
+ },
+ error: function() {
+ cosole.log('couldn't find note');
+ Backbone.history.navigate('index', {trigger: true});
+ }
+ })
+ }
+});
+
+Notice in the :id in the update route for, this tells backbone that any text
+following the notes/edit should be saved into the id variable which you'll notice
+is a parameter for the update function. We then use this variable to find the note
+that we're looking for and send it in as the model for the form model. If we find
+the model we render the form and set our content to that view. If not, we got back
+to the index route.
Before we create links to all of these new routes we need to create a delete route. +We can actually do this without creating a new view and just place it as an action +in our router.
+// NotesRouter.js
+
+'use strict';
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+
+var Note = require('../models/Note');
+var SimpleNoteView = require('../views/SimpleView');
+var NotesCollection = require('../collections/NotesCollection');
+var NotesCollectionView = require('../views/NotesCollectionView');
+var NoteFormView = require('../views/NoteFormView');
+
+module.exports = Backbone.Router.extend({
+ routes: {
+ "notes": "index",
+ "notes/new": "create",
+ "notes/edit/:id": "update",
+ "notes/delete/:id": "destroy"
+ },
+
+ index: function() {
+ var self = this;
+ this.notes = new NotesCollection();
+ this.notes.fetch();
+ this.notesView = new NotesCollectionView({collection: self.notes});
+ this.notesView.render();
+ $('#content').html(self.notesView.el);
+ },
+
+ create: function() {
+ var note = new Note();
+ var noteFormView = new NoteFormView({model: note});
+ $('#content').html(noteFormView.el);
+ },
+
+ update: function(id) {
+ var note = new Note({'_id': id});
+ var noteFormView = new NoteFormView({model: note});
+ note.fetch({
+ success: function() {
+ noteFormView.render();
+ $('#content').html(noteFormView.el);
+ },
+ error: function() {
+ cosole.log('couldn't find note');
+ Backbone.history.navigate('index', {trigger: true});
+ }
+ })
+ },
+
+ destroy: function(id) {
+ var note = new Note({'_id': id});
+ note.destroy({
+ success: function() {
+ console.log('note deleted');
+ },
+ error: function() {
+ console.log('note could not be deleted');
+ }
+ });
+ }
+});
+
+All we do is create a new not with the id of the note that we're trying to delete +and then calling the destroy function on that note. Backbone takes care of sending +the proper request to our rest api. We don't need to add the redirect as this action +won't have a view rendered for it, so we should already be on the index page.
+Now we need to add link to all of these functions. We really only have to do this +in two places: the note simple view and the collection view. We'll add the update +and destroy actions to the simple view and the new action to the collection view. +Update the simple view template to look like this:
+<p>{{noteBody}}</p>
+<a href="{{'#/notes/edit/' + _id}}">Edit Note</a>
+<a href="{{'#/notes/delete/' + _id}}">Delete Note</a>
+
+We use href link in this case as I find them easier to work with than the backbone +navigate feature. Although if you change your routing they will all have to be +update, tradeoffs. Next update the collection view to look like this:
+<a href="#/notes/new">New Note</a>
+<h3>Notes:</h3>
+<div class="notesCollection"></div>
+
+With that, we should now have a working crud interface that allows us to successfully +CRUD notes.
+ + +Backbone collections are a container for multiple Backbone models. +The represent the primary way that we will be communicating with our +Node/Express REST api. Create a collection directory under app/js/notes +and then create a NotesCollection.js file with the following code:
+var backbone = require('backbone');
+var Note = require('../models/Note');
+
+module.exports = Backbone.Collection.extend({
+ model: Note,
+ url: 'api/v1_0/notes'
+});
+
+The single Note model has to be required into the collection and set to +the model parameter. This lets Backbone know what the collection is +comprised of. The url parameter tells Backbone where to make REST +requests to in order to retrieve the data that we need. The collection +model has a fetch method that actually goes and retrieves the data +from our REST api. To use it, modify your client.js to look something +like this:
+var Note = require('./notes/models/Note');
+var NotesCollection = require('./notes/collections/NotesCollection');
+var SimpleView = require('./notes/views/SimpleView');
+
+var notes = new NotesColleciton();
+notes.fetch({
+ success: function() {
+ console.log(notes);
+ },
+ error: function(err) {
+ console.log(err);
+ }
+});
+
+The fetch method takes a promise that has a success parameter and an error +parameter. If you include a promise to fetch this will almost always both +of these parameters will almost always be a function that will perform an +action on success or error. Later, we will actually set up a listener to +reload our view when the data inside of our collection is updated. But +before that we need to actually have a collection view. Create a Collection.hbs +file inside of app/js/notes/templates with the following:
+<h3>Notes:</h3>
+<div class="notesCollection"></div>
+
+All we need in this template is a title that will be displayed at the top of the +page and an element to place all of our individual note views into. Now, +we need the actual view. Create a CollectionView.js file inside of app/js/notes/views +with the following code:
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+
+var Note = require('../models/Note.js');
+var NotesCollection = require('../collections/NotesCollection.js');
+var NoteView = require('../views/SimpleView.js');
+
+module.exports = Backbone.View.extend({
+ tagName: 'div',
+
+ initialize: function() {
+ this.collection.on('add', this.addNote, this);
+ this.collection.on('reset', this.addAll, this);
+ },
+
+ addNote: function(note) {
+ var noteView = new NoteView({mode: note});
+ this.$el.append(noteView.el);
+ },
+
+ addAll: function() {
+ this.collection.forEach(this.addNote);
+ },
+
+ render: function() {
+ this.addAll();
+ }
+});
+
+You will notice that the collection view extends the same backbone view as +our regular view. The only difference is the code that we put inside the +view. The initialize function actually registers two listeners on the collection +object that is passed to the view. The add listener is called when a new +model is added to the collection and the 'reset' function will be called when +a fetch is successfully called on the collection. The addNote function creates a +new view the model that passed to the function. If you remember when a single +view is created it gets rendered immediately. After the view is rendered it is +appended into our collection view. The add function does this for every note model +in the collection and all the render function does is call the add all.
+Now, we need to modify our client.js file to reflect the new collection view.
+var $ = require('jquery');
+var Notes = require('./notes/collections/NotesCollection');
+var NotesView = require('./notes/views/CollectionView');
+
+var notes = new Notes();
+var notesView = new NotesView({collection: notes});
+notesView.render();
+
+notes.fetch({
+ success: function() {
+ $('#content').append(noteView);
+ }
+});
+
+This code first create a new collection and collection view then calls fetch on +the notes collection and on success appends the view to the document. In our case this +document is index.html and after a rebuild we should see all of our notes on the page.
+ + +The most fundamental piece of Backbone is the model. The model will +define all of the data interaction for the application. It not only +communicates with the server but also will provide methods for manipulating +that data.
+All of the components of Backbone are created by using the Backbone extends
+method but before that we need to get backbone into the notes application.
+Beacause Backbone is a client side framework we're going to install it using
+bower. bower install --save backbone jquery. Jquery isn't a hard dependency
+for Backbone but it is frequenty used primarily to tell our views how to get
+their information into our html doccument, which will be covered in the views
+section.
After installing Backbone create a models direcotor under the client side app
+directory mkdir -p app/js/notes/models. Now create a Note.js file in that
+directory and add the following code.
//Note
+
+var Backbone = require('backbone');
+
+moduled.exports = Backbone.Model.extend({
+ defaults: {
+ noteBody: 'hello world'
+ }
+});
+
+This file contains a constructor for a very simple model. I like to place a +comment at the top of my model files so I have a reminder besides the file name. +All this model currently does is set a default parameter of gretting to the string +'hello world'. The next step is plug this into our client.js file so it can +actually be used in browser. Modify your cleint.js file to look something like +this:
+var Backbone = require('backbone');
+var Note = require('./js/notes/Note');
+
+var note = new Note();
+console.log(note.get('noteBody'));
+
+If you build using browserify and open this up in a browser the dev console should +have the string 'hello world' printed in it. The get and set methods are the one of +the ways that you can access properties of a backbone model. They both function in +the same way that the express app.get and app.set methods do. The get +takes the name of the parameter that you want the value of and the set method +take the name of a paramatere and a vaue to set it to. Both of these can be +also be accessed using dot notation, although this occasionally leads to unexpected +results. It's usually best to use the get and set methods when possible.
+Now, that console.log line is looking a little long and I need a flimsy excuse +to demonstrate Backbone model methods. Change your FristModel.js file to contain +something like this:
+//Note
+var Backbone = require('backbone');
+
+module.exports = Backbone.Model.extend({
+ defaults: {
+ noteBody: 'hello world'
+ },
+ displayNote: function() {
+ window.console.log(this.get('noteBody'));
+ }
+});
+
+This new code demonstrates a few new concepts, when in first layer functions in a +Backbone model this refers to the model itself, not the function. Second we can +add methods to Backbone model like we would any other javascript object. Also, +if you want to be able to call global methods like console.log you actually +have to refer to window.console.log. This is due to Backbone scoping which doesn't +give access to globals unless it's explicitly told to. In many cases you can +actually just call console.log but getting in the habbit of calling window.console.log +will save a lot of headache in the future.
+ + +Backbone is a clientside mv javascript web framework. In fact it's really the +oldest client side mv javascript framework. The initial release for backbone was +back in the ancient times of 2010. Backbone ushered in the new era of web +applications with an mv* framework that sits in the browser and communicates to a server that is primarily in charge of data persistence.
+Backbone is loosely based off of the Model/View/Controller pattern which was created by +smalltalk developers and became massively popular for web development due primarily + to the Ruby on Rails framework. Backbone and + many other frameworks like it tend to have an explicit model and view and something + of their own design that roughly approximates a controller.
+The Backbone model provides the interaction with the data of a Backbone web +application. It is the way that Backbone communicate with a server and provides +both built in and programmer defined methods for manipulating data.
+The backbone views define the way that a Backbone application displays the data +gathered from the models. This is the way that Backbone interacts directly with + the browser. The main difference between Backbone and other mv* client side +javascript frameworks is that Backbone doesn't have built in interactions between +the view and the model. All interactions have to be defined by the programmer.
+The last major component in Backbone is the router. Backbone routers define what +happens when a user navigates to a certain route. It really defines the +interactivity of the application. It acts both as a traditional router and in many +cases a controller. The backbone router will determine which models a route should +grab data from and which views should be rendered to the screen.
+Now you may be asking yourself "WTF would I want to learn Backbone when EmbAngular +has all the magics?" Well, Ember/Angular have do make it very easy to create a +single page web application but it does a lot of the interaction under the hood +and learning one doesn't really give that much insight into the other. Backbone +provides a great learning platform because it doesn't provide the programmer with +a lot of magic. Once a developer learns Backbone it makes it very easy to learn +another more complex framework.
+ + +Routers are the last backbone component that we'll look at. +Routers determine which views/controllers get loaded based +on user actions. Backbone routers tie all the other pieces together +and really define what actions a user can perform in our application.
+Create the folder app/js/notes/routers then place a NotesRouter.js
+file in that folder with the following code:
//app/js/notes/routes/NotesRouter.js
+'use strict';
+
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+var Note = require('../models/Note');
+var SimpleNoteView = require('../views/SimpleView');
+var NotesCollection = require('../collections/NotesCollection');
+var NotesCollectionView = require('../views/NotesCollectionView');
+
+module.exports = Backbone.Router.extend({
+ routes: {
+ "notes": "index"
+ },
+
+ index: function() {
+ var self = this;
+ this.notes = new NotesCollection();
+ this.notes.fetch();
+ var notesView = new NotesCollectionView({collection: self.notes});
+ notesView.render();
+ $('#content').html(notesView.el);
+ }
+});
+
+Alright, there are a lot of new concepts in this short segment of code. +The Router always has a routes parameter that actually sets up the routes +that are available to our application. This routes parameter is a json object +that takes the url to hit from our base and the name of a function to call when +that base in navigated to. In the index function we create both the notes +collection and the notes collection view and save them to the router. +We will eventually change this to occur on initialize but for now we only have +the one action. The collection view then replaces the div in our index.html +page with the id of content and we rebuild and navigate to our index page +we should see all of the notes we have saved in the database.
+Now we need to update our client.js file to reflect the addition of the +router:
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+
+var NotesRouter = require('./notes/routers/NotesRouter');
+
+var notesRouter = new NotesRouter();
+
+Backbone.history.start();
+
+You'll notice that our Backbone controller is much cleaner. All we need is
+Backbone/jquery and the router. The Backbone.history.start() line merely
+tells backbone to start routing urls. The router can also take a {pushState: true}
+parameter that will translate '/' based routing into Backbone's '#' style routing.
+We'll get into that a little more in the next section on CRUD with backbone.
The next important component in a backbone app is the views/templates.
+These dictate how the data from the models are actually displayed.
+Each backbone component is actually composed of two different pieces.
+First, the template, which is usually a special kind of html file that
+allows you to run javascript code in it. Second, the actual view object
+that tells backbone how to actually render that html template. So the
+first step is going to be to make directories to contain both our views
+and our templates mkdir app/js/notes/templates && mkdir app/js/notes/views.
Next we have to actually install the templating engine and tell browserify
+how to talk to it. I prefer handlebars
+for my templating engine. It's easy to understand and surprisingly powerful.
+We're going to actually install the browserify transform hbsfy which is a browserify
+plugin used to render hbs templates. npm install --save-dev hbsfy. Then change
+your browserify task in your Gruntfile.js to look like this:
browserify: {
+ dist: {
+ files: 'app/**/*.js',
+ dest: 'dist/client.js',
+ options: {
+ transform: ['debowerify', 'hbsfy']
+ }
+ }
+}
+
+This tells browserify to run the appropriate files through hbsfy which processes +the handlebars specific lines. For our Note the template is going to be very +simple. Create a file called simpleView.hbs in app/js/notes/templates that +contains the following:
+<h1>{{noteBody}}</h1>
+
+The handlebars templates contain html code with javascript executed in {{}} blocks. +In our case we just want to display the noteBody of the model we are currently +rendering.
+Next create a file named SimpleView.js in app/js/notes/views/ with the +following code:
+var Backbone = require('backbone');
+var $ = require('jquery');
+Backbone.$ = $;
+
+module.exports = Backbone.View.extend({
+ tagName: 'div',
+
+ initialize: function() {
+ this.render();
+ },
+
+ render: function() {
+ var template = require('../templates/simpleTemplate.hbs');
+ this.$el.html(template(this.model.attributes));
+ return this;
+ }
+);
+
+Alright, there's quite a bit going on in this file. First, we pull in backbone +and jquery then we have to set backbone's internal reference to jquery to the +jquery library we pulled in. This is something specific to browserify and it +isn't necessary with other backbone implementations. Inside of our view object +we first have a tagName. This is the tag that our entire view will be wrapped it. +It could easily be a li element or a section or really any html tag that we want. +For simplicity, I have chosen a div tag. Next, the initialize function gets called +whenever a new instance of this view is created. For this view we really only want +to render the view internally, so we call the render function. In the render +function we first pull in the template that we created earlier and set it +to a variable named(surprise) template. Often you will see this template saved to +a parameter of the view object rather than a variable in the render function but +this pattern doesn't work with browserify. The next line is the real meat of the +view. Each view has an el element that contains all of the html for the view. The +$el lets us take advantage of jQuery functions such as the .html function. Whenever +we render something to the DOM this is the element we use to do it. In this case +we're passing the attributes of our model to the template we defined and rendering +it as html. The last step is to return the copy of the view that we're currently +working on. This updates the reference to the current view after we're done +manipulating it.
+After we create our view the next step is to actually render it to the dom. First +add the following line in the body tag of index.html(make sure you edit the one in +app and not the one in dist).
+<div id="backbone-content"></div>
+
+Next edit your client.js file to look like this:
+var $ = require('jquery');
+var Note = require('./notes/models/Note');
+var SimpleView = require('./notes/views/SimpleView');
+
+var note = new Note();
+var simpleView = new SimpleView({model: Note});
+
+$('#backbone-content').append(simpleView.el);
+
+Now if we build this and open it in the browser we should see 'hello world' in large +friendly letters(friendliness may vary). Notice that when we create the view that +we pass our instance note to it as a model parameter. This is so we can +reference this.model from within the view. When our view is created it automatically +renders it as defined in the initialize function and then we can just append it +to our backbone-content div and it'll be loaded in the dom.
+Well, that's it on views for now.
+ + +Acceptance testing is also known as "Outside-in", or "black-box" testing. It +tests a system just like a web browser does. Except, instead of a person clicking +on a web browser, a "headless" browser operates in the command line, a bit more +behind the scenes.
+
There are many options for acceptance testing, but we will be using one called +CasperJS.
+Let's just test to see if the home page is loading o.k., and that the title tag
+and H1 tags are what we expect. Here's the code, it goes in
+test/acceptance/home_page_test.js:
BTW, if you want to make a new directory multiple levels deep, you can use:
+mkdir -p test/acceptance from your project's home directory.
'use strict';
+/*global casper*/
+
+casper.test.begin('home page', 3, function suite(test) {
+
+ casper.start('http://localhost:3000/', function() {
+ test.assertHttpStatus(200);
+ });
+
+ casper.then(function(){
+ test.assertTitle('Hello World Express', 'title is Hello World Express');
+ });
+
+ casper.then(function() {
+ test.assertSelectorHasText('h1','Hello World');
+ });
+
+ casper.run(function(){
+ test.done();
+ });
+
+});
+
+So, we have three assertions that we expect to be true. The status should be 200 +OK, the title should be "Hello World Express", and the h1 should include the text +"Hello World".
+To run our acceptance test we'll need to make sure to start the express server. +We will use a grunt plugin to automate this.
+You can do this on your personal portfolio site, or your hello world express code.
+From the command line:
+npm install grunt-express-server --save-dev
And in Gruntfile.js add:
+grunt.loadNpmTasks('grunt-express-server');
Install Casper and PhantomJS globally, and Grunt integration locally
+npm install -g phantomjs casperjs
+npm install grunt-casper --save-dev
+npm install grunt-express-server --save-dev
+Edit your Gruntfile.js to include tasks like these below:
'use strict';
+module.exports = function(grunt) {
+
+ grunt.loadNpmTasks('grunt-contrib-jshint');
+ grunt.loadNpmTasks('grunt-express-server');
+ grunt.loadNpmTasks('grunt-casper');
+
+ grunt.initConfig({
+ express: {
+ options: {
+ // Override defaults here
+ },
+ dev: {
+ options: {
+ script: 'server.js'
+ }
+ },
+ prod: {
+ options: {
+ script: 'server.js',
+ node_env: 'production'
+ }
+ },
+ test: {
+ options: {
+ script: 'server.js'
+ }
+ }
+ },
+ casper: {
+ acceptance : {
+ options : {
+ test : true,
+ },
+ files : {
+ 'test/acceptance/casper-results.xml' : ['test/acceptance/*_test.js']
+ }
+ }
+ }
+ });
+
+ grunt.registerTask('server', [ 'jshint', 'express:dev' ]);
+ grunt.registerTask('test',['express:dev','casper']);
+ grunt.registerTask('default', ['jshint', 'test']);
+
+};
+
+server task that runs the express server after JSHint passes.test task that sets up the express server in dev mode, and then runs
+the casper tests.Now try grunt test from the command line and see what happens…
Internet Relay Chat (IRC) despite being an ancient chat protocol, is highly @@ -556,40 +1045,32 @@
There is no submission for this assignment. We'll see you on the #codefellows channel in class, and on Gitter.IM. They are very useful for sending links to everyone during class, asking questions in the evening, or just socializing.
-We also use Gitter.IM +
We also use Gitter.IM as a chatroom just for our class. Click on this button to join.
- +Asana overview and mention want ads assignment
-Show video and Talk about Agile, intro Along-the-Way project, and share task in Asana
-by Kalina Wu, Ivan Storck, and Sarah Fischer
-In our development accelerator, students are introduced to several tools and libraries to expand the abilities of their code. Kalina, one of our former JavaScript students, compiled a list of these tools and wanted to share it with other Code Fellows.
-Ivan Storck, our JavaScript Development Accelerator instructor, used Kalina's list to draft up this helpful mind map:
- -Scaffolding Tools (for starting projects)
-Build Tools (automation)
-Package Management Tools
-MVC Frameworks
-Templates
-Testing
-Servers
-Databases
-Architectural Style
-Testing
-Assertion Libraries
-Functional Programming Tools
-Have a tool you think should be on the list? Check out this article and the associated MindNode mind map (OPML) on Github. Submit a pull request and send us your suggestions to add new and popular tools!
- - -Set up your computer with the following tools:
-Latest version of Ruby (for Sass, and other tools) Node.js, PostgreSQL, -MongoDB, Redis,
-Editors: We use Atom.io or Sublime Text 3 in class, and I'm betting you already do too -(unless you rock Vim or Emacs). Sublime Text has a fully-featured, unlimited time Trial mode.
-Optional: if you are coming from an IDE like Visual Studio or Eclipse, you -may like WebStorm (trial version) better -than Sublime Text because of the autocompletion and debugging tools. It's also -cheaper for an academic license ($29 vs $79)
-And if you're a strict proponent of open source, or want to dogwood and -customize your editor in JavaScript, there are two great free editors: -Brackets and Light Table.
-Homebrew http://brew.sh Note: the instructions are at the end of the web page.
-rbenv, ruby-build, ruby 2.1.1 and the sass gem
-brew doctorbrew updatebrew install rbenv ruby-build rbenv-gem-rehashecho 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profileecho 'eval "$(rbenv init -)"' >> ~/.bash_profilerbenv install 2.1.1rbenv global 2.1.1gem install sassNode.js
-brew install nvmnvm install 0.10nvm alias default 0.10source $(brew --prefix nvm)/nvm.sh to your .bash_profile or .zshrcnpm -g install grunt-cli jshintPostgreSQL
-Pick a programmer's editor:
-MongoDB
-brew install mongodbbrew info mongobrew services start mongobrew services stop redisRedis
-brew install redisbrew info redisbrew services start redisbrew services stop redisHeroku Toolbelt
-brew install heroku-toolbeltnpm -g install grunt-cliBy testing to see if grunt works on a project we can see if you have done most
-of the setup tasks needed.
Let's just make sure your computer is set up with node and npm and can run tests.
-npm installSend a Pull Request to the class repo, with your own folder.
-Inside your folder should be a single readme.md file that contains some basic
-info about you. You should include your GitHub username, linked to your GitHub
-profile. Also link to your Twitter account, your LinkedIn page, and any other
-relevant information or online presence you'd like to share with your classmates.
I have created an example folder for myself.
- - -Use the node REPL - Read, Evaluate, Print Loop
-Simply type node from the command line.
var truth_value = false;
-process.nextTick(function() {
- console.log(truth_value)
-});
-truth_value = true;
-
-What will the output be? False or True?
-The answer is that the output will be true. Why? You might have thought -it would be false, right? It's like the statements are having out of order.
-It's because we are placing our function with conosole.log on the event queue.
- - -Express is a minimalistic web framework built on top of Node.js. Based on -Ruby's Sinatra framework it abstracts away a lot of the boiler plate -code required to get a Node web server up and running. Created by - TJ Holowaychuck Express is built -using Connect another abstraction -for creating web servers with Node. Express 3.x includes a suite of middleware -that were abstracted into their own modules with Express 4. Read more about it here
-The first step in creating an express application from scratch is to create
-a new folder with mkdir hello_express. Change into the director with cd hello_express
-and create a file with the name package.json. Inside of the file place the following:
{
- "name" : "hello-express",
- "description" : "a hello world web application written in express",
- "version" : "0.0.1",
- "dependencies" : {
- "express" : "^4.0"
- }
-}
-A package.json file is found in nearly every Node packag or application. It tells npm about our
- application. The name and description would appear in npm if we were creatin a node
-package. The version is the Semantic Versioning version
-of our application and the dependencies tell npm what packages we need in order to
-run our application. In this case the only package that we need is express. After saving
-this file run npm install from the command in our hello_express directory and npm
-will install Express and all of it's dependencies and save them into a folder called node_modules.
-Now seems like a perfect time to create a git repository for our application.
git init
-touch .gitignore
-echo "node_modules/" >> .gitignore
-git add .
-git commit -m "add package.json and .gitignore"
-First we need to create a .gitignore file. This file tells git not include our node_modules -folder in our version control. This folder can get quite large and we already have our -dependencies declared in our package.json file, so it becomes redundant. Now we need to -create a simple web server. Create a file called server.js and add the following code:
-var express = require('express');
-var http = require('http');
-
-var app = express();
-
-app.get('/', function(req, res){
- res.send('hello world!');
-});
-
-var server = http.createServer(app);
-server.listen(3000, function(){
- console.log('the server is running on port 3000');
-});
-In this file we first require the express package within our server.js file. We then require
-http which will be used to create the actual server. Then we create our app by calling the root
-express function. The app.get line is a REST
-get request to our root url that simple writes 'hello world!' to the browser. In the final section
-we create a server and start it listening on port 3000, we pass a callback that gets called
-when the server is running that simple outputs 'the server is running on port 3000' to the console.
-To start our server simply run node server.js from the command line. Then point your preferred
-browser to http://localhost:3000, you should see the text hello world!.
Now this particular server isn't especially useful or interesting but we can modify it to serve -static html pages using one of the few optional middlewares that didn't get abstracted out of -Express 4, static. Modify your server.js file to look like this:
-var express = require('express');
-var http = require('http');
-
-var app = express();
-
-app.use(express.static(__dirname + '/public'));
-
-var server = http.createServer(app);
-server.listen(3000, function() {
- console.log('the server is listening on port 3000');
-});
-Our server now serves any file located in the /public directory. The __dirname in this version of the server.js
-points to the root directory of our application. This is a node global and is available anywhere in a
-node program. Next we need to create the /public directory, run mkdir public from the console.
-Now place create an index.html file in the public directory and add the following to it:
<!doctype html>
-<html lang="en">
- <head>
- <meta charset="UTF-8"/>
- <title>Hello World Express</title>
- </head>
- <body>
- Hello World from an html document!
- </body>
-</html>
-If you close the server we had running and run node server.js again, when you browse to http://localhost:3000
-you should see the text Hello World from an html document. You can also serve up anything you place in the
-public directory, including javascript files, images, css stylesheets and other html files. Don't forget to commit
-the changes!
git add .
-git commit -m "serving static files"
-
-
- This is a simple blog made as teaching example.
-brew install nvm on Mac OS X instead of brew install node.
-See the nvm README for more details.npm install -g yo grunt-cliGrab my copy of generator-browserify (until this pull request is closed).
-npm -g install ivanoats/generator-browserify
-Generate the app skeleton
-mkdir blog && cd blog
-yo browserify
-You'll see a lot of text scroll by, and on my system I saw the last lines like this:
-grunt-sass@0.9.0 node_modules/grunt-sass
-├── async@0.2.10
-└── node-sass@0.7.0 (node-watch@0.3.4, colors@0.6.0-1, mkdirp@0.3.5, optimist@0.6.1, mocha@1.13.0)
-Your directory listing should look something like this:
-total 80
-drwxr-xr-x 13 ivan staff 442 Apr 17 12:40 .
-drwxr-xr-x 256 ivan staff 8704 Apr 17 12:36 ..
--rw-r--r-- 1 ivan staff 42 Apr 16 15:14 .bowerrc
--rw-r--r-- 1 ivan staff 214 Apr 16 15:14 .editorconfig
--rw-r--r-- 1 ivan staff 11 Apr 16 15:14 .gitattributes
--rw-r--r-- 1 ivan staff 65 Apr 16 15:14 .gitignore
--rw-r--r-- 1 ivan staff 390 Apr 16 15:14 .jshintrc
--rw-r--r-- 1 ivan staff 11094 Apr 17 12:40 Gruntfile.js
-drwxr-xr-x 7 ivan staff 238 Apr 17 12:40 app
--rw-r--r-- 1 ivan staff 213 Apr 16 15:14 bower.json
-drwxr-xr-x 2 ivan staff 68 Apr 17 12:40 dist
-drwxr-xr-x 32 ivan staff 1088 Apr 17 12:40 node_modules
--rw-r--r-- 1 ivan staff 1277 Apr 17 12:40 package.json
-Now type grunt serve to launch the app in a web browser. You should see something
-like this:

That's great but let's start with a simpler blog layout: Go to - http://foundation.zurb.com/templates.html
-and download the blog layout HTML. Put that in the body tag of app/index.html in
-your project.
You can now start customizing your blog with the following files:
-Here's what I did:
-
Go to town! This generator also includes BackboneJS so you can even make your -blog a single-page app.
-Tested Pull-Requests welcome! I will list you as a contributor.
- - -On day three, we will cover:
-28% of website traffic comes from mobile. Are you prepared?
-by Elliot Chong and Sarah Fischer
-It happens to the best of us.
-You're standing in a store, product in front of you, and you wonder what users are saying about it. You pull out your smartphone and do a quick search for the brand.
-The site has great functionality and engaging features — for a desktop. You try to check tiny boxes and navigate little menus on your 3-inch screen, cursing your thumbs for not being more nimble and promising yourself that any site you build will be responsive for smartphones.
-There is a linear relationship between the number of smartphone users and the need for responsive websites. But creating a website or application that looks good and works well on a desktop, tablet, and smartphone is tricky. Think the solution is to simply create two separate sites with optimized CSS for mobile and desktop users? Think again.
-Problem #1: User-Agent Redirects
-User-agent redirects detect the user's device and redirects from a desktop URL to one that displays and functions correctly on a mobile device, usually a subdomain at m.example.com.
-
-
-Problem #2: Two Code Bases
Two. Code. Bases. Assuming that isn't enough reason right there to abandon this duplicate-site notion, consider the additional work and coordination to update both codes.
-
-
-Problem #3: URL Sharing Between Devices
A user is so impressed with your site or product that they share it on their social network from their phone. Sweet!
-But half of their connections click the link and view it on a desktop, and the URL leads them to the mobile version of the site, which ends up looking narrow and broken on their 17-inch MacBook Pro. They're left unimpressed (and even a little put-off) and you're left with potential customers thinking your site isn't user-friendly.
-Damn.
-
-
-What about tablets?
Tablets (and the awkward middle-ground phablets — pick a side, already!) bring yet another size and user experience to consider. Some tablets come with cases that have built-in keyboards, which means they can function like a laptop. But users still want the option to use the touch screen and don't bother with keyboard add-ons.
-What's a developer to do?
-
-Responsive Web Design (RWD) conditionally modifies the layout of a webpage depending on the width of the device it's being viewed on.
Simple.
-Mozilla's resource for web developers puts it oh so nicely:
---Media queries, added in deprecated CSS3, let the presentation of content be tailored to a specific range of output devices without having to change the content itself.
-
In other words, you modify the CSS based on the browser's:
-Width / Height
-Orientation
-Media Type (Screen, TV, Braille, etc.)
-Color
-Resolution
-Aspect-Ratio
-Our website is responsive — resizing the browser changes the layout of the text and images.
-
-Applying a grid layout to your website allows it to easily transition from phone to tablet to desktop displays, depending on the user's device.
Mobile-tuned JavaScript enhances the user’s experience. Touch-optimized menus, for example, are beautifully simple and easy to use on a smartphone when implemented correctly.
-Smart responsive web design is like the stage crew at a theater production — everything is going right when you don't notice it at all.
-Where do you go from here? There are some options for transitioning your website to a responsive layout, if you're ambitious and want to get started with RWD:
-Let's get our site LIVE ON THE WEB!! This process is called deployment.
-Slides from class introducing Heroku.
-Make sure you have the Heroku Toolbelt installed.
-You can usually brew install heroku-toolbelt or sudo apt-get install heroku-toolbelt. If those don't work you may need to donwload it.
Also, if you haven't already, sign up for an account on Heroku.com.
-Use heroku login to log in to heroku from the command line.
If you're already logged in, you can use heroku auth:whoami to see who you are logged in as.
You'll want a nice name for your app instead of the random ones Heroku gives you.
-E.g. heroku create ivan-hello-world-express
You need a file to tell heroku how to launch your app.
-Edit Procfile which should be in the root directory of your project. No file extension on this file, and it needs to start with a Capital letter. The procfile is simply:
web: node server.js
-This tells heroku that to start your web server, it needs to run the command node server.js
You can use a npm package called foreman to test that your Procfile works as expected. Install this globally.
-npm install -g foreman
This will give you the nf command. Try it out.
nf --help
And, now, try starting your server via foreman.
-nf start
It should start up your server on port 5000 as a default.
-This means that your server should not have any port 'hard-coded' as a default (like 3000). Make sure your server code looks something like this:
-var server = http.createServer(app);
-app.set('port', process.env.PORT || 3000);
-
-server.listen(app.get('port'), function() {
- console.log('the server is NOW running on port', app.get('port'));
-});
-
-Make sure to commit any changes you made to your app, like adding the Procfile, etc.
-git add .
git commit -m 'preparing for heroku'
Make sure you're on the master branch or that you merge you changes back to master.
-And now, to deploy your app to the web on Heroku:
-git push heroku master
You'll see a bunch of info scroll by from Heroku, but it should look something like this:
-$ git push heroku master
-Fetching repository, done.
-Counting objects: 7, done.
-Delta compression using up to 8 threads.
-Compressing objects: 100% (3/3), done.
-Writing objects: 100% (4/4), 343 bytes | 0 bytes/s, done.
-Total 4 (delta 2), reused 0 (delta 0)
-
------> Node.js app detected
-
- PRO TIP: Specify a node version in package.json
- See https://devcenter.heroku.com/articles/nodejs-support
-
------> Defaulting to latest stable node: 0.10.28
------> Downloading and installing node
------> Restoring node_modules directory from cache
------> Pruning cached dependencies not specified in package.json
- npm WARN package.json hello-express@ No repository field.
------> Writing a custom .npmrc to circumvent npm bugs
------> Exporting config vars to environment
------> Installing dependencies
- npm WARN package.json hello-express@ No repository field.
------> Caching node_modules directory for future builds
------> Cleaning up node-gyp and npm artifacts
------> Building runtime environment
------> Discovering process types
- Procfile declares types -> web
-
------> Compressing... done, 5.3MB
------> Launching... done, v4
- http://ivan-hello-world-express.herokuapp.com/ deployed to Heroku
-
-To git@heroku.com:ivan-hello-world-express.git
- 3d47745..3f34feb master -> master
-And you can open your browser, and visit your app on the web!
- - -Credit is due to Dale Sande for preparing this material.
-Sass is an extension of CSS that adds power and elegance to the basic language. It allows you to use variables, nested rules, mixins, inline imports, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized, and get small stylesheets up and running quickly, particularly with the help of the Compass style library.
-Is Sass somewhat of a mystery to you? How does it work? Why do some say that it is better then CSS?
- - -Sass was orignally a Ruby gem, but it is also available as an npm package now. You can npm install node-sass in your projects.
Acceptance testing is also known as "Outside-in", or "black-box" testing. It -tests a system just like a web browser does. Except, instead of a person clicking -on a web browser, a "headless" browser operates in the command line, a bit more -behind the scenes.
-
There are many options for acceptance testing, but we will be using one called -CasperJS.
-Let's just test to see if the home page is loading o.k., and that the title tag
-and H1 tags are what we expect. Here's the code, it goes in
-test/acceptance/home_page_test.js:
BTW, if you want to make a new directory multiple levels deep, you can use:
-mkdir -p test/acceptance from your project's home directory.
'use strict';
-/*global casper*/
-
-casper.test.begin('home page', 3, function suite(test) {
-
- casper.start('http://localhost:3000/', function() {
- test.assertHttpStatus(200);
- });
-
- casper.then(function(){
- test.assertTitle('Hello World Express', 'title is Hello World Express');
- });
-
- casper.then(function() {
- test.assertSelectorHasText('h1','Hello World');
- });
-
- casper.run(function(){
- test.done();
- });
-
-});
-
-So, we have three assertions that we expect to be true. The status should be 200 -OK, the title should be "Hello World Express", and the h1 should include the text -"Hello World".
-To run our acceptance test we'll need to make sure to start the express server. -We will use a grunt plugin to automate this.
-You can do this on your personal portfolio site, or your hello world express code.
-From the command line:
-npm install grunt-express-server --save-dev
And in Gruntfile.js add:
-grunt.loadNpmTasks('grunt-express-server');
Install Casper and PhantomJS globally, and Grunt integration locally
-npm install -g phantomjs casperjs
-npm install grunt-casper --save-dev
-npm install grunt-express-server --save-dev
-Edit your Gruntfile.js to include tasks like these below:
'use strict';
-module.exports = function(grunt) {
-
- grunt.loadNpmTasks('grunt-contrib-jshint');
- grunt.loadNpmTasks('grunt-express-server');
- grunt.loadNpmTasks('grunt-casper');
-
- grunt.initConfig({
- express: {
- options: {
- // Override defaults here
- },
- dev: {
- options: {
- script: 'server.js'
- }
- },
- prod: {
- options: {
- script: 'server.js',
- node_env: 'production'
- }
- },
- test: {
- options: {
- script: 'server.js'
- }
- }
- },
- casper: {
- acceptance : {
- options : {
- test : true,
- },
- files : {
- 'test/acceptance/casper-results.xml' : ['test/acceptance/*_test.js']
- }
- }
- }
- });
-
- grunt.registerTask('server', [ 'jshint', 'express:dev' ]);
- grunt.registerTask('test',['express:dev','casper']);
- grunt.registerTask('default', ['jshint', 'test']);
-
-};
-
-server task that runs the express server after JSHint passes.test task that sets up the express server in dev mode, and then runs
-the casper tests.Now try grunt test from the command line and see what happens…
Use your modules, plus already existing node core modules, in the browser
@@ -538,7 +1027,7 @@Anything you want to use on the server and in the browser.

bower install does not modify package.jsonLet's modify our Hello World Express server to use Browserify and friends.
npm install -g browserify
npm install grunt-contrib-copy grunt-contrib-clean grunt-contrib-jshint grunt-contrib-watch grunt-browserify matchdep globule --save-dev
npm install grunt-contrib-copy grunt-contrib-clean grunt-contrib-connect grunt-contrib-jshint grunt-contrib-watch grunt-browserify matchdep globule --save-dev
These tools will help clean and build our files
npm install debowerify --save
You can copy this one:
'use strict';
-module.exports = function(grunt) {
+module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
@@ -585,8 +1074,8 @@ Set up the Gruntfile
jshintrc: true,
globals: {
jQuery: true,
- console: true,
- module: true
+ console: true,
+ module: true
}
},
},
@@ -636,11 +1125,11 @@ Node Static
with creating another Gruntfile task.
Using jQuery and Your Own Module with Browserify
Create a file called post.js in your src folder:
-var Post = function(title) {
+var Post = function(title) {
return {title: title};
}
-module.exports = Post;
+module.exports = Post;
This could be the very beginnings of a Post object that could be used in a blog app.
We're using module.exports to make this Post contstructor available via the CommonJS
@@ -664,33 +1153,25 @@
Using jQuery and Your
Monday, welcome back! How were the weekend readings?
@@ -546,33 +1035,25 @@We are loading you up on best practices readings for the weekend. We will practice using these strategies for the rest of the development accelerator.
@@ -555,33 +1044,25 @@Right now, two client side Javascript module loaders are duking it out to claim the title of #1 super best before the wide adoption ES6: Browserify and Require.js. So far in my Javascript adventures, learning and using Browserify has proved to be much easier. It shares the CommonJS method of module loading with Node and can automatically pull in bower components using the debowerify transform with grunt. Require boasts a lot of advantages in using the Asynchronous Module Definition(AMD) over CommonJS. This intrigued me, so I though I would wade into the odd looking module definition syntax and get Require.js up and running with Grunt and a simple static file express server.
First step, create a package.json file that looks something like this:
{
@@ -651,33 +1140,25 @@ Require.js and AMD
adapted from an original post by Ryan Tomayko
@@ -609,33 +1098,25 @@@@ -579,11 +1068,11 @@Testing NodeJS Objects on the (POJSOs)
Here's our simple Post object again:
// lib/post.js -var Post = function(title) { +var Post = function(title) { return {title: title}; } -module.exports = Post; +module.exports = Post;Great, we have a Post object constructor that can initialize an instance of a post with a title property.
@@ -593,24 +1082,24 @@Testing NodeJS Objects on the var expect = require('chai').expect, Post = require('../lib/post'); -describe('Post object tests', function() { +describe('Post object tests', function() { var post; - beforeEach(function() { + beforeEach(function() { post = new Post('A test post'); }); - describe('constructor', function() { + describe('constructor', function() { - it('post should be truthy (exists)', function() { + it('post should be truthy (exists)', function() { expect(post).to.be.ok; }); - it('post should have title property', function() { + it('post should have title property', function() { expect(post).to.have.property('title'); }); - it('post title property matches beforeEach', function() { + it('post title property matches beforeEach', function() { expect(post.title).to.equal('A test post'); }); @@ -651,26 +1140,26 @@
Install Mocha and Chai via Bower,
and
// test/browser/post_test.js -var expect = chai.expect +var expect = chai.expect; -describe('Post object tests', function() { +describe('Post object tests', function() { var post; - beforeEach(function() { + beforeEach(function() { post = new Post('A test post'); }); - describe('constructor', function() { + describe('constructor', function() { - it('post should be truthy (exists)', function() { + it('post should be truthy (exists)', function() { expect(post).to.be.ok; }); - it('post should have title property', function() { + it('post should have title property', function() { expect(post).to.have.property('title'); }); - it('post title property matches beforeEach', function() { + it('post title property matches beforeEach', function() { expect(post.title).to.equal('A test post'); }); @@ -680,40 +1169,32 @@Install Mocha and Chai via Bower,
Now open this HTML document in the browser.
open test/browser/index.html-
Stretch goal: The next step is to use the grunt-mocha +
Stretch goal: The next step is to use the grunt-mocha grunt plugin to run these browser tests headlessly via PhantomJS.
TODO: This is a work in progress …
Mongoose is an abstraction layer on top of MongoDB. It allows developers to emulate a few relational database constructs while keeping the flexibility of MongoDB. I'm going to go over installing mongodb but the instructions can be found here. The first step to add Mongoose to a project is to add it to the package.json dependencies.
//package.json
@@ -551,7 +1040,7 @@
body: String
});
-module.exports = mongoose.model('Note', noteSchema);
+module.exports = mongoose.model('Note', noteSchema);
The schema for a notes object is pretty simple. For now it only contains one field(the body of the note) which should have a type of String. All of the different field types can be found here. The next step is to tell express where to find the note model in a server.js file and connect to the MongoDb server.
//server.js
@@ -566,16 +1055,16 @@
app.set('port', process.env.PORT || 3000);
var server = http.createServer(app);
-server.listen(app.get('port'), function() {
- console.log('the server is running on port ' + app.get('port');
+server.listen(app.get('port'), function() {
+ console.log('the server is running on port ' + app.get('port');
});
This server.js file doesn't do much, it connects to the mongodb database running localhost and listen for incomming http requests. When starting a mongo server on my local machine I like to create a db folder in my project directory and start my mongo server with mongod --dbpath ./db but make sure to add db to .gitignore. The next step is create routes that actually handle REST requests. Create a folder called routes and add a file by the name of noteRoutes.js to that folder with the following:
var Note = require('../models/note');
-exports.collection = function(req, res) {
+exports.collection = function(req, res) {
res.setHeader('Content-Type', 'application/json');
- Note.find({}, function(err, notes) {
+ Note.find({}, function(err, notes) {
if(err) {
res.send(500, {"error": err});
return false;
@@ -601,17 +1090,17 @@
app.set('port', process.env.PORT || 3000);
var server = http.createServer(app);
-server.listen(app.get('port'), function() {
- console.log('the server is running on port ' + app.get('port');
+server.listen(app.get('port'), function() {
+ console.log('the server is running on port ' + app.get('port');
});
It only takes two lines of code to get express talking with our mongoose model. First we require the noteRoutes.js file then when we receive a get request to api/v1/notes we call noteRoutes.collection and it will return all of the objects in the notes collection. To add the rest of the REST routes is pretty simple with the rest of the REST routes the noteRoutes should look like this:
//routes/noteRoutes.js
var Note = require('../models/note');
-exports.collection = function(req, res) {
+exports.collection = function(req, res) {
res.setHeader('Content-Type', 'application/json');
- Note.find({}, function(err, note) {
+ Note.find({}, function(err, note) {
if(err) {
res.send(500, {"error": err});
return false;
@@ -620,9 +1109,9 @@
});
};
-exports.findById = function(req, res) {
+exports.findById = function(req, res) {
res.setHeader('Content-Type', 'application/json');
- Note.findOne({"_id" : req.params.id}, function(err, note) {
+ Note.findOne({"_id" : req.params.id}, function(err, note) {
if(err) {
res.send(500, {error: err});
return false;
@@ -631,10 +1120,10 @@
});
};
-exports.create = function(req, res) {
+exports.create = function(req, res) {
res.setHeader('Content-Type', 'application/json');
var note = new Note({body: req.body.body});
- note.save(function(err, resNote) {
+ note.save(function(err, resNote) {
if(err) {
res.send(500, {error: err});
return false;
@@ -643,12 +1132,12 @@
});
};
-exports.update = function(req, res) {
+exports.update = function(req, res) {
res.setHeader('Content-Type', 'application/json');
var id = req.params.id;
delete req.body._id;
- Note.findOneAndUpdate({'_id' : id}, req.body, function(err, note) {
+ Note.findOneAndUpdate({'_id' : id}, req.body, function(err, note) {
if(err) {
res.send(500, {error: err});
return false;
@@ -657,9 +1146,9 @@
})
};
-exports.destroy = function(req, res) {
+exports.destroy = function(req, res) {
res.setHeader('Content-Type', 'application/json');
- Note.remove({'_id' : req.params.id}, function(err) {
+ Note.remove({'_id' : req.params.id}, function(err) {
if(err) {
res.send(500, {error: err});
return false;
@@ -692,8 +1181,8 @@
app.set('port', process.env.PORT || 3000);
var server = http.createServer(app);
-server.listen(app.get('port'), function() {
- console.log('the server is running on port ' + app.get('port');
+server.listen(app.get('port'), function() {
+ console.log('the server is running on port ' + app.get('port');
});
})`})`})
Super Agent is a tool to make REST requests from within Node. It makesthe sending requests
as easy as .put or .get, much in the same way that express allows you to simplify the handling
of incoming REST requests. While Super Agent is not specifically designed to test JSON apis,
it greatly simplifies acceptance testing of said JSON apis. Testing using Super Agent requires
-both a testing framework, as well as a collection of expect statements. Also being able to run
+both a testing framework, as well as a collection of expect statements. Also being able to run
tests from Grunt is key. A combination of Mocha and Chai should fit the bill nicely. First run
-npm install superagent chai mocha --save then create a test file test/api/notes_api_test.js with the
+npm install superagent chai mocha --save then create a test file test/api/notes_api_test.js with the
following code:
var superagent = require('superagent');
var chai = require('chai'),
expect = chai.expect,
should = chai.should();
-var app = require('../server.js').app
+var app = require('../server.js').app;
-describe('Notes JSON api', function() {
+describe('Notes JSON api', function() {
var id;
//testing the POST function of the JSON API
- it('can successfully create a new note', function(done) {
+ it('can successfully create a new note', function(done) {
superagent.post('http://localhost:3000/api/v1/notes/')
.send({
body: 'a new note!'
})
- .end(function(err, res) {
+ .end(function(err, res) {
expect(err).to.eql(null);
expect(res.body._id).to.not.be.eql(null);
expect(res.body.body).to.be.eql('a new note!');
@@ -567,9 +1056,9 @@ Testing with Super Agent
});
//testing the GET function of the JSON API
- it('can successfully get a note', function(done) {
+ it('can successfully get a note', function(done) {
superagent.get('http://localhost:3000/api/v1/note/' + id)
- .end(function(err, res) {
+ .end(function(err, res) {
expect(err).to.eql(null);
expect(res.body._id).to.be.eql(id);
expect(res.body.body).to.be.eql('a new note!');
@@ -578,12 +1067,12 @@ Testing with Super Agent
})
});
- it('can successfully update a note', function(done) {
+ it('can successfully update a note', function(done) {
superagent.put('http://localhost:3000/api/v1/note/' + id)
.send({
body: 'an updated note'
})
- .end(function(err, res) {
+ .end(function(err, res) {
expect(err).to.eql(null);
expect(res.body._id).to.be.eql(id);
expect(res.body.body).to.be.eql('an updated note');
@@ -592,9 +1081,9 @@ Testing with Super Agent
})
});
- it('can successfully delete a note', function(done) {
+ it('can successfully delete a note', function(done) {
superagent.del('http://localhost:3000/api/v1/note/' + id)
- .end(function(err, res) {
+ .end(function(err, res) {
expect(err).to.eql(null);
done();
@@ -607,33 +1096,25 @@ Testing with Super Agent
Now that we've built a REST API, and tested it with our "headless" superagent tests, +we can also access the API with JavaScript from a web browser.
+AJAX is a term coined by +Jesse James Garret +in 2005 to describe the technology stack that enables Single Page Applications. +It stands for "Asynchronous JavaScript And XML".
+Now, most people actually tend to send JSON back and forth, more than XML, but +saying "AJAJ" is kind of silly …so we've stuck with AJAX.
+The Asynchronous part of the acronym refers to the fact that we can send data +to the server from the browser, and thanks to the brower's JavaScript event loop, +we can have function executed later when the server returns data.
+Make sure your notes app is running: grunt serve or node server.js
request = new XMLHttpRequest();
+request.open('GET', '/api/v1/notes', true);
+
+request.onload = function() {
+ if (request.status >= 200 && request.status < 400){
+ // Success!
+ data = JSON.parse(request.responseText);
+ console.log(data);
+ } else {
+ // We reached our target server, but it returned an error
+ console.log("there was an error with the server: " + request.status)
+ }
+};
+
+request.onerror = function() {
+ // There was a connection error of some sort
+ console.log("There was an error with the request's connection.");
+};
+
+request.send();
+
+Make sure your notes app is running: grunt serve or node server.js
var data = '';
+
+$.ajax({
+ url: '/api/v1/notes',
+ data: data,
+ success: function(data) {
+ data.forEach(function(element) {
+ $('body').append('<p>' + element.noteBody + '</p>');
+ });
+ },
+ dataType: 'json'
+});
+
+You'll need to set up your notes app with Browserify, grunt initConfig, etc.
+I've chosen client.js as the file the Browserify will bundle my app/js into.
<!-- app/index.html -->
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>jQuery Browserify Ajax Demo</title>
+</head>
+<body>
+ <ul id="notes"></ul>
+ <script src="client.js" charset="utf-8"></script>
+</body>
+</html>
+
+// app/js/ajax.js
+$ = require('jquery');
+
+var data = '';
+
+$.ajax({
+ url: '/api/v1/notes',
+ data: data,
+ success: function(data) {
+ data.forEach(function(element) {
+ $('#notes').append('<li>' + element.noteBody + '</li>');
+ });
+ },
+ dataType: 'json'
+});
+
+
+
+ ' + element.noteBody + '
'); - }); - }, - dataType: 'json' -}); -``` - -## Integrating jQuery, Browserify, and AJAX - -You'll need to set up your notes app with Browserify, grunt initConfig, etc. -I've chosen `client.js` as the file the Browserify will bundle my app/js into. - -```html - - - - - -I will take you through the process of setting up your first server on an Amazon +Elastic Compute Cloud (EC2) Ubuntu Server.
+ssh ubuntu@hostnamessh ubuntu@hostname -I ~/.ssh/path-to-keyfile
replace path-to-keyfile with the actual path of your key file
+The -y option is helpful because apt won't for wait for you to press 'y', it
+will just install the packages. Very helpful for when you're trying to script
+this entire process.
sudo apt-get update && sudo apt-get install -y build-essential g++ tmux
+curl -O http://nodejs.org/dist/v0.10.32/node-v0.10.32.tar.gz
+tar -xvzf node-v0.10.32.tar.gz
+cd node-v0.10.32
+./configure --prefix=/opt/node
+make
+sudo mkdir -p /opt/node
+sudo chown -R ubuntu.ubuntu /opt/node
+make install
+Add node to your path in ~/.bashrc:
echo "export PATH=/opt/node/bin:$PATH" >> ~/.bashrc
Then reload .bashrc
source ~/.bashrc
Double check to see that node is in your path:
+which node => should be /opt/node/bin/node
Now, we need to add node to root's path too. To do this, we will need to use the
+visudo command to edit the secure path.
sudo visudo
edit your Defaults secure_path= line, around the thrird line, to look like:
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/node/bin"
The key here is to put the path to node at the end of the secure path.
+Go ahead and save the file.
+Follow the directions here: +http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/
+To summarize:
+sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
+echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
+sudo apt-get update
+sudo apt-get install mongodb-org
+Luckily, Chris Lea keeps an up-to-date ubuntu ppa available.
+sudo add-apt-repository ppa:chris-lea/redis-server
+sudo apt-get update
+sudo apt-get install redis-server -y
+sudo add-apt-repository ppa:git-core/ppa
+sudo apt-get update
+sudo apt-get install git -y
+mongo
+show dbs
+redis-cli ping --> should see PONGYou can always find the External IP address of your server in the EC2 Dashboard, +but I frequently use this shortcut from the command line:
+curl icanhazip.com
I mean, install bower and any other global npm packages you use frequently.
+npm -g install bower grunt-cli
I'll use one of our example apps.
+Make sure you're in the ubuntu home directory: /home/ubuntu
cd
+git clone https://github.com/codefellows/javascript-b15-notes.git notes
+cd notes
+npm install && bower install
+To test out launching your app, and bind on any port under 1000, you need to use sudo to
+escalate to root privelege.
sudo -i
+PORT=80 node server.js
+visit the site http://YOUR-IP-HERE
+This will do in a pinch, but it's not a professional setup. What happens if your +server reboots? You want something to re-start the server automatically.
+npm -g install forever. Forever is a simple CLI tool for ensuring that a given script runs continuously.
Create /etc/init/notes.conf. This is an Ubuntu Upstart script.
You can always use nano if you are afraid of Vim…
/etc/init/notes.conf:
start on startup
+stop on shutdown
+
+expect fork
+
+script
+ PATH=/opt/node/bin:$PATH
+ export PORT=80
+ exec forever start /home/ubuntu/notes/server.js
+end script
+
+pre-stop script
+ PATH=/opt/node/bin:$PATH
+ exec forever stop /home/ubuntu/notes/server.js
+end script
+Then sudo start notes to start the app
You can use use sudo status notes to see the status of the service.
You can get a free SSL certificate, or for development, +you can generate a self-signed certificate. Follow this Heroku Tutorial
+ + +Here is why I choose to use Ember, and the quickest way to get started.
+I'm not trying to single out Angluar in particular, other than that the class I +am preparing this blog post for is presenting both. I don't have any experience +with Angular, so these are all quotes below:
+"kills the DOM...various ng-attribute references cluttered the page around +and this was mixed with what is called "mustache-esque" template bindings." ++ source +
Angular's creator describes it as a metaframework - a framework for +creating your application's framework. Thus, if you get two different Angular +apps, their internals will look completely different. ++source +This is not the approach Ember takes, where you buy in to the framework's +conventions. So, one could argue that once you learn the conventions, you'll +spend much less time on boilerplate writing a new Ember app than a new Angular +app. This doctrine also belongs to Rails, and it's worked out pretty well for +them. +
To dive deeper, read A Five Part Blog Post Series Comparing Angular and Ember +and Backbone, Angular, or Ember.
+Angular vs Ember slides.
+You'll need the following modules if you don't have them already
+npm install -g phantomjs bower
+First step is to install the command line tool globally:
+npm install -g ember-cli
+Then, install the Ember Chrome Extension.
+Examine carefully the output of the help option for the ember command.
ember --help
+ember new emberNotes
+cd emberNotes
+ember serve
+Take a look (in your editor) at app/templates/application.hbs. Go ahead and
+change the h2 element to "Welcome to Notes" or something similar. The
+{{outlet}} tag is where our content will end up.
Browse to the List of Ember Generators.
+ember g model note
+ember g controller notes
+ember g template note
+ember g route index
+Edit app/routes/index.js:
import Ember from 'ember';
+
+export default Ember.Route.extend({
+ model: function() {
+ return data.result;
+ }
+});
+
+var data = {
+ "status": "ok",
+ "result": [
+ { noteBody: "Twilight Sparkle"},
+ { noteBody: "Applejack"},
+ { noteBody: "Fluttershy"},
+ { noteBody: "Rarity"},
+ { noteBody: "Pinkie Pie"},
+ { nodeBody: "Rainbow Dash"}
+ ]
+};
+
+And, in app/templates/index.hbs:
{{#each this}}
+ <li>{{noteBody}}</li>
+{{/each}}
+Now, let's add images to your data. Add a picture attribute, something like this:
+"result": [
+ {
+ noteBody: "Twilight Sparkle",
+ picture: "http://img4.wikia.nocookie.net/__cb20140420032412/mlp/images/thumb/e/e0/Twilight_Sparkle_after_drying_herself_S1E03.png/209px-Twilight_Sparkle_after_drying_herself_S1E03.png"
+ },
+ {
+ noteBody: "Applejack",
+ picture: "http://img3.wikia.nocookie.net/__cb20121029101939/mlp/images/thumb/e/ee/Applejack_proud_of_herself_S1E01.png/209px-Applejack_proud_of_herself_S1E01.png"
+ },
+ ]
+and in your index.hbs
{{#each this}}
+ <li>
+ <img {{bind-attr src="picture"}} />
+ {{noteBody}}
+ </li>
+{{/each}}
+Now, with more Ponies!
+in index.hbs
+<div>
+{{input type="text" value=name placeholder="Enter your pony name"}}
+</div>
+
+<div>
+ <p>Hello, my pony name is: <b>{{name}}</b>, and I think Ember is great!</p>
+</div>
+And if you're a Rails dev, too:
+ + + +$2>")+u[2],f=u[0];while(f--)s=s.lastChild;jQuery.merge(c,s.childNodes),s=l.firstChild,s.textContent=""}}l.textContent="",h=0;while(i=c[h++]){if(r&&jQuery.inArray(i,r)!==-1)continue;a=jQuery.contains(i.ownerDocument,i),s=getAll(l.appendChild(i),"script"),a&&setGlobalEval(s);if(n){f=0;while(i=s[f++])rscriptType.test(i.type||"")&&n.push(i)}}return l},cleanData:function(e){var t,n,r,i,s,o,u=jQuery.event.special,a=0;for(;(n=e[a])!==undefined;a++){if(jQuery.acceptData(n)){s=n[data_priv.expando];if(s&&(t=data_priv.cache[s])){r=Object.keys(t.events||{});if(r.length)for(o=0;(i=r[o])!==undefined;o++)u[i]?jQuery.event.remove(n,i):jQuery.removeEvent(n,i,t.handle);data_priv.cache[s]&&delete data_priv.cache[s]}}delete data_user.cache[n[data_user.expando]]}}}),jQuery.fn.extend({text:function(e){return access(this,function(e){return e===undefined?jQuery.text(this):this.empty().each(function(){if(this.nodeType===1||this.nodeType===11||this.nodeType===9)this.textContent=e})},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=manipulationTarget(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=manipulationTarget(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?jQuery.filter(e,this):this,i=0;for(;(n=r[i])!=null;i++)!t&&n.nodeType===1&&jQuery.cleanData(getAll(n)),n.parentNode&&(t&&jQuery.contains(n.ownerDocument,n)&&setGlobalEval(getAll(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++)e.nodeType===1&&(jQuery.cleanData(getAll(e,!1)),e.textContent="");return this},clone:function(e,t){return e=e==null?!1:e,t=t==null?e:t,this.map(function(){return jQuery.clone(this,e,t)})},html:function(e){return access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&t.nodeType===1)return t.innerHTML;if(typeof e=="string"&&!rnoInnerhtml.test(e)&&!wrapMap[(rtagName.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(rxhtmlTag,"<$1>$2>");try{for(;n Use the node REPL - Read, Evaluate, Print Loop
+Simply type What will the output be? False or True? The answer is that the output will be true. Why? You might have thought
+it would be false, right? It's like the statements are having out of order. It's because we are placing our function with conosole.log on the event queue. Review the slides below: Express is a minimalistic web framework built on top of Node.js. Based on
+Ruby's Sinatra framework it abstracts away a lot of the boiler plate
+code required to get a Node web server up and running. Created by
+ TJ Holowaychuck Express is built
+using Connect another abstraction
+for creating web servers with Node. Express 3.x includes a suite of middleware
+that were abstracted into their own modules with Express 4. Read more about it here The first step in creating an express application from scratch is to create
+a new folder with A package.json file is found in nearly every Node packag or application. It tells npm about our
+ application. The name and description would appear in npm if we were creatin a node
+package. The version is the Semantic Versioning version
+of our application and the dependencies tell npm what packages we need in order to
+run our application. In this case the only package that we need is express. After saving
+this file run First we need to create a .gitignore file. This file tells git not include our node_modules
+folder in our version control. This folder can get quite large and we already have our
+dependencies declared in our package.json file, so it becomes redundant. Now we need to
+create a simple web server. Create a file called server.js and add the following code: In this file we first require the express package within our server.js file. We then require
+http which will be used to create the actual server. Then we create our app by calling the root
+express function. The app.get line is a REST
+get request to our root url that simple writes 'hello world!' to the browser. In the final section
+we create a server and start it listening on port 3000, we pass a callback that gets called
+when the server is running that simple outputs 'the server is running on port 3000' to the console.
+To start our server simply run Now this particular server isn't especially useful or interesting but we can modify it to serve
+static html pages using one of the few optional middlewares that didn't get abstracted out of
+Express 4, static. Modify your server.js file to look like this: Our server now serves any file located in the /public directory. The __dirname in this version of the server.js
+points to the root directory of our application. This is a node global and is available anywhere in a
+node program. Next we need to create the /public directory, run If you close the server we had running and run Let's get our site LIVE ON THE WEB!! This process is called deployment. Slides from class introducing Heroku. Make sure you have the Heroku Toolbelt installed. You can usually Also, if you haven't already, sign up for an account on Heroku.com. Use If you're already logged in, you can use You'll want a nice name for your app instead of the random ones Heroku gives you. E.g. You need a file to tell heroku how to launch your app. Edit This tells heroku that to start your web server, it needs to run the command You can use a npm package called foreman to test that your Procfile works as expected. Install this globally. This will give you the And, now, try starting your server via foreman. It should start up your server on port 5000 as a default. This means that your server should not have any port 'hard-coded' as a default (like 3000). Make sure your server code looks something like this: Make sure to commit any changes you made to your app, like adding the Procfile, etc. Make sure you're on the master branch or that you merge you changes back to master. And now, to deploy your app to the web on Heroku: You'll see a bunch of info scroll by from Heroku, but it should look something like this: And you can open your browser, and visit your app on the web! This is Code Fellows' textbook for The Full-Stack JavaScript Development
-Accelerator. This is Code Fellows' textbook for The Full-Stack JavaScript Development Accelerator. It's a GitBook project. This book's latest published form is available at Full Stack JavaScript Engineering. Browse locally: More info, see the GitBook README Bgitbook build . --output=publicuild the Gitbook and check in the changes to the public folder Send us a pull request here on Github. More info, see the GitBook README These pre-work tasks are optional, but recommended if you have any knowledge
+ These pre-work tasks are recommended if you have any knowledge
gaps. They are here to make sure you have a good foundational knowledge of
JavaScript, jQuery, Git, and HTML/CSS Watch the first Crockford on JS and any
+ Watch the first three Crockford on JS and any
other lectures in the series. The whole series is 8+ hours long, so this will be
something that will take some time. We use the Asana project management / TODO list system to keep track of assignments
-in class. Watch the Intro Video
-and any other videos or help documents necessary there. The only thing that's different about the way we use Asana is that an instructor
-will check off when you are done with an assignment. You can always comment
-"DONE" if you need us to review the work. Code Fellows LLC is licensed as a technical training school by the State of
-Washington and we follow all state laws and regulations. All students are
-required to fill out two important forms: 1: the demographic survey, and
-2: Acknowledge receipt of the course catalog and honor code. Please print out these forms, fill them out and sign them, and bring them to the
-first class meeting. mocha.run();mocha.setup('bdd')post","todo","togeth","tool","trick","truthi","try","tutori","two","type","uncaught","undefinedundefin","unit","us","usag","var","via","view","white","work","world"],"day8/README.html#gitbook_29":["dai","eight","mongo","mongoos","rest","restundefinedundefin"],"day8/mongo_mongoose_and_the_rest.html#gitbook_30":["0.0.1","3","3.8","3000","4","4.0","abstract","actual","ad","add","allow","api/v1/not","app","app.delete('/api/v1/note/:id","app.get('/api/v1/not","app.get('/api/v1/note/:id","app.get('port","app.post('/api/v1/not","app.put('/api/v1/note/:id","app.set('port","app.use(bodypars","applic","application/json","argument","bodi","body-pars","bodypars","call","code","collect","command","connect","console.log('th","construct","contain","creat","data","databas","db","dbpath","defin","delet","depend","descript","develop","differ","directori","document","doesn't","emul","entir","err","error","export","exports.collect","exports.cr","exports.destroi","exports.findbyid","exports.upd","express","fals","few","field","field(th","file","find","first","flexibl","folder","follow","found","function","function(err","function(req","get","gitignor","go","handl","href=\"http://docs.mongodb.org/manual/installation/\">heremongoosehere":{"docs":{},"<":{"docs":{},"/":{"docs":{},"i":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"-":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"-":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249}},"-":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"i":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"docs":{}},"docs":{}}}}},"p":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"p":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.022935779816513763}},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}},"docs":{}}},".":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"docs":{}},"docs":{}}}}},"p":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.020895522388059702},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.020114942528735632},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.012797074954296161},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"/":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.625}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1}}}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.625}}}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866}},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.008431703204047217},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.01834862385321101},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525}},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"_":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"_":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}}}},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}},"docs":{}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}},"n":{"docs":{},"d":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.03880597014925373}}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}},"-":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":2.522222222222222},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}},"@":{"0":{"docs":{},".":{"2":{"docs":{},".":{"1":{"0":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"-":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"k":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388}}},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.03225806451612903},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.018292682926829267}}}}}},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"i":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"o":{"docs":{},"v":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}},"y":{"docs":{},"s":{"docs":{},"m":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"i":{"docs":{},"l":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464}}}},"t":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":3.351681957186544}}}}},"o":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"r":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"m":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"p":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"d":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":5.001828153564899}}},"a":{"docs":{},"z":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344}}}}},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}},"a":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"w":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"a":{"docs":{},"i":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}},"p":{"docs":{},"t":{"docs":{"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":2.173508483853311},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"s":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"r":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"u":{"docs":{},"r":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}},"v":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}},"a":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}},"h":{"docs":{},":":{"docs":{},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.08333333333333333},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"day9/README.html#gitbook_32":{"ref":"day9/README.html#gitbook_32","tf":0.25}}}}}},"b":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"n":{"docs":{"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456}},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"docs":{}},"docs":{}}}}}}}}},"s":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.03225806451612903},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"e":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"e":{"docs":{},"j":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343}}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6337145969498911},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"i":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"h":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":1.2828358208955224},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}},"docs":{}},"docs":{}}}},"c":{"docs":{},"k":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.008888888888888889}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}}},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"<":{"docs":{},"h":{"2":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}},"docs":{}},"/":{"docs":{},"b":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.025423728813559324},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.014545454545454545},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.012797074954296161},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5926797385620916}},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}},"r":{"docs":{},"c":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"+":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}},"?":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"p":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}},"n":{"docs":{},"u":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563}},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},",":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}}},"x":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"o":{"docs":{},"k":{"docs":{"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}}},"s":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.034858387799564274},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"e":{"docs":{},"w":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.03431372549019608},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}},"a":{"docs":{},"k":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"e":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01011804384485666},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.01694915254237288},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.01288404360753221},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.6037908496732026}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.06779661016949153},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":1.2128342245989305},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.07692307692307693},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"y":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}},"?":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1}}}}}},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"docs":{}},"docs":{}}}}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.03270564915758176}}}}}}},">":{"docs":{},"i":{"docs":{},"f":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"n":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"c":{"docs":{},"h":{"docs":{"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"u":{"docs":{},"i":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"l":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6315359477124183},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01011804384485666},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.02376599634369287},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}}}}}}}}},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}},"g":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"d":{"docs":{},"l":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"s":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"d":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"g":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"l":{"docs":{},"l":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"s":{"docs":{},"/":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}},"t":{"docs":{},"w":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}},"docs":{}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01517706576728499},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}},"e":{"docs":{},"e":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.433473389355742}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}},"e":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.08333333333333333}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.03669724770642202},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.025454545454545455},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.038391224862888484},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"l":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354}}}},"d":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7181171319102353},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.007312614259597806},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}},"v":{"docs":{},"e":{"docs":{"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":5.083333333333333}}}},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.014705882352941176},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.5194805194805192},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"a":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.008955223880597015},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":1.668353007307476},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.018292682926829267}}}}}},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":5.083333333333333}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"a":{"docs":{},"t":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"t":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.6279850746268657},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.008431703204047217},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.024444444444444446},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.013761467889908258}},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}}}}},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249}}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}},"l":{"docs":{},"l":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":2.5303030303030303}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304}},"-":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"-":{"docs":{},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}},"i":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"e":{"docs":{},"-":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"s":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304}}},"docs":{}},"docs":{}}}}}}}},"w":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"e":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"r":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"s":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"l":{"docs":{},"s":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.06666666666666667},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}}}},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"i":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.008955223880597015},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":10.071428571428571},"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.011940298507462687},"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.006745362563237774},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":3.3725490196078427},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":2.0126582278481013},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.012797074954296161},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.011111111111111112},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588}}}},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}},"p":{"docs":{},"i":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}},"j":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"@":{"0":{"docs":{},".":{"9":{"docs":{},".":{"0":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}}},"docs":{}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"-":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7142857142857142}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}}}}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"n":{"docs":{},"p":{"docs":{},"m":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"-":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"'":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"-":{"docs":{},"j":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"-":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{},"[":{"docs":{},"'":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"n":{"docs":{},"d":{"docs":{},"-":{"docs":{},"d":{"docs":{},"a":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}},"m":{"docs":{},"a":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"docs":{}},"docs":{}}}}}}},"d":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"l":{"docs":{},"i":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"i":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.008714596949891068}}}},"o":{"docs":{},"w":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"u":{"docs":{},"p":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.014705882352941176},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}},"e":{"docs":{},"k":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"i":{"docs":{},"t":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.016055045871559634},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.12121212121212122}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}},".":{"docs":{},"i":{"docs":{},"m":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}}}}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.045454545454545456}}}}},"@":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},":":{"docs":{},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549}}}}}}}}}}}}}}}},"o":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.010968921389396709},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}},"o":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1.0169491525423728},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}},"e":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"a":{"docs":{},"l":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"u":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"l":{"docs":{},"p":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"docs":{}},"docs":{}}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day10/README.html#gitbook_12":{"ref":"day10/README.html#gitbook_12","tf":2.75},"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.16666666666666666}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}},"u":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}},"p":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"a":{"docs":{},"p":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"h":{"1":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145}}},"2":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273}}},"docs":{},"e":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}},"=":{"docs":{},"\"":{"4":{"2":{"0":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"a":{"docs":{},"d":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"docs":{}},"docs":{}}}},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":2.0488505747126435},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333}},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}}}}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}},"docs":{}},"docs":{}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":5.011467889908257},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}}}}}}}}}},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129}}}}}}}}}}},"i":{"docs":{},"p":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},"p":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.02531645569620253},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"docs":{}},"docs":{}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145}},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"w":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}}}},"d":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"o":{"docs":{},"k":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}},"w":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273}}},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"u":{"docs":{},"r":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"5":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.016055045871559634},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.011111111111111112}},"/":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}},"t":{"docs":{},"p":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"z":{"docs":{},"u":{"docs":{},"r":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},".":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"f":{"docs":{},"m":{"docs":{},"/":{"2":{"0":{"1":{"2":{"docs":{},"/":{"0":{"5":{"docs":{},"/":{"1":{"9":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"-":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"3":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"z":{"docs":{},"e":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"-":{"docs":{},"j":{"docs":{},"s":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"-":{"docs":{},"s":{"docs":{},"-":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}},"d":{"docs":{},"d":{"docs":{},"y":{"docs":{},"o":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"-":{"docs":{},"j":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"g":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"-":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},".":{"docs":{},"l":{"docs":{},"y":{"docs":{},"/":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"2":{"2":{"0":{"docs":{},"m":{"3":{"docs":{},"f":{"0":{"9":{"3":{"docs":{},"v":{"2":{"docs":{},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"3":{"docs":{},"i":{"2":{"docs":{},"o":{"0":{"docs":{},"y":{"0":{"docs":{},"a":{"3":{"docs":{},"e":{"0":{"4":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"p":{"docs":{},"e":{"docs":{},"z":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"/":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"2":{"0":{"1":{"0":{"docs":{},"/":{"1":{"0":{"docs":{},"/":{"1":{"8":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"/":{"2":{"0":{"1":{"3":{"docs":{},"/":{"1":{"2":{"docs":{},"/":{"2":{"2":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"-":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"-":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"-":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"-":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"i":{"docs":{},"g":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"5":{"4":{"8":{"7":{"3":{"4":{"5":{"3":{"9":{"3":{"9":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"-":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"2":{"0":{"1":{"2":{"docs":{},"/":{"2":{"docs":{},"/":{"3":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"-":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"r":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"#":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"8":{"6":{"docs":{},"/":{"docs":{},"e":{"1":{"docs":{},"c":{"9":{"docs":{},"d":{"docs":{},"f":{"7":{"6":{"docs":{},"c":{"docs":{},"b":{"7":{"1":{"docs":{},"a":{"0":{"docs":{},"a":{"0":{"0":{"7":{"docs":{},"d":{"3":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}}},"docs":{}},"docs":{}}}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"-":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"-":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"w":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"/":{"docs":{},"u":{"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"-":{"1":{"2":{"docs":{},".":{"0":{"4":{"docs":{},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"s":{"docs":{},"/":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"-":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"-":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"-":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"u":{"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"-":{"1":{"2":{"docs":{},"-":{"0":{"4":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"b":{"docs":{},"y":{"docs":{},"-":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"-":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"u":{"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"-":{"1":{"2":{"docs":{},"-":{"0":{"4":{"docs":{},"-":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},"-":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"-":{"docs":{},"r":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"-":{"docs":{},"-":{"2":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"v":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"q":{"docs":{},"#":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},"-":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"/":{"2":{"0":{"1":{"4":{"docs":{},"/":{"0":{"2":{"docs":{},"/":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"-":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"-":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}}}}}}}}}}}},"—":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}},"a":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"l":{"docs":{},"f":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"s":{"docs":{},"&":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"docs":{}},"docs":{}}}}}},"m":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}},"-":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}},"n":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01011804384485666}},"s":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}}},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"docs":{}},"docs":{}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"i":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"u":{"docs":{},"g":{"docs":{},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},"/":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"-":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"k":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"j":{"docs":{},"s":{"docs":{},"-":{"4":{"docs":{},"-":{"0":{"docs":{},"-":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"-":{"docs":{},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"-":{"docs":{},"u":{"docs":{},"p":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"-":{"3":{"docs":{},"-":{"0":{"docs":{},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"h":{"docs":{},"y":{"docs":{},"a":{"docs":{},"m":{"docs":{},"d":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"a":{"docs":{},"m":{"docs":{},"d":{"docs":{},"\"":{"docs":{},">":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"\"":{"docs":{},">":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"_":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},">":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"\"":{"docs":{},">":{"docs":{},"t":{"docs":{},"j":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}},".":{"docs":{},"\"":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"/":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"b":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"m":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"i":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}}}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}}}}}}},"e":{"8":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}},"i":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"g":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}},"o":{"docs":{},"m":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.020895522388059702},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.06060606060606061},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.051470588235294115},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.022988505747126436},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.022988505747126436},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.03272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.013333333333333334},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"n":{"docs":{},"c":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"o":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"i":{"docs":{},"d":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}},"f":{"docs":{},"o":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}},"r":{"docs":{},"m":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"g":{"docs":{},"r":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"n":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"r":{"docs":{},"o":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667}}}}}}}},"i":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"v":{"docs":{},"i":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.03880597014925373},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}},"docs":{}},"docs":{}}},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"docs":{}},"docs":{}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"t":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.044444444444444446},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"l":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"docs":{}},"docs":{}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"e":{"docs":{},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.013333333333333334}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}}}}}}},"r":{"docs":{},"c":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":5.050420168067227},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}}}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}},"docs":{}},"docs":{}}},"d":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.022935779816513763}},"e":{"docs":{},"a":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"p":{"docs":{},">":{"docs":{},"<":{"docs":{},"a":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}},"m":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"o":{"docs":{},"z":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"docs":{}},"docs":{}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":1.2120261437908497},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"@":{"1":{"docs":{},".":{"1":{"3":{"docs":{},".":{"0":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}}}},"d":{"docs":{},"e":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"z":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}},"u":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.03389830508474576},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.599144385026738},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.010968921389396709},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day8/README.html#gitbook_29":{"ref":"day8/README.html#gitbook_29","tf":2.2},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"b":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249}}}},"o":{"docs":{},"s":{"docs":{"day8/README.html#gitbook_29":{"ref":"day8/README.html#gitbook_29","tf":2.2},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.022821576763485476}},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"a":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464}}}}}},"r":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.02531645569620253},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667}}},"n":{"docs":{"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.010893246187363835},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"e":{"docs":{},"-":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}},"m":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"a":{"docs":{},"c":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.02576808721506442},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}},"d":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.633955223880597},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"k":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.006745362563237774},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"i":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"p":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"r":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.017241379310344827}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"c":{"docs":{},"h":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"z":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},",":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"k":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"p":{"docs":{},"@":{"0":{"docs":{},".":{"3":{"docs":{},".":{"5":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}}},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}},"n":{"docs":{},"u":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"s":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}},"a":{"docs":{},"g":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"r":{"docs":{},"g":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"e":{"docs":{},"t":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}},"n":{"docs":{},"d":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}},"x":{"docs":{},"i":{"docs":{},"n":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"s":{"docs":{},"s":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"s":{"docs":{},"g":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}},"c":{"docs":{},"h":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"v":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}},"p":{"3":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"docs":{}}},"r":{"docs":{},"e":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"a":{"docs":{},"d":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.07692307692307693},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.12903225806451613}},"m":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"d":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"i":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}},"l":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"i":{"docs":{},"v":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"p":{"docs":{},"t":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.4740259740259738},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.027522935779816515}}}}},"i":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.03225806451612903},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}},".":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},".":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"(":{"docs":{},"'":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"*":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"n":{"docs":{},"p":{"docs":{},"m":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}},"j":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.01694915254237288},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.010968921389396709}},"s":{"docs":{},"-":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":5.010968921389397}}}}}}}},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"y":{"docs":{},".":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day7/README.html#gitbook_26":{"ref":"day7/README.html#gitbook_26","tf":0.16666666666666666},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":5.005946481665015},"day8/README.html#gitbook_29":{"ref":"day8/README.html#gitbook_29","tf":2},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"o":{"docs":{},"r":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"day8/README.html#gitbook_29":{"ref":"day8/README.html#gitbook_29","tf":0.2}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6489651416122004},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}},"i":{"docs":{},"z":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1.0084745762711864},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.010901883052527254}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"5":{"0":{"0":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}}},"docs":{}},"docs":{}},"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}},"{":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},".":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}},"d":{"docs":{},"i":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.02696078431372549}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}},"i":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"e":{"docs":{},"v":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}},"u":{"docs":{},"l":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.009910802775024777}}}}}}}},"l":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.044444444444444446}},"a":{"docs":{},"c":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":2.5}}}}}}}}}}}}}}}}}}},"o":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.451298701298701},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}}}}}}}},"r":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"u":{"docs":{},"s":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.016597510373443983},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}},"b":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"c":{"docs":{},"k":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"o":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"m":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"u":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992}},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"j":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.01715686274509804},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"y":{"docs":{},"-":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}},"docs":{}},"docs":{}}}}},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.019157088122605363},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.013333333333333334},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"l":{"docs":{},"e":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"w":{"docs":{},"-":{"docs":{},"r":{"docs":{},"-":{"docs":{},"-":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.023880597014925373}}}}}}},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6315359477124183}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}}},"k":{"docs":{},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"i":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866}}}}},"c":{"docs":{},"h":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.014705882352941176}},"-":{"docs":{},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}}}}},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}}}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.008888888888888889}},">":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"d":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"l":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"b":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.4285714285714284}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"r":{"docs":{},"c":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01818181818181818},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354}},"=":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"s":{"docs":{},"v":{"docs":{},"g":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"b":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"*":{"docs":{},"*":{"docs":{},"/":{"docs":{},"*":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}},".":{"docs":{},"j":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.012254901960784314},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":2.0632911392405062}},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":2.0126582278481013}}}}}}}},"w":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"r":{"docs":{},"a":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"m":{"docs":{},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"v":{"docs":{},"e":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"n":{"docs":{},"d":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"e":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.008955223880597015},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"m":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}},"r":{"docs":{},"v":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.034403669724770644},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.020114942528735632},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.01532567049808429},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5904575163398693},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01867219917012448},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},".":{"docs":{},"j":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.013761467889908258},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.014522821576763486},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"3":{"0":{"0":{"0":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.012254901960784314},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.4285714285714284}}}}}}}}}}},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.018292682926829267}},"a":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.4285714285714284}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"v":{"docs":{},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"n":{"docs":{"day7/README.html#gitbook_26":{"ref":"day7/README.html#gitbook_26","tf":5.166666666666667}}}}},"n":{"docs":{},"d":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"u":{"docs":{},"p":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.4285714285714284}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}},"u":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"e":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"c":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"f":{"docs":{},"i":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}}}}}}},"u":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"n":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}},"l":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}},"o":{"docs":{},"n":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.6309701492537313},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.015250544662309368},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"d":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5882352941176471}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5882352941176471}}}}}}}},"z":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"g":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"x":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":2.0161290322580645}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":5}}}}}}}}},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}}}}},"i":{"docs":{},"p":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.010968921389396709},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"v":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"n":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}},"r":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"t":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.03880597014925373}}}},"r":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.014367816091954023},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"g":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"n":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"c":{"docs":{},"k":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":2.5303030303030303},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"t":{"docs":{},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.4468641114982577}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"i":{"docs":{},"c":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258}},"u":{"docs":{},"s":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}},"u":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}},"b":{"docs":{},"l":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"c":{"docs":{},"k":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}},"p":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667}},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.02531645569620253}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456}}}}}}},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}},"n":{"docs":{},"g":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"i":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"f":{"docs":{},"f":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"c":{"docs":{},"k":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"e":{"docs":{},"p":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":3.351681957186544}},"a":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"w":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":2}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}},"b":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.03225806451612903},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098}}}}}},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.014705882352941176}}}}}},"c":{"docs":{},"h":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"k":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"i":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}},"d":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"r":{"docs":{},"e":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}},"v":{"docs":{},"e":{"docs":{},"i":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},"v":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}},"o":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.008431703204047217},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.014866204162537165},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"w":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.013071895424836602}}}}}}}},"l":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"i":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.16666666666666666}},"s":{"docs":{},"a":{"docs":{},"w":{"docs":{"day10/README.html#gitbook_12":{"ref":"day10/README.html#gitbook_12","tf":2.75}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"q":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142},"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.08333333333333333},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/README.html#gitbook_26":{"ref":"day7/README.html#gitbook_26","tf":0.16666666666666666},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525},"day9/README.html#gitbook_32":{"ref":"day9/README.html#gitbook_32","tf":0.25},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}},"x":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/README.html#gitbook_26":{"ref":"day7/README.html#gitbook_26","tf":0.16666666666666666},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.6060130718954249}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6358932461873639},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.025210084033613446},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01517706576728499},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.019157088122605363},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.0423728813559322},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.03272727272727273},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.012797074954296161},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.017839444995044598},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.015555555555555555},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.625}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.013071895424836602},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}},"docs":{}},"docs":{}}},"-":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}}},"’":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"p":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.433473389355742},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7219485495347563},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":1.779251336898396},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.013761467889908258}}}}},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"-":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}},"r":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.011892963330029732}},"s":{"docs":{},"-":{"docs":{},"-":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"docs":{}},"docs":{}}}}}}}},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}}},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6380718954248366},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.008431703204047217},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.433473389355742},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.017241379310344827},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.024777006937561942}},"k":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.653322440087146},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.625}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"-":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464}}}}},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"-":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"l":{"docs":{},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}},"r":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"v":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"docs":{}},"docs":{}}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}},"docs":{}},"docs":{}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}},"=":{"docs":{},"\"":{"5":{"7":{"6":{"docs":{"day3/Grunt.html#gitbook_1":{"ref":"day3/Grunt.html#gitbook_1","tf":0.07142857142857142}}},"docs":{}},"docs":{}},"docs":{}}}}},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"t":{"docs":{},"h":{"docs":{},":":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.625}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}},"i":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}},"n":{"docs":{},"-":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"z":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6337145969498911},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"i":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1.0084745762711864}}}},"r":{"docs":{},"n":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"d":{"docs":{},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"docs":{}},"docs":{}}},"e":{"docs":{},"v":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"t":{"docs":{},"e":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"docs":{}},"docs":{}}}},"r":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},"y":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}},"l":{"docs":{},"d":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.013761467889908258},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.019157088122605363},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"!":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}},"docs":{}},"docs":{}}},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}},"#":{"3":{"9":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"docs":{}},"docs":{}}}}}},"w":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"u":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.01532567049808429}},"j":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7296113847837985}},"s":{"docs":{},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7142857142857142}}}}}}}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145}}}}}}}}}}}}}}}},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}}}},"l":{"docs":{},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"i":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"c":{"docs":{},"h":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1.0084745762711864}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}}}},"docs":{}},"docs":{}}}},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.008955223880597015},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"n":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1.0086206896551724},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.04201680672268908}}}}}},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.025210084033613446}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.6060130718954249},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.013761467889908258}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}},"<":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}},"n":{"docs":{},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5882352941176471}}}}}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"8":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"docs":{}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.03225806451612903},"day9/README.html#gitbook_32":{"ref":"day9/README.html#gitbook_32","tf":5.25}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.03225806451612903},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"docs":{}},"docs":{}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}},"n":{"docs":{},"e":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549}}}},"j":{"docs":{},"u":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5904575163398693}},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.03361344537815126},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.4740259740259738},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"-":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"i":{"docs":{},"m":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}},"s":{"docs":{},"@":{"0":{"docs":{},".":{"6":{"docs":{},".":{"0":{"docs":{},"-":{"1":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}},"d":{"docs":{},"f":{"docs":{},"u":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"u":{"docs":{},"t":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.433473389355742},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}},"a":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"s":{"docs":{},"s":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}},"o":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"i":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"m":{"docs":{},"u":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.025210084033613446},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"i":{"docs":{},"t":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"j":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":2.0483870967741935},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}},"o":{"docs":{},"r":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}},"o":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}},"c":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":5.025210084033613},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}},"o":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}},"s":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"o":{"docs":{},"r":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}}}},"o":{"docs":{},"l":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}}}}}}}}}},"'":{"docs":{},"t":{"docs":{},"h":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}},"u":{"docs":{},"r":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7181171319102353},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}}}}}}},"i":{"docs":{},"f":{"docs":{},"u":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"r":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":5.000991080277503}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344}}}},"r":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"p":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.014545454545454545},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.007312614259597806},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"d":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6337145969498911},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.006745362563237774},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1.0084745762711864},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.07692307692307693},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.024390243902439025}},"f":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563}}}}}}}},"-":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"l":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}},"e":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"r":{"docs":{},"y":{"docs":{},"-":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}},"r":{"docs":{},"s":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.018292682926829267}}}},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"r":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}}}},"p":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.03211009174311927},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.014545454545454545},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.007312614259597806},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.008298755186721992},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"i":{"docs":{},"n":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}},"o":{"docs":{},"n":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"e":{"docs":{},"d":{"docs":{},"—":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"w":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}},"o":{"docs":{},"w":{"docs":{},"d":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"c":{"docs":{},"k":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"s":{"3":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":2.037974683544304},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"v":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}},"w":{"docs":{},"d":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"i":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{},"'":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"y":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"d":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"y":{"docs":{},"-":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}}},"c":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"l":{"docs":{},"o":{"docs":{},"i":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333}}},"y":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.010893246187363835},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"u":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.625}}}}}}},"k":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.013071895424836602}}}}}},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}},"b":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}}}},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.008714596949891068},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.011804384485666104},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"i":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.015250544662309368}},"e":{"docs":{},"s":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.625}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"y":{"docs":{},"-":{"docs":{},"i":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},"m":{"docs":{},"o":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"t":{"docs":{},"h":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":2.522222222222222}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"a":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"i":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}},"v":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"t":{"docs":{},"a":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}}}},"e":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.599144385026738},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}},"e":{"docs":{},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}},"e":{"docs":{},"r":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588}},"o":{"docs":{},"r":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.013761467889908258},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.010968921389396709},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01818181818181818}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5918716577540107}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":1}}}}}}}}}}}}},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"c":{"docs":{},"o":{"docs":{},"v":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":1.2565359477124183},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"d":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"docs":{}},"docs":{}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}},"v":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667}},"e":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}},"o":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821}}}}},"docs":{}},"docs":{}}},"e":{"docs":{"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.017241379310344827},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}},"w":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}},"w":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}},"c":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"y":{"docs":{},"p":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}},"g":{"docs":{},"w":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"docs":{}},"docs":{}}}}}}},"r":{"docs":{},"w":{"docs":{},"x":{"docs":{},"r":{"docs":{},"-":{"docs":{},"x":{"docs":{},"r":{"docs":{},"-":{"docs":{},"x":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.014925373134328358}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"v":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"a":{"docs":{},"i":{"docs":{"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":5.181818181818182},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":5.016129032258065},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":5.045454545454546},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":5.083333333333333},"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":5.166666666666667},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":5.038461538461538},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":2.0161290322580645},"day7/README.html#gitbook_26":{"ref":"day7/README.html#gitbook_26","tf":5.166666666666667},"day8/README.html#gitbook_29":{"ref":"day8/README.html#gitbook_29","tf":2.2}}},"t":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01011804384485666},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"5":{"8":{"docs":{},"b":{"9":{"docs":{},"a":{"9":{"1":{"0":{"9":{"2":{"docs":{},"c":{"2":{"0":{"1":{"3":{"0":{"docs":{},"d":{"3":{"docs":{},"f":{"docs":{},"c":{"1":{"docs":{},"a":{"0":{"9":{"docs":{},"e":{"4":{"1":{"5":{"7":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"=":{"docs":{},"\"":{"1":{"docs":{},".":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"7":{"8":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"e":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}},"k":{"docs":{},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"b":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}},"o":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"o":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"t":{"docs":{},"h":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"c":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":5.0389908256880735},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.02681992337164751},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.012797074954296161},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.024896265560165973},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}},"c":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"k":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},".":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"n":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.03225806451612903},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}}}}},"r":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}},"s":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}},"r":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"r":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"l":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"e":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"y":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"-":{"docs":{},"u":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.08333333333333333},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.014866204162537165},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"g":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}},"o":{"docs":{},"q":{"docs":{},"u":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"n":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":1.6666666666666665}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":1.6666666666666665}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"i":{"docs":{},"n":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":2.5}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}},"t":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"&":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}},"c":{"2":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"day10/README.html#gitbook_12":{"ref":"day10/README.html#gitbook_12","tf":2.75}}}}}}}},"docs":{},"o":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}},"s":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}},"h":{"docs":{},"o":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"6":{"docs":{},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464}}}}}}}}}}},"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"m":{"docs":{},"b":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}},"a":{"docs":{},"c":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"i":{"docs":{},"l":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"u":{"docs":{},"l":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"r":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"r":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.012448132780082987}},"o":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.014522821576763486}}}}}},"s":{"6":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},".":{"docs":{},"g":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"w":{"docs":{},"…":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day8/README.html#gitbook_29":{"ref":"day8/README.html#gitbook_29","tf":2.2}}}}}}},"j":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}},"v":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":2.5606060606060606},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":1.7003934794828555},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":2.0483870967741935},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.024390243902439025}}}}}}}}}},"s":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}},"s":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5926797385620916},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.4468641114982577}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.01532567049808429},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273}},"r":{"docs":{},"c":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.03669724770642202}}}}},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"i":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}},"k":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.6100534759358289},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}}}},"u":{"docs":{},"g":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.633955223880597},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.013071895424836602},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"=":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"d":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"r":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"c":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"g":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"b":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/README.html#gitbook_23":{"ref":"day6/README.html#gitbook_23","tf":0.038461538461538464}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}}}}},"w":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"e":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"docs":{}},"docs":{}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"a":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"r":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"f":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"s":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.440766550522648}}}}}}},"i":{"docs":{},"b":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.01011804384485666},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"a":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.045454545454545456},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}}}}},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":1.6750983698707138},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"e":{"docs":{},"n":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"w":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"v":{"docs":{},"e":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}},"f":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.016453382084095063},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}},"p":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821}}},"g":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}},"i":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}}}}},"-":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1.0028735632183907},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"a":{"docs":{},"d":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.014625228519195612}},"e":{"docs":{},"r":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"n":{"docs":{},"g":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"v":{"docs":{},"e":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"u":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.058823529411764705},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.008919722497522299},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"w":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}},"x":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.007312614259597806},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}},"s":{"docs":{},"t":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.008431703204047217},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.09090909090909091},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":2.566666666666667},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.01834862385321101},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.014367816091954023},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.01694915254237288},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"-":{"docs":{},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}},"@":{"0":{"docs":{},".":{"7":{"docs":{},".":{"0":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}}},"docs":{}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"@":{"0":{"docs":{},".":{"3":{"docs":{},".":{"4":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1}}}}}}}}}}}}}}},"g":{"docs":{},"y":{"docs":{},"p":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}},".":{"docs":{},"j":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.008431703204047217},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"s":{"docs":{},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}},"j":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5904575163398693}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456}}}}}}}}}}},"’":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}},"w":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.008955223880597015},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"e":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.03319502074688797},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.04128440366972477}},"(":{"docs":{},"{":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"'":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"'":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}},"r":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}},"j":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}}}}}},"h":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"n":{"docs":{},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"u":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.018830525272547076}}}}},"p":{"docs":{},"m":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.014925373134328358},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.058823529411764705},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.017241379310344827},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.02531645569620253},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.01532567049808429},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01818181818181818},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"r":{"docs":{},"c":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"v":{"docs":{},"m":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745}},")":{"docs":{},"/":{"docs":{},"n":{"docs":{},"v":{"docs":{},"m":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"m":{"docs":{},"e":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.451298701298701},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"k":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"f":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"@":{"0":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},"docs":{}}},"docs":{}}},"docs":{}}}}}},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.022988505747126436},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.014545454545454545},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"e":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}},"-":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}},"r":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"m":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"s":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},":":{"docs":{},"u":{"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":1.4285714285714284}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":3.352941176470588},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1.0057471264367817},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7181171319102353},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.018292682926829267}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.044444444444444446},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}},"—":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":5.016129032258065},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.01694915254237288},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.005946481665014866},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"t":{"docs":{},"o":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"n":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"docs":{}},"docs":{}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.009140767824497258},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":1.1920261437908497},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.01037344398340249},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"c":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}},".":{"docs":{},"k":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"k":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}},"a":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"d":{"docs":{},"d":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}},"l":{"docs":{},"d":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"p":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.011804384485666104},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.011494252873563218},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.014866204162537165}}}},"i":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"r":{"docs":{},"s":{"docs":{"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"l":{"docs":{},"i":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}}}}}},"a":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"t":{"docs":{},"h":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"=":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"$":{"docs":{},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"$":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"s":{"docs":{},"s":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.4346689895470381}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.6279850746268657},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"l":{"docs":{},"i":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.008919722497522299}}}}}},"r":{"docs":{},"o":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.006745362563237774},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"docs":{}},"docs":{}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.6337145969498911},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}},"d":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.008714596949891068},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"r":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.008888888888888889}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.017241379310344827}},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day10/README.html#gitbook_12":{"ref":"day10/README.html#gitbook_12","tf":2.5},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.008888888888888889}},"m":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"docs":{}},"docs":{}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"day10/README.html#gitbook_12":{"ref":"day10/README.html#gitbook_12","tf":0.25}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.013333333333333334}}}}}},"o":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.04838709677419355}},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.451298701298701}}}}}}}}}},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"c":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}},"u":{"docs":{},"m":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}}}}}}},"i":{"docs":{},"x":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"a":{"docs":{},"c":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516}}}}},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":1.4285714285714284}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}},"c":{"docs":{},"i":{"docs":{},"s":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"l":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"n":{"docs":{},"t":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"u":{"docs":{},"n":{"docs":{},"e":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":1.4740259740259738},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"-":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.013761467889908258},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"s":{"docs":{},"h":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":1.0086206896551724}}}},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},">":{"docs":{},"a":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"d":{"docs":{},"a":{"docs":{},"m":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"w":{"docs":{},"o":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7142857142857142}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}},"p":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"d":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"v":{"docs":{},"o":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}},"e":{"docs":{},"c":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}},"e":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}},"i":{"docs":{},"n":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}},"u":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.006666666666666667}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}},"p":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"s":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.02181818181818182},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.03111111111111111},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.009174311926605505}},"g":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}},"e":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}},"docs":{}},"docs":{}}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"'":{"docs":{},"a":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},".":{"docs":{},"j":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.006745362563237774},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"r":{"docs":{},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.009174311926605505},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.008620689655172414},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.006224066390041493}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"g":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"k":{"docs":{},"g":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"b":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.008714596949891068}}}}}},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"l":{"docs":{},"k":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.01684836471754212},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}},"s":{"docs":{},"k":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0196078431372549},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.019157088122605363},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"k":{"docs":{},"e":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.00505902192242833},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.005484460694698354},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"e":{"docs":{},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.6279850746268657}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}}},"c":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.013490725126475547}}}}}}},"s":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.016863406408094434},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":3.411764705882353},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/README.html#gitbook_17":{"ref":"day4/README.html#gitbook_17","tf":0.08333333333333333},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7794198139025724},"day7/README.html#gitbook_26":{"ref":"day7/README.html#gitbook_26","tf":0.16666666666666666},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.057777777777777775},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":3.383792048929663}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"2":{"0":{"0":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}},"/":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"*":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}},"*":{"docs":{},"*":{"docs":{},"/":{"docs":{},"*":{"docs":{},".":{"docs":{},"j":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7142857142857142}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.7142857142857142}}}}}},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}},"e":{"docs":{},"r":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5882352941176471}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.012254901960784314},"day1/initial_toolchain_practice.html#gitbook_10":{"ref":"day1/initial_toolchain_practice.html#gitbook_10","tf":0.0392156862745098},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0045871559633027525},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.030303030303030304}}}}}}}},"l":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.006880733944954129},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.006937561942517344},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"docs":{}},"docs":{}}},"’":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}},"n":{"docs":{},"k":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":5.181818181818182},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"a":{"docs":{},"d":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}}}},"w":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"y":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}},"docs":{}},"docs":{}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"r":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388}}}},"docs":{}},"docs":{}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.006535947712418301},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}},"g":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.014866204162537165},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}}}}}}}},"u":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"m":{"docs":{},"b":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"t":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}}}},"s":{"docs":{},"e":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.007928642220019821}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}},"w":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.025295109612141653},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}},"s":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":1.6666666666666665}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}}}}}},"p":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"o":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"m":{"docs":{},"a":{"docs":{},"y":{"docs":{},"k":{"docs":{},"o":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.6309701492537313},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"a":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.625}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.004149377593360996}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}},"m":{"docs":{},"e":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"t":{"docs":{},"l":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.011494252873563218},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.01090909090909091},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.017777777777777778}},"e":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}},"p":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}}},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.007272727272727273},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.5882352941176471}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"e":{"docs":{},"r":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}},"d":{"docs":{},"e":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"i":{"docs":{},"n":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}},"a":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"p":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}},"y":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.00980392156862745},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}},"u":{"docs":{},"e":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.06666666666666667},"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.02909090909090909},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.044444444444444446}}}}}}},"i":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}}},"e":{"docs":{},"e":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}},"a":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"v":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"w":{"docs":{},"o":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":5.045454545454546},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.003656307129798903},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}}}}}}},"d":{"docs":{},"d":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0044444444444444444}}}}},"x":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"y":{"docs":{},"e":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.633955223880597},"day3/README.html#gitbook_3":{"ref":"day3/README.html#gitbook_3","tf":0.09090909090909091},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}},"a":{"docs":{},"h":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.003964321110009911}}},"r":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"o":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.005970149253731343}},"u":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"d":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day1/pull_request_practice.html#gitbook_11":{"ref":"day1/pull_request_practice.html#gitbook_11","tf":0.022727272727272728}}},"l":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609}}}},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.008714596949891068},"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.01680672268907563},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.004901960784313725},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/day6_readings.html#gitbook_24":{"ref":"day6/day6_readings.html#gitbook_24","tf":0.016129032258064516},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}}},"v":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"docs":{}},"docs":{}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"i":{"docs":{},"e":{"docs":{},"j":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717}}},".":{"docs":{},"j":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"b":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.0029850746268656717},"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2":{"ref":"day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html#gitbook_2","tf":0.6279850746268657}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"r":{"docs":{},"c":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}},"i":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.0045871559633027525}}},"e":{"docs":{},"p":{"docs":{"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}},"p":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}},"docs":{}},"docs":{}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}}},"n":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}},"c":{"docs":{},"k":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.004955401387512388}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day2/README.html#gitbook_13":{"ref":"day2/README.html#gitbook_13","tf":0.045454545454545456},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"u":{"docs":{},"e":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}},"l":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}},"t":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"h":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}}}}}}}}}}}}}}},"$":{"docs":{},"(":{"docs":{},"r":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"docs":{}},"docs":{}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.007662835249042145}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day4/acceptance_testing_with_casperjs.html#gitbook_19":{"ref":"day4/acceptance_testing_with_casperjs.html#gitbook_19","tf":0.0038314176245210726}}}}}}}}}}}}}}}}},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.006097560975609756}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0019821605550049554}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"s":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}},"z":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}}}}}}}}},"-":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.003372681281618887}}}}}}}},"v":{"4":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767},"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.007352941176470588},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.011467889908256881},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.002074688796680498}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}}},"i":{"docs":{"communication/connect_to_irc.html#gitbook_6":{"ref":"communication/connect_to_irc.html#gitbook_6","tf":0.008403361344537815},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.002973240832507433}},"f":{"docs":{},"i":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516}}}}},"b":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.013875123885034688}},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.004357298474945534},"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.0022222222222222222}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046}},"o":{"docs":{},"r":{"docs":{"day3/responsive.html#gitbook_4":{"ref":"day3/responsive.html#gitbook_4","tf":0.002178649237472767}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}}}},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{"day1/README.html#gitbook_7":{"ref":"day1/README.html#gitbook_7","tf":0.016129032258064516},"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777},"pre-work/README.html#gitbook_33":{"ref":"pre-work/README.html#gitbook_33","tf":0.012195121951219513}}}}},"m":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}},"a":{"docs":{"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.0028735632183908046},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.5926797385620916}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"x":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"a":{"docs":{},"r":{"docs":{"day2/async_demo.html#gitbook_14":{"ref":"day2/async_demo.html#gitbook_14","tf":0.022222222222222223},"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.01834862385321101},"day4/Heroku.html#gitbook_16":{"ref":"day4/Heroku.html#gitbook_16","tf":0.005747126436781609},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.014545454545454545},"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.007312614259597806},"day7/unit_testing.html#gitbook_28":{"ref":"day7/unit_testing.html#gitbook_28","tf":0.011111111111111112},"day8/mongo_mongoose_and_the_rest.html#gitbook_30":{"ref":"day8/mongo_mongoose_and_the_rest.html#gitbook_30","tf":0.04979253112033195},"day8/superagent_testing.html#gitbook_31":{"ref":"day8/superagent_testing.html#gitbook_31","tf":0.01834862385321101}},"i":{"docs":{"day5/README.html#gitbook_20":{"ref":"day5/README.html#gitbook_20","tf":0.08333333333333333}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434},"day4/Sass.html#gitbook_18":{"ref":"day4/Sass.html#gitbook_18","tf":0.012658227848101266},"day6/Browserify_lab.html#gitbook_22":{"ref":"day6/Browserify_lab.html#gitbook_22","tf":0.0036363636363636364}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"day6/Browserify.html#gitbook_21":{"ref":"day6/Browserify.html#gitbook_21","tf":0.00847457627118644}}}},"u":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"day7/REST.html#gitbook_27":{"ref":"day7/REST.html#gitbook_27","tf":0.0009910802775024777}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"b":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"day1/ToolsOverview.html#gitbook_8":{"ref":"day1/ToolsOverview.html#gitbook_8","tf":0.0016863406408094434}}}}}}}}}}},"s":{"docs":{"day1/computer_setup.html#gitbook_9":{"ref":"day1/computer_setup.html#gitbook_9","tf":0.0024509803921568627}}}},"_":{"docs":{"day6/requirejs.html#gitbook_25":{"ref":"day6/requirejs.html#gitbook_25","tf":0.0018281535648994515}},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"day2/hello_express.html#gitbook_15":{"ref":"day2/hello_express.html#gitbook_15","tf":0.0022935779816513763}}}}}}}}}}},"length":3740},"corpusTokens":["0","0.0.1","0.10","0.10.28","0.4","1","1-2","1.9.3","100","1088","11","11094","1277","12:36","12:40","13","15","15:14","16","17","17-inch","2","2.1.1","200","213","214","238","256","28","29","3","3-inch","3.8","3.x","3/3","3000","3000'","32","343","390","39;eval","39;export","39;hard-coded'","39;hello","39;main.js'","39;prepar","39;test","39;the","3d47745..3f34feb","4","4.0","4/4","42","442","5","5.3mb","5000","6","65","68","7","79","8","80","8704","9","_","__dirnam","abandon","abil","abov","abstract","abysm","academ","acceler","accept","access","accompani","accord","account","accur","acellor","acknowledg","actionscript","activ","actual","ad","adapt","add","add-on","addit","adject","adobe'","adopt","advanc","advantag","adventur","again","agenda","agent","agil","ago","agre","ajax","alia","alliter","allow","allowfullscreen>if","br>thi","bracket","braill","brain","branch","brand","breakthrough","brew","bring","broken","brother","brows","browser","browser'","browserifi","browserify.all.src","browserify.j","browserify?altern","browserifyautom","browserifygrunt","browserifywhat","btw","buddi","buffer","bug","bui","build","build/client.j","build:dev","built","built-in","built-out","bunch","bundl","burn","busi","button","byte","bytes/","c","cach","call","callback","can't","candid","capabl","capit","car","care","case","casper","casper.j","casper.run(funct","casper.start('http://localhost:3000","casper.test.begin('hom","casper.then(funct","casperj","casperjswrit","catalog","cd","certain","ch","chai","chai.expect","chai.should","chai
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
+Day 2 Class Agenda
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
+Async Demo
+the Node REPL
+node from the command line.Process.nextTick
+
+var truth_value = false;
+process.nextTick(function() {
+ console.log(truth_value)
+});
+truth_value = true;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
+Grunt
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
+Hello Express
+mkdir hello_express. Change into the director with cd hello_express
+and create a file with the name package.json. Inside of the file place the following:{
+ "name" : "hello-express",
+ "description" : "a hello world web application written in express",
+ "version" : "0.0.1",
+ "dependencies" : {
+ "express" : "^4.0"
+ }
+}
+npm install from the command in our hello_express directory and npm
+will install Express and all of it's dependencies and save them into a folder called node_modules.
+Now seems like a perfect time to create a git repository for our application.git init
+touch .gitignore
+echo "node_modules/" >> .gitignore
+git add .
+git commit -m "add package.json and .gitignore"
+var express = require('express');
+var http = require('http');
+
+var app = express();
+
+app.get('/', function(req, res){
+ res.send('hello world!');
+});
+
+var server = http.createServer(app);
+server.listen(3000, function(){
+ console.log('the server is running on port 3000');
+});
+node server.js from the command line. Then point your preferred
+browser to http://localhost:3000, you should see the text hello world!.var express = require('express');
+var http = require('http');
+
+var app = express();
+
+app.use(express.static(__dirname + '/public'));
+
+var server = http.createServer(app);
+server.listen(3000, function() {
+ console.log('the server is listening on port 3000');
+});
+mkdir public from the console.
+Now place create an index.html file in the public directory and add the following to it:<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8"/>
+ <title>Hello World Express</title>
+ </head>
+ <body>
+ Hello World from an html document!
+ </body>
+</html>
+node server.js again, when you browse to http://localhost:3000
+you should see the text Hello World from an html document. You can also serve up anything you place in the
+public directory, including javascript files, images, css stylesheets and other html files. Don't forget to commit
+the changes!
+
+ git add .
+git commit -m "serving static files"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
+Heroku
+Slides
+Installation
+brew install heroku-toolbelt or sudo apt-get install heroku-toolbelt. If those don't work you may need to donwload it.Login
+heroku login to log in to heroku from the command line.heroku auth:whoami to see who you are logged in as.Create a heroku app
+heroku create ivan-hello-world-expressCreate the Procfile
+Procfile which should be in the root directory of your project. No file extension on this file, and it needs to start with a Capital letter. The procfile is simply:web: node server.js
+node server.jsTest it out locally with node-foreman
+npm install -g foremannf command. Try it out.nf --helpnf start
+var server = http.createServer(app);
+app.set('port', process.env.PORT || 3000);
+
+server.listen(app.get('port'), function() {
+ console.log('the server is NOW running on port', app.get('port'));
+});
+Commit any changes and push to Heroku
+git add .git commit -m 'preparing for heroku'git push heroku master$ git push heroku master
+Fetching repository, done.
+Counting objects: 7, done.
+Delta compression using up to 8 threads.
+Compressing objects: 100% (3/3), done.
+Writing objects: 100% (4/4), 343 bytes | 0 bytes/s, done.
+Total 4 (delta 2), reused 0 (delta 0)
+
+-----> Node.js app detected
+
+ PRO TIP: Specify a node version in package.json
+ See https://devcenter.heroku.com/articles/nodejs-support
+
+-----> Defaulting to latest stable node: 0.10.28
+-----> Downloading and installing node
+-----> Restoring node_modules directory from cache
+-----> Pruning cached dependencies not specified in package.json
+ npm WARN package.json hello-express@ No repository field.
+-----> Writing a custom .npmrc to circumvent npm bugs
+-----> Exporting config vars to environment
+-----> Installing dependencies
+ npm WARN package.json hello-express@ No repository field.
+-----> Caching node_modules directory for future builds
+-----> Cleaning up node-gyp and npm artifacts
+-----> Building runtime environment
+-----> Discovering process types
+ Procfile declares types -> web
+
+-----> Compressing... done, 5.3MB
+-----> Launching... done, v4
+ http://ivan-hello-world-express.herokuapp.com/ deployed to Heroku
+
+To git@heroku.com:ivan-hello-world-express.git
+ 3d47745..3f34feb master -> master
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
+
-
+
+
-
- Full Stack JavaScript Engineering
-
-
-
+
+
+
-
+
+
-
+
+
+
+
-
-
-
-
-
+
+
+
+ 5.2.
+
+ Functional Programming
+
-
-
-
-
+
+
+
-
-
+
+
+
+ 6.3.
+
+ Personal Blog Site Tutorial with Yeoman and Zurb
+
-
-
-
+
+
+
+ 8.
+
+ Acceptance Testing with CasperJS
+
-
-
-
-
+
+
+
+ 9.2.
+
+ Browserify
+
-
-
-
+
+
+
+ 9.4.
+
+ Require.js
+
-
-
-
-
-
-
-
-
+
+
+
+ 10.2.
+
+ REST
+
-
-
+
-
+
+
+
+
+
-
+
+
+
+
+
-
+
+
+
+
+
-
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
Full Stack JavaScript Engineering
-Read Online
+Installation
npm -g install gitbook
git clone https://github.com/codefellows/Full-Stack-JavaScript-Engineering.git
Usage
+cd Full-Stack-JavaScript-Engineering
gitbook serve .
-Publishing
+
+gitbook build . --output=public
+git add public
+git commit
+git push heroku master # must be a contributor
+Contributing
+Installation
+
+
diff --git a/public/manifest.appcache b/public/manifest.appcache
deleted file mode 100644
index c258a85..0000000
--- a/public/manifest.appcache
+++ /dev/null
@@ -1,78 +0,0 @@
-CACHE MANIFEST
-# Revision 1400266083554
-
-CACHE:
-day3/Grunt.html
-day3/Personal_Blog_Site_Tutorial_with_Yeoman_and_Zurb.html
-day3/README.html
-day3/responsive.html
-index.html
-communication/connect_to_irc.html
-day1/README.html
-day1/ToolsOverview.html
-day1/computer_setup.html
-day1/initial_toolchain_practice.html
-day1/pull_request_practice.html
-day10/README.html
-day2/README.html
-day2/async_demo.html
-day2/hello_express.html
-day4/Heroku.html
-day4/README.html
-day4/Sass.html
-day4/acceptance_testing_with_casperjs.html
-day5/README.html
-day6/Browserify.html
-day6/Browserify_lab.html
-day6/README.html
-day6/day6_readings.html
-day6/requirejs.html
-day7/README.html
-day7/REST.html
-day7/unit_testing.html
-day8/README.html
-day8/mongo_mongoose_and_the_rest.html
-day8/superagent_testing.html
-day9/README.html
-pre-work/README.html
-gitbook/app.js
-gitbook/fonts/anonymouspro/400.woff
-gitbook/fonts/anonymouspro/400i.woff
-gitbook/fonts/anonymouspro/700.woff
-gitbook/fonts/anonymouspro/700i.woff
-gitbook/fonts/ebgaramond/400.woff
-gitbook/fonts/ebgaramond/400i.woff
-gitbook/fonts/fontawesome/FontAwesome.otf
-gitbook/fonts/fontawesome/fontawesome-webfont.eot
-gitbook/fonts/fontawesome/fontawesome-webfont.svg
-gitbook/fonts/fontawesome/fontawesome-webfont.ttf
-gitbook/fonts/fontawesome/fontawesome-webfont.woff
-gitbook/fonts/merriweather/250.woff
-gitbook/fonts/merriweather/250i.woff
-gitbook/fonts/merriweather/400.woff
-gitbook/fonts/merriweather/400i.woff
-gitbook/fonts/merriweather/700.woff
-gitbook/fonts/merriweather/700i.woff
-gitbook/fonts/merriweather/900.woff
-gitbook/fonts/merriweather/900i.woff
-gitbook/fonts/opensans/300.woff
-gitbook/fonts/opensans/300i.woff
-gitbook/fonts/opensans/400.woff
-gitbook/fonts/opensans/400i.woff
-gitbook/fonts/opensans/600.woff
-gitbook/fonts/opensans/600i.woff
-gitbook/fonts/opensans/700.woff
-gitbook/fonts/opensans/700i.woff
-gitbook/images/favicon.ico
-gitbook/jsrepl/engines/javascript-default.js
-gitbook/jsrepl/jsrepl.js
-gitbook/jsrepl/langs/javascript/jsrepl_js.js
-gitbook/jsrepl/sandbox.html
-gitbook/jsrepl/sandbox.js
-gitbook/print.css
-gitbook/style.css
-gitbook/plugins/gitbook-plugin-mixpanel/plugin.js
-gitbook/plugins/gitbook-plugin-mathjax/plugin.js
-
-NETWORK:
-*
\ No newline at end of file
diff --git a/public/package.json b/public/package.json
index 7ec9d44..62b6a5a 100644
--- a/public/package.json
+++ b/public/package.json
@@ -1,31 +1,31 @@
{
"name": "Full-Stack-JavaScript-Engineering",
- "version": "0.0.1",
- "description": "Textbook in gitbook format for Code Fellows Full Stack JavaScript Engineering Development Accelerator",
- "main": "node server.js",
+ "version": "1.0.0",
+ "description": "Textbook for Code Fellows JavaScript Development Accelerator",
+ "main": "server.js",
"dependencies": {
"express": "^4.1.1",
- "grunt-cli": "^0.1.13"
- },
- "devDependencies": {
- "grunt": "^0.4.5",
+ "grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.5.0",
+ "grunt": "^0.4.5",
"grunt-gh-pages": "^0.9.1",
- "grunt-gitbook": "^0.4.2"
+ "grunt-gitbook": "^0.4.2",
+ "node-static": "^0.7.3"
},
+ "devDependencies": {},
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "start": "node server.js"
},
"repository": {
"type": "git",
- "url": "git://github.com/ivanoats/Full-Stack-JavaScript-Engineering.git"
+ "url": "https://github.com/ivanoats/Full-Stack-JavaScript-Engineering.git"
},
"keywords": [
"javascript",
- "book",
"gitbook"
],
- "author": "Ivan Storck",
+ "author": "Ivan Storck and Tyler Morgan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivanoats/Full-Stack-JavaScript-Engineering/issues"
diff --git a/public/pre-work/README.html b/public/pre-work/README.html
index 63f2e68..42205f0 100644
--- a/public/pre-work/README.html
+++ b/public/pre-work/README.html
@@ -1,539 +1,1028 @@
-
-
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
+
-
+
+
-
- Full Stack JavaScript Engineering
-
-
-
+
+
+
-
+
+
-
+
+
+
+
-
-
-
-
-
+
+
+
+ 5.2.
+
+ Functional Programming
+
-
-
-
-
+
+
+
-
-
+
+
+
+ 6.3.
+
+ Personal Blog Site Tutorial with Yeoman and Zurb
+
-
-
-
+
+
+
+ 8.
+
+ Acceptance Testing with CasperJS
+
-
-
-
-
+
+
+
+ 9.2.
+
+ Browserify
+
-
-
-
+
+
+
+ 9.4.
+
+ Require.js
+
-
-
-
-
-
-
-
-
+
+
+
+ 10.2.
+
+ REST
+
-
-
+
-
+
+
+
+
+
-
+
+
+
+
+
-
+
+
+
+
+
-
+
+
+
+
+
+ Full Stack JavaScript Engineering
+
Pre-work
-Code School
@@ -552,55 +1041,32 @@ Code School
Crockford on JS Lecture Series
-Asana
-Required State Paperwork
-Required State Paperwork
+
+
diff --git a/public/search_index.json b/public/search_index.json
index 16cceb4..6f2a84c 100644
--- a/public/search_index.json
+++ b/public/search_index.json
@@ -1 +1 @@
-{"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"day3/Grunt.html#gitbook_1":["allowfullscreen>if","br>thi","braill","brand","bring","broken","browser","browser'","build","built-in","case","ch","chang","check","chong","choos","click","code","color","come","condition","connect","consid","content","coordin","correctli","creat","crew","css","css3","curs","custom","depend","deprec","design","designus","desktop","detect","develop","devic","devicesrespons","differ","displai","don't","duckett","duplicate-sit","easi","easili","elliot","end","engag","enhanc","enough","entir","etc","even","everyth","exampl","experi","featur","fischer","foundat","framework","front","front-end","function","get","give","go","good","great","grid","guid","half","happen","have","height","here","html","imag","implement","impress","instruct","isn't","it'","itself","javascript","jon","keyboard","laptop","layout","lead","left","linear","link","littl","look","m.example.com","macbook","mean","media","menu","middle-ground","mobil","mobile-friendli","mobile-tun","modifi","more","mozilla'","narrow","navig","need","network","nice","nimbl","notic","notion","number","offer","oh","on","open","optim","option","orient","out","output","out—your","p>a","p>but","p>damn","p>tablet","p>two","p>user-ag","phablet","phone","pick","place","potenti","prais","prepar","present","pro","problem","product","promis","provis","pull","put","put-off","queri","quick","rang","reason","redirect","relationship","resiz","resolut","resourc","respons","right","rwd","sai","sarah","scratch","screen","search","separ","sever","share","side","simpl","simpli","sing","site","size","skeleton","skip","smart","smartphon","social","solut","sourc","specif","stage","stand","start","still","store","style","subdomain","sweet","syntax","tablet","tailor","templat","text","theater","they'r","think","thumb","tini","touch","touch-optim","traffic","transit","tricki","try","tv","two","type","undefinedundefin","unimpress","up","updat","url","us","user","user'","user-ag","user-friendli","user’","usual","version","view","visitor","want","web","webpag","websit","websiteso","well","what'","width","win-win","without","wonder","word","work","you'r","yourself","zurb"],"index.html#gitbook_5":["acceler","cd","clone","code","develop","engin","engineeringinstallationusag","fellows'","full","full-stack","full-stack-javascript-engin","g","git","gitbook","https://github.com/codefellows/full-stack-javascript-engineering.git","info","instal","it'","javascript","more","npm","project","readm","see","serv","stack","textbook","undefinedundefin","usag"],"communication/connect_to_irc.html#gitbook_6":["ancient","articl","ask","assign","be","best","bot","button","call","channel","chat","chatroom","class","click","client","codefellow","commun","connect","despit","develop","dure","etiquett","even","everyon","familiar","free","freenod","freenode.net","fun","gener","gitter","gitter.im","great","hello","help","highli","http://geoff.greer.fm/2012/05/19/programmer-irc-etiquett","http://www.irchelp.org","https://speakerdeck.com/ivanoats/a-good-quest","import","internet","intro","irc","it'","javascript","join","limechat","link","log","mac","manag","model","msg","need","new","nicknam","nickserv","node.j","nodej","other","packag","pidgin","protocol","question","quot;bots"","quot;codehue"","regist","relai","rubi","see","send","short","site","social","start","submiss","talk","two","type","undefinedundefin","unix","us","util","veri","want","we'll","web","written","xchat","you'r"],"day1/README.html#gitbook_7":["ad","add","agil","along-the-wai","api","asana","assign","check","commit","comput","core","dai","demo","don't","file","format","github","gitter.im","go","grunt","icebreaker.j","integr","intro","irc","js","kei","keynot","map","mention","messag","mind","name","node","npm","on","over","overview","project","protocol","pull","question","redirect","request","setup","share","show","subtask","talk","task","thing","tool","undefinedundefin","url","us","verifi","version","video","want","workshop"],"day1/ToolsOverview.html#gitbook_8":["abil","acceler","accompani","accord","actionscript","add","advanc","advantag","allow","american","angular.j","angularj","anyth","anywher","api","appl","appli","applic","apt","apt-get","architectur","around","articl","assert","associ","asynchron","attempt","autom","avail","back","backbone.j","bdd","beauti","beautifi","behavior-driven","better","bind","bower","br","browser","browserifi","browserify.j","build","built","built-in","built-out","c","capabl","casper.j","casperj","chai","chang","check","choos","chrome'","client-sid","clojur","code","code-over-configur","coffeescript","coldfus","collect","command","command-lin","commun","compat","compil","compon","compressor","compris","connect","connector","consist","constraint","coordin","cucumber.j","custom","d","dai","data","databas","declar","delightfulli","deliv","dependency-awar","design","develop","didn't","distribut","document","dom","don't","draft","easili","easy-to-us","eco","ecosystem","effect","effort","element","emb","ember","ember.j","end","endback","endupd","engin","ensur","entir","enumer","environ","erlang","even","event","exist","expand","export","express","extend","extern","extra","extraordinarili","fantom","fast","featur","feature-rich","fellow","file","fischer","former","foundat","framework","front","frustrat","fun","function","gener","github","give","go","grow","grunt","grunt.j","gulp'","gulp.j","haml","haml-j","handl","handlebar","handlebars.j","help","helper","homebrew","html","huge","hundr","hypermedia","implement","import","index","instal","institut","instructor","interfac","introduc","intuit","it'","ivan","jade","jasmin","java","javascript","jqueri","json","kalina","kalina'","key-valu","languag","lead","less","let","librari","lightweight","list","liter","lo-dash","logic","lua","mac","make","manag","mangler","map","markup","mess","method","mind","mindnod","minimum","mobil","mocha","model","modul","module.export","mongodb","more","mustach","mustache.j","mvc","nation","navig","necessari","need","net","network","new","node","node.j","node.js-styl","nodej","nosql","npm","object","object-rel","objective-c","offici","on","open","open-sourc","opinion","opml","origin","os","out","over","packag","pair","parser","perform","perl","phantomj","pharo","php","pint","pint.j","platform","plugin","popular","postgresql","power","primarili","problem","process","program","project","properti","provid","pull","python","q-unit","quick","quickli","readabl","relat","reli","represent","request","requir","rest","result","rich","robust","rubi","run","runtim","same","sarah","scaffold","scala","scalabl","scale","script","semant","send","separ","server","server-sid","set","sever","share","simpl","simpler","simul","slimerj","small","softwar","solv","sourc","sql","stack","stai","standard","start","state","storck","stream","structur","student","stuff","style","submit","such","suggest","suit","syntax","system","take","tdd","templat","test","think","thu","tool","toolsgeneralfront","transfer","ubuntu","ubuntu'","uglify.j","ui","undefinedundefin","underli","underscor","underscore.j","unit","up","up-to-d","updat","upgrad","us","util","variabl","view","vocabulari","want","web","websit","whole","within","without","work","wrapper","write","written","wu","xqueri","yeoman","zombie.j"],"day1/computer_setup.html#gitbook_9":["0.10","1.9.3","2.1.1","29","3","39;eval","39;export","79","abov","academ","activ","add","adobe'","alia","alreadi","altern","alwai","anoth","apt-get","around","ask","atom.io","autocomplet","bash_profil","bet","better","blog","bracket","brew","bui","cheaper","check","choos","class","come","command","commonli","compil","comput","connect","control","creat","crowd","custom","debug","default","digit","direct","doctor","dogwood","droplet","echo","eclips","editor","emac","enabl","end","error","file","follow","free","fully-featur","g","gem","github","global","go","good","great","grunt-cli","gt;>","here","heroku","heroku-toolbelt","homebrew","http://atom.io","http://brackets.io","http://brew.sh","http://cl.ly/image/220m3f093v2m","http://cl.ly/image/3i2o0y0a3e04","http://docs.sublimetext.info/en/latest/getting_started/install.html","http://www.sublimetext.com/3","https://education.github.com/discount_requests/new","https://gist.github.com/tylermorgan86/e1c9df76cb71a0a007d3","https://github.com/sstephenson/rbenv#basic-github-checkout","https://library.linode.com/databases/redis/ubuntu-12.04-precise-pangolin","https://sublime.wbond.net/instal","https://www.codefellows.org/blogs/how-to-install-postgresql","https://www.digitalocean.com/community/articles/how-to-install-mongodb-on-ubuntu-12-04","https://www.digitalocean.com/community/articles/how-to-install-ruby-on-rails-on-ubuntu-12-04-lts-with-rbenv--2","https://www.pivotaltracker.com/faq#istrackerreallyfreeforpublicprojectsindividualusenonprofitsandeduc","i'm","id","ignor","info","init","instal","instruct","interfac","invit","it'","item","ivan'","javascript","jshint","knowledg","latest","licens","light","line","local","login","mac","make","manag","mode","mongo","mongodb","need","node","node.j","note","npm","nvm","nvm)/nvm.sh","ocean","on","open","option","os","os:ubuntu","out","packag","page","path="$home/.rbenv/bin:$path"'","perfectli","permiss","persist","pg","pick","pivot","post","postgr","postgresql","prefer","preferences"","prefix","profil","programmer'","propon","python","quot;$(rbenv","quot;'","quot;run","rbenv","rbenv-gem-rehash","readm","redi","refer","replac","requir","restart","rock","rubi","ruby-build","same","sass","screenshot","server","servic","services:mac","set","setup","setupsign","shell","sign","somehow","sourc","start","step","still","stop","strict","stuck","studio","sublim","sudo","sure","system","tabl","tell","termin","text","time","tool","toolbelt","tracker","trial","try","two","ubuntu","undefinedundefin","unless","unlimit","up","updat","us","version","vim","visual","vs","wai","want","web","webstorm","won't","you'r","zshrc"],"day1/initial_toolchain_practice.html#gitbook_10":["clone","comment","comput","creat","done","file","gist.github.com","github","grunt","instal","let'","link","make","modul","name","need","node","npm","out","output","packag","post","project","redirect","run","see","set","setup","subtask","sure","task","test","text","undefinedundefin","up","work"],"day1/pull_request_practice.html#gitbook_11":["account","basic","class","classmat","contain","creat","exampl","file","folder","github","includ","info","inform","insid","link","linkedin","myself","name","onlin","page","practicecr","presenc","profil","pull","readme.md","relev","repo","repositori","request","send","share","singl","twitter","undefinedundefin","usernam","you'd"],"day10/README.html#gitbook_12":["ec2funct","guest","program","programmingundefinedundefin","speakersaw"],"day2/README.html#gitbook_13":["avail","beginn","book","branch","class","dai","demo","instructor","make","morn","node","nodeschool.io","open","pull","question","repo","request","slide","structur","two","undefinedundefin"],"day2/async_demo.html#gitbook_14":["answer","async","command","conosole.log","console.log(truth_valu","demoth","evalu","event","fals","function","have","it'","line","loop","node","order","out","output","place","print","process.nexttick","process.nexttick(funct","queue","read","repl","replprocess.nexttick","right","simpli","statement","thought","true","truth_valu","type","undefinedundefin","us","var"],"day2/hello_express.html#gitbook_15":["0.0.1","3.x","3000","3000'","39;hello","39;the","4","4.0","__dirnam","abstract","actual","add","again","alreadi","anoth","anyth","anywher","app","app.get","app.use(express.static(__dirnam","appear","applic","avail","awai","base","becom","bodi","boiler","brows","browser","built","call","callback","case","cd","chang","charset=\"utf-8","close","code","command","commit","consol","console.log('th","control","creat","creatin","css","declar","depend","descript","didn't","director","directori","doctyp","document","don't","echo","especi","express","expressheresemant","href=\"http://www.senchalabs.org/connect/\">connectresttj","html","http","http.createserver(app","http://localhost:3000","imag","includ","index.html","init","insid","instal","interest","isn't","it'","javascript","lang=\"en","larg","line","listen","locat","look","lot","m","meta","middlewar","minimalist","mkdir","modifi","modul","more","name","nearli","need","new","next","node","node.j","node_modul","now","npm","on","option","order","out","output","packag","package.json","page","particular","pass","perfect","place","plate","point","port","prefer","program","public","quit","re","read","redund","repositori","request","requir","require('express","require('http","res.send('hello","root","ruby'","run","save","scratch","section","see","seem","serv","server","server.j","server.listen(3000","simpl","simpli","sinatra","start","static","step","stylesheet","suit","tell","text","time","title>hello","top","touch","undefinedundefin","up","url","us","var","version","versioningbackbone.jsbrowserifygruntrequire.jsboastshello","transform","tree","true","two","undefinedundefin","underscor","up","us","usual","util","var","version","wade","wai","want","well","wide","work","workflow(y","world","world!index
by Kalina Wu, Ivan Storck, and Sarah Fischer
+In our development accelerator, students are introduced to several tools and libraries to expand the abilities of their code. Kalina, one of our former JavaScript students, compiled a list of these tools and wanted to share it with other Code Fellows.
+Ivan Storck, our JavaScript Development Accelerator instructor, used Kalina's list to draft up this helpful mind map:
+ +Scaffolding Tools (for starting projects)
+Build Tools (automation)
+Package Management Tools
+MVC Frameworks
+Templates
+Testing
+Servers
+Databases
+Architectural Style
+Testing
+Assertion Libraries
+Functional Programming Tools
+Have a tool you think should be on the list? Check out this article and the associated MindNode mind map (OPML) on Github. Submit a pull request and send us your suggestions to add new and popular tools!
+ + +Set up your computer with the following tools: A programmer's text editor, Node.js, MongoDB, and Redis.
+Pick a programmer's editor:
+vimtutor from the command line to start, or an interactive tutorial.Which one to choose? I like Atom, or Brackets, because you can customize them with JavaScript. Customizing Sublime requires knowledge of Python.
+Totally Optional, but you may want a relational database. Only do this if you have time. I choose PostgreSQL:
+GitHub (you may have this already but there is also https://education.github.com/discount_requests/new try it while you're here)
+Homebrew http://brew.sh Note: the instructions are at the end of the web page. Run brew update && brew doctor if you already have homebrew but haven't used it in a while.
Node.js
+brew install nodenpm -g install grunt-cli jshintMongoDB
+brew install mongodbbrew info mongo if you let the instructions scroll off the screen (tsk tsk, you need to read the terminal messages!)launchctl start homebrew.mxcl.mongodblaunchctl stop homebrew.mxcl.mongodbRedis
+brew install redisbrew info redislaunchctl start homebrew.mxcl.redislaunchctl stop homebrew.mxcl.redisHeroku Toolbelt
+brew install heroku-toolbeltIn your terminal preferences make sure that "Run Command as a login shell is an enabled profile preferences" check these two screenshots:

node.js: compile node from source, following the directions here.
+Install Grunt-CLI (command line interface) npm -g install grunt-cli
MongoDB - Follow MongoDB's article.
+sudo apt-get install heroku-toolbeltBy testing to see if grunt works on a project we can see if you have done most
+of the setup tasks needed.
Let's just make sure your computer is set up with node and npm and can run tests.
+npm installgrunt, and redirect the output
+to a text file.This is only if you need to, generally just on Linux systems.
+Click the Source Code download. Usually the last row. It will be a file like http://nodejs.org/dist/v0.10.32/node-v0.10.32.tar.gz
The version # may be greater.
+Go to the directory where you downloaded the source and do:
+tar -xvf <the node tar.gz you downloaded>
+cd <node directory>
+./configure --prefix=~/.node
+make && make install
+add the following to your shell startup scripts (.bash_profile, .bashrc or .profile)
+export PATH=$PATH:$HOME/.node/bin
+export NODE_PATH=$HOME/.node/lib/node_modules
+node -v should print out the current node
+version.sudo. Try
+npm -g install jshint. If that works, without any EACCESS errors, you're good!TBD
+ + +This is a simple blog made as teaching example.
+brew install nvm on Mac OS X instead of brew install node.
+See the nvm README for more details.npm install -g yo grunt-cliGrab my copy of generator-browserify (until this pull request is closed).
+npm -g install ivanoats/generator-browserify
+Generate the app skeleton
+mkdir blog && cd blog
+yo browserify
+You'll see a lot of text scroll by, and on my system I saw the last lines like this:
+grunt-sass@0.9.0 node_modules/grunt-sass
+├── async@0.2.10
+└── node-sass@0.7.0 (node-watch@0.3.4, colors@0.6.0-1, mkdirp@0.3.5, optimist@0.6.1, mocha@1.13.0)
+Your directory listing should look something like this:
+total 80
+drwxr-xr-x 13 ivan staff 442 Apr 17 12:40 .
+drwxr-xr-x 256 ivan staff 8704 Apr 17 12:36 ..
+-rw-r--r-- 1 ivan staff 42 Apr 16 15:14 .bowerrc
+-rw-r--r-- 1 ivan staff 214 Apr 16 15:14 .editorconfig
+-rw-r--r-- 1 ivan staff 11 Apr 16 15:14 .gitattributes
+-rw-r--r-- 1 ivan staff 65 Apr 16 15:14 .gitignore
+-rw-r--r-- 1 ivan staff 390 Apr 16 15:14 .jshintrc
+-rw-r--r-- 1 ivan staff 11094 Apr 17 12:40 Gruntfile.js
+drwxr-xr-x 7 ivan staff 238 Apr 17 12:40 app
+-rw-r--r-- 1 ivan staff 213 Apr 16 15:14 bower.json
+drwxr-xr-x 2 ivan staff 68 Apr 17 12:40 dist
+drwxr-xr-x 32 ivan staff 1088 Apr 17 12:40 node_modules
+-rw-r--r-- 1 ivan staff 1277 Apr 17 12:40 package.json
+Now type grunt serve to launch the app in a web browser. You should see something
+like this:

That's great but let's start with a simpler blog layout: Go to + http://foundation.zurb.com/templates.html
+and download the blog layout HTML. Put that in the body tag of app/index.html in
+your project.
You can now start customizing your blog with the following files:
+Here's what I did:
+
Go to town! This generator also includes BackboneJS so you can even make your +blog a single-page app.
+Tested Pull-Requests welcome! I will list you as a contributor.
+ + +On day three, we will cover:
+28% of website traffic comes from mobile. Are you prepared?
+by Elliot Chong and Sarah Fischer
+It happens to the best of us.
+You're standing in a store, product in front of you, and you wonder what users are saying about it. You pull out your smartphone and do a quick search for the brand.
+The site has great functionality and engaging features — for a desktop. You try to check tiny boxes and navigate little menus on your 3-inch screen, cursing your thumbs for not being more nimble and promising yourself that any site you build will be responsive for smartphones.
+There is a linear relationship between the number of smartphone users and the need for responsive websites. But creating a website or application that looks good and works well on a desktop, tablet, and smartphone is tricky. Think the solution is to simply create two separate sites with optimized CSS for mobile and desktop users? Think again.
+Problem #1: User-Agent Redirects
+User-agent redirects detect the user's device and redirects from a desktop URL to one that displays and functions correctly on a mobile device, usually a subdomain at m.example.com.
+
+
+Problem #2: Two Code Bases
Two. Code. Bases. Assuming that isn't enough reason right there to abandon this duplicate-site notion, consider the additional work and coordination to update both codes.
+
+
+Problem #3: URL Sharing Between Devices
A user is so impressed with your site or product that they share it on their social network from their phone. Sweet!
+But half of their connections click the link and view it on a desktop, and the URL leads them to the mobile version of the site, which ends up looking narrow and broken on their 17-inch MacBook Pro. They're left unimpressed (and even a little put-off) and you're left with potential customers thinking your site isn't user-friendly.
+Damn.
+
+
+What about tablets?
Tablets (and the awkward middle-ground phablets — pick a side, already!) bring yet another size and user experience to consider. Some tablets come with cases that have built-in keyboards, which means they can function like a laptop. But users still want the option to use the touch screen and don't bother with keyboard add-ons.
+What's a developer to do?
+
+Responsive Web Design (RWD) conditionally modifies the layout of a webpage depending on the width of the device it's being viewed on.
Simple.
+Mozilla's resource for web developers puts it oh so nicely:
+++Media queries, added in deprecated CSS3, let the presentation of content be tailored to a specific range of output devices without having to change the content itself.
+
In other words, you modify the CSS based on the browser's:
+Width / Height
+Orientation
+Media Type (Screen, TV, Braille, etc.)
+Color
+Resolution
+Aspect-Ratio
+Our website is responsive — resizing the browser changes the layout of the text and images.
+
+Applying a grid layout to your website allows it to easily transition from phone to tablet to desktop displays, depending on the user's device.
Mobile-tuned JavaScript enhances the user’s experience. Touch-optimized menus, for example, are beautifully simple and easy to use on a smartphone when implemented correctly.
+Smart responsive web design is like the stage crew at a theater production — everything is going right when you don't notice it at all.
+Where do you go from here? There are some options for transitioning your website to a responsive layout, if you're ambitious and want to get started with RWD:
+Credit is due to Dale Sande for preparing this material.
+Sass is an extension of CSS that adds power and elegance to the basic language. It allows you to use variables, nested rules, mixins, inline imports, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized, and get small stylesheets up and running quickly, particularly with the help of the Compass style library.
+Is Sass somewhat of a mystery to you? How does it work? Why do some say that it is better then CSS?
+ + +Sass was orignally a Ruby gem, but it is also available as an npm package now. You can npm install node-sass in your projects.